Skip to content

Commit

Permalink
separate out create contract
Browse files Browse the repository at this point in the history
  • Loading branch information
solankisamir committed Sep 11, 2020
1 parent d631cdb commit 1626b41
Showing 1 changed file with 17 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2636,20 +2636,32 @@
],
"description": "Issue contract Update Properties."
},
"KeyVaultContractCreateProperties" :{
"properties": {
"secretIdentifier": {
"type": "string",
"description": "Key vault secret identifier for fetching secret."
},
"identityClientId": {
"type": "string",
"description": "SystemAssignedIdentity or UserAssignedIdentity Client Id which will be used to access key vault secret."
}
},
"description": "Create keyVault contract details."
},
"KeyVaultContractProperties": {
"properties": {
"secretIdentifier": {
"type": "string",
"description": "Key vault secret ID for fetching secret."
"description": "Key vault secret identifier for fetching secret."
},
"identityClientId": {
"type": "string",
"description": "SystemAssignedIdentity or UserAssignedIdentity Client Id which will be used to access key vault secret."
},
"lastStatus": {
"$ref": "#/definitions/KeyVaultLastAccessStatusContractProperties",
"description": "Last time sync and refresh status of secret from key vault.",
"readonly": true
"description": "Last time sync and refresh status of secret from key vault."
}
},
"description": "KeyVault contract details."
Expand Down Expand Up @@ -3702,7 +3714,7 @@
"maxLength": 4096
},
"keyVault": {
"$ref": "#/definitions/KeyVaultContractProperties",
"$ref": "#/definitions/KeyVaultContractCreateProperties",
"description": "KeyVault location details of the namedValue."
}
},
Expand Down Expand Up @@ -3794,7 +3806,7 @@
"maxLength": 4096
},
"keyVault": {
"$ref": "#/definitions/KeyVaultContractProperties",
"$ref": "#/definitions/KeyVaultContractCreateProperties",
"description": "KeyVault location details of the namedValue."
}
},
Expand Down

0 comments on commit 1626b41

Please sign in to comment.