All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.container.kotlin.outputs.AzureClusterNetworking.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.container.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property podAddressCidrBlocks The IP address range of the pods in this cluster, in CIDR notation (e.g. `10.96.0.0/14`). All pods in the cluster get assigned a unique RFC1918 IPv4 address from these ranges. Only a single range is supported. This field cannot be changed after creation.
 * @property serviceAddressCidrBlocks The IP address range for services in this cluster, in CIDR notation (e.g. `10.96.0.0/14`). All services in the cluster get assigned a unique RFC1918 IPv4 address from these ranges. Only a single range is supported. This field cannot be changed after creating a cluster.
 * @property virtualNetworkId The Azure Resource Manager (ARM) ID of the VNet associated with your cluster. All components in the cluster (i.e. control plane and node pools) run on a single VNet. Example: `/subscriptions/*/resourceGroups/*/providers/Microsoft.Network/virtualNetworks/*` This field cannot be changed after creation.
 * - - -
 * */*/*/
 */
public data class AzureClusterNetworking(
    public val podAddressCidrBlocks: List,
    public val serviceAddressCidrBlocks: List,
    public val virtualNetworkId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.AzureClusterNetworking): AzureClusterNetworking = AzureClusterNetworking(
            podAddressCidrBlocks = javaType.podAddressCidrBlocks().map({ args0 -> args0 }),
            serviceAddressCidrBlocks = javaType.serviceAddressCidrBlocks().map({ args0 -> args0 }),
            virtualNetworkId = javaType.virtualNetworkId(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy