Azure Networking Services · Schema
ServiceAssociationLinkPropertiesFormat
Properties of ServiceAssociationLink.
AzureCloudInfrastructureMicrosoftNetworking
Properties
| Name | Type | Description |
|---|---|---|
| allowDelete | boolean | If true, the resource can be deleted. |
| link | string | Link to the external resource. |
| linkedResourceType | string | Resource type of the linked resource. |
| locations | array | A list of locations. |
| provisioningState | string | The current provisioning state. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-networking-services/refs/heads/main/json-schema/azure-networking-services-service-association-link-properties-format-schema.json",
"title": "ServiceAssociationLinkPropertiesFormat",
"description": "Properties of ServiceAssociationLink.",
"properties": {
"allowDelete": {
"description": "If true, the resource can be deleted.",
"type": "boolean"
},
"link": {
"description": "Link to the external resource.",
"type": "string"
},
"linkedResourceType": {
"description": "Resource type of the linked resource.",
"type": "string"
},
"locations": {
"description": "A list of locations.",
"items": {
"type": "string"
},
"type": "array"
},
"provisioningState": {
"description": "The current provisioning state.",
"enum": [
"Succeeded",
"Updating",
"Deleting",
"Failed"
],
"readOnly": true,
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "ProvisioningState"
}
}
},
"type": "object"
}