Skip to main content

adc_catalogst_by_resource_groups

Creates, updates, deletes, gets or lists an adc_catalogst_by_resource_groups resource.

Overview

Nameadc_catalogst_by_resource_groups
TypeResource
Idazure.data_catalog.adc_catalogst_by_resource_groups

Fields

The following fields are returned by SELECT queries:

HTTP 200 (OK) if the operation was successful.

NameDatatypeDescription
idstringResource Id
namestringResource name
etagstringResource etag
locationstringResource location
propertiesobjectAzure Data Catalog properties.
tagsobjectResource tags
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupNameThe List catalogs in Resource Group operation lists all the Azure Data Catalogs available under the given resource group.

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
resourceGroupNamestringThe name of the resource group within the user's subscription. The name is case insensitive.
subscriptionIdstringGets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

The List catalogs in Resource Group operation lists all the Azure Data Catalogs available under the given resource group.

SELECT
id,
name,
etag,
location,
properties,
tags,
type
FROM azure.data_catalog.adc_catalogst_by_resource_groups
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;