ArmContainerServiceModelFactory.ManagedClusterIngressProfile Method

Definition

Overloads

ManagedClusterIngressProfile(ManagedClusterIngressProfileWebAppRouting, Nullable<ManagedGatewayType>)

Source:
ArmContainerServiceModelFactory.cs
Source:
ArmContainerServiceModelFactory.cs

Initializes a new instance of ManagedClusterIngressProfile.

public static Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfile ManagedClusterIngressProfile(Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting webAppRouting = default, Azure.ResourceManager.ContainerService.Models.ManagedGatewayType? gatewayApiInstallation = default);
public static Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfile ManagedClusterIngressProfile(Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting webAppRouting, Azure.ResourceManager.ContainerService.Models.ManagedGatewayType? gatewayApiInstallation);
static member ManagedClusterIngressProfile : Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting * Nullable<Azure.ResourceManager.ContainerService.Models.ManagedGatewayType> -> Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfile
Public Shared Function ManagedClusterIngressProfile (Optional webAppRouting As ManagedClusterIngressProfileWebAppRouting = Nothing, Optional gatewayApiInstallation As Nullable(Of ManagedGatewayType) = Nothing) As ManagedClusterIngressProfile
Public Shared Function ManagedClusterIngressProfile (webAppRouting As ManagedClusterIngressProfileWebAppRouting, gatewayApiInstallation As Nullable(Of ManagedGatewayType)) As ManagedClusterIngressProfile

Parameters

webAppRouting
ManagedClusterIngressProfileWebAppRouting

Web App Routing settings for the ingress profile.

gatewayApiInstallation
Nullable<ManagedGatewayType>

The Gateway API installation mode.

Returns

A new ManagedClusterIngressProfile instance for mocking.

Applies to

ManagedClusterIngressProfile(ManagedClusterIngressProfileWebAppRouting, Nullable<ManagedGatewayType>, ManagedClusterIngressProfileApplicationLoadBalancer)

Source:
ArmContainerServiceModelFactory.cs
public static Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfile ManagedClusterIngressProfile(Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting webAppRouting = default, Azure.ResourceManager.ContainerService.Models.ManagedGatewayType? gatewayApiInstallation = default, Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileApplicationLoadBalancer applicationLoadBalancer = default);
static member ManagedClusterIngressProfile : Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileWebAppRouting * Nullable<Azure.ResourceManager.ContainerService.Models.ManagedGatewayType> * Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfileApplicationLoadBalancer -> Azure.ResourceManager.ContainerService.Models.ManagedClusterIngressProfile
Public Shared Function ManagedClusterIngressProfile (Optional webAppRouting As ManagedClusterIngressProfileWebAppRouting = Nothing, Optional gatewayApiInstallation As Nullable(Of ManagedGatewayType) = Nothing, Optional applicationLoadBalancer As ManagedClusterIngressProfileApplicationLoadBalancer = Nothing) As ManagedClusterIngressProfile

Parameters

webAppRouting
ManagedClusterIngressProfileWebAppRouting

App Routing settings for the ingress profile. You can find an overview and onboarding guide for this feature at https://learn.microsoft.com/en-us/azure/aks/app-routing?tabs=default%2Cdeploy-app-default.

gatewayApiInstallation
Nullable<ManagedGatewayType>

Configuration for the managed Gateway API installation. If not specified, the default is 'Disabled'. See https://aka.ms/k8s-gateway-api for more details.

applicationLoadBalancer
ManagedClusterIngressProfileApplicationLoadBalancer

Settings for the managed Application Load Balancer installation.

Returns

A new ManagedClusterIngressProfile instance for mocking.

Applies to