次の方法で共有


Microsoft。Peering peeringServices/connectionMonitorTests 2022-01-01

Bicep リソース定義

peeringServices/connectionMonitorTests リソースの種類は、次のようにデプロイできます。

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

リソース形式

Microsoftを作成するにはPeering/peeringServices/connectionMonitorTests リソースを使用して、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.Peering/peeringServices/connectionMonitorTests@2022-01-01' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    destination: 'string'
    destinationPort: int
    sourceAgent: 'string'
    testFrequencyInSec: int
  }
}

プロパティの値

peeringServices/connectionMonitorTests

名前 説明
name リソース名

Bicep で子リソースの名前と型を設定する方法を参照してください。
string (必須)
parent Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「 親リソースの外部にある子リソース」を参照してください。
種類のリソースのシンボル名: peeringServices
properties 接続モニター テストを定義するプロパティ。 ConnectionMonitorTestProperties

ConnectionMonitorTestProperties

名前 説明
destination 接続モニター テスト先 string
destinationPort テスト対象ポート接続モニター INT
sourceAgent 接続モニター テスト ソース エージェント string
testFrequencyInSec 接続モニターテストの頻度 (秒単位) INT

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

peeringServices/connectionMonitorTests リソースの種類は、次のようにデプロイできます。

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

リソース形式

Microsoftを作成するにはPeering/peeringServices/connectionMonitorTests リソースで、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.Peering/peeringServices/connectionMonitorTests",
  "apiVersion": "2022-01-01",
  "name": "string",
  "properties": {
    "destination": "string",
    "destinationPort": "int",
    "sourceAgent": "string",
    "testFrequencyInSec": "int"
  }
}

プロパティの値

peeringServices/connectionMonitorTests

名前 説明
type リソースの種類 'Microsoft。Peering/peeringServices/connectionMonitorTests'
apiVersion リソース API のバージョン '2022-01-01'
name リソース名

JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。
string (必須)
properties 接続モニター テストを定義するプロパティ。 ConnectionMonitorTestProperties

ConnectionMonitorTestProperties

名前 説明
destination 接続モニター テスト先 string
destinationPort テスト対象ポート接続モニター INT
sourceAgent 接続モニター テスト ソース エージェント string
testFrequencyInSec 接続モニターテストの頻度 (秒単位) INT

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

peeringServices/connectionMonitorTests リソースの種類は、次のようにデプロイできます。

  • リソース グループ

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

リソース形式

Microsoftを作成するにはPeering/peeringServices/connectionMonitorTests リソースで、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Peering/peeringServices/connectionMonitorTests@2022-01-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      destination = "string"
      destinationPort = int
      sourceAgent = "string"
      testFrequencyInSec = int
    }
  })
}

プロパティの値

peeringServices/connectionMonitorTests

名前 説明
type リソースの種類 "Microsoft。Peering/peeringServices/connectionMonitorTests@2022-01-01"
name リソース名 string (必須)
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: peeringServices
properties 接続モニター テストを定義するプロパティ。 ConnectionMonitorTestProperties

ConnectionMonitorTestProperties

名前 説明
destination 接続モニターテスト先 string
destinationPort 接続モニターテストの宛先ポート INT
sourceAgent 接続モニター テスト ソース エージェント string
testFrequencyInSec 接続モニターテストの頻度 (秒単位) int