Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed SmbSettings and ProtocolSettings, Removed lease duration headers. #10835

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -532,11 +532,6 @@
"format": "date-time-rfc1123",
"description": "Returns the date and time the share was last modified. Any operation that modifies the share or its properties updates the last modified time. Operations on files do not affect the last modified time of the share."
},
"x-ms-lease-time": {
"x-ms-client-name": "LeaseTime",
"type": "integer",
"description": "Approximate time remaining in the lease period, in seconds."
},
"x-ms-lease-id": {
"x-ms-client-name": "LeaseId",
"type": "string",
Expand Down Expand Up @@ -653,11 +648,6 @@
"format": "date-time-rfc1123",
"description": "Returns the date and time the share was last modified. Any operation that modifies the share or its properties updates the last modified time. Operations on files do not affect the last modified time of the share."
},
"x-ms-lease-time": {
"x-ms-client-name": "LeaseTime",
"type": "integer",
"description": "Approximate time remaining in the lease period, in seconds."
},
"x-ms-client-request-id": {
"x-ms-client-name": "ClientRequestId",
"type": "string",
Expand Down Expand Up @@ -772,11 +762,6 @@
"format": "date-time-rfc1123",
"description": "Returns the date and time the share was last modified. Any operation that modifies the share or its properties updates the last modified time. Operations on files do not affect the last modified time of the share."
},
"x-ms-lease-time": {
"x-ms-client-name": "LeaseTime",
"type": "integer",
"description": "Approximate time remaining in the lease period, in seconds."
},
"x-ms-lease-id": {
"x-ms-client-name": "LeaseId",
"type": "string",
Expand Down Expand Up @@ -893,11 +878,6 @@
"format": "date-time-rfc1123",
"description": "Returns the date and time the share was last modified. Any operation that modifies the share or its properties updates the last modified time. Operations on files do not affect the last modified time of the share."
},
"x-ms-lease-time": {
"x-ms-client-name": "LeaseTime",
"type": "integer",
"description": "Approximate time remaining in the lease period, in seconds."
},
"x-ms-lease-id": {
"x-ms-client-name": "LeaseId",
"type": "string",
Expand Down Expand Up @@ -5305,13 +5285,13 @@
"name": "Range"
}
},
"ProtocolSettings": {
"ShareProtocolSettings": {
"description": "Protocol settings",
"type": "object",
"properties": {
"SmbSettings": {
"Smb": {
"description": "Settings for SMB protocol.",
"$ref": "#/definitions/SmbSettings",
"$ref": "#/definitions/ShareSmbSettings",
"xml": {
"name": "SMB"
}
Expand Down Expand Up @@ -5482,7 +5462,7 @@
"name": "SignedIdentifiers"
}
},
"SmbSettings": {
"ShareSmbSettings": {
"description": "Settings for SMB protocol.",
"type": "object",
"properties": {
Expand Down Expand Up @@ -5514,9 +5494,12 @@
"wrapped": true
}
},
"ProtocolSettings": {
"Protocol": {
"description": "Protocol settings",
"$ref":"#/definitions/ProtocolSettings"
"$ref":"#/definitions/ShareProtocolSettings",
"xml": {
"name": "ProtocolSettings"
}
}
}
},
Expand Down