Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.postgresql.operations

Fields

NameDatatypeDescription
namestringThe name of the operation being performed on this particular object.
displayobjectDisplay metadata associated with the operation.
isDataActionbooleanIndicates whether the operation is a data action
originstringThe intended executor of the operation.
propertiesobjectAdditional descriptions for the operation.

Methods

NameAccessible byRequired ParamsDescription
listSELECTLists all of the available REST API operations.
check_migration_name_availabilityEXECresourceGroupName, subscriptionId, targetDbServerName, data__name, data__typeThis method checks whether a proposed migration name is valid and available.
check_name_availability_executeEXECsubscriptionIdCheck the availability of name for resource
check_name_availability_with_location_executeEXEClocationName, subscriptionIdCheck 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
;