Skip to main content

location_based_capability_sets

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

Overview

Namelocation_based_capability_sets
TypeResource
Idazure.mysql.location_based_capability_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectThe properties of a location capability set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationName, capabilitySetNameGet capabilities at specified location in a given subscription.
listselectsubscriptionId, locationNameGet capabilities at specified location in a given 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
capabilitySetNamestringName of capability set
locationNamestringThe name of the location.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get capabilities at specified location in a given subscription.

SELECT
properties
FROM azure.mysql.location_based_capability_sets
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND capabilitySetName = '{{ capabilitySetName }}' -- required
;