Skip to main content

data_products_catalogs

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

Overview

Namedata_products_catalogs
TypeResource
Idazure.network_analytics.data_products_catalogs

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_resource_groupselectsubscriptionId, resourceGroupNameList data catalog by resource group.
getselectsubscriptionId, resourceGroupNameRetrieve data type resource.
list_by_subscriptionselectsubscriptionIdList data catalog by subscription.

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. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

List data catalog by resource group.

SELECT
properties
FROM azure.network_analytics.data_products_catalogs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;