configurations_on_nodes
Creates, updates, deletes, gets or lists a configurations_on_nodes
resource.
Overview
Name | configurations_on_nodes |
Type | Resource |
Id | azure.postgresql_hsc.configurations_on_nodes |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
update | replace | subscriptionId , resourceGroupName , clusterName , configurationName | Updates configuration of worker nodes in a cluster |
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 |
---|---|---|
clusterName | string | The name of the cluster. |
configurationName | string | The name of the cluster configuration. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
REPLACE
examples
- update
Updates configuration of worker nodes in a cluster
REPLACE azure.postgresql_hsc.configurations_on_nodes
SET
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND clusterName = '{{ clusterName }}' --required
AND configurationName = '{{ configurationName }}' --required
RETURNING
properties;