次の方法で共有


Microsoft.Network dscpConfigurations 2020-11-01

Bicep リソース定義

dscpConfigurations リソースの種類は、次をターゲットとする操作でデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Network/dscpConfigurations リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.Network/dscpConfigurations@2020-11-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    destinationIpRanges: [
      {
        endIP: 'string'
        startIP: 'string'
      }
    ]
    destinationPortRanges: [
      {
        end: int
        start: int
      }
    ]
    markings: [
      int
    ]
    protocol: 'string'
    sourceIpRanges: [
      {
        endIP: 'string'
        startIP: 'string'
      }
    ]
    sourcePortRanges: [
      {
        end: int
        start: int
      }
    ]
  }
}

プロパティ値

dscpConfigurations

名前 説明
name リソース名 string (必須)
location リソースの場所。 string
tags リソース タグ。 タグ名と値のディクショナリ。 「テンプレートのタグ」を参照してください
properties ネットワーク インターフェイスのプロパティ。 DscpConfigurationPropertiesFormat

DscpConfigurationPropertiesFormat

名前 説明
destinationIpRanges 宛先 IP 範囲。 QosIpRange[]
destinationPortRanges 宛先ポート範囲。 QosPortRange[]
マーキング 構成で使用するマーキングの一覧。 int[]
protocol RNM でサポートされているプロトコルの種類。 'Ah'
'All'
'DoNotUse'
'Esp'
'Gre'
'Icmp'
'Tcp'
'Udp'
'Vxlan'
sourceIpRanges ソース IP 範囲。 QosIpRange[]
sourcePortRanges ソース のポート範囲。 QosPortRange[]

QosIpRange

名前 説明
endIP 終了 IP アドレス。 string
startIP IP アドレスを開始します。 string

QosPortRange

名前 説明
end Qos ポート範囲の終了。 INT
start Qos ポート範囲の開始。 INT

ARM テンプレート リソース定義

dscpConfigurations リソースの種類は、次をターゲットとする操作でデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Network/dscpConfigurations リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.Network/dscpConfigurations",
  "apiVersion": "2020-11-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "destinationIpRanges": [
      {
        "endIP": "string",
        "startIP": "string"
      }
    ],
    "destinationPortRanges": [
      {
        "end": "int",
        "start": "int"
      }
    ],
    "markings": [ "int" ],
    "protocol": "string",
    "sourceIpRanges": [
      {
        "endIP": "string",
        "startIP": "string"
      }
    ],
    "sourcePortRanges": [
      {
        "end": "int",
        "start": "int"
      }
    ]
  }
}

プロパティ値

dscpConfigurations

名前 説明
type リソースの種類 'Microsoft.Network/dscpConfigurations'
apiVersion リソース API のバージョン '2020-11-01'
name リソース名 string (必須)
location リソースの場所。 string
tags リソース タグ。 タグ名と値のディクショナリ。 「テンプレートのタグ」を参照してください
properties ネットワーク インターフェイスのプロパティ。 DscpConfigurationPropertiesFormat

DscpConfigurationPropertiesFormat

名前 説明
destinationIpRanges 宛先 IP 範囲。 QosIpRange[]
destinationPortRanges 宛先ポート範囲。 QosPortRange[]
マーキング 構成で使用するマーキングの一覧。 int[]
protocol RNM でサポートされているプロトコルの種類。 'Ah'
'All'
'DoNotUse'
'Esp'
'Gre'
'Icmp'
'Tcp'
'Udp'
'Vxlan'
sourceIpRanges ソース IP 範囲。 QosIpRange[]
sourcePortRanges ソース のポート範囲。 QosPortRange[]

QosIpRange

名前 説明
endIP 終了 IP アドレス。 string
startIP IP アドレスを開始します。 string

QosPortRange

名前 説明
end Qos ポート範囲の終了。 INT
start Qos ポート範囲の開始。 INT

Terraform (AzAPI プロバイダー) リソース定義

dscpConfigurations リソースの種類は、次をターゲットとする操作でデプロイできます。

  • リソース グループ

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Network/dscpConfigurations リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Network/dscpConfigurations@2020-11-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      destinationIpRanges = [
        {
          endIP = "string"
          startIP = "string"
        }
      ]
      destinationPortRanges = [
        {
          end = int
          start = int
        }
      ]
      markings = [
        int
      ]
      protocol = "string"
      sourceIpRanges = [
        {
          endIP = "string"
          startIP = "string"
        }
      ]
      sourcePortRanges = [
        {
          end = int
          start = int
        }
      ]
    }
  })
}

プロパティ値

dscpConfigurations

名前 説明
type リソースの種類 "Microsoft.Network/dscpConfigurations@2020-11-01"
name リソース名 string (必須)
location リソースの場所。 string
parent_id リソース グループにデプロイするには、そのリソース グループの ID を使用します。 string (必須)
tags リソース タグ。 タグ名と値のディクショナリ。
properties ネットワーク インターフェイスのプロパティ。 DscpConfigurationPropertiesFormat

DscpConfigurationPropertiesFormat

名前 説明
destinationIpRanges 宛先 IP 範囲。 QosIpRange[]
destinationPortRanges 宛先ポート範囲。 QosPortRange[]
マーキング 構成で使用するマーキングの一覧。 int[]
protocol RNM でサポートされているプロトコルの種類。 "Ah"
"All"
"DoNotUse"
"Esp"
"Gre"
"Icmp"
"Tcp"
"Udp"
"Vxlan"
sourceIpRanges ソース IP 範囲。 QosIpRange[]
sourcePortRanges ソース のポート範囲。 QosPortRange[]

QosIpRange

名前 説明
endIP 終了 IP アドレス。 string
startIP IP アドレスを開始します。 string

QosPortRange

名前 説明
end Qos ポート範囲の終了。 INT
start Qos ポート範囲の開始。 int