Skip to content
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 @@ -2732,6 +2732,9 @@
{
"$ref": "#/parameters/Snapshot"
},
{
"$ref": "#/parameters/VersionId"
},
{
"$ref": "#/parameters/Timeout"
},
Expand Down Expand Up @@ -3228,6 +3231,9 @@
{
"$ref": "#/parameters/Snapshot"
},
{
"$ref": "#/parameters/VersionId"
},
{
"$ref": "#/parameters/Timeout"
},
Expand Down Expand Up @@ -3521,6 +3527,9 @@
{
"$ref": "#/parameters/Snapshot"
},
{
"$ref": "#/parameters/VersionId"
},
{
"$ref": "#/parameters/Timeout"
},
Expand Down Expand Up @@ -4086,6 +4095,11 @@
"type": "string",
"description": "Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above."
},
"x-ms-version-id": {
"x-ms-client-name": "VersionId",
"type": "string",
"description": "A DateTime value returned by the service that uniquely identifies the blob. The value of this header indicates the blob version, and may be used in subsequent requests to access this version of the blob."
},
"Date": {
"type": "string",
"format": "date-time-rfc1123",
Expand Down Expand Up @@ -4247,6 +4261,11 @@
"type": "string",
"description": "Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above."
},
"x-ms-version-id": {
"x-ms-client-name": "VersionId",
"type": "string",
"description": "A DateTime value returned by the service that uniquely identifies the blob. The value of this header indicates the blob version, and may be used in subsequent requests to access this version of the blob."
},
"Date": {
"type": "string",
"format": "date-time-rfc1123",
Expand Down Expand Up @@ -4417,6 +4436,11 @@
"type": "string",
"description": "Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above."
},
"x-ms-version-id": {
"x-ms-client-name": "VersionId",
"type": "string",
"description": "A DateTime value returned by the service that uniquely identifies the blob. The value of this header indicates the blob version, and may be used in subsequent requests to access this version of the blob."
},
"Date": {
"type": "string",
"format": "date-time-rfc1123",
Expand Down Expand Up @@ -4783,6 +4807,9 @@
"enum": [
"metadata"
]
},
{
"$ref": "#/parameters/VersionId"
}
]
},
Expand Down Expand Up @@ -5449,6 +5476,11 @@
"type": "string",
"description": "Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above."
},
"x-ms-version-id": {
"x-ms-client-name": "VersionId",
"type": "string",
"description": "A DateTime value returned by the service that uniquely identifies the blob. The value of this header indicates the blob version, and may be used in subsequent requests to access this version of the blob."
},
"Date": {
"type": "string",
"format": "date-time-rfc1123",
Expand Down Expand Up @@ -5573,6 +5605,11 @@
"type": "string",
"description": "Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above."
},
"x-ms-version-id": {
"x-ms-client-name": "VersionId",
"type": "string",
"description": "A DateTime value returned by the service that uniquely identifies the blob. The value of this header indicates the blob version, and may be used in subsequent requests to access this version of the blob."
},
"Date": {
"type": "string",
"format": "date-time-rfc1123",
Expand Down Expand Up @@ -6436,6 +6473,11 @@
"type": "string",
"description": "Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above."
},
"x-ms-version-id": {
"x-ms-client-name": "VersionId",
"type": "string",
"description": "A DateTime value returned by the service that uniquely identifies the blob. The value of this header indicates the blob version, and may be used in subsequent requests to access this version of the blob."
},
"Date": {
"type": "string",
"format": "date-time-rfc1123",
Expand Down Expand Up @@ -8732,6 +8774,12 @@
"Snapshot": {
"type": "string"
},
"VersionId": {
"type": "string"
},
"IsCurrentVersion": {
"type": "boolean"
},
"Properties": {
"$ref": "#/definitions/BlobProperties"
},
Expand Down Expand Up @@ -10740,6 +10788,15 @@
"x-ms-parameter-location": "method",
"description": "The snapshot parameter is an opaque DateTime value that, when present, specifies the blob snapshot to retrieve. For more information on working with blob snapshots, see <a href=\"https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob\">Creating a Snapshot of a Blob.</a>"
},
"VersionId": {
"name": "versionid",
"x-ms-client-name": "versionId",
"in": "query",
"required": false,
"type": "string",
"x-ms-parameter-location": "method",
"description": "The version id parameter is an opaque DateTime value that, when present, specifies the version of the blob to delete. It for service version 2019_10_10 and newer."
},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

specifies the version of the blob to delete.
This is for get blob?

for service version 2019_10_10 and newer
use 2019-10-10 ?

"SourceContentMD5": {
"name": "x-ms-source-content-md5",
"x-ms-client-name": "sourceContentMD5",
Expand Down