次の方法で共有


ScheduleOperations class

ScheduleOperations を表すクラス。

コンストラクター

ScheduleOperations(AutomationClientContext)

ScheduleOperations を作成します。

メソッド

createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, RequestOptionsBase)

スケジュールを作成します。

createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, RequestOptionsBase, ServiceCallback<Schedule>)
createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, ServiceCallback<Schedule>)
deleteMethod(string, string, string, RequestOptionsBase)

スケジュール名で識別されるスケジュールを削除します。

deleteMethod(string, string, string, RequestOptionsBase, ServiceCallback<void>)
deleteMethod(string, string, string, ServiceCallback<void>)
get(string, string, string, RequestOptionsBase)

スケジュール名で識別されるスケジュールを取得します。

get(string, string, string, RequestOptionsBase, ServiceCallback<Schedule>)
get(string, string, string, ServiceCallback<Schedule>)
listByAutomationAccount(string, string, RequestOptionsBase)

スケジュールの一覧を取得します。

listByAutomationAccount(string, string, RequestOptionsBase, ServiceCallback<ScheduleListResult>)
listByAutomationAccount(string, string, ServiceCallback<ScheduleListResult>)
listByAutomationAccountNext(string, RequestOptionsBase)

スケジュールの一覧を取得します。

listByAutomationAccountNext(string, RequestOptionsBase, ServiceCallback<ScheduleListResult>)
listByAutomationAccountNext(string, ServiceCallback<ScheduleListResult>)
update(string, string, string, ScheduleUpdateParameters, RequestOptionsBase)

スケジュール名で識別されるスケジュールを更新します。

update(string, string, string, ScheduleUpdateParameters, RequestOptionsBase, ServiceCallback<Schedule>)
update(string, string, string, ScheduleUpdateParameters, ServiceCallback<Schedule>)

コンストラクターの詳細

ScheduleOperations(AutomationClientContext)

ScheduleOperations を作成します。

new ScheduleOperations(client: AutomationClientContext)

パラメーター

client
AutomationClientContext

サービス クライアントへの参照。

メソッドの詳細

createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, RequestOptionsBase)

スケジュールを作成します。

function createOrUpdate(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleCreateOrUpdateParameters, options?: RequestOptionsBase): Promise<ScheduleCreateOrUpdateResponse>

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

parameters
ScheduleCreateOrUpdateParameters

スケジュールの作成または更新操作に指定されたパラメーター。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.ScheduleCreateOrUpdateResponse>

createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, RequestOptionsBase, ServiceCallback<Schedule>)

function createOrUpdate(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleCreateOrUpdateParameters, options: RequestOptionsBase, callback: ServiceCallback<Schedule>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

parameters
ScheduleCreateOrUpdateParameters

スケジュールの作成または更新操作に指定されたパラメーター。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<Schedule>

コールバック。

createOrUpdate(string, string, string, ScheduleCreateOrUpdateParameters, ServiceCallback<Schedule>)

function createOrUpdate(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleCreateOrUpdateParameters, callback: ServiceCallback<Schedule>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

parameters
ScheduleCreateOrUpdateParameters

スケジュールの作成または更新操作に指定されたパラメーター。

callback

ServiceCallback<Schedule>

コールバック。

deleteMethod(string, string, string, RequestOptionsBase)

スケジュール名で識別されるスケジュールを削除します。

function deleteMethod(resourceGroupName: string, automationAccountName: string, scheduleName: string, options?: RequestOptionsBase): Promise<RestResponse>

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<RestResponse>

Promise<msRest.RestResponse>

deleteMethod(string, string, string, RequestOptionsBase, ServiceCallback<void>)

function deleteMethod(resourceGroupName: string, automationAccountName: string, scheduleName: string, options: RequestOptionsBase, callback: ServiceCallback<void>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<void>

コールバック。

deleteMethod(string, string, string, ServiceCallback<void>)

function deleteMethod(resourceGroupName: string, automationAccountName: string, scheduleName: string, callback: ServiceCallback<void>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

callback

ServiceCallback<void>

コールバック。

get(string, string, string, RequestOptionsBase)

スケジュール名で識別されるスケジュールを取得します。

function get(resourceGroupName: string, automationAccountName: string, scheduleName: string, options?: RequestOptionsBase): Promise<ScheduleGetResponse>

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.ScheduleGetResponse>

get(string, string, string, RequestOptionsBase, ServiceCallback<Schedule>)

function get(resourceGroupName: string, automationAccountName: string, scheduleName: string, options: RequestOptionsBase, callback: ServiceCallback<Schedule>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<Schedule>

コールバック。

get(string, string, string, ServiceCallback<Schedule>)

function get(resourceGroupName: string, automationAccountName: string, scheduleName: string, callback: ServiceCallback<Schedule>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

callback

ServiceCallback<Schedule>

コールバック。

listByAutomationAccount(string, string, RequestOptionsBase)

スケジュールの一覧を取得します。

function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: RequestOptionsBase): Promise<ScheduleListByAutomationAccountResponse>

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.ScheduleListByAutomationAccountResponse>

listByAutomationAccount(string, string, RequestOptionsBase, ServiceCallback<ScheduleListResult>)

function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options: RequestOptionsBase, callback: ServiceCallback<ScheduleListResult>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<ScheduleListResult>

コールバック。

listByAutomationAccount(string, string, ServiceCallback<ScheduleListResult>)

function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, callback: ServiceCallback<ScheduleListResult>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

callback

ServiceCallback<ScheduleListResult>

コールバック。

listByAutomationAccountNext(string, RequestOptionsBase)

スケジュールの一覧を取得します。

function listByAutomationAccountNext(nextPageLink: string, options?: RequestOptionsBase): Promise<ScheduleListByAutomationAccountNextResponse>

パラメーター

nextPageLink

string

List 操作の前の正常な呼び出しからの NextLink。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.ScheduleListByAutomationAccountNextResponse>

listByAutomationAccountNext(string, RequestOptionsBase, ServiceCallback<ScheduleListResult>)

function listByAutomationAccountNext(nextPageLink: string, options: RequestOptionsBase, callback: ServiceCallback<ScheduleListResult>)

パラメーター

nextPageLink

string

List 操作の前の正常な呼び出しからの NextLink。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<ScheduleListResult>

コールバック。

listByAutomationAccountNext(string, ServiceCallback<ScheduleListResult>)

function listByAutomationAccountNext(nextPageLink: string, callback: ServiceCallback<ScheduleListResult>)

パラメーター

nextPageLink

string

List 操作の前の正常な呼び出しからの NextLink。

callback

ServiceCallback<ScheduleListResult>

コールバック。

update(string, string, string, ScheduleUpdateParameters, RequestOptionsBase)

スケジュール名で識別されるスケジュールを更新します。

function update(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleUpdateParameters, options?: RequestOptionsBase): Promise<ScheduleUpdateResponse>

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

parameters
ScheduleUpdateParameters

更新スケジュール操作に指定されたパラメーター。

options
RequestOptionsBase

省略可能なパラメーター

戻り値

Promise<Models.ScheduleUpdateResponse>

update(string, string, string, ScheduleUpdateParameters, RequestOptionsBase, ServiceCallback<Schedule>)

function update(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleUpdateParameters, options: RequestOptionsBase, callback: ServiceCallback<Schedule>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

parameters
ScheduleUpdateParameters

更新スケジュール操作に指定されたパラメーター。

options
RequestOptionsBase

省略可能なパラメーター

callback

ServiceCallback<Schedule>

コールバック。

update(string, string, string, ScheduleUpdateParameters, ServiceCallback<Schedule>)

function update(resourceGroupName: string, automationAccountName: string, scheduleName: string, parameters: ScheduleUpdateParameters, callback: ServiceCallback<Schedule>)

パラメーター

resourceGroupName

string

Azure リソース グループの名前。

automationAccountName

string

Automation アカウントの名前。

scheduleName

string

スケジュール名。

parameters
ScheduleUpdateParameters

更新スケジュール操作に指定されたパラメーター。

callback

ServiceCallback<Schedule>

コールバック。