Share via


AccessPolicyEntry Constructors

Definition

Overloads

AccessPolicyEntry()

Initializes a new instance of the AccessPolicyEntry class.

AccessPolicyEntry(Guid, String, Permissions, Nullable<Guid>)

Initializes a new instance of the AccessPolicyEntry class.

AccessPolicyEntry()

Initializes a new instance of the AccessPolicyEntry class.

public AccessPolicyEntry ();
Public Sub New ()

Applies to

AccessPolicyEntry(Guid, String, Permissions, Nullable<Guid>)

Initializes a new instance of the AccessPolicyEntry class.

public AccessPolicyEntry (Guid tenantId, string objectId, Microsoft.Azure.Management.KeyVault.Fluent.Models.Permissions permissions, Guid? applicationId = default);
new Microsoft.Azure.Management.KeyVault.Fluent.Models.AccessPolicyEntry : Guid * string * Microsoft.Azure.Management.KeyVault.Fluent.Models.Permissions * Nullable<Guid> -> Microsoft.Azure.Management.KeyVault.Fluent.Models.AccessPolicyEntry
Public Sub New (tenantId As Guid, objectId As String, permissions As Permissions, Optional applicationId As Nullable(Of Guid) = Nothing)

Parameters

tenantId
Guid

The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.

objectId
String

The object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies.

permissions
Permissions

Permissions the identity has for keys, secrets and certificates.

applicationId
Nullable<Guid>

Application ID of the client making request on behalf of a principal

Applies to