Aracılığıyla paylaş


TenantConfigurationSyncStateContract Constructors

Definition

Overloads

TenantConfigurationSyncStateContract()

Initializes a new instance of the TenantConfigurationSyncStateContract class.

TenantConfigurationSyncStateContract(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the TenantConfigurationSyncStateContract class.

TenantConfigurationSyncStateContract()

Initializes a new instance of the TenantConfigurationSyncStateContract class.

public TenantConfigurationSyncStateContract ();
Public Sub New ()

Applies to

TenantConfigurationSyncStateContract(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the TenantConfigurationSyncStateContract class.

public TenantConfigurationSyncStateContract (string id = default, string name = default, string type = default, string branch = default, string commitId = default, bool? isExport = default, bool? isSynced = default, bool? isGitEnabled = default, DateTime? syncDate = default, DateTime? configurationChangeDate = default, string lastOperationId = default);
new Microsoft.Azure.Management.ApiManagement.Models.TenantConfigurationSyncStateContract : string * string * string * string * string * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.Management.ApiManagement.Models.TenantConfigurationSyncStateContract
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional branch As String = Nothing, Optional commitId As String = Nothing, Optional isExport As Nullable(Of Boolean) = Nothing, Optional isSynced As Nullable(Of Boolean) = Nothing, Optional isGitEnabled As Nullable(Of Boolean) = Nothing, Optional syncDate As Nullable(Of DateTime) = Nothing, Optional configurationChangeDate As Nullable(Of DateTime) = Nothing, Optional lastOperationId As String = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

branch
String

The name of Git branch.

commitId
String

The latest commit Id.

isExport
Nullable<Boolean>

value indicating if last sync was save (true) or deploy (false) operation.

isSynced
Nullable<Boolean>

value indicating if last synchronization was later than the configuration change.

isGitEnabled
Nullable<Boolean>

value indicating whether Git configuration access is enabled.

syncDate
Nullable<DateTime>

The date of the latest synchronization. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

configurationChangeDate
Nullable<DateTime>

The date of the latest configuration change. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

lastOperationId
String

Most recent tenant configuration operation identifier

Applies to