ServiceEndpointPropertiesFormat

The service endpoint properties.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
locations array A list of locations.
provisioningState string The current provisioning state.
service string The type of the endpoint service.
View JSON Schema on GitHub

JSON Schema

azure-networking-services-service-endpoint-properties-format-schema.json Raw ↑
{
  "$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-endpoint-properties-format-schema.json",
  "title": "ServiceEndpointPropertiesFormat",
  "description": "The service endpoint properties.",
  "properties": {
    "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"
      }
    },
    "service": {
      "description": "The type of the endpoint service.",
      "type": "string"
    }
  },
  "type": "object"
}