WebhookOperations interface
WebhookOperations を表すインターフェイス。
メソッド
| create |
webhook 名で識別される webhook を作成します。 |
| delete(string, string, string, Webhook |
名前で webhook を削除します。 |
| generate |
Webhook の作成に使用する URI を生成します。 |
| get(string, string, string, Webhook |
webhook 名で識別される webhook を取得します。 |
| list |
Webhook の一覧を取得します。 |
| update(string, string, string, Webhook |
webhook 名で識別される webhook を更新します。 |
メソッドの詳細
createOrUpdate(string, string, string, WebhookCreateOrUpdateParameters, WebhookCreateOrUpdateOptionalParams)
webhook 名で識別される webhook を作成します。
function createOrUpdate(resourceGroupName: string, automationAccountName: string, webhookName: string, parameters: WebhookCreateOrUpdateParameters, options?: WebhookCreateOrUpdateOptionalParams): Promise<Webhook>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- webhookName
-
string
Webhook 名。
- parameters
- WebhookCreateOrUpdateParameters
webhook の作成または更新パラメーター。
オプション パラメーター。
戻り値
Promise<Webhook>
delete(string, string, string, WebhookDeleteOptionalParams)
名前で webhook を削除します。
function delete(resourceGroupName: string, automationAccountName: string, webhookName: string, options?: WebhookDeleteOptionalParams): Promise<void>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- webhookName
-
string
Webhook 名。
- options
- WebhookDeleteOptionalParams
オプション パラメーター。
戻り値
Promise<void>
generateUri(string, string, WebhookGenerateUriOptionalParams)
Webhook の作成に使用する URI を生成します。
function generateUri(resourceGroupName: string, automationAccountName: string, options?: WebhookGenerateUriOptionalParams): Promise<WebhookGenerateUriResponse>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- options
- WebhookGenerateUriOptionalParams
オプション パラメーター。
戻り値
Promise<WebhookGenerateUriResponse>
get(string, string, string, WebhookGetOptionalParams)
webhook 名で識別される webhook を取得します。
function get(resourceGroupName: string, automationAccountName: string, webhookName: string, options?: WebhookGetOptionalParams): Promise<Webhook>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- webhookName
-
string
Webhook 名。
- options
- WebhookGetOptionalParams
オプション パラメーター。
戻り値
Promise<Webhook>
listByAutomationAccount(string, string, WebhookListByAutomationAccountOptionalParams)
Webhook の一覧を取得します。
function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: WebhookListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<Webhook, Webhook[], PageSettings>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
オプション パラメーター。
戻り値
update(string, string, string, WebhookUpdateParameters, WebhookUpdateOptionalParams)
webhook 名で識別される webhook を更新します。
function update(resourceGroupName: string, automationAccountName: string, webhookName: string, parameters: WebhookUpdateParameters, options?: WebhookUpdateOptionalParams): Promise<Webhook>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- webhookName
-
string
Webhook 名。
- parameters
- WebhookUpdateParameters
webhook の更新パラメーター。
- options
- WebhookUpdateOptionalParams
オプション パラメーター。
戻り値
Promise<Webhook>