diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json index 55437064c5a7..2e07ab435efb 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/blob.json @@ -1144,6 +1144,10 @@ "automaticSnapshotPolicyEnabled": { "type": "boolean", "description": "Automatic Snapshot is enabled if set to true." + }, + "changeFeed": { + "$ref": "#/definitions/ChangeFeed", + "description": "The blob service properties for change feed events." } }, "x-ms-client-flatten": true, @@ -1170,6 +1174,15 @@ } } }, + "ChangeFeed": { + "properties": { + "enabled": { + "type": "boolean", + "description": "Indicates whether change feed event logging is enabled for the Blob service." + } + }, + "description": "The blob service properties for change feed events." + }, "DeleteRetentionPolicy": { "properties": { "enabled": { diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json index 9b03d54608e3..bcd9076a794e 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesGet.json @@ -80,7 +80,10 @@ "enabled": true, "days": 300 }, - "automaticSnapshotPolicyEnabled": true + "automaticSnapshotPolicyEnabled": true, + "changeFeed": { + "enabled": true + } } } } diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesList.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesList.json index 9ee20d70725b..124690f0d950 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesList.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesList.json @@ -81,7 +81,10 @@ "enabled": true, "days": 300 }, - "automaticSnapshotPolicyEnabled": true + "automaticSnapshotPolicyEnabled": true, + "changeFeed": { + "enabled": true + } } } ] diff --git a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json index 45231ea77eef..f3fd9e8070a0 100644 --- a/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json +++ b/specification/storage/resource-manager/Microsoft.Storage/stable/2019-04-01/examples/BlobServicesPut.json @@ -74,8 +74,11 @@ "enabled": true, "days": 300 }, - "automaticSnapshotPolicyEnabled": true - } + "automaticSnapshotPolicyEnabled": true, + "changeFeed": { + "enabled": true + } + } } }, "responses": { @@ -151,7 +154,10 @@ "enabled": true, "days": 300 }, - "automaticSnapshotPolicyEnabled": true + "automaticSnapshotPolicyEnabled": true, + "changeFeed": { + "enabled": true + } } } }