import * as pulumi from "@pulumi/pulumi"; /** * Manages an Elastic Job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resource-group", * location: "East US", * }); * const exampleServer = new azure.mssql.Server("example", { * name: "example-server", * resourceGroupName: example.name, * location: example.location, * version: "12.0", * administratorLogin: "4dm1n157r470r", * administratorLoginPassword: "4-v3ry-53cr37-p455w0rd", * }); * const exampleDatabase = new azure.mssql.Database("example", { * name: "example-db", * serverId: exampleServer.id, * collation: "SQL_Latin1_General_CP1_CI_AS", * skuName: "S1", * }); * const exampleJobAgent = new azure.mssql.JobAgent("example", { * name: "example-job-agent", * location: example.location, * databaseId: exampleDatabase.id, * }); * const exampleJobCredential = new azure.mssql.JobCredential("example", { * name: "example-job-credential", * jobAgentId: exampleJobAgent.id, * username: "my-username", * password: "MyP4ssw0rd!!!", * }); * const exampleJob = new azure.mssql.Job("example", { * name: "example-job", * jobAgentId: exampleJobAgent.id, * description: "example description", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Sql` - 2023-08-01-preview * * ## Import * * Elastic Jobs can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:mssql/job:Job example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Sql/servers/myserver1/jobAgents/myjobagent1/jobs/myjob1 * ``` */ export declare class Job extends pulumi.CustomResource { /** * Get an existing Job 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?: JobState, opts?: pulumi.CustomResourceOptions): Job; /** * Returns true if the given object is an instance of Job. 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 Job; /** * The description of the Elastic Job. */ readonly description: pulumi.Output; /** * The ID of the Elastic Job Agent. Changing this forces a new Elastic Job to be created. */ readonly jobAgentId: pulumi.Output; /** * The name which should be used for this Elastic Job. Changing this forces a new Elastic Job to be created. */ readonly name: pulumi.Output; /** * Create a Job 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: JobArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Job resources. */ export interface JobState { /** * The description of the Elastic Job. */ description?: pulumi.Input; /** * The ID of the Elastic Job Agent. Changing this forces a new Elastic Job to be created. */ jobAgentId?: pulumi.Input; /** * The name which should be used for this Elastic Job. Changing this forces a new Elastic Job to be created. */ name?: pulumi.Input; } /** * The set of arguments for constructing a Job resource. */ export interface JobArgs { /** * The description of the Elastic Job. */ description?: pulumi.Input; /** * The ID of the Elastic Job Agent. Changing this forces a new Elastic Job to be created. */ jobAgentId: pulumi.Input; /** * The name which should be used for this Elastic Job. Changing this forces a new Elastic Job to be created. */ name?: pulumi.Input; }