operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.maria_db.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation being performed on this particular object. |
display | object | The localized display information for this particular operation or action. |
origin | string | The intended executor of the operation. |
properties | object | Additional descriptions for the operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists all of the available REST API operations. | ||
check_name_availability_execute | exec | subscriptionId , name | Check the availability of name for resource | |
reset_query_performance_insight_data | exec | subscriptionId , resourceGroupName , serverName | Reset data for Query Performance Insight. |
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 |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
serverName | string | The name of the server. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Lists all of the available REST API operations.
SELECT
name,
display,
origin,
properties
FROM azure.maria_db.operations
;
Lifecycle Methods
- check_name_availability_execute
- reset_query_performance_insight_data
Check the availability of name for resource
EXEC azure.maria_db.operations.check_name_availability_execute
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;
Reset data for Query Performance Insight.
EXEC azure.maria_db.operations.reset_query_performance_insight_data
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@serverName='{{ serverName }}' --required
;