共用方式為


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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

scheduleName

string

排程名稱。

callback

ServiceCallback<Schedule>

回呼

listByAutomationAccount(string, string, RequestOptionsBase)

擷取排程清單。

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

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

自動化帳戶的名稱。

options
RequestOptionsBase

選擇性參數

listByAutomationAccount(string, string, ServiceCallback<ScheduleListResult>)

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

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

選擇性參數

listByAutomationAccountNext(string, ServiceCallback<ScheduleListResult>)

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

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

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

自動化帳戶的名稱。

scheduleName

string

排程名稱。

parameters
ScheduleUpdateParameters

提供給更新排程作業的參數。

callback

ServiceCallback<Schedule>

回呼