LeaseContainerRequest Constructors

Definition

Overloads

LeaseContainerRequest()

Initializes a new instance of the LeaseContainerRequest class.

LeaseContainerRequest(Action1, String, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the LeaseContainerRequest class.

LeaseContainerRequest()

Initializes a new instance of the LeaseContainerRequest class.

public LeaseContainerRequest ();
Public Sub New ()

Applies to

LeaseContainerRequest(Action1, String, Nullable<Int32>, Nullable<Int32>, String)

Initializes a new instance of the LeaseContainerRequest class.

public LeaseContainerRequest (Microsoft.Azure.Management.Storage.Fluent.Models.Action1 action, string leaseId = default, int? breakPeriod = default, int? leaseDuration = default, string proposedLeaseId = default);
new Microsoft.Azure.Management.Storage.Fluent.Models.LeaseContainerRequest : Microsoft.Azure.Management.Storage.Fluent.Models.Action1 * string * Nullable<int> * Nullable<int> * string -> Microsoft.Azure.Management.Storage.Fluent.Models.LeaseContainerRequest
Public Sub New (action As Action1, Optional leaseId As String = Nothing, Optional breakPeriod As Nullable(Of Integer) = Nothing, Optional leaseDuration As Nullable(Of Integer) = Nothing, Optional proposedLeaseId As String = Nothing)

Parameters

action
Action1

Specifies the lease action. Can be one of the available actions. Possible values include: 'Acquire', 'Renew', 'Change', 'Release', 'Break'

leaseId
String

Identifies the lease. Can be specified in any valid GUID string format.

breakPeriod
Nullable<Int32>

Optional. For a break action, proposed duration the lease should continue before it is broken, in seconds, between 0 and 60.

leaseDuration
Nullable<Int32>

Required for acquire. Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never expires.

proposedLeaseId
String

Optional for acquire, required for change. Proposed lease ID, in a GUID string format.

Applies to