tenant_configuration_sync_states
Creates, updates, deletes, gets or lists a tenant_configuration_sync_states
resource.
Overview
Name | tenant_configuration_sync_states |
Type | Resource |
Id | azure.api_management.tenant_configuration_sync_states |
Fields
The following fields are returned by SELECT
queries:
- get
Sync state result.
Name | Datatype | Description |
---|---|---|
properties | object | Properties returned Tenant Configuration Sync State check. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , serviceName , subscriptionId , configurationName | Gets 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.
Name | Datatype | Description |
---|---|---|
configurationName | string | The identifier of the Git Configuration Operation. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
serviceName | string | The name of the API Management service. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
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
;