import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Job Target Group. * * ## 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: "westeurope", * }); * const exampleServer = new azure.mssql.Server("example", { * name: "example-server", * location: example.location, * resourceGroupName: example.name, * 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: "testusername", * password: "testpassword", * }); * const exampleJobTargetGroup = new azure.mssql.JobTargetGroup("example", { * name: "example-target-group", * jobAgentId: exampleJobAgent.id, * jobTargets: [{ * serverName: exampleServer.name, * jobCredentialId: exampleJobCredential.id, * }], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Sql` - 2023-08-01-preview * * ## Import * * Job Target Groups can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:mssql/jobTargetGroup:JobTargetGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Sql/servers/myserver1/jobAgents/myjobagent1/targetGroups/mytargetgroup1 * ``` */ export declare class JobTargetGroup extends pulumi.CustomResource { /** * Get an existing JobTargetGroup 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?: JobTargetGroupState, opts?: pulumi.CustomResourceOptions): JobTargetGroup; /** * Returns true if the given object is an instance of JobTargetGroup. 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 JobTargetGroup; /** * The ID of the Elastic Job Agent. Changing this forces a new Job Target Group to be created. */ readonly jobAgentId: pulumi.Output; /** * One or more `jobTarget` blocks as defined below. */ readonly jobTargets: pulumi.Output; /** * The name which should be used for this Job Target Group. Changing this forces a new Job Target Group to be created. */ readonly name: pulumi.Output; /** * Create a JobTargetGroup 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: JobTargetGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering JobTargetGroup resources. */ export interface JobTargetGroupState { /** * The ID of the Elastic Job Agent. Changing this forces a new Job Target Group to be created. */ jobAgentId?: pulumi.Input; /** * One or more `jobTarget` blocks as defined below. */ jobTargets?: pulumi.Input[]>; /** * The name which should be used for this Job Target Group. Changing this forces a new Job Target Group to be created. */ name?: pulumi.Input; } /** * The set of arguments for constructing a JobTargetGroup resource. */ export interface JobTargetGroupArgs { /** * The ID of the Elastic Job Agent. Changing this forces a new Job Target Group to be created. */ jobAgentId: pulumi.Input; /** * One or more `jobTarget` blocks as defined below. */ jobTargets?: pulumi.Input[]>; /** * The name which should be used for this Job Target Group. Changing this forces a new Job Target Group to be created. */ name?: pulumi.Input; }