共用方式為


VariableOperations interface

代表 VariableOperations 的介面。

方法

createOrUpdate(string, string, string, VariableCreateOrUpdateParameters, VariableCreateOrUpdateOptionalParams)

建立變數。

delete(string, string, string, VariableDeleteOptionalParams)

刪除 變數。

get(string, string, string, VariableGetOptionalParams)

擷取變數名稱所識別的變數。

listByAutomationAccount(string, string, VariableListByAutomationAccountOptionalParams)

擷取變數清單。

update(string, string, string, VariableUpdateParameters, VariableUpdateOptionalParams)

更新變數。

方法詳細資料

createOrUpdate(string, string, string, VariableCreateOrUpdateParameters, VariableCreateOrUpdateOptionalParams)

建立變數。

function createOrUpdate(resourceGroupName: string, automationAccountName: string, variableName: string, parameters: VariableCreateOrUpdateParameters, options?: VariableCreateOrUpdateOptionalParams): Promise<Variable>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

variableName

string

變數名稱。

parameters
VariableCreateOrUpdateParameters

提供給建立或更新變數作業的參數。

options
VariableCreateOrUpdateOptionalParams

選項參數。

傳回

Promise<Variable>

delete(string, string, string, VariableDeleteOptionalParams)

刪除 變數。

function delete(resourceGroupName: string, automationAccountName: string, variableName: string, options?: VariableDeleteOptionalParams): Promise<void>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

variableName

string

變數的名稱。

options
VariableDeleteOptionalParams

選項參數。

傳回

Promise<void>

get(string, string, string, VariableGetOptionalParams)

擷取變數名稱所識別的變數。

function get(resourceGroupName: string, automationAccountName: string, variableName: string, options?: VariableGetOptionalParams): Promise<Variable>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

variableName

string

變數的名稱。

options
VariableGetOptionalParams

選項參數。

傳回

Promise<Variable>

listByAutomationAccount(string, string, VariableListByAutomationAccountOptionalParams)

擷取變數清單。

function listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: VariableListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<Variable, Variable[], PageSettings>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

傳回

update(string, string, string, VariableUpdateParameters, VariableUpdateOptionalParams)

更新變數。

function update(resourceGroupName: string, automationAccountName: string, variableName: string, parameters: VariableUpdateParameters, options?: VariableUpdateOptionalParams): Promise<Variable>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

variableName

string

變數名稱。

parameters
VariableUpdateParameters

提供給更新變數作業的參數。

options
VariableUpdateOptionalParams

選項參數。

傳回

Promise<Variable>