Action Groups - Create Or Update

新しいアクション グループを作成するか、既存のアクション グループを更新します。

PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/actionGroups/{actionGroupName}?api-version=2021-09-01

URI パラメーター

名前 / 必須 説明
actionGroupName
path True

string

アクション グループの名前。

resourceGroupName
path True

string

リソース グループの名前。 名前の大文字と小文字は区別されます。

subscriptionId
path True

string

ターゲット サブスクリプションの ID。

api-version
query True

string

この操作に使用する API バージョン。

要求本文

名前 必須 説明
location True

string

リソースの場所

properties.enabled True

boolean

このアクション グループが有効かどうかを示します。 アクション グループが有効になっていない場合、どの受信者も通信を受信しません。

properties.groupShortName True

string

アクション グループの短い名前。 これは SMS メッセージで使用されます。

properties.armRoleReceivers

ArmRoleReceiver[]

このアクション グループの一部である ARM ロール レシーバーの一覧。 ロールは Azure RBAC ロールであり、組み込みのロールのみがサポートされます。

properties.automationRunbookReceivers

AutomationRunbookReceiver[]

このアクション グループの一部である AutomationRunbook レシーバーの一覧。

properties.azureAppPushReceivers

AzureAppPushReceiver[]

このアクション グループの一部である AzureAppPush レシーバーの一覧。

properties.azureFunctionReceivers

AzureFunctionReceiver[]

このアクション グループの一部である Azure 関数レシーバーの一覧。

properties.emailReceivers

EmailReceiver[]

このアクション グループの一部である電子メール レシーバーの一覧。

properties.eventHubReceivers

EventHubReceiver[]

このアクション グループの一部であるイベント ハブ レシーバーの一覧。

properties.itsmReceivers

ItsmReceiver[]

このアクション グループの一部である ITSM レシーバーの一覧。

properties.logicAppReceivers

LogicAppReceiver[]

このアクション グループの一部であるロジック アプリ レシーバーの一覧。

properties.smsReceivers

SmsReceiver[]

このアクション グループの一部である SMS レシーバーの一覧。

properties.voiceReceivers

VoiceReceiver[]

このアクション グループの一部である音声レシーバーの一覧。

properties.webhookReceivers

WebhookReceiver[]

このアクション グループの一部である Webhook レシーバーの一覧。

tags

object

リソース タグ

応答

名前 説明
200 OK

ActionGroupResource

既存のアクション グループが正常に更新されました。

201 Created

ActionGroupResource

新しいアクション グループが正常に作成されました。

Other Status Codes

ErrorResponse

エラーが発生し、アクション グループを作成または更新できませんでした。

セキュリティ

azure_auth

Azure Active Directory OAuth2 フロー

Type: oauth2
Flow: implicit
Authorization URL: https://login.microsoftonline.com/common/oauth2/authorize

Scopes

名前 説明
user_impersonation ユーザー アカウントの借用

Create or update an action group

Sample Request

PUT https://management.azure.com/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/Microsoft.Insights/actionGroups/SampleActionGroup?api-version=2021-09-01

{
  "location": "Global",
  "tags": {},
  "properties": {
    "groupShortName": "sample",
    "enabled": true,
    "emailReceivers": [
      {
        "name": "John Doe's email",
        "emailAddress": "johndoe@email.com",
        "useCommonAlertSchema": false
      },
      {
        "name": "Jane Smith's email",
        "emailAddress": "janesmith@email.com",
        "useCommonAlertSchema": true
      }
    ],
    "smsReceivers": [
      {
        "name": "John Doe's mobile",
        "countryCode": "1",
        "phoneNumber": "1234567890"
      },
      {
        "name": "Jane Smith's mobile",
        "countryCode": "1",
        "phoneNumber": "0987654321"
      }
    ],
    "webhookReceivers": [
      {
        "name": "Sample webhook 1",
        "serviceUri": "http://www.example.com/webhook1",
        "useCommonAlertSchema": true
      },
      {
        "name": "Sample webhook 2",
        "serviceUri": "http://www.example.com/webhook2",
        "useCommonAlertSchema": true,
        "useAadAuth": true,
        "objectId": "d3bb868c-fe44-452c-aa26-769a6538c808",
        "identifierUri": "http://someidentifier/d7811ba3-7996-4a93-99b6-6b2f3f355f8a",
        "tenantId": "68a4459a-ccb8-493c-b9da-dd30457d1b84"
      }
    ],
    "itsmReceivers": [
      {
        "name": "Sample itsm",
        "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c",
        "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1",
        "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}",
        "region": "westcentralus"
      }
    ],
    "azureAppPushReceivers": [
      {
        "name": "Sample azureAppPush",
        "emailAddress": "johndoe@email.com"
      }
    ],
    "automationRunbookReceivers": [
      {
        "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest",
        "runbookName": "Sample runbook",
        "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084",
        "isGlobalRunbook": false,
        "name": "testRunbook",
        "serviceUri": "<serviceUri>",
        "useCommonAlertSchema": true
      }
    ],
    "voiceReceivers": [
      {
        "name": "Sample voice",
        "countryCode": "1",
        "phoneNumber": "1234567890"
      }
    ],
    "logicAppReceivers": [
      {
        "name": "Sample logicApp",
        "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp",
        "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w",
        "useCommonAlertSchema": false
      }
    ],
    "azureFunctionReceivers": [
      {
        "name": "Sample azureFunction",
        "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp",
        "functionName": "HttpTriggerCSharp1",
        "httpTriggerUrl": "http://test.me",
        "useCommonAlertSchema": true
      }
    ],
    "armRoleReceivers": [
      {
        "name": "Sample armRole",
        "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635",
        "useCommonAlertSchema": true
      }
    ],
    "eventHubReceivers": [
      {
        "name": "Sample eventHub",
        "eventHubNameSpace": "testEventHubNameSpace",
        "eventHubName": "testEventHub",
        "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d",
        "tenantId": "68a4459a-ccb8-493c-b9da-dd30457d1b84"
      }
    ]
  }
}

Sample Response

{
  "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup",
  "type": "Microsoft.Insights/ActionGroups",
  "name": "SampleActionGroup",
  "location": "Global",
  "tags": {},
  "properties": {
    "groupShortName": "sample",
    "enabled": true,
    "emailReceivers": [
      {
        "name": "John Doe's email",
        "emailAddress": "johndoe@email.com",
        "status": "Enabled",
        "useCommonAlertSchema": false
      },
      {
        "name": "Jane Smith's email",
        "emailAddress": "janesmith@email.com",
        "status": "Enabled",
        "useCommonAlertSchema": true
      }
    ],
    "smsReceivers": [
      {
        "name": "John Doe's mobile",
        "countryCode": "1",
        "phoneNumber": "1234567890",
        "status": "Enabled"
      },
      {
        "name": "Jane Smith's mobile",
        "countryCode": "1",
        "phoneNumber": "0987654321",
        "status": "Enabled"
      }
    ],
    "webhookReceivers": [
      {
        "name": "Sample webhook 1",
        "serviceUri": "http://www.example.com/webhook1",
        "useCommonAlertSchema": true
      },
      {
        "name": "Sample webhook 2",
        "serviceUri": "http://www.example.com/webhook2",
        "useCommonAlertSchema": true,
        "useAadAuth": true,
        "objectId": "d3bb868c-fe44-452c-aa26-769a6538c808",
        "identifierUri": "http://someidentifier/d7811ba3-7996-4a93-99b6-6b2f3f355f8a",
        "tenantId": "68a4459a-ccb8-493c-b9da-dd30457d1b84"
      }
    ],
    "itsmReceivers": [
      {
        "name": "Sample itsm",
        "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c",
        "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1",
        "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}",
        "region": "westcentralus"
      }
    ],
    "azureAppPushReceivers": [
      {
        "name": "Sample azureAppPush",
        "emailAddress": "johndoe@email.com"
      }
    ],
    "automationRunbookReceivers": [
      {
        "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest",
        "runbookName": "Sample runbook",
        "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084",
        "isGlobalRunbook": false,
        "name": "testRunbook",
        "serviceUri": "<serviceUri>",
        "useCommonAlertSchema": true
      }
    ],
    "voiceReceivers": [
      {
        "name": "Sample voice",
        "countryCode": "1",
        "phoneNumber": "1234567890"
      }
    ],
    "logicAppReceivers": [
      {
        "name": "Sample logicApp",
        "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp",
        "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w",
        "useCommonAlertSchema": false
      }
    ],
    "azureFunctionReceivers": [
      {
        "name": "Sample azureFunction",
        "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp",
        "functionName": "HttpTriggerCSharp1",
        "httpTriggerUrl": "<httpTriggerUrl>",
        "useCommonAlertSchema": true
      }
    ],
    "armRoleReceivers": [
      {
        "name": "Sample armRole",
        "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635",
        "useCommonAlertSchema": true
      }
    ],
    "eventHubReceivers": [
      {
        "name": "Sample eventHub",
        "eventHubNameSpace": "testEventHubNameSpace",
        "eventHubName": "testEventHub",
        "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d",
        "tenantId": "68a4459a-ccb8-493c-b9da-dd30457d1b84",
        "useCommonAlertSchema": false
      }
    ]
  }
}
{
  "id": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/Default-NotificationRules/providers/microsoft.insights/actionGroups/SampleActionGroup",
  "type": "Microsoft.Insights/ActionGroups",
  "name": "SampleActionGroup",
  "location": "Global",
  "tags": {},
  "properties": {
    "groupShortName": "sample",
    "enabled": true,
    "emailReceivers": [
      {
        "name": "John Doe's email",
        "emailAddress": "johndoe@email.com",
        "status": "Enabled",
        "useCommonAlertSchema": false
      },
      {
        "name": "Jane Smith's email",
        "emailAddress": "janesmith@email.com",
        "status": "Enabled",
        "useCommonAlertSchema": true
      }
    ],
    "smsReceivers": [
      {
        "name": "John Doe's mobile",
        "countryCode": "1",
        "phoneNumber": "1234567890",
        "status": "Enabled"
      },
      {
        "name": "Jane Smith's mobile",
        "countryCode": "1",
        "phoneNumber": "0987654321",
        "status": "Enabled"
      }
    ],
    "webhookReceivers": [
      {
        "name": "Sample webhook 1",
        "serviceUri": "http://www.example.com/webhook1",
        "useCommonAlertSchema": true
      },
      {
        "name": "Sample webhook 2",
        "serviceUri": "http://www.example.com/webhook2",
        "useCommonAlertSchema": true,
        "useAadAuth": true,
        "objectId": "d3bb868c-fe44-452c-aa26-769a6538c808",
        "identifierUri": "http://someidentifier/d7811ba3-7996-4a93-99b6-6b2f3f355f8a",
        "tenantId": "68a4459a-ccb8-493c-b9da-dd30457d1b84"
      }
    ],
    "itsmReceivers": [
      {
        "name": "Sample itsm",
        "workspaceId": "5def922a-3ed4-49c1-b9fd-05ec533819a3|55dfd1f8-7e59-4f89-bf56-4c82f5ace23c",
        "connectionId": "a3b9076c-ce8e-434e-85b4-aff10cb3c8f1",
        "ticketConfiguration": "{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\",\"UseTemplate\":false,\"WorkItemData\":\"{}\",\"CreateOneWIPerCI\":false}",
        "region": "westcentralus"
      }
    ],
    "azureAppPushReceivers": [
      {
        "name": "Sample azureAppPush",
        "emailAddress": "johndoe@email.com"
      }
    ],
    "automationRunbookReceivers": [
      {
        "automationAccountId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest",
        "runbookName": "Sample runbook",
        "webhookResourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/runbookTest/providers/Microsoft.Automation/automationAccounts/runbooktest/webhooks/Alert1510184037084",
        "isGlobalRunbook": false,
        "name": "testRunbook",
        "serviceUri": "<serviceUri>",
        "useCommonAlertSchema": true
      }
    ],
    "voiceReceivers": [
      {
        "name": "Sample voice",
        "countryCode": "1",
        "phoneNumber": "1234567890"
      }
    ],
    "logicAppReceivers": [
      {
        "name": "Sample logicApp",
        "resourceId": "/subscriptions/187f412d-1758-44d9-b052-169e2564721d/resourceGroups/LogicApp/providers/Microsoft.Logic/workflows/testLogicApp",
        "callbackUrl": "https://prod-27.northcentralus.logic.azure.com/workflows/68e572e818e5457ba898763b7db90877/triggers/manual/paths/invoke/azns/test?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=Abpsb72UYJxPPvmDo937uzofupO5r_vIeWEx7KVHo7w",
        "useCommonAlertSchema": false
      }
    ],
    "azureFunctionReceivers": [
      {
        "name": "Sample azureFunction",
        "functionAppResourceId": "/subscriptions/5def922a-3ed4-49c1-b9fd-05ec533819a3/resourceGroups/aznsTest/providers/Microsoft.Web/sites/testFunctionApp",
        "functionName": "HttpTriggerCSharp1",
        "httpTriggerUrl": "<httpTriggerUrl>",
        "useCommonAlertSchema": true
      }
    ],
    "armRoleReceivers": [
      {
        "name": "Sample armRole",
        "roleId": "8e3af657-a8ff-443c-a75c-2fe8c4bcb635",
        "useCommonAlertSchema": true
      }
    ],
    "eventHubReceivers": [
      {
        "name": "Sample eventHub",
        "eventHubNameSpace": "testEventHubNameSpace",
        "eventHubName": "testEventHub",
        "subscriptionId": "187f412d-1758-44d9-b052-169e2564721d",
        "tenantId": "68a4459a-ccb8-493c-b9da-dd30457d1b84",
        "useCommonAlertSchema": false
      }
    ]
  }
}

定義

名前 説明
ActionGroupResource

アクション グループ リソース。

ArmRoleReceiver

arm ロール レシーバー。

AutomationRunbookReceiver

Azure Automation Runbook 通知レシーバー。

AzureAppPushReceiver

Azure モバイル アプリのプッシュ通知レシーバー。

AzureFunctionReceiver

Azure 関数レシーバー。

EmailReceiver

電子メール 受信者。

ErrorResponse

エラー応答の形式について説明します。

EventHubReceiver

イベント ハブ レシーバー。

ItsmReceiver

Itsm レシーバー。

LogicAppReceiver

ロジック アプリ レシーバー。

ReceiverStatus

受信側の状態を示します。 有効になっていない受信者は、通信を受信しません。

SmsReceiver

SMS レシーバー。

VoiceReceiver

音声レシーバー。

WebhookReceiver

Webhook レシーバー。

ActionGroupResource

アクション グループ リソース。

名前 既定値 説明
id

string

Azure リソース ID

location

string

リソースの場所

name

string

Azure リソース名

properties.armRoleReceivers

ArmRoleReceiver[]

このアクション グループの一部である ARM ロール レシーバーの一覧。 ロールは Azure RBAC ロールであり、組み込みのロールのみがサポートされます。

properties.automationRunbookReceivers

AutomationRunbookReceiver[]

このアクション グループの一部である AutomationRunbook レシーバーの一覧。

properties.azureAppPushReceivers

AzureAppPushReceiver[]

このアクション グループの一部である AzureAppPush レシーバーの一覧。

properties.azureFunctionReceivers

AzureFunctionReceiver[]

このアクション グループの一部である Azure 関数レシーバーの一覧。

properties.emailReceivers

EmailReceiver[]

このアクション グループの一部である電子メール レシーバーの一覧。

properties.enabled

boolean

True

このアクション グループが有効かどうかを示します。 アクション グループが有効になっていない場合、どの受信者も通信を受信しません。

properties.eventHubReceivers

EventHubReceiver[]

このアクション グループの一部であるイベント ハブ レシーバーの一覧。

properties.groupShortName

string

アクション グループの短い名前。 これは SMS メッセージで使用されます。

properties.itsmReceivers

ItsmReceiver[]

このアクション グループの一部である ITSM レシーバーの一覧。

properties.logicAppReceivers

LogicAppReceiver[]

このアクション グループの一部であるロジック アプリ レシーバーの一覧。

properties.smsReceivers

SmsReceiver[]

このアクション グループの一部である SMS レシーバーの一覧。

properties.voiceReceivers

VoiceReceiver[]

このアクション グループの一部である音声レシーバーの一覧。

properties.webhookReceivers

WebhookReceiver[]

このアクション グループの一部である Webhook レシーバーの一覧。

tags

object

リソース タグ

type

string

Azure リソースタイプ

ArmRoleReceiver

arm ロール レシーバー。

名前 既定値 説明
name

string

arm ロール レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

roleId

string

arm ロール ID。

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。

AutomationRunbookReceiver

Azure Automation Runbook 通知レシーバー。

名前 既定値 説明
automationAccountId

string

この Runbook を保持し、Azure リソースに対して認証する Azure Automation アカウント ID。

isGlobalRunbook

boolean

このインスタンスがグローバル Runbook であるかどうかを示します。

name

string

Webhook の名前を示します。

runbookName

string

この Runbook の名前。

serviceUri

string

Webhook を送信する必要がある URI。

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。

webhookResourceId

string

この Runbook にリンクされている Webhook のリソース ID。

AzureAppPushReceiver

Azure モバイル アプリのプッシュ通知レシーバー。

名前 説明
emailAddress

string

Azure モバイル アプリに登録されている電子メール アドレス。

name

string

Azure モバイル アプリのプッシュ レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

AzureFunctionReceiver

Azure 関数レシーバー。

名前 既定値 説明
functionAppResourceId

string

関数アプリの azure リソース ID。

functionName

string

関数アプリの関数名。

httpTriggerUrl

string

http 要求の送信先の http トリガー URL。

name

string

Azure 関数レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。

EmailReceiver

電子メール 受信者。

名前 既定値 説明
emailAddress

string

この受信者のメール アドレス。

name

string

電子メール 受信者の名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

status

ReceiverStatus

電子メールの受信者の状態。

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。

ErrorResponse

エラー応答の形式について説明します。

名前 説明
code

string

エラー コード

message

string

操作が失敗した理由を示すエラー メッセージ。

EventHubReceiver

イベント ハブ レシーバー。

名前 既定値 説明
eventHubName

string

特定のイベント ハブ キューの名前

eventHubNameSpace

string

Event Hub 名前空間

name

string

イベント ハブ レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

subscriptionId

string

このイベント ハブを含むサブスクリプションの ID

tenantId

string

このイベント ハブを含むサブスクリプションのテナント ID

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。

ItsmReceiver

Itsm レシーバー。

名前 説明
connectionId

string

上記のワークスペースで定義されている複数の間の ITSM 接続の一意の識別。

name

string

Itsm レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

region

string

ワークスペースが存在するリージョン。 サポートされている値:'centralindia','japaneast','southeastasia','australiasoutheast','uksouth','westcentralus','canadacentral','eastus','westeurope'

ticketConfiguration

string

ITSM アクションの構成用の JSON BLOB。 CreateMultipleWorkItems オプションもこの BLOB の一部になります。

workspaceId

string

OMS LA インスタンス識別子。

LogicAppReceiver

ロジック アプリ レシーバー。

名前 既定値 説明
callbackUrl

string

http 要求の送信先のコールバック URL。

name

string

ロジック アプリ レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

resourceId

string

ロジック アプリ レシーバーの azure リソース ID。

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。

ReceiverStatus

受信側の状態を示します。 有効になっていない受信者は、通信を受信しません。

名前 説明
Disabled

string

Enabled

string

NotSpecified

string

SmsReceiver

SMS レシーバー。

名前 説明
countryCode

string

SMS レシーバーの国コード。

name

string

SMS レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

phoneNumber

string

SMS レシーバーの電話番号。

status

ReceiverStatus

受信側の状態。

VoiceReceiver

音声レシーバー。

名前 説明
countryCode

string

音声レシーバーの国コード。

name

string

音声レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

phoneNumber

string

音声レシーバーの電話番号。

WebhookReceiver

Webhook レシーバー。

名前 既定値 説明
identifierUri

string

aad 認証の識別子 URI を示します。

name

string

Webhook レシーバーの名前。 名前は、アクション グループ内のすべてのレシーバーで一意である必要があります。

objectId

string

aad 認証の Webhook アプリ オブジェクト ID を示します。

serviceUri

string

Webhook を送信する必要がある URI。

tenantId

string

aad 認証のテナント ID を示します。

useAadAuth

boolean

False

AAD 認証を使用するかどうかを示します。

useCommonAlertSchema

boolean

False

共通アラート スキーマを使用するかどうかを示します。