Microsoft.Peering peeringServices 2019-08-01-preview

Bicep resource definition

The peeringServices 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.Peering/peeringServices resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Peering/peeringServices@2019-08-01-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    peeringServiceLocation: 'string'
    peeringServiceProvider: 'string'
  }
}

Property values

peeringServices

Name Description Value
name The resource name string (required)
location The location of the resource. string (required)
tags The resource tags. Dictionary of tag names and values. See Tags in templates
properties The properties that define a peering service. PeeringServiceProperties

PeeringServiceProperties

Name Description Value
peeringServiceLocation The PeeringServiceLocation of the Customer. string
peeringServiceProvider The MAPS Provider Name. string

ARM template resource definition

The peeringServices 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.Peering/peeringServices resource, add the following JSON to your template.

{
  "type": "Microsoft.Peering/peeringServices",
  "apiVersion": "2019-08-01-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "peeringServiceLocation": "string",
    "peeringServiceProvider": "string"
  }
}

Property values

peeringServices

Name Description Value
type The resource type 'Microsoft.Peering/peeringServices'
apiVersion The resource api version '2019-08-01-preview'
name The resource name string (required)
location The location of the resource. string (required)
tags The resource tags. Dictionary of tag names and values. See Tags in templates
properties The properties that define a peering service. PeeringServiceProperties

PeeringServiceProperties

Name Description Value
peeringServiceLocation The PeeringServiceLocation of the Customer. string
peeringServiceProvider The MAPS Provider Name. string

Terraform (AzAPI provider) resource definition

The peeringServices 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.Peering/peeringServices resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Peering/peeringServices@2019-08-01-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      peeringServiceLocation = "string"
      peeringServiceProvider = "string"
    }
  })
}

Property values

peeringServices

Name Description Value
type The resource type "Microsoft.Peering/peeringServices@2019-08-01-preview"
name The resource name string (required)
location The location of the resource. string (required)
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags The resource tags. Dictionary of tag names and values.
properties The properties that define a peering service. PeeringServiceProperties

PeeringServiceProperties

Name Description Value
peeringServiceLocation The PeeringServiceLocation of the Customer. string
peeringServiceProvider The MAPS Provider Name. string