PersistentDisk Constructors

Definition

Overloads

PersistentDisk()

Initializes a new instance of the PersistentDisk class.

PersistentDisk(Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the PersistentDisk class.

PersistentDisk()

Initializes a new instance of the PersistentDisk class.

public PersistentDisk ();
Public Sub New ()

Applies to

PersistentDisk(Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the PersistentDisk class.

public PersistentDisk (int? sizeInGB = default, int? usedInGB = default, string mountPath = default);
new Microsoft.Azure.Management.AppPlatform.Models.PersistentDisk : Nullable<int> * Nullable<int> * string -> Microsoft.Azure.Management.AppPlatform.Models.PersistentDisk
Public Sub New (Optional sizeInGB As Nullable(Of Integer) = Nothing, Optional usedInGB As Nullable(Of Integer) = Nothing, Optional mountPath As String = Nothing)

Parameters

sizeInGB
Nullable<Int32>

Size of the persistent disk in GB

usedInGB
Nullable<Int32>

Size of the used persistent disk in GB

mountPath
String

Mount path of the persistent disk

Applies to