ScheduleOperations interface
ScheduleOperations を表すインターフェイス。
メソッド
create |
スケジュールを作成します。 |
delete(string, string, string, Schedule |
スケジュール名で識別されるスケジュールを削除します。 |
get(string, string, string, Schedule |
スケジュール名で識別されるスケジュールを取得します。 |
list |
スケジュールの一覧を取得します。 |
update(string, string, string, Schedule |
スケジュール名で識別されるスケジュールを更新します。 |
メソッドの詳細
createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, ScheduleCreateOrUpdateOptionalParams)
スケジュールを作成します。
function createOrUpdate(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleCreateOrUpdateParameters, options?: ScheduleCreateOrUpdateOptionalParams): Promise<Schedule>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- scheduleName
-
string
スケジュール名。
- parameters
- ScheduleCreateOrUpdateParameters
スケジュールの作成または更新操作に指定されたパラメーター。
オプション パラメーター。
戻り値
Promise<Schedule>
delete(string, string, string, ScheduleDeleteOptionalParams)
スケジュール名で識別されるスケジュールを削除します。
function delete(resourceGroupName: string, automationAccountName: string, scheduleName: string, options?: ScheduleDeleteOptionalParams): Promise<void>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- scheduleName
-
string
スケジュール名。
- options
- ScheduleDeleteOptionalParams
オプション パラメーター。
戻り値
Promise<void>
get(string, string, string, ScheduleGetOptionalParams)
スケジュール名で識別されるスケジュールを取得します。
function get(resourceGroupName: string, automationAccountName: string, scheduleName: string, options?: ScheduleGetOptionalParams): Promise<Schedule>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- scheduleName
-
string
スケジュール名。
- options
- ScheduleGetOptionalParams
オプション パラメーター。
戻り値
Promise<Schedule>
listByAutomationAccount(string, string, ScheduleListByAutomationAccountOptionalParams)
スケジュールの一覧を取得します。
function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: ScheduleListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<Schedule, Schedule[], PageSettings>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
オプション パラメーター。
戻り値
update(string, string, string, ScheduleUpdateParameters, ScheduleUpdateOptionalParams)
スケジュール名で識別されるスケジュールを更新します。
function update(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleUpdateParameters, options?: ScheduleUpdateOptionalParams): Promise<Schedule>
パラメーター
- resourceGroupName
-
string
Azure リソース グループの名前。
- automationAccountName
-
string
Automation アカウントの名前。
- scheduleName
-
string
スケジュール名。
- parameters
- ScheduleUpdateParameters
更新スケジュール操作に指定されたパラメーター。
- options
- ScheduleUpdateOptionalParams
オプション パラメーター。
戻り値
Promise<Schedule>
Azure SDK for JavaScript