ManagedClusterAPIServerAccessProfile Constructors

Definition

Overloads

Name Description
ManagedClusterAPIServerAccessProfile()

Initializes a new instance of the ManagedClusterAPIServerAccessProfile class.

ManagedClusterAPIServerAccessProfile(IList<String>, Nullable<Boolean>, String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ManagedClusterAPIServerAccessProfile class.

ManagedClusterAPIServerAccessProfile(IList<String>, Nullable<Boolean>, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, String)

Initializes a new instance of the ManagedClusterAPIServerAccessProfile class.

ManagedClusterAPIServerAccessProfile()

Initializes a new instance of the ManagedClusterAPIServerAccessProfile class.

public ManagedClusterAPIServerAccessProfile();
Public Sub New ()

Applies to

ManagedClusterAPIServerAccessProfile(IList<String>, Nullable<Boolean>, String, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the ManagedClusterAPIServerAccessProfile class.

public ManagedClusterAPIServerAccessProfile(System.Collections.Generic.IList<string> authorizedIPRanges = default, bool? enablePrivateCluster = default, string privateDnsZone = default, bool? enablePrivateClusterPublicFqdn = default, bool? disableRunCommand = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAPIServerAccessProfile : System.Collections.Generic.IList<string> * Nullable<bool> * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAPIServerAccessProfile
Public Sub New (Optional authorizedIPRanges As IList(Of String) = Nothing, Optional enablePrivateCluster As Nullable(Of Boolean) = Nothing, Optional privateDnsZone As String = Nothing, Optional enablePrivateClusterPublicFqdn As Nullable(Of Boolean) = Nothing, Optional disableRunCommand As Nullable(Of Boolean) = Nothing)

Parameters

authorizedIPRanges
IList<String>

IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with clusters that use Public IP Per Node, or clusters that are using a Basic Load Balancer. For more information see API server authorized IP ranges.

enablePrivateCluster
Nullable<Boolean>

For more details, see Creating a private AKS cluster.

privateDnsZone
String

The default is System. For more details see configure private DNS zone. Allowed values are 'system' and 'none'.

enablePrivateClusterPublicFqdn
Nullable<Boolean>

Whether to create additional public FQDN for private cluster or not.

disableRunCommand
Nullable<Boolean>

Whether to disable run command for the cluster or not.

Applies to

ManagedClusterAPIServerAccessProfile(IList<String>, Nullable<Boolean>, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, String)

Initializes a new instance of the ManagedClusterAPIServerAccessProfile class.

public ManagedClusterAPIServerAccessProfile(System.Collections.Generic.IList<string> authorizedIPRanges = default, bool? enablePrivateCluster = default, string privateDnsZone = default, bool? enablePrivateClusterPublicFqdn = default, bool? disableRunCommand = default, bool? enableVnetIntegration = default, string subnetId = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAPIServerAccessProfile : System.Collections.Generic.IList<string> * Nullable<bool> * string * Nullable<bool> * Nullable<bool> * Nullable<bool> * string -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterAPIServerAccessProfile
Public Sub New (Optional authorizedIPRanges As IList(Of String) = Nothing, Optional enablePrivateCluster As Nullable(Of Boolean) = Nothing, Optional privateDnsZone As String = Nothing, Optional enablePrivateClusterPublicFqdn As Nullable(Of Boolean) = Nothing, Optional disableRunCommand As Nullable(Of Boolean) = Nothing, Optional enableVnetIntegration As Nullable(Of Boolean) = Nothing, Optional subnetId As String = Nothing)

Parameters

authorizedIPRanges
IList<String>

The IP ranges authorized to access the Kubernetes API server. IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with clusters that use Public IP Per Node, or clusters that are using a Basic Load Balancer. For more information see API server authorized IP ranges.

enablePrivateCluster
Nullable<Boolean>

Whether to create the cluster as a private cluster or not. For more details, see Creating a private AKS cluster.

privateDnsZone
String

The private DNS zone mode for the cluster. The default is System. For more details see configure private DNS zone. Allowed values are 'system' and 'none'.

enablePrivateClusterPublicFqdn
Nullable<Boolean>

Whether to create additional public FQDN for private cluster or not.

disableRunCommand
Nullable<Boolean>

Whether to disable run command for the cluster or not.

enableVnetIntegration
Nullable<Boolean>

Whether to enable apiserver vnet integration for the cluster or not. See aka.ms/AksVnetIntegration for more details.

subnetId
String

The subnet to be used when apiserver vnet integration is enabled. It is required when creating a new cluster with BYO Vnet, or when updating an existing cluster to enable apiserver vnet integration.

Applies to