NetworkConfigurationResponse

data class NetworkConfigurationResponse(val attachedNetworkConfiguration: AttachedNetworkConfigurationResponse? = null, val bgpServiceLoadBalancerConfiguration: BgpServiceLoadBalancerConfigurationResponse? = null, val cloudServicesNetworkId: String, val cniNetworkId: String, val dnsServiceIp: String? = null, val l2ServiceLoadBalancerConfiguration: L2ServiceLoadBalancerConfigurationResponse? = null, val podCidrs: List<String>? = null, val serviceCidrs: List<String>? = null)

Constructors

Link copied to clipboard
constructor(attachedNetworkConfiguration: AttachedNetworkConfigurationResponse? = null, bgpServiceLoadBalancerConfiguration: BgpServiceLoadBalancerConfigurationResponse? = null, cloudServicesNetworkId: String, cniNetworkId: String, dnsServiceIp: String? = null, l2ServiceLoadBalancerConfiguration: L2ServiceLoadBalancerConfigurationResponse? = null, podCidrs: List<String>? = null, serviceCidrs: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The configuration of networks being attached to the cluster for use by the workloads that run on this Kubernetes cluster.

Link copied to clipboard

The configuration of the BGP service load balancer for this Kubernetes cluster. A maximum of one service load balancer may be specified, either Layer 2 or BGP.

Link copied to clipboard

The resource ID of the associated Cloud Services network.

Link copied to clipboard

The resource ID of the Layer 3 network that is used for creation of the Container Networking Interface network.

Link copied to clipboard
val dnsServiceIp: String? = null

The IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in service CIDR.

Link copied to clipboard

The configuration of the Layer 2 service load balancer for this Kubernetes cluster. A maximum of one service load balancer may be specified, either Layer 2 or BGP.

Link copied to clipboard
val podCidrs: List<String>? = null

The CIDR notation IP ranges from which to assign pod IPs. One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for dual-stack networking.

Link copied to clipboard
val serviceCidrs: List<String>? = null

The CIDR notation IP ranges from which to assign service IPs. One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for each IP family (IPv4/IPv6), is expected for dual-stack networking.