Skip to main content

commitment_plans_plans_by_resource_groups

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

Overview

Namecommitment_plans_plans_by_resource_groups
TypeResource
Idazure.cognitive_services.commitment_plans_plans_by_resource_groups

Fields

The following fields are returned by SELECT queries:

Successfully retrieved commitment plan resources.

NameDatatypeDescription
etagstringResource Etag.
kindstringThe kind (type) of cognitive service account.
locationstringThe geo-location where the resource lives
propertiesobjectProperties of Cognitive Services account commitment plan.
skuobjectThe resource model definition representing SKU
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, subscriptionIdReturns all the resources of a particular type belonging to a 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. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Returns all the resources of a particular type belonging to a resource group

SELECT
etag,
kind,
location,
properties,
sku,
systemData,
tags
FROM azure.cognitive_services.commitment_plans_plans_by_resource_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;