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

Connector

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

Definition of a Serverless VPC Access connector.

interface Connector {
readonly connectedProjects?: string[];
ipCidrRange?: string;
machineType?: string;
maxInstances?: number;
maxThroughput?: number;
minInstances?: number;
minThroughput?: number;
name?: string;
network?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "READY"
| "CREATING"
| "DELETING"
| "ERROR"
| "UPDATING";
subnet?: Subnet;
}

§Properties

§
readonly connectedProjects?: string[]
[src]

Output only. List of projects using the connector.

§
ipCidrRange?: string
[src]

The range of internal addresses that follows RFC 4632 notation. Example: 10.132.0.0/28.

§
machineType?: string
[src]

Machine type of VM Instance underlying connector. Default is e2-micro

§
maxInstances?: number
[src]

Maximum value of instances in autoscaling group underlying the connector.

§
maxThroughput?: number
[src]

Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an e2-micro machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by --min-throughput. If both max-throughput and max-instances are provided, max-instances takes precedence over max-throughput. The use of max-throughput is discouraged in favor of max-instances.

§
minInstances?: number
[src]

Minimum value of instances in autoscaling group underlying the connector.

§
minThroughput?: number
[src]

Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an e2-micro machine type. Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by --max-throughput. If both min-throughput and min-instances are provided, min-instances takes precedence over min-throughput. The use of min-throughput is discouraged in favor of min-instances.

§
name?: string
[src]

The resource name in the format projects/*\/locations/*\/connectors/*.

§
network?: string
[src]

Name of a VPC network.

§
readonly state?: "STATE_UNSPECIFIED" | "READY" | "CREATING" | "DELETING" | "ERROR" | "UPDATING"
[src]

Output only. State of the VPC access connector.

§
subnet?: Subnet
[src]

The subnet in which to house the VPC Access Connector.