configuration_group_values
Creates, updates, deletes, gets or lists a configuration_group_values
resource.
Overview
Name | configuration_group_values |
Type | Resource |
Id | azure.hybrid_network.configuration_group_values |
Fields
- vw_configuration_group_values
- configuration_group_values
Name | Datatype | Description |
---|---|---|
configurationGroupValueName | text | field from the properties object |
configuration_group_schema_name | text | field from the properties object |
configuration_group_schema_offering_location | text | field from the properties object |
configuration_group_schema_resource_reference | text | field from the properties object |
configuration_type | text | field from the properties object |
location | text | The geo-location where the resource lives |
provisioning_state | text | field from the properties object |
publisher_name | text | field from the properties object |
publisher_scope | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | Hybrid configuration group value properties. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configurationGroupValueName, resourceGroupName, subscriptionId | Gets information about the specified hybrid configuration group values. |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Lists all the hybrid network configurationGroupValues in a resource group. |
list_by_subscription | SELECT | subscriptionId | Lists all sites in the configuration group value in a subscription. |
create_or_update | INSERT | configurationGroupValueName, resourceGroupName, subscriptionId | Creates or updates a hybrid configuration group value. |
delete | DELETE | configurationGroupValueName, resourceGroupName, subscriptionId | Deletes the specified hybrid configuration group value. |
update_tags | EXEC | configurationGroupValueName, resourceGroupName, subscriptionId | Updates a hybrid configuration group tags. |
SELECT
examples
Lists all sites in the configuration group value in a subscription.
- vw_configuration_group_values
- configuration_group_values
SELECT
configurationGroupValueName,
configuration_group_schema_name,
configuration_group_schema_offering_location,
configuration_group_schema_resource_reference,
configuration_type,
location,
provisioning_state,
publisher_name,
publisher_scope,
resourceGroupName,
subscriptionId,
tags
FROM azure.hybrid_network.vw_configuration_group_values
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure.hybrid_network.configuration_group_values
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new configuration_group_values
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.hybrid_network.configuration_group_values (
configurationGroupValueName,
resourceGroupName,
subscriptionId,
properties,
tags,
location
)
SELECT
'{{ configurationGroupValueName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: provisioningState
value: []
- name: publisherName
value: string
- name: publisherScope
value: []
- name: configurationGroupSchemaName
value: string
- name: configurationGroupSchemaOfferingLocation
value: string
- name: configurationGroupSchemaResourceReference
value:
- name: idType
value: []
- name: configurationType
value: []
- name: tags
value: object
- name: location
value: string
DELETE
example
Deletes the specified configuration_group_values
resource.
/*+ delete */
DELETE FROM azure.hybrid_network.configuration_group_values
WHERE configurationGroupValueName = '{{ configurationGroupValueName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';