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

The following fields are returned by SELECT queries:

Sync state result.

NameDatatypeDescription
propertiesobjectProperties returned Tenant Configuration Sync State check.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, serviceName, subscriptionId, configurationNameGets the status of the most recent synchronization between the configuration database and the Git repository.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
configurationNamestringThe identifier of the Git Configuration Operation.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serviceNamestringThe name of the API Management service.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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

SELECT
properties
FROM azure.api_management.tenant_configuration_sync_states
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serviceName = '{{ serviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND configurationName = '{{ configurationName }}' -- required
;