Share via


microsoft.aadiam privateLinkForAzureAd 2020-03-01

Bicep resource definition

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

resource symbolicname 'microsoft.aadiam/privateLinkForAzureAd@2020-03-01' = {
  allTenants: bool
  name: 'string'
  ownerTenantId: 'string'
  resourceGroup: 'string'
  resourceName: 'string'
  subscriptionId: 'string'
  tags: {
    {customized property}: 'string'
  }
  tenants: [
    'string'
  ]
}

Property Values

microsoft.aadiam/privateLinkForAzureAd

Name Description Value
allTenants Flag indicating whether all tenants are allowed bool
name The resource name string (required)
ownerTenantId Guid of the owner tenant string
resourceGroup Name of the resource group string
resourceName Name of the private link policy resource string
subscriptionId Subscription Identifier string
tags Resource tags Dictionary of tag names and values. See Tags in templates
tenants The list of tenantIds. string[]

PrivateLinkPolicyTags

Name Description Value

ARM template resource definition

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

{
  "type": "microsoft.aadiam/privateLinkForAzureAd",
  "apiVersion": "2020-03-01",
  "name": "string",
  "allTenants": "bool",
  "ownerTenantId": "string",
  "resourceGroup": "string",
  "resourceName": "string",
  "subscriptionId": "string",
  "tags": {
    "{customized property}": "string"
  },
  "tenants": [ "string" ]
}

Property Values

microsoft.aadiam/privateLinkForAzureAd

Name Description Value
allTenants Flag indicating whether all tenants are allowed bool
apiVersion The api version '2020-03-01'
name The resource name string (required)
ownerTenantId Guid of the owner tenant string
resourceGroup Name of the resource group string
resourceName Name of the private link policy resource string
subscriptionId Subscription Identifier string
tags Resource tags Dictionary of tag names and values. See Tags in templates
tenants The list of tenantIds. string[]
type The resource type 'microsoft.aadiam/privateLinkForAzureAd'

PrivateLinkPolicyTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "microsoft.aadiam/privateLinkForAzureAd@2020-03-01"
  name = "string"
  parent_id = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    allTenants = bool
    ownerTenantId = "string"
    resourceGroup = "string"
    resourceName = "string"
    subscriptionId = "string"
    tenants = [
      "string"
    ]
  }
}

Property Values

microsoft.aadiam/privateLinkForAzureAd

Name Description Value
allTenants Flag indicating whether all tenants are allowed bool
name The resource name string (required)
ownerTenantId Guid of the owner tenant string
resourceGroup Name of the resource group string
resourceName Name of the private link policy resource string
subscriptionId Subscription Identifier string
tags Resource tags Dictionary of tag names and values.
tenants The list of tenantIds. string[]
type The resource type "microsoft.aadiam/privateLinkForAzureAd@2020-03-01"

PrivateLinkPolicyTags

Name Description Value