AccessInformationSecretsContract Constructors

Definition

Overloads

AccessInformationSecretsContract()

Initializes a new instance of the AccessInformationSecretsContract class.

AccessInformationSecretsContract(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the AccessInformationSecretsContract class.

AccessInformationSecretsContract()

Initializes a new instance of the AccessInformationSecretsContract class.

public AccessInformationSecretsContract ();
Public Sub New ()

Applies to

AccessInformationSecretsContract(String, String, String, String, Nullable<Boolean>)

Initializes a new instance of the AccessInformationSecretsContract class.

public AccessInformationSecretsContract (string id = default, string principalId = default, string primaryKey = default, string secondaryKey = default, bool? enabled = default);
new Microsoft.Azure.Management.ApiManagement.Models.AccessInformationSecretsContract : string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.ApiManagement.Models.AccessInformationSecretsContract
Public Sub New (Optional id As String = Nothing, Optional principalId As String = Nothing, Optional primaryKey As String = Nothing, Optional secondaryKey As String = Nothing, Optional enabled As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Access Information type ('access' or 'gitAccess')

principalId
String

Principal (User) Identifier.

primaryKey
String

Primary access key. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.

secondaryKey
String

Secondary access key. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.

enabled
Nullable<Boolean>

Determines whether direct access is enabled.

Applies to