IPAddressAvailabilityResult

Response for CheckIPAddressAvailability API service call.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
available boolean Private IP address availability.
availableIPAddresses array Contains other available private IP addresses if the asked for address is taken.
View JSON Schema on GitHub

JSON Schema

azure-networking-services-ip-address-availability-result-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-ip-address-availability-result-schema.json",
  "title": "IPAddressAvailabilityResult",
  "description": "Response for CheckIPAddressAvailability API service call.",
  "properties": {
    "available": {
      "description": "Private IP address availability.",
      "type": "boolean"
    },
    "availableIPAddresses": {
      "description": "Contains other available private IP addresses if the asked for address is taken.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}