operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.postgresql.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation being performed on this particular object. |
display | object | Display metadata associated with the operation. |
isDataAction | boolean | Indicates whether the operation is a data action |
origin | string | The intended executor of the operation. |
properties | object | Additional descriptions for the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists all of the available REST API operations. |
check_migration_name_availability | EXEC | resourceGroupName, subscriptionId, targetDbServerName, data__name, data__type | This method checks whether a proposed migration name is valid and available. |
check_name_availability_execute | EXEC | subscriptionId | Check the availability of name for resource |
check_name_availability_with_location_execute | EXEC | locationName, subscriptionId | Check the availability of name for resource |
SELECT
examples
Lists all of the available REST API operations.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.postgresql.operations
;