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

Feature/riteshc/swagger correctness mhsm fixes #12209

Merged
merged 6 commits into from
Jan 6, 2021
Merged
Show file tree
Hide file tree
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 @@ -33,6 +33,13 @@
"Environment": "dogfood"
}
}
}
},
"202": {
"headers": {
"Retry-After": "60",
"Location": "https://some.endpoint.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1?api-version=2020-04-01-preview&kv-operation=abJjb2RkIjoiAGVsZXRlTWFuYWdlZEhzbUFzeW5jYm9"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,12 @@
"$ref": "#/definitions/ManagedHsm"
}
},
"202": {
"description": "Accepted and the operation will complete asynchronously."
},
"204": {
"description": "Request successful. Resource does not exist."
},
"default": {
"description": "The error response describing why the operation failed.",
"schema": {
Expand Down Expand Up @@ -394,6 +400,7 @@
},
"hsmUri": {
"type": "string",
"readOnly": true,
"description": "The URI of the managed hsm pool for performing operations on keys."
},
"enableSoftDelete": {
Expand All @@ -409,6 +416,7 @@
},
"enablePurgeProtection": {
"type": "boolean",
"default": true,
"description": "Property specifying whether protection against purge is enabled for this managed HSM pool. Setting this property to true activates protection against purge for this managed HSM pool and its content - only the Managed HSM service may initiate a hard, irrecoverable deletion. The setting is effective only if soft delete is also enabled. Enabling this functionality is irreversible."
},
"createMode": {
Expand Down