Action Constructors

Definition

Overloads

Action()

Initializes a new instance of the Action class.

Action(Nullable<ActionType>)

Initializes a new instance of the Action class.

Action()

Source:
Action.cs

Initializes a new instance of the Action class.

public Action ();
Public Sub New ()

Applies to

Action(Nullable<ActionType>)

Source:
Action.cs

Initializes a new instance of the Action class.

public Action (Microsoft.Azure.KeyVault.Models.ActionType? actionType = default);
new Microsoft.Azure.KeyVault.Models.Action : Nullable<Microsoft.Azure.KeyVault.Models.ActionType> -> Microsoft.Azure.KeyVault.Models.Action
Public Sub New (Optional actionType As Nullable(Of ActionType) = Nothing)

Parameters

actionType
Nullable<ActionType>

The type of the action. Possible values include: 'EmailContacts', 'AutoRenew'

Applies to