Trigger Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Percentage of lifetime at which to trigger. Value should be between 1 and 99.
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
Azure SDK for .NET