location_based_capability_sets
Creates, updates, deletes, gets or lists a location_based_capability_sets resource.
Overview
| Name | location_based_capability_sets |
| Type | Resource |
| Id | azure.mysql.location_based_capability_sets |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
properties | object | The properties of a location capability set. |
| Name | Datatype | Description |
|---|---|---|
properties | object | The properties of a location capability set. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, locationName, capabilitySetName | Get capabilities at specified location in a given subscription. | |
list | select | subscriptionId, locationName | Get 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.
| Name | Datatype | Description |
|---|---|---|
capabilitySetName | string | Name of capability set |
locationName | string | The name of the location. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
- list
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
;
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
;