Microsoft.Authorization resourceManagementPrivateLinks 2020-05-01

Bicep resource definition

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

resource symbolicname 'Microsoft.Authorization/resourceManagementPrivateLinks@2020-05-01' = {
  location: 'string'
  name: 'string'
}

Property values

Name Description Value
location the region to create private link association. string
name The resource name string (required)

ARM template resource definition

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

{
  "type": "Microsoft.Authorization/resourceManagementPrivateLinks",
  "apiVersion": "2020-05-01",
  "name": "string",
  "location": "string"
}

Property values

Name Description Value
apiVersion The api version '2020-05-01'
location the region to create private link association. string
name The resource name string (required)
type The resource type 'Microsoft.Authorization/resourceManagementPrivateLinks'

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Authorization/resourceManagementPrivateLinks@2020-05-01"
  name = "string"
  location = "string"
}

Property values

Name Description Value
location the region to create private link association. string
name The resource name string (required)
type The resource type "Microsoft.Authorization/resourceManagementPrivateLinks@2020-05-01"