ManagedClusterIngressProfileWebAppRouting Constructors

Definition

Overloads

Name Description
ManagedClusterIngressProfileWebAppRouting()

Initializes a new instance of the ManagedClusterIngressProfileWebAppRouting class.

ManagedClusterIngressProfileWebAppRouting(Nullable<Boolean>, IList<String>, ManagedClusterIngressProfileNginx, UserAssignedIdentity)

Initializes a new instance of the ManagedClusterIngressProfileWebAppRouting class.

ManagedClusterIngressProfileWebAppRouting()

Initializes a new instance of the ManagedClusterIngressProfileWebAppRouting class.

public ManagedClusterIngressProfileWebAppRouting();
Public Sub New ()

Applies to

ManagedClusterIngressProfileWebAppRouting(Nullable<Boolean>, IList<String>, ManagedClusterIngressProfileNginx, UserAssignedIdentity)

Initializes a new instance of the ManagedClusterIngressProfileWebAppRouting class.

public ManagedClusterIngressProfileWebAppRouting(bool? enabled = default, System.Collections.Generic.IList<string> dnsZoneResourceIds = default, Microsoft.Azure.Management.ContainerService.Models.ManagedClusterIngressProfileNginx nginx = default, Microsoft.Azure.Management.ContainerService.Models.UserAssignedIdentity identity = default);
new Microsoft.Azure.Management.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting : Nullable<bool> * System.Collections.Generic.IList<string> * Microsoft.Azure.Management.ContainerService.Models.ManagedClusterIngressProfileNginx * Microsoft.Azure.Management.ContainerService.Models.UserAssignedIdentity -> Microsoft.Azure.Management.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional dnsZoneResourceIds As IList(Of String) = Nothing, Optional nginx As ManagedClusterIngressProfileNginx = Nothing, Optional identity As UserAssignedIdentity = Nothing)

Parameters

enabled
Nullable<Boolean>

Whether to enable the Application Routing add-on.

dnsZoneResourceIds
IList<String>

Resource IDs of the DNS zones to be associated with the Application Routing add-on. Used only when Application Routing add-on is enabled. Public and private DNS zones can be in different resource groups, but all public DNS zones must be in the same resource group and all private DNS zones must be in the same resource group.

identity
UserAssignedIdentity

Managed identity of the Application Routing add-on. This is the identity that should be granted permissions, for example, to manage the associated Azure DNS resource and get certificates from Azure Key Vault. See this overview of the add-on for more instructions.

Applies to