Share via


Configuration Constructors

Definition

Overloads

Configuration()

Initializes a new instance of the Configuration class.

Configuration(IList<Secret>, String, Ingress, IList<RegistryCredentials>)

Initializes a new instance of the Configuration class.

Configuration()

Initializes a new instance of the Configuration class.

public Configuration ();
Public Sub New ()

Applies to

Configuration(IList<Secret>, String, Ingress, IList<RegistryCredentials>)

Initializes a new instance of the Configuration class.

public Configuration (System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.Secret> secrets = default, string activeRevisionsMode = default, Microsoft.Azure.Management.WebSites.Models.Ingress ingress = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.RegistryCredentials> registries = default);
new Microsoft.Azure.Management.WebSites.Models.Configuration : System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.Secret> * string * Microsoft.Azure.Management.WebSites.Models.Ingress * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.RegistryCredentials> -> Microsoft.Azure.Management.WebSites.Models.Configuration
Public Sub New (Optional secrets As IList(Of Secret) = Nothing, Optional activeRevisionsMode As String = Nothing, Optional ingress As Ingress = Nothing, Optional registries As IList(Of RegistryCredentials) = Nothing)

Parameters

secrets
IList<Secret>

Collection of secrets used by a Container app

activeRevisionsMode
String

ActiveRevisionsMode controls how active revisions are handled for the Container app: <list><item>Multiple: multiple revisions can be active. If no value if provided, this is the default</item><item>Single: Only one revision can be active at a time. Revision weights can not be used in this mode</item></list>. Possible values include: 'multiple', 'single'

ingress
Ingress

Ingress configurations.

registries
IList<RegistryCredentials>

Collection of private container registry credentials for containers used by the Container app

Applies to