Skip to main content

project_catalogs_sync_error_details

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

Overview

Nameproject_catalogs_sync_error_details
TypeResource
Idazure.dev_center.project_catalogs_sync_error_details

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
conflictsarrayCatalog items that have conflicting names.
errorsarrayErrors that occured during synchronization.
operationErrorobjectError information for the overall synchronization operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, projectName, catalogNameGets 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.

NameDatatypeDescription
catalogNamestringThe name of the Catalog.
projectNamestringThe name of the project.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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
;