IWithAttach<ParentT> Interface

Definition

The final stage of a network profile definition. At this stage, any remaining optional settings can be specified, or the container service agent pool can be attached to the parent container service definition.

public interface 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>
type IWithAttach<'ParentT> = interface
    interface IWithNetworkPolicy<'ParentT>
    interface IWithPodCidr<'ParentT>
    interface IWithServiceCidr<'ParentT>
    interface IWithDnsServiceIP<'ParentT>
    interface IWithDockerBridgeCidr<'ParentT>
    interface IInDefinition<'ParentT>
Public Interface IWithAttach(Of ParentT)
Implements IInDefinition(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.

Derived
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>)
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