Microsoft.Authorization privateLinkAssociations 2020-05-01
The privateLinkAssociations resource type can be deployed with operations that target:
- Management groups - See management group deployment commands
For a list of changed properties in each API version, see change log.
To create a Microsoft.Authorization/privateLinkAssociations resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Authorization/privateLinkAssociations@2020-05-01' = {
name: 'string'
properties: {
privateLink: 'string'
publicNetworkAccess: 'string'
}
}
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
properties | The properties of the PrivateLinkAssociation. | PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded |
Name | Description | Value |
---|---|---|
privateLink | The rmpl Resource ID. | string |
publicNetworkAccess | 'Disabled' 'Enabled' |
The privateLinkAssociations resource type can be deployed with operations that target:
- Management groups - See management group deployment commands
For a list of changed properties in each API version, see change log.
To create a Microsoft.Authorization/privateLinkAssociations resource, add the following JSON to your template.
{
"type": "Microsoft.Authorization/privateLinkAssociations",
"apiVersion": "2020-05-01",
"name": "string",
"properties": {
"privateLink": "string",
"publicNetworkAccess": "string"
}
}
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2020-05-01' |
name | The resource name | string (required) |
properties | The properties of the PrivateLinkAssociation. | PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded |
type | The resource type | 'Microsoft.Authorization/privateLinkAssociations' |
Name | Description | Value |
---|---|---|
privateLink | The rmpl Resource ID. | string |
publicNetworkAccess | 'Disabled' 'Enabled' |
The privateLinkAssociations resource type can be deployed with operations that target:
- Management groups
For a list of changed properties in each API version, see change log.
To create a Microsoft.Authorization/privateLinkAssociations resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Authorization/privateLinkAssociations@2020-05-01"
name = "string"
body = jsonencode({
properties = {
privateLink = "string"
publicNetworkAccess = "string"
}
})
}
Name | Description | Value |
---|---|---|
name | The resource name | string (required) |
properties | The properties of the PrivateLinkAssociation. | PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded |
type | The resource type | "Microsoft.Authorization/privateLinkAssociations@2020-05-01" |
Name | Description | Value |
---|---|---|
privateLink | The rmpl Resource ID. | string |
publicNetworkAccess | 'Disabled' 'Enabled' |