Skip to main content

tenant_configuration_sync_states

Creates, updates, deletes, gets or lists a tenant_configuration_sync_states resource.

Overview

Nametenant_configuration_sync_states
TypeResource
Idazure.api_management.tenant_configuration_sync_states

Fields

NameDatatypeDescription
branchtextfield from the properties object
commit_idtextfield from the properties object
configurationNametextfield from the properties object
configuration_change_datetextfield from the properties object
is_exporttextfield from the properties object
is_git_enabledtextfield from the properties object
is_syncedtextfield from the properties object
last_operation_idtextfield from the properties object
resourceGroupNametextfield from the properties object
serviceNametextfield from the properties object
subscriptionIdtextfield from the properties object
sync_datetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigurationName, resourceGroupName, serviceName, subscriptionIdGets the status of the most recent synchronization between the configuration database and the Git repository.

SELECT examples

Gets the status of the most recent synchronization between the configuration database and the Git repository.

SELECT
branch,
commit_id,
configurationName,
configuration_change_date,
is_export,
is_git_enabled,
is_synced,
last_operation_id,
resourceGroupName,
serviceName,
subscriptionId,
sync_date
FROM azure.api_management.vw_tenant_configuration_sync_states
WHERE configurationName = '{{ configurationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';