Udostępnij za pośrednictwem


AppResourceProperties Constructors

Definition

Overloads

AppResourceProperties()

Initializes a new instance of the AppResourceProperties class.

AppResourceProperties(Nullable<Boolean>, String, String, String, String, Nullable<Boolean>, Nullable<DateTime>, TemporaryDisk, PersistentDisk)

Initializes a new instance of the AppResourceProperties class.

AppResourceProperties()

Initializes a new instance of the AppResourceProperties class.

public AppResourceProperties ();
Public Sub New ()

Applies to

AppResourceProperties(Nullable<Boolean>, String, String, String, String, Nullable<Boolean>, Nullable<DateTime>, TemporaryDisk, PersistentDisk)

Initializes a new instance of the AppResourceProperties class.

public AppResourceProperties (bool? publicProperty = default, string url = default, string provisioningState = default, string activeDeploymentName = default, string fqdn = default, bool? httpsOnly = default, DateTime? createdTime = default, Microsoft.Azure.Management.AppPlatform.Models.TemporaryDisk temporaryDisk = default, Microsoft.Azure.Management.AppPlatform.Models.PersistentDisk persistentDisk = default);
new Microsoft.Azure.Management.AppPlatform.Models.AppResourceProperties : Nullable<bool> * string * string * string * string * Nullable<bool> * Nullable<DateTime> * Microsoft.Azure.Management.AppPlatform.Models.TemporaryDisk * Microsoft.Azure.Management.AppPlatform.Models.PersistentDisk -> Microsoft.Azure.Management.AppPlatform.Models.AppResourceProperties
Public Sub New (Optional publicProperty As Nullable(Of Boolean) = Nothing, Optional url As String = Nothing, Optional provisioningState As String = Nothing, Optional activeDeploymentName As String = Nothing, Optional fqdn As String = Nothing, Optional httpsOnly As Nullable(Of Boolean) = Nothing, Optional createdTime As Nullable(Of DateTime) = Nothing, Optional temporaryDisk As TemporaryDisk = Nothing, Optional persistentDisk As PersistentDisk = Nothing)

Parameters

publicProperty
Nullable<Boolean>

Indicates whether the App exposes public endpoint

url
String

URL of the App

provisioningState
String

Provisioning state of the App. Possible values include: 'Succeeded', 'Failed', 'Creating', 'Updating'

activeDeploymentName
String

Name of the active deployment of the App

fqdn
String

Fully qualified dns Name.

httpsOnly
Nullable<Boolean>

Indicate if only https is allowed.

createdTime
Nullable<DateTime>

Date time when the resource is created

temporaryDisk
TemporaryDisk

Temporary disk settings

persistentDisk
PersistentDisk

Persistent disk settings

Applies to