Share via


ContainerAppsConfiguration Constructors

Definition

Overloads

ContainerAppsConfiguration()

Initializes a new instance of the ContainerAppsConfiguration class.

ContainerAppsConfiguration(String, String, String, String, String, String)

Initializes a new instance of the ContainerAppsConfiguration class.

ContainerAppsConfiguration()

Initializes a new instance of the ContainerAppsConfiguration class.

public ContainerAppsConfiguration ();
Public Sub New ()

Applies to

ContainerAppsConfiguration(String, String, String, String, String, String)

Initializes a new instance of the ContainerAppsConfiguration class.

public ContainerAppsConfiguration (string daprAIInstrumentationKey = default, string platformReservedCidr = default, string platformReservedDnsIP = default, string controlPlaneSubnetResourceId = default, string appSubnetResourceId = default, string dockerBridgeCidr = default);
new Microsoft.Azure.Management.WebSites.Models.ContainerAppsConfiguration : string * string * string * string * string * string -> Microsoft.Azure.Management.WebSites.Models.ContainerAppsConfiguration
Public Sub New (Optional daprAIInstrumentationKey As String = Nothing, Optional platformReservedCidr As String = Nothing, Optional platformReservedDnsIP As String = Nothing, Optional controlPlaneSubnetResourceId As String = Nothing, Optional appSubnetResourceId As String = Nothing, Optional dockerBridgeCidr As String = Nothing)

Parameters

daprAIInstrumentationKey
String

Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry

platformReservedCidr
String

IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges.

platformReservedDnsIP
String

An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server

controlPlaneSubnetResourceId
String

Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.

appSubnetResourceId
String

Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined.

dockerBridgeCidr
String

CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the IP range defined in platformReservedCidr, if defined.

Applies to