configurations
Creates, updates, deletes, gets or lists a configurations
resource.
Overview
Name | configurations |
Type | Resource |
Id | azure.postgresql_hsc.configurations |
Fields
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a configuration. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, configurationName, resourceGroupName, subscriptionId | Gets information of a configuration for coordinator and nodes. |
list_by_cluster | SELECT | clusterName, resourceGroupName, subscriptionId | List all the configurations of a cluster. |
list_by_server | SELECT | clusterName, resourceGroupName, serverName, subscriptionId | List all the configurations of a server in cluster. |
SELECT
examples
List all the configurations of a cluster.
SELECT
properties
FROM azure.postgresql_hsc.configurations
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';