import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages an Elastic Job Agent. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example", * location: "northeurope", * }); * 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, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Sql` - 2023-08-01-preview * * ## Import * * Elastic Job Agents can be imported using the `id`, e.g. * * ```sh * $ pulumi import azure:mssql/jobAgent:JobAgent example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Sql/servers/myserver1/jobAgents/myjobagent1 * ``` */ export declare class JobAgent extends pulumi.CustomResource { /** * Get an existing JobAgent 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?: JobAgentState, opts?: pulumi.CustomResourceOptions): JobAgent; /** * Returns true if the given object is an instance of JobAgent. 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 JobAgent; /** * The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created. */ readonly databaseId: pulumi.Output; /** * An `identity` block as defined below. */ readonly identity: pulumi.Output; /** * The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created. */ readonly name: pulumi.Output; /** * The name of the SKU to use for this Elastic Job Agent. Possible values are `JA100`, `JA200`, `JA400`, and `JA800`. Defaults to `JA100`. */ readonly sku: pulumi.Output; /** * A mapping of tags which should be assigned to this Elastic Job Agent. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a JobAgent 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: JobAgentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering JobAgent resources. */ export interface JobAgentState { /** * The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created. */ databaseId?: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created. */ location?: pulumi.Input; /** * The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created. */ name?: pulumi.Input; /** * The name of the SKU to use for this Elastic Job Agent. Possible values are `JA100`, `JA200`, `JA400`, and `JA800`. Defaults to `JA100`. */ sku?: pulumi.Input; /** * A mapping of tags which should be assigned to this Elastic Job Agent. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a JobAgent resource. */ export interface JobAgentArgs { /** * The ID of the database to store metadata for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created. */ databaseId: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where this Elastic Job Agent should exist. Changing this forces a new Elastic Job Agent to be created. */ location?: pulumi.Input; /** * The name which should be used for this Elastic Job Agent. Changing this forces a new Elastic Job Agent to be created. */ name?: pulumi.Input; /** * The name of the SKU to use for this Elastic Job Agent. Possible values are `JA100`, `JA200`, `JA400`, and `JA800`. Defaults to `JA100`. */ sku?: pulumi.Input; /** * A mapping of tags which should be assigned to this Elastic Job Agent. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }