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

Add encryption property to workspace update parameters #19893

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 @@ -2387,6 +2387,10 @@
"containerRegistry": {
"description": "ARM id of the container registry associated with this workspace.",
"type": "string"
},
"encryption": {
"$ref": "#/definitions/EncryptionUpdateProperties",
"description": "The encryption settings of the workspace."
}
}
},
Expand Down Expand Up @@ -4812,6 +4816,30 @@
}
}
},
"EncryptionUpdateProperties": {
"properties": {
"keyVaultProperties": {
"$ref": "#/definitions/EncryptionKeyVaultUpdateProperties",
"description": "Customer Key vault properties."
}
},
"required": [
"keyVaultProperties"
],
"type": "object"
},
"EncryptionKeyVaultUpdateProperties": {
"properties": {
"keyIdentifier": {
"description": "Key Vault uri to access the encryption key.",
"type": "string"
}
},
"required": [
"keyIdentifier"
],
"type": "object"
},
"CustomService": {
"type": "object",
"description": "Specifies the custom service configuration",
Expand Down