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

PrivateClusterConfig

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

Configuration options for the private GKE cluster in a Cloud Composer environment.

interface PrivateClusterConfig {
enablePrivateEndpoint?: boolean;
masterIpv4CidrBlock?: string;
readonly masterIpv4ReservedRange?: string;
}

§Properties

§
enablePrivateEndpoint?: boolean
[src]

Optional. If true, access to the public endpoint of the GKE cluster is denied.

§
masterIpv4CidrBlock?: string
[src]

Optional. The CIDR block from which IPv4 range for GKE master will be reserved. If left blank, the default value of '172.16.0.0/23' is used.

§
readonly masterIpv4ReservedRange?: string
[src]

Output only. The IP range in CIDR notation to use for the hosted master network. This range is used for assigning internal IP addresses to the GKE cluster master or set of masters and to the internal load balancer virtual IP. This range must not overlap with any other ranges in use within the cluster's network.