Skip to main content

configuration_group_values

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

Overview

Nameconfiguration_group_values
TypeResource
Idazure.hybrid_network.configuration_group_values

Fields

NameDatatypeDescription
configurationGroupValueNametextfield from the properties object
configuration_group_schema_nametextfield from the properties object
configuration_group_schema_offering_locationtextfield from the properties object
configuration_group_schema_resource_referencetextfield from the properties object
configuration_typetextfield from the properties object
locationtextThe geo-location where the resource lives
provisioning_statetextfield from the properties object
publisher_nametextfield from the properties object
publisher_scopetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigurationGroupValueName, resourceGroupName, subscriptionIdGets information about the specified hybrid configuration group values.
list_by_resource_groupSELECTresourceGroupName, subscriptionIdLists all the hybrid network configurationGroupValues in a resource group.
list_by_subscriptionSELECTsubscriptionIdLists all sites in the configuration group value in a subscription.
create_or_updateINSERTconfigurationGroupValueName, resourceGroupName, subscriptionIdCreates or updates a hybrid configuration group value.
deleteDELETEconfigurationGroupValueName, resourceGroupName, subscriptionIdDeletes the specified hybrid configuration group value.
update_tagsEXECconfigurationGroupValueName, resourceGroupName, subscriptionIdUpdates a hybrid configuration group tags.

SELECT examples

Lists all sites in the configuration group value in a subscription.

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 }}';

INSERT example

Use the following StackQL query and manifest file to create a new configuration_group_values resource.

/*+ create */
INSERT INTO azure.hybrid_network.configuration_group_values (
configurationGroupValueName,
resourceGroupName,
subscriptionId,
properties,
tags,
location
)
SELECT
'{{ configurationGroupValueName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;

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 }}';