Microsoft.Network NetworkExperimentProfiles 2019-11-01

Bicep resource definition

The NetworkExperimentProfiles resource type can be deployed to:

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' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  etag: 'string'
  properties: {
    enabledState: 'string'
  }
}

Property values

NetworkExperimentProfiles

Name Description Value
name The resource name string (required)
location Resource location. string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
etag Gets a unique read-only string that changes whenever the resource is updated. string
properties The properties of a Profile ProfileProperties

ProfileProperties

Name Description Value
enabledState The state of the Experiment 'Disabled'
'Enabled'

ARM template resource definition

The NetworkExperimentProfiles resource type can be deployed to:

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",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "etag": "string",
  "properties": {
    "enabledState": "string"
  }
}

Property values

NetworkExperimentProfiles

Name Description Value
type The resource type 'Microsoft.Network/NetworkExperimentProfiles'
apiVersion The resource api version '2019-11-01'
name The resource name string (required)
location Resource location. string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
etag Gets a unique read-only string that changes whenever the resource is updated. string
properties The properties of a Profile ProfileProperties

ProfileProperties

Name Description Value
enabledState The state of the Experiment 'Disabled'
'Enabled'

Terraform (AzAPI provider) resource definition

The NetworkExperimentProfiles resource type can be deployed to:

  • 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"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      enabledState = "string"
    }
    etag = "string"
  })
}

Property values

NetworkExperimentProfiles

Name Description Value
type The resource type "Microsoft.Network/NetworkExperimentProfiles@2019-11-01"
name The resource name string (required)
location Resource location. string
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags Resource tags. Dictionary of tag names and values.
etag Gets a unique read-only string that changes whenever the resource is updated. string
properties The properties of a Profile ProfileProperties

ProfileProperties

Name Description Value
enabledState The state of the Experiment "Disabled"
"Enabled"