Interface ContainerAzureClusterNetworking
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ContainerAzureClusterNetworking.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:19.179Z") @Stability(Stable) public interface ContainerAzureClusterNetworking extends software.amazon.jsii.JsiiSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classContainerAzureClusterNetworking.BuilderA builder forContainerAzureClusterNetworkingstatic classContainerAzureClusterNetworking.Jsii$ProxyAn implementation forContainerAzureClusterNetworking
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static ContainerAzureClusterNetworking.Builderbuilder()List<String>getPodAddressCidrBlocks()The IP address range of the pods in this cluster, in CIDR notation (e.g.List<String>getServiceAddressCidrBlocks()The IP address range for services in this cluster, in CIDR notation (e.g.StringgetVirtualNetworkId()The Azure Resource Manager (ARM) ID of the VNet associated with your cluster.
-
-
-
Method Detail
-
getPodAddressCidrBlocks
@Stability(Stable) @NotNull List<String> getPodAddressCidrBlocks()
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.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/container_azure_cluster#pod_address_cidr_blocks ContainerAzureCluster#pod_address_cidr_blocks}
-
getServiceAddressCidrBlocks
@Stability(Stable) @NotNull List<String> getServiceAddressCidrBlocks()
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.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/container_azure_cluster#service_address_cidr_blocks ContainerAzureCluster#service_address_cidr_blocks}
-
getVirtualNetworkId
@Stability(Stable) @NotNull String getVirtualNetworkId()
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. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/container_azure_cluster#virtual_network_id ContainerAzureCluster#virtual_network_id} Note: The above comment contained a comment block ending sequence (* followed by /). We have introduced a space between to prevent syntax errors. Please ignore the space.
-
builder
@Stability(Stable) static ContainerAzureClusterNetworking.Builder builder()
-
-