Microsoft。Peering peerAsns 2020-10-01
Bicep リソース定義
peerAsns リソースの種類は、次の対象にデプロイできます。
- サブスクリプション - サブスクリプションのデプロイ コマンドに関するページを参照してください
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoftを作成するにはPeering/peerAsns リソースを使用して、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.Peering/peerAsns@2020-10-01' = {
name: 'string'
properties: {
peerAsn: int
peerContactDetail: [
{
email: 'string'
phone: 'string'
role: 'string'
}
]
peerName: 'string'
validationState: 'string'
}
}
プロパティの値
peerAsns
名前 | 説明 | 値 |
---|---|---|
name | リソース名 | string (必須) |
properties | ピアの ASN を定義するプロパティ。 | PeerAsnProperties |
PeerAsnProperties
名前 | 説明 | 値 |
---|---|---|
peerAsn | ピアの自律システム番号 (ASN)。 | INT |
peerContactDetail | ピアの連絡先の詳細。 | ContactDetail[] |
Peername | ピアの名前。 | string |
validationState | ピアに関連付けられている ASN の検証状態。 | '承認済み' 'Failed' 'None' '保留中' |
ContactDetail
名前 | 説明 | 値 |
---|---|---|
連絡先の電子メール アドレス。 | string | |
phone | 連絡先の電話番号。 | string |
role | 連絡先の役割。 | 'エスカレーション' 'Noc' 'Other' 'Policy' 'Service' 'Technical' |
ARM テンプレート リソース定義
peerAsns リソースの種類は、次の対象にデプロイできます。
- サブスクリプション - サブスクリプションのデプロイ コマンドに関するページを参照してください
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoftを作成するにはPeering/peerAsns リソースで、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.Peering/peerAsns",
"apiVersion": "2020-10-01",
"name": "string",
"properties": {
"peerAsn": "int",
"peerContactDetail": [
{
"email": "string",
"phone": "string",
"role": "string"
}
],
"peerName": "string",
"validationState": "string"
}
}
プロパティの値
peerAsns
名前 | 説明 | 値 |
---|---|---|
type | リソースの種類 | 'Microsoft。Peering/peerAsns' |
apiVersion | リソース API のバージョン | '2020-10-01' |
name | リソース名 | string (必須) |
properties | ピアの ASN を定義するプロパティ。 | PeerAsnProperties |
PeerAsnProperties
名前 | 説明 | 値 |
---|---|---|
peerAsn | ピアの自律システム番号 (ASN)。 | INT |
peerContactDetail | ピアの連絡先の詳細。 | ContactDetail[] |
Peername | ピアの名前。 | string |
validationState | ピアに関連付けられている ASN の検証状態。 | '承認済み' 'Failed' 'None' '保留中' |
ContactDetail
名前 | 説明 | 値 |
---|---|---|
連絡先の電子メール アドレス。 | string | |
phone | 連絡先の電話番号。 | string |
role | 連絡先の役割。 | 'エスカレーション' 'Noc' 'Other' 'Policy' 'Service' 'Technical' |
Terraform (AzAPI プロバイダー) リソース定義
peerAsns リソースの種類は、次の対象にデプロイできます。
- サブスクリプション
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoftを作成するにはPeering/peerAsns リソースを使用して、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Peering/peerAsns@2020-10-01"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
peerAsn = int
peerContactDetail = [
{
email = "string"
phone = "string"
role = "string"
}
]
peerName = "string"
validationState = "string"
}
})
}
プロパティの値
peerAsns
名前 | 説明 | 値 |
---|---|---|
type | リソースの種類 | "Microsoft。Peering/peerAsns@2020-10-01" |
name | リソース名 | string (必須) |
parent_id | サブスクリプションにデプロイするには、そのサブスクリプションの ID を使用します。 | string (必須) |
properties | ピアの ASN を定義するプロパティ。 | PeerAsnProperties |
PeerAsnProperties
名前 | 説明 | 値 |
---|---|---|
peerAsn | ピアの自律システム番号 (ASN)。 | INT |
peerContactDetail | ピアの連絡先の詳細。 | ContactDetail[] |
Peername | ピアの名前。 | string |
validationState | ピアに関連付けられている ASN の検証状態。 | "承認済み" "Failed" "None" "保留中" |
ContactDetail
名前 | 説明 | 値 |
---|---|---|
連絡先の電子メール アドレス。 | string | |
phone | 連絡先の電話番号。 | string |
role | 連絡先の役割。 | "エスカレーション" "Noc" "Other" "Policy" "サービス" "Technical" |