Microsoft.Network networkManagerConnections 2022-02-01-preview

Bicep resource definition

The networkManagerConnections resource type is an extension resource, which means you can apply it to another resource.

Use the scope property on this resource to set the scope for this resource. See Set scope on extension resources in Bicep.

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

resource symbolicname 'Microsoft.Network/networkManagerConnections@2022-02-01-preview' = {
  name: 'string'
  scope: resourceSymbolicName
  properties: {
    description: 'string'
    networkManagerId: 'string'
  }
}

Property values

networkManagerConnections

Name Description Value
name The resource name string (required)
scope Use when creating an extension resource at a scope that is different than the deployment scope. Target resource

For Bicep, set this property to the symbolic name of the resource to apply the extension resource.
properties The scope connection properties NetworkManagerConnectionProperties

NetworkManagerConnectionProperties

Name Description Value
description A description of the scope connection. string
networkManagerId Network Manager Id. string

ARM template resource definition

The networkManagerConnections resource type is an extension resource, which means you can apply it to another resource.

Use the scope property on this resource to set the scope for this resource. See Set scope on extension resources in ARM templates.

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

{
  "type": "Microsoft.Network/networkManagerConnections",
  "apiVersion": "2022-02-01-preview",
  "name": "string",
  "scope": "string",
  "properties": {
    "description": "string",
    "networkManagerId": "string"
  }
}

Property values

networkManagerConnections

Name Description Value
type The resource type 'Microsoft.Network/networkManagerConnections'
apiVersion The resource api version '2022-02-01-preview'
name The resource name string (required)
scope Use when creating an extension resource at a scope that is different than the deployment scope. Target resource

For JSON, set the value to the full name of the resource to apply the extension resource to.
properties The scope connection properties NetworkManagerConnectionProperties

NetworkManagerConnectionProperties

Name Description Value
description A description of the scope connection. string
networkManagerId Network Manager Id. string

Terraform (AzAPI provider) resource definition

The networkManagerConnections resource type is an extension resource, which means you can apply it to another resource.

Use the parent_id property on this resource to set the scope for this resource.

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

  • Management groups
  • Subscriptions

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Network/networkManagerConnections resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/networkManagerConnections@2022-02-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      description = "string"
      networkManagerId = "string"
    }
  })
}

Property values

networkManagerConnections

Name Description Value
type The resource type "Microsoft.Network/networkManagerConnections@2022-02-01-preview"
name The resource name string (required)
parent_id The ID of the resource to apply this extension resource to. string (required)
properties The scope connection properties NetworkManagerConnectionProperties

NetworkManagerConnectionProperties

Name Description Value
description A description of the scope connection. string
networkManagerId Network Manager Id. string