Microsoft.Network NetworkExperimentProfiles 2019-11-01
Bicep resource definition
The NetworkExperimentProfiles resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/NetworkExperimentProfiles resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Network/NetworkExperimentProfiles@2019-11-01' = {
etag: 'string'
location: 'string'
name: 'string'
properties: {
enabledState: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property values
Microsoft.Network/NetworkExperimentProfiles
Name | Description | Value |
---|---|---|
etag | Gets a unique read-only string that changes whenever the resource is updated. | string |
location | Resource location. | string |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9_\-\(\)\.]*[^\.]$ (required) |
properties | The properties of a Profile | ProfileProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ProfileProperties
Name | Description | Value |
---|---|---|
enabledState | The state of the Experiment | 'Disabled' 'Enabled' |
ResourceTags
Name | Description | Value |
---|
ARM template resource definition
The NetworkExperimentProfiles resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/NetworkExperimentProfiles resource, add the following JSON to your template.
{
"type": "Microsoft.Network/NetworkExperimentProfiles",
"apiVersion": "2019-11-01",
"name": "string",
"etag": "string",
"location": "string",
"properties": {
"enabledState": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.Network/NetworkExperimentProfiles
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2019-11-01' |
etag | Gets a unique read-only string that changes whenever the resource is updated. | string |
location | Resource location. | string |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9_\-\(\)\.]*[^\.]$ (required) |
properties | The properties of a Profile | ProfileProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Network/NetworkExperimentProfiles' |
ProfileProperties
Name | Description | Value |
---|---|---|
enabledState | The state of the Experiment | 'Disabled' 'Enabled' |
ResourceTags
Name | Description | Value |
---|
Terraform (AzAPI provider) resource definition
The NetworkExperimentProfiles resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Network/NetworkExperimentProfiles resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/NetworkExperimentProfiles@2019-11-01"
name = "string"
etag = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
enabledState = "string"
}
})
}
Property values
Microsoft.Network/NetworkExperimentProfiles
Name | Description | Value |
---|---|---|
etag | Gets a unique read-only string that changes whenever the resource is updated. | string |
location | Resource location. | string |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9_\-\(\)\.]*[^\.]$ (required) |
properties | The properties of a Profile | ProfileProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Network/NetworkExperimentProfiles@2019-11-01" |
ProfileProperties
Name | Description | Value |
---|---|---|
enabledState | The state of the Experiment | 'Disabled' 'Enabled' |
ResourceTags
Name | Description | Value |
---|