Share via


Microsoft.Peering peeringServices 2020-10-01

Bicep resource definition

The peeringServices resource type can be deployed with operations that target:

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@2020-10-01' = {
  location: 'string'
  name: 'string'
  properties: {
    peeringServiceLocation: 'string'
    peeringServiceProvider: 'string'
  }
  sku: {
    name: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.Peering/peeringServices

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

PeeringServiceProperties

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

PeeringServiceSku

Name Description Value
name The name of the peering service SKU. string

PeeringServiceTags

Name Description Value

ARM template resource definition

The peeringServices resource type can be deployed with operations that target:

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": "2020-10-01",
  "name": "string",
  "location": "string",
  "properties": {
    "peeringServiceLocation": "string",
    "peeringServiceProvider": "string"
  },
  "sku": {
    "name": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.Peering/peeringServices

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

PeeringServiceProperties

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

PeeringServiceSku

Name Description Value
name The name of the peering service SKU. string

PeeringServiceTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Peering/peeringServices@2020-10-01"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      peeringServiceLocation = "string"
      peeringServiceProvider = "string"
    }
    sku = {
      name = "string"
    }
  }
}

Property Values

Microsoft.Peering/peeringServices

Name Description Value
location The location of the resource. string (required)
name The resource name string (required)
properties The properties that define a peering service. PeeringServiceProperties
sku The SKU that defines the type of the peering service. PeeringServiceSku
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Peering/peeringServices@2020-10-01"

PeeringServiceProperties

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

PeeringServiceSku

Name Description Value
name The name of the peering service SKU. string

PeeringServiceTags

Name Description Value