From 473a02b880831fb7fe68816f9221a897c041a3ca Mon Sep 17 00:00:00 2001 From: Rick Ley Date: Tue, 14 Apr 2020 12:27:42 -0700 Subject: [PATCH 1/4] Removed contentLength from setTags (#9061) --- .../Microsoft.BlobStorage/preview/2019-12-12/blob.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json index 24ee28409bd9..1f35757c8543 100644 --- a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json +++ b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json @@ -8773,9 +8773,6 @@ { "$ref": "#/parameters/VersionId" }, - { - "$ref": "#/parameters/ContentLength" - }, { "$ref": "#/parameters/ContentMD5" }, From 3a0188d1fb8c2bb6ebcba58044c6f609af5c94c6 Mon Sep 17 00:00:00 2001 From: rickle-msft Date: Wed, 15 Apr 2020 17:39:56 -0700 Subject: [PATCH 2/4] Fixed BlobTags serialization --- .../preview/2019-12-12/blob.json | 32 +++---------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json index 1f35757c8543..5c7dc80ea944 100644 --- a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json +++ b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json @@ -9366,32 +9366,6 @@ } } }, - "BlobTagList": { - "description": "a collection of blob tags", - "type": "array", - "items": { - "$ref": "#/definitions/BlobTag" - }, - "xml": { - "wrapped": true, - "name": "TagSet" - } - }, - "BlobTagSet": { - "description": "a collection of blob tags", - "type": "object", - "required": [ - "BlobTagList" - ], - "properties": { - "BlobTagList": { - "$ref": "#/definitions/BlobTagList" - } - }, - "xml": { - "name": "TagSet" - } - }, "BlobTags": { "type": "object", "xml": { @@ -9403,9 +9377,13 @@ ], "properties": { "BlobTagSet": { - "$ref": "#/definitions/BlobTagSet", "xml": { + "wrapped": true, "name": "TagSet" + }, + "type": "array", + "items": { + "$ref": "#/definitions/BlobTag" } } } From 723f1c073b0561ed7ffa61a60914acdb4d935f2a Mon Sep 17 00:00:00 2001 From: rickle-msft Date: Mon, 20 Apr 2020 10:28:02 -0700 Subject: [PATCH 3/4] Added tag count to properties returned on listing --- .../Microsoft.BlobStorage/preview/2019-12-12/blob.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json index 5c7dc80ea944..339f1b47d35e 100644 --- a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json +++ b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json @@ -9209,6 +9209,9 @@ "AccessTierChangeTime": { "type": "string", "format": "date-time-rfc1123" + }, + "TagCount": { + "type": "integer" } } }, From f6d3ec2c67aac45d1b6d0e82d42da4a94a6f4802 Mon Sep 17 00:00:00 2001 From: rickle-msft Date: Wed, 22 Apr 2020 13:52:10 -0700 Subject: [PATCH 4/4] Removed snapshot from setTags --- .../Microsoft.BlobStorage/preview/2019-12-12/blob.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json index 339f1b47d35e..95684370aaab 100644 --- a/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json +++ b/specification/storage/data-plane/Microsoft.BlobStorage/preview/2019-12-12/blob.json @@ -8767,9 +8767,6 @@ { "$ref": "#/parameters/Timeout" }, - { - "$ref": "#/parameters/Snapshot" - }, { "$ref": "#/parameters/VersionId" },