UNPKG

@azure/arm-automation

Version:

AutomationClient Library with typescript type definitions for node.js and browser.

154 lines 9.49 kB
import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import { AutomationClientContext } from "../automationClientContext"; /** Class representing a CredentialOperations. */ export declare class CredentialOperations { private readonly client; /** * Create a CredentialOperations. * @param {AutomationClientContext} client Reference to the service client. */ constructor(client: AutomationClientContext); /** * Delete the credential. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The name of credential. * @param [options] The optional parameters * @returns Promise<msRest.RestResponse> */ deleteMethod(resourceGroupName: string, automationAccountName: string, credentialName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The name of credential. * @param callback The callback */ deleteMethod(resourceGroupName: string, automationAccountName: string, credentialName: string, callback: msRest.ServiceCallback<void>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The name of credential. * @param options The optional parameters * @param callback The callback */ deleteMethod(resourceGroupName: string, automationAccountName: string, credentialName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void; /** * Retrieve the credential identified by credential name. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The name of credential. * @param [options] The optional parameters * @returns Promise<Models.CredentialGetResponse> */ get(resourceGroupName: string, automationAccountName: string, credentialName: string, options?: msRest.RequestOptionsBase): Promise<Models.CredentialGetResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The name of credential. * @param callback The callback */ get(resourceGroupName: string, automationAccountName: string, credentialName: string, callback: msRest.ServiceCallback<Models.Credential>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The name of credential. * @param options The optional parameters * @param callback The callback */ get(resourceGroupName: string, automationAccountName: string, credentialName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Credential>): void; /** * Create a credential. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The parameters supplied to the create or update credential operation. * @param parameters The parameters supplied to the create or update credential operation. * @param [options] The optional parameters * @returns Promise<Models.CredentialCreateOrUpdateResponse> */ createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: Models.CredentialCreateOrUpdateParameters, options?: msRest.RequestOptionsBase): Promise<Models.CredentialCreateOrUpdateResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The parameters supplied to the create or update credential operation. * @param parameters The parameters supplied to the create or update credential operation. * @param callback The callback */ createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: Models.CredentialCreateOrUpdateParameters, callback: msRest.ServiceCallback<Models.Credential>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The parameters supplied to the create or update credential operation. * @param parameters The parameters supplied to the create or update credential operation. * @param options The optional parameters * @param callback The callback */ createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: Models.CredentialCreateOrUpdateParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Credential>): void; /** * Update a credential. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The parameters supplied to the Update credential operation. * @param parameters The parameters supplied to the Update credential operation. * @param [options] The optional parameters * @returns Promise<Models.CredentialUpdateResponse> */ update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: Models.CredentialUpdateParameters, options?: msRest.RequestOptionsBase): Promise<Models.CredentialUpdateResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The parameters supplied to the Update credential operation. * @param parameters The parameters supplied to the Update credential operation. * @param callback The callback */ update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: Models.CredentialUpdateParameters, callback: msRest.ServiceCallback<Models.Credential>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param credentialName The parameters supplied to the Update credential operation. * @param parameters The parameters supplied to the Update credential operation. * @param options The optional parameters * @param callback The callback */ update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: Models.CredentialUpdateParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Credential>): void; /** * Retrieve a list of credentials. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param [options] The optional parameters * @returns Promise<Models.CredentialListByAutomationAccountResponse> */ listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: msRest.RequestOptionsBase): Promise<Models.CredentialListByAutomationAccountResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param callback The callback */ listByAutomationAccount(resourceGroupName: string, automationAccountName: string, callback: msRest.ServiceCallback<Models.CredentialListResult>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param options The optional parameters * @param callback The callback */ listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.CredentialListResult>): void; /** * Retrieve a list of credentials. * @param nextPageLink The NextLink from the previous successful call to List operation. * @param [options] The optional parameters * @returns Promise<Models.CredentialListByAutomationAccountNextResponse> */ listByAutomationAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.CredentialListByAutomationAccountNextResponse>; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback */ listByAutomationAccountNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.CredentialListResult>): void; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param options The optional parameters * @param callback The callback */ listByAutomationAccountNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.CredentialListResult>): void; } //# sourceMappingURL=credentialOperations.d.ts.map