configurations
Creates, updates, deletes, gets or lists a configurations resource.
Overview
| Name | configurations |
| Type | Resource |
| Id | azure_extras.rdbms.configurations |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_server
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long |
name | string | The name of the resource. |
allowedValues | string | Allowed values of the configuration. |
dataType | string | Data type of the configuration. |
defaultValue | string | Default value of the configuration. |
description | string | Description of the configuration. |
source | string | Source of the configuration. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
value | string | Value of the configuration. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long |
name | string | The name of the resource. |
allowedValues | string | Allowed values of the configuration. |
dataType | string | Data type of the configuration. |
defaultValue | string | Default value of the configuration. |
description | string | Description of the configuration. |
source | string | Source of the configuration. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
value | string | Value of the configuration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, server_name, configuration_name, subscription_id | Gets information about a configuration of server. | |
list_by_server | select | resource_group_name, server_name, subscription_id | List all the configurations in a given server. | |
create_or_update | insert | resource_group_name, server_name, configuration_name, subscription_id | Updates a configuration of a server. | |
create_or_update | replace | resource_group_name, server_name, configuration_name, subscription_id | Updates a configuration of a 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.
| Name | Datatype | Description |
|---|---|---|
configuration_name | string | The name of the server configuration. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
server_name | string | The name of the server. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_server
Gets information about a configuration of server.
SELECT
id,
name,
allowedValues,
dataType,
defaultValue,
description,
source,
type,
value
FROM azure_extras.rdbms.configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND server_name = '{{ server_name }}' -- required
AND configuration_name = '{{ configuration_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List all the configurations in a given server.
SELECT
id,
name,
allowedValues,
dataType,
defaultValue,
description,
source,
type,
value
FROM azure_extras.rdbms.configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND server_name = '{{ server_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Updates a configuration of a server.
INSERT INTO azure_extras.rdbms.configurations (
properties,
resource_group_name,
server_name,
configuration_name,
subscription_id
)
SELECT
'{{ properties }}',
'{{ resource_group_name }}',
'{{ server_name }}',
'{{ configuration_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
properties,
type
;
# Description fields are for documentation purposes
- name: configurations
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the configurations resource.
- name: server_name
value: "{{ server_name }}"
description: Required parameter for the configurations resource.
- name: configuration_name
value: "{{ configuration_name }}"
description: Required parameter for the configurations resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the configurations resource.
- name: properties
value:
value: "{{ value }}"
source: "{{ source }}"
REPLACE examples
- create_or_update
Updates a configuration of a server.
REPLACE azure_extras.rdbms.configurations
SET
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND server_name = '{{ server_name }}' --required
AND configuration_name = '{{ configuration_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
type;