다음을 통해 공유


CredentialOperations class

CredentialOperations를 나타내는 클래스입니다.

생성자

CredentialOperations(AutomationClientContext)

CredentialOperations를 만듭니다.

메서드

createOrUpdate(string, string, string, CredentialCreateOrUpdateParameters, RequestOptionsBase)

자격 증명을 만듭니다.

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

자격 증명 목록을 검색합니다.

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

자격 증명 목록을 검색합니다.

listByAutomationAccountNext(string, RequestOptionsBase, ServiceCallback<CredentialListResult>)
listByAutomationAccountNext(string, ServiceCallback<CredentialListResult>)
update(string, string, string, CredentialUpdateParameters, RequestOptionsBase)

자격 증명을 업데이트합니다.

update(string, string, string, CredentialUpdateParameters, RequestOptionsBase, ServiceCallback<Credential>)
update(string, string, string, CredentialUpdateParameters, ServiceCallback<Credential>)

생성자 세부 정보

CredentialOperations(AutomationClientContext)

CredentialOperations를 만듭니다.

new CredentialOperations(client: AutomationClientContext)

매개 변수

client
AutomationClientContext

서비스 클라이언트에 대한 참조입니다.

메서드 세부 정보

createOrUpdate(string, string, string, CredentialCreateOrUpdateParameters, RequestOptionsBase)

자격 증명을 만듭니다.

function createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialCreateOrUpdateParameters, options?: RequestOptionsBase): Promise<CredentialCreateOrUpdateResponse>

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명 만들기 또는 업데이트 작업에 제공된 매개 변수입니다.

parameters
CredentialCreateOrUpdateParameters

자격 증명 만들기 또는 업데이트 작업에 제공된 매개 변수입니다.

options
RequestOptionsBase

선택적 매개 변수

반환

Promise<Models.CredentialCreateOrUpdateResponse>

createOrUpdate(string, string, string, CredentialCreateOrUpdateParameters, RequestOptionsBase, ServiceCallback<Credential>)

function createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialCreateOrUpdateParameters, options: RequestOptionsBase, callback: ServiceCallback<Credential>)

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명 만들기 또는 업데이트 작업에 제공된 매개 변수입니다.

parameters
CredentialCreateOrUpdateParameters

자격 증명 만들기 또는 업데이트 작업에 제공된 매개 변수입니다.

options
RequestOptionsBase

선택적 매개 변수

callback

ServiceCallback<Credential>

콜백

createOrUpdate(string, string, string, CredentialCreateOrUpdateParameters, ServiceCallback<Credential>)

function createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialCreateOrUpdateParameters, callback: ServiceCallback<Credential>)

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명 만들기 또는 업데이트 작업에 제공된 매개 변수입니다.

parameters
CredentialCreateOrUpdateParameters

자격 증명 만들기 또는 업데이트 작업에 제공된 매개 변수입니다.

callback

ServiceCallback<Credential>

콜백

deleteMethod(string, string, string, RequestOptionsBase)

자격 증명을 삭제합니다.

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

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명의 이름입니다.

options
RequestOptionsBase

선택적 매개 변수

반환

Promise<RestResponse>

Promise<msRest.RestResponse>

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

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

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명의 이름입니다.

options
RequestOptionsBase

선택적 매개 변수

callback

ServiceCallback<void>

콜백

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

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

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명의 이름입니다.

callback

ServiceCallback<void>

콜백

get(string, string, string, RequestOptionsBase)

자격 증명 이름으로 식별된 자격 증명을 검색합니다.

function get(resourceGroupName: string, automationAccountName: string, credentialName: string, options?: RequestOptionsBase): Promise<CredentialGetResponse>

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명의 이름입니다.

options
RequestOptionsBase

선택적 매개 변수

반환

Promise<Models.CredentialGetResponse>

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

function get(resourceGroupName: string, automationAccountName: string, credentialName: string, options: RequestOptionsBase, callback: ServiceCallback<Credential>)

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명의 이름입니다.

options
RequestOptionsBase

선택적 매개 변수

callback

ServiceCallback<Credential>

콜백

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

function get(resourceGroupName: string, automationAccountName: string, credentialName: string, callback: ServiceCallback<Credential>)

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명의 이름입니다.

callback

ServiceCallback<Credential>

콜백

listByAutomationAccount(string, string, RequestOptionsBase)

자격 증명 목록을 검색합니다.

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

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

options
RequestOptionsBase

선택적 매개 변수

반환

Promise<Models.CredentialListByAutomationAccountResponse>

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

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

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

options
RequestOptionsBase

선택적 매개 변수

listByAutomationAccount(string, string, ServiceCallback<CredentialListResult>)

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

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

listByAutomationAccountNext(string, RequestOptionsBase)

자격 증명 목록을 검색합니다.

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

매개 변수

nextPageLink

string

이전에 성공한 목록 작업 호출의 NextLink입니다.

options
RequestOptionsBase

선택적 매개 변수

반환

Promise<Models.CredentialListByAutomationAccountNextResponse>

listByAutomationAccountNext(string, RequestOptionsBase, ServiceCallback<CredentialListResult>)

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

매개 변수

nextPageLink

string

이전에 성공한 목록 작업 호출의 NextLink입니다.

options
RequestOptionsBase

선택적 매개 변수

listByAutomationAccountNext(string, ServiceCallback<CredentialListResult>)

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

매개 변수

nextPageLink

string

이전에 성공한 목록 작업 호출의 NextLink입니다.

update(string, string, string, CredentialUpdateParameters, RequestOptionsBase)

자격 증명을 업데이트합니다.

function update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialUpdateParameters, options?: RequestOptionsBase): Promise<CredentialUpdateResponse>

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명 업데이트 작업에 제공된 매개 변수입니다.

parameters
CredentialUpdateParameters

자격 증명 업데이트 작업에 제공된 매개 변수입니다.

options
RequestOptionsBase

선택적 매개 변수

반환

Promise<Models.CredentialUpdateResponse>

update(string, string, string, CredentialUpdateParameters, RequestOptionsBase, ServiceCallback<Credential>)

function update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialUpdateParameters, options: RequestOptionsBase, callback: ServiceCallback<Credential>)

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명 업데이트 작업에 제공된 매개 변수입니다.

parameters
CredentialUpdateParameters

자격 증명 업데이트 작업에 제공된 매개 변수입니다.

options
RequestOptionsBase

선택적 매개 변수

callback

ServiceCallback<Credential>

콜백

update(string, string, string, CredentialUpdateParameters, ServiceCallback<Credential>)

function update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialUpdateParameters, callback: ServiceCallback<Credential>)

매개 변수

resourceGroupName

string

Azure 리소스 그룹의 이름입니다.

automationAccountName

string

자동화 계정의 이름입니다.

credentialName

string

자격 증명 업데이트 작업에 제공된 매개 변수입니다.

parameters
CredentialUpdateParameters

자격 증명 업데이트 작업에 제공된 매개 변수입니다.

callback

ServiceCallback<Credential>

콜백