Skip to main content

catalogs

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

Overview

Namecatalogs
TypeResource
Idazure.developer_devcenter.catalogs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the catalog. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_catalogselectproject_name, catalog_name, endpointGets the specified catalog within the project.
list_catalogsselectproject_name, endpointLists all of the catalogs available for a project.

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
catalog_namestringName of the catalog. Required.
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )
project_namestringName of the project. Required.

SELECT examples

Gets the specified catalog within the project.

SELECT
name
FROM azure.developer_devcenter.catalogs
WHERE project_name = '{{ project_name }}' -- required
AND catalog_name = '{{ catalog_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;