INetworkProfileDefinition<ParentT> Interface

Definition

The Kubernetes cluster network profile definition. The entirety of a Kubernetes cluster network profile definition as a part of a parent definition.

public interface INetworkProfileDefinition<ParentT> : Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IBlank<ParentT>, Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IWithAttach<ParentT>, Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IWithDnsServiceIP<ParentT>, Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IWithDockerBridgeCidr<ParentT>, Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IWithNetworkPolicy<ParentT>, Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IWithPodCidr<ParentT>, Microsoft.Azure.Management.ContainerService.Fluent.KubernetesCluster.Definition.IWithServiceCidr<ParentT>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.ChildResource.Definition.IInDefinition<ParentT>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.IBeta
type INetworkProfileDefinition<'ParentT> = interface
    interface IBlank<'ParentT>
    interface IBeta
    interface IWithAttach<'ParentT>
    interface IWithNetworkPolicy<'ParentT>
    interface IWithPodCidr<'ParentT>
    interface IWithServiceCidr<'ParentT>
    interface IWithDnsServiceIP<'ParentT>
    interface IWithDockerBridgeCidr<'ParentT>
    interface IInDefinition<'ParentT>
Public Interface INetworkProfileDefinition(Of ParentT)
Implements IBeta, IBlank(Of ParentT), IInDefinition(Of ParentT), IWithAttach(Of ParentT), IWithDnsServiceIP(Of ParentT), IWithDockerBridgeCidr(Of ParentT), IWithNetworkPolicy(Of ParentT), IWithPodCidr(Of ParentT), IWithServiceCidr(Of ParentT)

Type Parameters

ParentT

The stage of the container service definition to return to after attaching this definition.

Implements

Methods

Attach() (Inherited from IInDefinition<ParentT>)
WithDnsServiceIP(String)

Specifies an IP address assigned to the Kubernetes DNS service; it must be within the Kubernetes service address range specified in the service CIDR.

(Inherited from IWithDnsServiceIP<ParentT>)
WithDockerBridgeCidr(String)

Specifies a CIDR notation IP range assigned to the Docker bridge network; it must not overlap with any subnet IP ranges or the Kubernetes service address range.

(Inherited from IWithDockerBridgeCidr<ParentT>)
WithNetworkPlugin(NetworkPlugin)

Specifies the network plugin type to be used for building the Kubernetes network.

(Inherited from IBlank<ParentT>)
WithNetworkPolicy(NetworkPolicy)

Specifies the network policy to be used for building the Kubernetes network.

(Inherited from IWithNetworkPolicy<ParentT>)
WithPodCidr(String)

Specifies a CIDR notation IP range from which to assign pod IPs when kubenet is used.

(Inherited from IWithPodCidr<ParentT>)
WithServiceCidr(String)

Specifies a CIDR notation IP range from which to assign service cluster IPs; must not overlap with any subnet IP ranges.

(Inherited from IWithServiceCidr<ParentT>)

Applies to