Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SqlLocationDetails

import type { SqlLocationDetails } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";

Location and networking details for configuring SQL server workload

interface SqlLocationDetails {
dnsZone?: string;
gcpProjectId?: string;
internetAccess?: "INTERNET_ACCESS_UNSPECIFIED" | "ALLOW_EXTERNAL_IP" | "CONFIGURE_NAT";
network?: string;
primaryZone?: string;
region?: string;
secondaryZone?: string;
subnetwork?: string;
tertiaryZone?: string;
}

§Properties

§
dnsZone?: string
[src]

Optional. create a new DNS Zone when the field is empty, Only show for Using an existing DNS List of existing DNS Zones tf variable name: existing_dns_zone_name

§
gcpProjectId?: string
[src]

Required. the project that infrastructure deployed, currently only supports the same project where the deployment resource exists.

§
internetAccess?: "INTERNET_ACCESS_UNSPECIFIED" | "ALLOW_EXTERNAL_IP" | "CONFIGURE_NAT"
[src]

Required. Internet Access

§
network?: string
[src]

Required. network name

§
primaryZone?: string
[src]

Required. primary zone

§
region?: string
[src]

Required. region name

§
secondaryZone?: string
[src]

Optional. secondary zone can't be same as primary_zone and is only for High Availability deployment mode

§
subnetwork?: string
[src]

Required. subnetwork name

§
tertiaryZone?: string
[src]

Optional. teriary zone can't be same as primary_zone and secondary zone, and it is only for High Availability deployment mode