Skip to main content

network_experiment_profiles

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

Overview

Namenetwork_experiment_profiles
TypeResource
Idazure.front_door.network_experiment_profiles

Fields

NameDatatypeDescription
idtextResource ID.
nametextResource name.
enabled_statetextfield from the properties object
etagtextGets a unique read-only string that changes whenever the resource is updated.
locationtextResource location.
profileNametextfield from the properties object
resourceGroupNametextfield from the properties object
resource_statetextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.
typetextResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTprofileName, resourceGroupName, subscriptionId
listSELECTsubscriptionId
list_by_resource_groupSELECTresourceGroupName, subscriptionId
create_or_updateINSERTprofileName, resourceGroupName, subscriptionId
deleteDELETEprofileName, resourceGroupName, subscriptionId
updateUPDATEprofileName, resourceGroupName, subscriptionIdUpdates an NetworkExperimentProfiles

SELECT examples

SELECT
id,
name,
enabled_state,
etag,
location,
profileName,
resourceGroupName,
resource_state,
subscriptionId,
tags,
type
FROM azure.front_door.vw_network_experiment_profiles
WHERE subscriptionId = '{{ subscriptionId }}';

INSERT example

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

/*+ create */
INSERT INTO azure.front_door.network_experiment_profiles (
profileName,
resourceGroupName,
subscriptionId,
properties,
etag,
location,
tags
)
SELECT
'{{ profileName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ etag }}',
'{{ location }}',
'{{ tags }}'
;

UPDATE example

Updates a network_experiment_profiles resource.

/*+ update */
UPDATE azure.front_door.network_experiment_profiles
SET
properties = '{{ properties }}',
tags = '{{ tags }}'
WHERE
profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified network_experiment_profiles resource.

/*+ delete */
DELETE FROM azure.front_door.network_experiment_profiles
WHERE profileName = '{{ profileName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';