Share via


Microsoft.Network vpnServerConfigurations/configurationPolicyGroups 2021-08-01

Bicep-resursdefinition

Resurstypen vpnServerConfigurations/configurationPolicyGroups kan distribueras med åtgärder som mål:

En lista över ändrade egenskaper i varje API-version finns i ändringsloggen.

Resursformat

Om du vill skapa en Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups-resurs lägger du till följande Bicep i mallen.

resource symbolicname 'Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups@2021-08-01' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    isDefault: bool
    policyMembers: [
      {
        attributeType: 'string'
        attributeValue: 'string'
        name: 'string'
      }
    ]
    priority: int
  }
}

Egenskapsvärden

vpnServerConfigurations/configurationPolicyGroups

Name Beskrivning Värde
name Resursnamnet

Se hur du anger namn och typer för underordnade resurser i Bicep.
sträng (krävs)
parent I Bicep kan du ange den överordnade resursen för en underordnad resurs. Du behöver bara lägga till den här egenskapen när den underordnade resursen deklareras utanför den överordnade resursen.

Mer information finns i Underordnad resurs utanför överordnad resurs.
Symboliskt namn för resurs av typen: vpnServerConfigurations
properties Egenskaper för VpnServerConfigurationPolicyGroup. VpnServerConfigurationPolicyGroupProperties

VpnServerConfigurationPolicyGroupProperties

Name Beskrivning Värde
isDefault Visar om detta är en VpnServerConfigurationPolicyGroup eller inte. boolesk
policyMembers Flera PolicyMembers för VpnServerConfigurationPolicyGroup. VpnServerConfigurationPolicyGroupMember[]
prioritet Prioritet för VpnServerConfigurationPolicyGroup. int

VpnServerConfigurationPolicyGroupMember

Name Beskrivning Värde
attributeType Attributtypen Vpn-principmedlem. "AADGroupId"
"CertificateGroupId"
"RadiusAzureGroupId"
attributeValue Värdet för attributet som används för den här VpnServerConfigurationPolicyGroupMember. sträng
name Namnet på VpnServerConfigurationPolicyGroupMember. sträng

Resursdefinition för ARM-mall

Resurstypen vpnServerConfigurations/configurationPolicyGroups kan distribueras med åtgärder som mål:

En lista över ändrade egenskaper i varje API-version finns i ändringsloggen.

Resursformat

Om du vill skapa en Resurs för Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups lägger du till följande JSON i mallen.

{
  "type": "Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups",
  "apiVersion": "2021-08-01",
  "name": "string",
  "properties": {
    "isDefault": "bool",
    "policyMembers": [
      {
        "attributeType": "string",
        "attributeValue": "string",
        "name": "string"
      }
    ],
    "priority": "int"
  }
}

Egenskapsvärden

vpnServerConfigurations/configurationPolicyGroups

Name Beskrivning Värde
typ Resurstypen "Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups"
apiVersion Resurs-API-versionen '2021-08-01'
name Resursnamnet

Se hur du anger namn och typer för underordnade resurser i JSON ARM-mallar.
sträng (krävs)
properties Egenskaper för VpnServerConfigurationPolicyGroup. VpnServerConfigurationPolicyGroupProperties

VpnServerConfigurationPolicyGroupProperties

Name Beskrivning Värde
isDefault Visar om detta är en VpnServerConfigurationPolicyGroup eller inte. boolesk
policyMembers Flera PolicyMembers för VpnServerConfigurationPolicyGroup. VpnServerConfigurationPolicyGroupMember[]
prioritet Prioritet för VpnServerConfigurationPolicyGroup. int

VpnServerConfigurationPolicyGroupMember

Name Beskrivning Värde
attributeType Attributtypen Vpn Policy-medlem. "AADGroupId"
"CertificateGroupId"
"RadiusAzureGroupId"
attributeValue Värdet för attributet som används för den här VpnServerConfigurationPolicyGroupMember. sträng
name Namnet på VpnServerConfigurationPolicyGroupMember. sträng

Resursdefinition för Terraform (AzAPI-provider)

Resurstypen vpnServerConfigurations/configurationPolicyGroups kan distribueras med åtgärder som mål:

  • Resursgrupper

En lista över ändrade egenskaper i varje API-version finns i ändringsloggen.

Resursformat

Om du vill skapa en Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups-resurs lägger du till följande Terraform i mallen.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups@2021-08-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      isDefault = bool
      policyMembers = [
        {
          attributeType = "string"
          attributeValue = "string"
          name = "string"
        }
      ]
      priority = int
    }
  })
}

Egenskapsvärden

vpnServerConfigurations/configurationPolicyGroups

Name Beskrivning Värde
typ Resurstypen "Microsoft.Network/vpnServerConfigurations/configurationPolicyGroups@2021-08-01"
name Resursnamnet sträng (krävs)
parent_id ID:t för resursen som är överordnad för den här resursen. ID för resurs av typen: vpnServerConfigurations
properties Egenskaper för VpnServerConfigurationPolicyGroup. VpnServerConfigurationPolicyGroupProperties

VpnServerConfigurationPolicyGroupProperties

Name Beskrivning Värde
isDefault Visar om detta är en VpnServerConfigurationPolicyGroup som standard eller inte. boolesk
policyMembers Flera PolicyMembers för VpnServerConfigurationPolicyGroup. VpnServerConfigurationPolicyGroupMember[]
prioritet Prioritet för VpnServerConfigurationPolicyGroup. int

VpnServerConfigurationPolicyGroupMember

Name Beskrivning Värde
attributeType Attributtypen Vpn Policy-medlem. "AADGroupId"
"CertificateGroupId"
"RadiusAzureGroupId"
attributeValue Värdet för attributet som används för den här VpnServerConfigurationPolicyGroupMember. sträng
name Namnet på VpnServerConfigurationPolicyGroupMember. sträng