network_experiment_profiles
Creates, updates, deletes, gets or lists a network_experiment_profiles
resource.
Overview
Name | network_experiment_profiles |
Type | Resource |
Id | azure.front_door.network_experiment_profiles |
Fields
- vw_network_experiment_profiles
- network_experiment_profiles
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Resource name. |
enabled_state | text | field from the properties object |
etag | text | Gets a unique read-only string that changes whenever the resource is updated. |
location | text | Resource location. |
profileName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | Gets a unique read-only string that changes whenever the resource is updated. |
location | string | Resource location. |
properties | object | Defines the properties of an experiment |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | profileName, resourceGroupName, subscriptionId | |
list | SELECT | subscriptionId | |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | |
create_or_update | INSERT | profileName, resourceGroupName, subscriptionId | |
delete | DELETE | profileName, resourceGroupName, subscriptionId | |
update | UPDATE | profileName, resourceGroupName, subscriptionId | Updates an NetworkExperimentProfiles |
SELECT
examples
- vw_network_experiment_profiles
- network_experiment_profiles
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 }}';
SELECT
id,
name,
etag,
location,
properties,
tags,
type
FROM azure.front_door.network_experiment_profiles
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new network_experiment_profiles
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.front_door.network_experiment_profiles (
profileName,
resourceGroupName,
subscriptionId,
properties,
etag,
location,
tags
)
SELECT
'{{ profileName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ etag }}',
'{{ location }}',
'{{ tags }}'
;
- name: your_resource_model_name
props:
- name: name
value: string
- name: properties
value:
- name: resourceState
value: []
- name: enabledState
value: string
- name: etag
value: string
- name: id
value: string
- name: type
value: string
- name: location
value: string
- name: tags
value: object
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 }}';