config_template_versions
Creates, updates, deletes, gets or lists a config_template_versions resource.
Overview
| Name | config_template_versions |
| Type | Resource |
| Id | azure.workload_orchestration.config_template_versions |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_config_template
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
configurations | string | Configuration values. Required. |
eTag | string | If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields. |
provisioningState | string | Provisioning state of resource. Known values are: "Succeeded", "Failed", "Canceled", "Initialized", "InProgress", and "Deleting". (Succeeded, Failed, Canceled, Initialized, InProgress, Deleting) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
configurations | string | Configuration values. Required. |
eTag | string | If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields. |
provisioningState | string | Provisioning state of resource. Known values are: "Succeeded", "Failed", "Canceled", "Initialized", "InProgress", and "Deleting". (Succeeded, Failed, Canceled, Initialized, InProgress, Deleting) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, config_template_name, config_template_version_name, subscription_id | Get a Config Template Version Resource. | |
list_by_config_template | select | resource_group_name, config_template_name, subscription_id | List Config Template Version Resources. |
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 |
|---|---|---|
config_template_name | string | The name of the ConfigTemplate. Required. |
config_template_version_name | string | The name of the ConfigTemplateVersion. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_config_template
Get a Config Template Version Resource.
SELECT
id,
name,
configurations,
eTag,
provisioningState,
systemData,
type
FROM azure.workload_orchestration.config_template_versions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND config_template_name = '{{ config_template_name }}' -- required
AND config_template_version_name = '{{ config_template_version_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List Config Template Version Resources.
SELECT
id,
name,
configurations,
eTag,
provisioningState,
systemData,
type
FROM azure.workload_orchestration.config_template_versions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND config_template_name = '{{ config_template_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;