Skip to main content

server_parameters_update_configurations

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

Overview

Nameserver_parameters_update_configurations
TypeResource
Idazure.maria_db.server_parameters_update_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectThe properties of a configuration.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, serverNameUpdate a list of configurations in a given server.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serverNamestringThe name of the server.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Update a list of configurations in a given server.

SELECT
properties
FROM azure.maria_db.server_parameters_update_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serverName = '{{ serverName }}' -- required
;