Dela via


AuthInfoUpdateParameters Constructors

Definition

Overloads

AuthInfoUpdateParameters()

Initializes a new instance of the AuthInfoUpdateParameters class.

AuthInfoUpdateParameters(String, String, String, String, Nullable<Int32>)

Initializes a new instance of the AuthInfoUpdateParameters class.

AuthInfoUpdateParameters()

Initializes a new instance of the AuthInfoUpdateParameters class.

public AuthInfoUpdateParameters ();
Public Sub New ()

Applies to

AuthInfoUpdateParameters(String, String, String, String, Nullable<Int32>)

Initializes a new instance of the AuthInfoUpdateParameters class.

public AuthInfoUpdateParameters (string tokenType = default, string token = default, string refreshToken = default, string scope = default, int? expiresIn = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AuthInfoUpdateParameters : string * string * string * string * Nullable<int> -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AuthInfoUpdateParameters
Public Sub New (Optional tokenType As String = Nothing, Optional token As String = Nothing, Optional refreshToken As String = Nothing, Optional scope As String = Nothing, Optional expiresIn As Nullable(Of Integer) = Nothing)

Parameters

tokenType
String

The type of Auth token. Possible values include: 'PAT', 'OAuth'

token
String

The access token used to access the source control provider.

refreshToken
String

The refresh token used to refresh the access token.

scope
String

The scope of the access token.

expiresIn
Nullable<Int32>

Time in seconds that the token remains valid

Applies to