You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schemas/2022-01-01-preview/Microsoft.ServiceLinker.json
+86-2Lines changed: 86 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,48 @@
172
172
],
173
173
"description": "The service properties when target service type is ConfluentSchemaRegistry"
174
174
},
175
+
"KeyVaultSecretReferenceSecretInfo": {
176
+
"type": "object",
177
+
"properties": {
178
+
"name": {
179
+
"type": "string",
180
+
"description": "Name of the Key Vault secret."
181
+
},
182
+
"secretType": {
183
+
"type": "string",
184
+
"enum": [
185
+
"keyVaultSecretReference"
186
+
]
187
+
},
188
+
"version": {
189
+
"type": "string",
190
+
"description": "Version of the Key Vault secret."
191
+
}
192
+
},
193
+
"required": [
194
+
"secretType"
195
+
],
196
+
"description": "The secret info when type is keyVaultSecretReference. It's for scenario that user provides a secret stored in user's keyvault and source is Azure Kubernetes. The key Vault's resource id is linked to secretStore.keyVaultId."
197
+
},
198
+
"KeyVaultSecretUriSecretInfo": {
199
+
"type": "object",
200
+
"properties": {
201
+
"secretType": {
202
+
"type": "string",
203
+
"enum": [
204
+
"keyVaultSecretUri"
205
+
]
206
+
},
207
+
"value": {
208
+
"type": "string",
209
+
"description": "URI to the keyvault secret"
210
+
}
211
+
},
212
+
"required": [
213
+
"secretType"
214
+
],
215
+
"description": "The secret info when type is keyVaultSecretUri. It's for scenario that user provides a secret stored in user's keyvault and source is Web App, Spring Cloud or Container App."
216
+
},
175
217
"LinkerProperties": {
176
218
"type": "object",
177
219
"properties": {
@@ -263,15 +305,38 @@
263
305
"description": "Username or account name for secret auth."
264
306
},
265
307
"secret": {
266
-
"type": "string",
267
-
"description": "Password or account key for secret auth."
0 commit comments