project_catalogs_sync_error_details
Creates, updates, deletes, gets or lists a project_catalogs_sync_error_details resource.
Overview
| Name | project_catalogs_sync_error_details |
| Type | Resource |
| Id | azure.dev_center.project_catalogs_sync_error_details |
Fields
The following fields are returned by SELECT queries:
- get
OK. The request has succeeded.
| Name | Datatype | Description |
|---|---|---|
conflicts | array | Catalog items that have conflicting names. |
errors | array | Errors that occured during synchronization. |
operationError | object | Error information for the overall synchronization operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, projectName, catalogName | Gets project catalog synchronization error details |
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 |
|---|---|---|
catalogName | string | The name of the Catalog. |
projectName | string | The name of the project. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- get
Gets project catalog synchronization error details
SELECT
conflicts,
errors,
operationError
FROM azure.dev_center.project_catalogs_sync_error_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND projectName = '{{ projectName }}' -- required
AND catalogName = '{{ catalogName }}' -- required
;