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
- vw_tenant_configuration_sync_states
- tenant_configuration_sync_states
Name | Datatype | Description |
---|---|---|
branch | text | field from the properties object |
commit_id | text | field from the properties object |
configurationName | text | field from the properties object |
configuration_change_date | text | field from the properties object |
is_export | text | field from the properties object |
is_git_enabled | text | field from the properties object |
is_synced | text | field from the properties object |
last_operation_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
serviceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
sync_date | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Tenant Configuration Synchronization State. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configurationName, resourceGroupName, serviceName, subscriptionId | Gets 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.
- vw_tenant_configuration_sync_states
- tenant_configuration_sync_states
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 }}';
SELECT
properties
FROM azure.api_management.tenant_configuration_sync_states
WHERE configurationName = '{{ configurationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';