import * as pulumi from "@pulumi/pulumi"; /** * Manages a Automation Credential. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleAccount = new azure.automation.Account("example", { * name: "account1", * location: example.location, * resourceGroupName: example.name, * skuName: "Basic", * }); * const exampleCredential = new azure.automation.Credential("example", { * name: "credential1", * resourceGroupName: example.name, * automationAccountName: exampleAccount.name, * username: "example_user", * password: "example_pwd", * description: "This is an example credential", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Automation` - 2024-10-23 * * ## Import * * Automation Credentials can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:automation/credential:Credential credential1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1/credentials/credential1 * ``` */ export declare class Credential extends pulumi.CustomResource { /** * Get an existing Credential resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CredentialState, opts?: pulumi.CustomResourceOptions): Credential; /** * Returns true if the given object is an instance of Credential. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Credential; /** * The name of the automation account in which the Credential is created. Changing this forces a new resource to be created. */ readonly automationAccountName: pulumi.Output; /** * The description associated with this Automation Credential. */ readonly description: pulumi.Output; /** * Specifies the name of the Credential. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The password associated with this Automation Credential. */ readonly password: pulumi.Output; /** * The name of the resource group in which the Credential is created. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The username associated with this Automation Credential. */ readonly username: pulumi.Output; /** * Create a Credential resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CredentialArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Credential resources. */ export interface CredentialState { /** * The name of the automation account in which the Credential is created. Changing this forces a new resource to be created. */ automationAccountName?: pulumi.Input; /** * The description associated with this Automation Credential. */ description?: pulumi.Input; /** * Specifies the name of the Credential. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The password associated with this Automation Credential. */ password?: pulumi.Input; /** * The name of the resource group in which the Credential is created. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The username associated with this Automation Credential. */ username?: pulumi.Input; } /** * The set of arguments for constructing a Credential resource. */ export interface CredentialArgs { /** * The name of the automation account in which the Credential is created. Changing this forces a new resource to be created. */ automationAccountName: pulumi.Input; /** * The description associated with this Automation Credential. */ description?: pulumi.Input; /** * Specifies the name of the Credential. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The password associated with this Automation Credential. */ password: pulumi.Input; /** * The name of the resource group in which the Credential is created. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * The username associated with this Automation Credential. */ username: pulumi.Input; }