Delen via


Trigger Constructors

Definition

Overloads

Trigger()

Initializes a new instance of the Trigger class.

Trigger(Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the Trigger class.

Trigger()

Source:
Trigger.cs

Initializes a new instance of the Trigger class.

public Trigger ();
Public Sub New ()

Applies to

Trigger(Nullable<Int32>, Nullable<Int32>)

Source:
Trigger.cs

Initializes a new instance of the Trigger class.

public Trigger (int? lifetimePercentage = default, int? daysBeforeExpiry = default);
new Microsoft.Azure.KeyVault.Models.Trigger : Nullable<int> * Nullable<int> -> Microsoft.Azure.KeyVault.Models.Trigger
Public Sub New (Optional lifetimePercentage As Nullable(Of Integer) = Nothing, Optional daysBeforeExpiry As Nullable(Of Integer) = Nothing)

Parameters

lifetimePercentage
Nullable<Int32>

Percentage of lifetime at which to trigger. Value should be between 1 and 99.

daysBeforeExpiry
Nullable<Int32>

Days before expiry to attempt renewal. Value should be between 1 and validity_in_months multiplied by 27. If validity_in_months is 36, then value should be between 1 and 972 (36 * 27).

Applies to