Freigeben über


Microsoft.Authorization privateLinkAssociations 2020-05-01

Bicep-Ressourcendefinition

Der ressourcentyp privateLinkAssociations kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.

Ressourcenformat

Um eine Microsoft.Authorization/privateLinkAssociations-Ressource zu erstellen, fügen Sie der Vorlage die folgende Bicep hinzu.

resource symbolicname 'Microsoft.Authorization/privateLinkAssociations@2020-05-01' = {
  name: 'string'
  properties: {
    privateLink: 'string'
    publicNetworkAccess: 'string'
  }
}

Eigenschaftswerte

Microsoft.Authorization/privateLinkAssociations

Name Beschreibung Wert
Name Der Ressourcenname Zeichenfolge (erforderlich)
Eigenschaften Die Eigenschaften der PrivateLinkAssociation. PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

Name Beschreibung Wert
privateLink Die rmpl-Ressourcen-ID. Schnur
publicNetworkAccess "Deaktiviert"
"Aktiviert"

ARM-Vorlagenressourcendefinition

Der ressourcentyp privateLinkAssociations kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.

Ressourcenformat

Um eine Microsoft.Authorization/privateLinkAssociations-Ressource zu erstellen, fügen Sie der Vorlage den folgenden JSON-Code hinzu.

{
  "type": "Microsoft.Authorization/privateLinkAssociations",
  "apiVersion": "2020-05-01",
  "name": "string",
  "properties": {
    "privateLink": "string",
    "publicNetworkAccess": "string"
  }
}

Eigenschaftswerte

Microsoft.Authorization/privateLinkAssociations

Name Beschreibung Wert
apiVersion Die API-Version '2020-05-01'
Name Der Ressourcenname Zeichenfolge (erforderlich)
Eigenschaften Die Eigenschaften der PrivateLinkAssociation. PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded
Art Der Ressourcentyp "Microsoft.Authorization/privateLinkAssociations"

PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

Name Beschreibung Wert
privateLink Die rmpl-Ressourcen-ID. Schnur
publicNetworkAccess "Deaktiviert"
"Aktiviert"

Terraform -Ressourcendefinition (AzAPI-Anbieter)

Der ressourcentyp privateLinkAssociations kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:

  • -Verwaltungsgruppen

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.

Ressourcenformat

Um eine Microsoft.Authorization/privateLinkAssociations-Ressource zu erstellen, fügen Sie Ihrer Vorlage die folgende Terraform hinzu.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Authorization/privateLinkAssociations@2020-05-01"
  name = "string"
  body = jsonencode({
    properties = {
      privateLink = "string"
      publicNetworkAccess = "string"
    }
  })
}

Eigenschaftswerte

Microsoft.Authorization/privateLinkAssociations

Name Beschreibung Wert
Name Der Ressourcenname Zeichenfolge (erforderlich)
Eigenschaften Die Eigenschaften der PrivateLinkAssociation. PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded
Art Der Ressourcentyp "Microsoft.Authorization/privateLinkAssociations@2020-05-01"

PrivateLinkAssociationPropertiesOrPrivateLinkAssociationPropertiesExpanded

Name Beschreibung Wert
privateLink Die rmpl-Ressourcen-ID. Schnur
publicNetworkAccess "Deaktiviert"
"Aktiviert"