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

[Hub Generated] Review request for Microsoft.KeyVault to add version preview/2021-06-01-preview #16042

Merged
Merged
Changes from 2 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 @@ -423,6 +423,10 @@
"rotationPolicy": {
"$ref": "#/definitions/RotationPolicy",
"description": "Key rotation policy in response. It will be used for both output and input. Omitted if empty"
},
"releasePolicy": {
susolank marked this conversation as resolved.
Show resolved Hide resolved
"$ref": "#/definitions/ReleasePolicy",
"description": "Key release policy in response. It will be used for both output and input. Omitted if empty"
}
},
"description": "The properties of the key.",
Expand Down Expand Up @@ -473,6 +477,10 @@
},
"readOnly": true,
"x-nullable": false
},
"exportable": {
"type": "boolean",
"description": "Indicates if the private key can be exported."
}
},
"description": "The object attributes managed by the Azure Key Vault service.",
Expand Down Expand Up @@ -614,6 +622,21 @@
}
},
"type": "object"
},
"ReleasePolicy": {
"properties": {
"contentType": {
"description": "Content type and version of key release policy",
"type": "string",
"default": "application/json; charset=utf-8"
},
"data": {
"description": "Blob encoding the policy rules under which the key can be released.",
"type": "string",
"format": "base64url"
}
},
"type": "object"
}
},
"parameters": {
Expand Down