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

Permanent Delete #11359

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 @@ -3846,6 +3846,9 @@
},
{
"$ref": "#/parameters/ClientRequestId"
},
{
"$ref": "#/parameters/BlobDeleteType"
}
],
"responses": {
Expand Down Expand Up @@ -10710,6 +10713,10 @@
"description": "Indicates the number of days that metrics or logging or soft-deleted data should be retained. All data older than this value will be deleted",
"type": "integer",
"minimum": 1
},
"AllowPermanentDelete": {
"description": "Indicates whether permanent delete is allowed on this storage account.",
"type": "boolean"
}
}
},
Expand Down Expand Up @@ -11116,6 +11123,22 @@
},
"description": "Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request."
},
"BlobDeleteType": {
"name": "deletetype",
"x-ms-client-name": "blobDeleteType",
"in": "query",
"required": false,
"type": "string",
"enum": [
"Permanent"
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
"Permanent"
"permanent"

],
"x-ms-enum": {
"name": "BlobDeleteType",
"modelAsString": false
},
"x-ms-parameter-location": "method",
"description": "Optional. Only possible value is 'permanent', which specifies to permanently delete a blob if blob soft delete is enabled."
},
"BlobExpiryOptions": {
"name": "x-ms-expiry-option",
"x-ms-client-name": "ExpiryOptions",
Expand Down