{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateNetworkRequest", "title": "CreateNetworkRequest", "x-speakeasy-entity": "CloudGatewayNetwork", "description": "Request schema for creating a network.", "type": "object", "properties": { "name": { "$ref": "#/components/schemas/NetworkName" }, "cloud_gateway_provider_account_id": { "$ref": "#/components/schemas/ProviderAccountId" }, "region": { "$ref": "#/components/schemas/ProviderRegionId" }, "availability_zones": { "$ref": "#/components/schemas/NetworkAvailabilityZones" }, "cidr_block": { "$ref": "#/components/schemas/NetworkCIDRBlock" }, "state": { "$ref": "#/components/schemas/NetworkCreateState" } }, "additionalProperties": false, "required": [ "name", "cloud_gateway_provider_account_id", "region", "availability_zones", "cidr_block" ] }