Skip to main content

data_products_catalogs

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

Overview

Namedata_products_catalogs
TypeResource
Idazure_extras.network_analytics.data_products_catalogs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
provisioningStatestringThe data catalog provisioning state. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", and "Accepted".
publishersarrayThe data product publisher information. Required.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, subscription_idRetrieve data type resource.
list_by_subscriptionselectsubscription_idList data catalog by subscription.
list_by_resource_groupexecresource_group_name, subscription_idList data catalog by 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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Retrieve data type resource.

SELECT
id,
name,
provisioningState,
publishers,
systemData,
type
FROM azure_extras.network_analytics.data_products_catalogs
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

Lifecycle Methods

List data catalog by resource group.

EXEC azure_extras.network_analytics.data_products_catalogs.list_by_resource_group 
@resource_group_name='{{ resource_group_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;