Skip to content
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
53 changes: 53 additions & 0 deletions schemas/2021-11-01-preview/Microsoft.ServiceLinker.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,31 @@
],
"description": "The application client type."
},
"secretStore": {
"oneOf": [
{
"$ref": "#/definitions/SecretStore"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "An option to store secret value in secure place"
},
"targetId": {
"type": "string",
"description": "The resource Id of target service."
},
"vNetSolution": {
"oneOf": [
{
"$ref": "#/definitions/VNetSolution"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The VNet solution for linker"
}
},
"description": "The properties of the linker."
Expand Down Expand Up @@ -135,6 +157,16 @@
],
"description": "The authentication info when authType is secret"
},
"SecretStore": {
"type": "object",
"properties": {
"keyVaultId": {
"type": "string",
"description": "The key vault id to store secret"
}
},
"description": "An option to store secret value in secure place"
},
"ServicePrincipalCertificateAuthInfo": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -234,6 +266,27 @@
"subscriptionId"
],
"description": "The authentication info when authType is userAssignedIdentity"
},
"VNetSolution": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"serviceEndpoint",
"privateLink"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Type of VNet solution."
}
},
"description": "The VNet solution for linker"
}
}
}