共用方式為


CertificateOperations class

代表 CertificateOperations 的類別。

建構函式

CertificateOperations(AutomationClientContext)

建立 CertificateOperations。

方法

createOrUpdate(string, string, string, CertificateCreateOrUpdateParameters, RequestOptionsBase)

建立憑證。

createOrUpdate(string, string, string, CertificateCreateOrUpdateParameters, RequestOptionsBase, ServiceCallback<Certificate>)
createOrUpdate(string, string, string, CertificateCreateOrUpdateParameters, ServiceCallback<Certificate>)
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<Certificate>)
get(string, string, string, ServiceCallback<Certificate>)
listByAutomationAccount(string, string, RequestOptionsBase)

擷取憑證清單。

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

擷取憑證清單。

listByAutomationAccountNext(string, RequestOptionsBase, ServiceCallback<CertificateListResult>)
listByAutomationAccountNext(string, ServiceCallback<CertificateListResult>)
update(string, string, string, CertificateUpdateParameters, RequestOptionsBase)

更新憑證。

update(string, string, string, CertificateUpdateParameters, RequestOptionsBase, ServiceCallback<Certificate>)
update(string, string, string, CertificateUpdateParameters, ServiceCallback<Certificate>)

建構函式詳細資料

CertificateOperations(AutomationClientContext)

建立 CertificateOperations。

new CertificateOperations(client: AutomationClientContext)

參數

client
AutomationClientContext

服務用戶端的參考。

方法詳細資料

createOrUpdate(string, string, string, CertificateCreateOrUpdateParameters, RequestOptionsBase)

建立憑證。

function createOrUpdate(resourceGroupName: string, automationAccountName: string, certificateName: string, parameters: CertificateCreateOrUpdateParameters, options?: RequestOptionsBase): Promise<CertificateCreateOrUpdateResponse>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

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

parameters
CertificateCreateOrUpdateParameters

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

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.CertificateCreateOrUpdateResponse>

createOrUpdate(string, string, string, CertificateCreateOrUpdateParameters, RequestOptionsBase, ServiceCallback<Certificate>)

function createOrUpdate(resourceGroupName: string, automationAccountName: string, certificateName: string, parameters: CertificateCreateOrUpdateParameters, options: RequestOptionsBase, callback: ServiceCallback<Certificate>)

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

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

parameters
CertificateCreateOrUpdateParameters

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

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<Certificate>

回呼

createOrUpdate(string, string, string, CertificateCreateOrUpdateParameters, ServiceCallback<Certificate>)

function createOrUpdate(resourceGroupName: string, automationAccountName: string, certificateName: string, parameters: CertificateCreateOrUpdateParameters, callback: ServiceCallback<Certificate>)

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

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

parameters
CertificateCreateOrUpdateParameters

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

callback

ServiceCallback<Certificate>

回呼

deleteMethod(string, string, string, RequestOptionsBase)

刪除憑證。

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

憑證的名稱。

options
RequestOptionsBase

選擇性參數

傳回

Promise<RestResponse>

Promise < msRest.RestResponse>

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

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

憑證的名稱。

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<void>

回呼

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

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

憑證的名稱。

callback

ServiceCallback<void>

回呼

get(string, string, string, RequestOptionsBase)

擷取憑證名稱所識別的憑證。

function get(resourceGroupName: string, automationAccountName: string, certificateName: string, options?: RequestOptionsBase): Promise<CertificateGetResponse>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

憑證的名稱。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.CertificateGetResponse>

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

function get(resourceGroupName: string, automationAccountName: string, certificateName: string, options: RequestOptionsBase, callback: ServiceCallback<Certificate>)

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

憑證的名稱。

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<Certificate>

回呼

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

function get(resourceGroupName: string, automationAccountName: string, certificateName: string, callback: ServiceCallback<Certificate>)

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

憑證的名稱。

callback

ServiceCallback<Certificate>

回呼

listByAutomationAccount(string, string, RequestOptionsBase)

擷取憑證清單。

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.CertificateListByAutomationAccountResponse>

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

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

options
RequestOptionsBase

選擇性參數

listByAutomationAccount(string, string, ServiceCallback<CertificateListResult>)

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

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

listByAutomationAccountNext(string, RequestOptionsBase)

擷取憑證清單。

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

參數

nextPageLink

string

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

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.CertificateListByAutomationAccountNextResponse>

listByAutomationAccountNext(string, RequestOptionsBase, ServiceCallback<CertificateListResult>)

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

參數

nextPageLink

string

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

options
RequestOptionsBase

選擇性參數

listByAutomationAccountNext(string, ServiceCallback<CertificateListResult>)

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

參數

nextPageLink

string

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

update(string, string, string, CertificateUpdateParameters, RequestOptionsBase)

更新憑證。

function update(resourceGroupName: string, automationAccountName: string, certificateName: string, parameters: CertificateUpdateParameters, options?: RequestOptionsBase): Promise<CertificateUpdateResponse>

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

提供給更新憑證作業的參數。

parameters
CertificateUpdateParameters

提供給更新憑證作業的參數。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.CertificateUpdateResponse>

update(string, string, string, CertificateUpdateParameters, RequestOptionsBase, ServiceCallback<Certificate>)

function update(resourceGroupName: string, automationAccountName: string, certificateName: string, parameters: CertificateUpdateParameters, options: RequestOptionsBase, callback: ServiceCallback<Certificate>)

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

提供給更新憑證作業的參數。

parameters
CertificateUpdateParameters

提供給更新憑證作業的參數。

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<Certificate>

回呼

update(string, string, string, CertificateUpdateParameters, ServiceCallback<Certificate>)

function update(resourceGroupName: string, automationAccountName: string, certificateName: string, parameters: CertificateUpdateParameters, callback: ServiceCallback<Certificate>)

參數

resourceGroupName

string

Azure 資源群組的名稱。

automationAccountName

string

自動化帳戶的名稱。

certificateName

string

提供給更新憑證作業的參數。

parameters
CertificateUpdateParameters

提供給更新憑證作業的參數。

callback

ServiceCallback<Certificate>

回呼