adc_catalogst_by_resource_groups
Creates, updates, deletes, gets or lists an adc_catalogst_by_resource_groups
resource.
Overview
Name | adc_catalogst_by_resource_groups |
Type | Resource |
Id | azure.data_catalog.adc_catalogst_by_resource_groups |
Fields
The following fields are returned by SELECT
queries:
- list
HTTP 200 (OK) if the operation was successful.
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
etag | string | Resource etag |
location | string | Resource location |
properties | object | Azure Data Catalog properties. |
tags | object | Resource tags |
type | string | Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName | The 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group within the user's subscription. The name is case insensitive. |
subscriptionId | string | Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
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
;