Skip to content

Commit

Permalink
Remove "keyVaultUrl" in PUT schema reponse
Browse files Browse the repository at this point in the history
  • Loading branch information
sparatala committed Aug 30, 2022
1 parent ab00670 commit de3fcd0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"type": "Microsoft.Synapse/workspaces/keys",
"name": "somekey",
"properties": {
"isActiveCMK": true,
"keyVaultUrl": "https://vault.azure.net/keys/somesecret"
"isActiveCMK": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/Key"
},
"description": "Workspace Key resource details"
},
"default": {
Expand Down Expand Up @@ -276,7 +273,8 @@
},
"keyVaultUrl": {
"type": "string",
"description": "The Key Vault Url of the workspace key."
"description": "The Key Vault Url of the workspace key.",
"x-ms-mutability": [ "create", "read" ]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"type": "Microsoft.Synapse/workspaces/keys",
"name": "somekey",
"properties": {
"isActiveCMK": true,
"keyVaultUrl": "https://vault.azure.net/keys/somesecret"
"isActiveCMK": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/Key"
},
"description": "Workspace Key resource details"
},
"default": {
Expand Down Expand Up @@ -276,7 +273,8 @@
},
"keyVaultUrl": {
"type": "string",
"description": "The Key Vault Url of the workspace key."
"description": "The Key Vault Url of the workspace key.",
"x-ms-mutability": [ "create", "read" ]
}
}
}
Expand Down

0 comments on commit de3fcd0

Please sign in to comment.