import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Linked Service (connection) between a SQL Server and Azure Data Factory. * * ## 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 exampleFactory = new azure.datafactory.Factory("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * }); * const exampleLinkedServiceSqlServer = new azure.datafactory.LinkedServiceSqlServer("example", { * name: "example", * dataFactoryId: exampleFactory.id, * connectionString: "Integrated Security=False;Data Source=test;Initial Catalog=test;User ID=test;Password=test", * }); * ``` * * ### With Password In Key Vault * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const current = azure.core.getClientConfig({}); * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleKeyVault = new azure.keyvault.KeyVault("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * tenantId: current.then(current => current.tenantId), * skuName: "standard", * }); * const exampleFactory = new azure.datafactory.Factory("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * }); * const exampleLinkedServiceKeyVault = new azure.datafactory.LinkedServiceKeyVault("example", { * name: "kvlink", * dataFactoryId: exampleFactory.id, * keyVaultId: exampleKeyVault.id, * }); * const exampleLinkedServiceSqlServer = new azure.datafactory.LinkedServiceSqlServer("example", { * name: "example", * dataFactoryId: exampleFactory.id, * connectionString: "Integrated Security=False;Data Source=test;Initial Catalog=test;User ID=test;", * keyVaultPassword: { * linkedServiceName: exampleLinkedServiceKeyVault.name, * secretName: "secret", * }, * }); * ``` * * ## Import * * Data Factory SQL Server Linked Service's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:datafactory/linkedServiceSqlServer:LinkedServiceSqlServer example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/linkedservices/example * ``` */ export declare class LinkedServiceSqlServer extends pulumi.CustomResource { /** * Get an existing LinkedServiceSqlServer 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?: LinkedServiceSqlServerState, opts?: pulumi.CustomResourceOptions): LinkedServiceSqlServer; /** * Returns true if the given object is an instance of LinkedServiceSqlServer. 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 LinkedServiceSqlServer; /** * A map of additional properties to associate with the Data Factory Linked Service SQL Server. */ readonly additionalProperties: pulumi.Output<{ [key: string]: string; } | undefined>; /** * List of tags that can be used for describing the Data Factory Linked Service SQL Server. */ readonly annotations: pulumi.Output; /** * The connection string in which to authenticate with the SQL Server. Exactly one of either `connectionString` or `keyVaultConnectionString` is required. */ readonly connectionString: pulumi.Output; /** * The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource. */ readonly dataFactoryId: pulumi.Output; /** * The description for the Data Factory Linked Service SQL Server. */ readonly description: pulumi.Output; /** * The integration runtime reference to associate with the Data Factory Linked Service SQL Server. */ readonly integrationRuntimeName: pulumi.Output; /** * A `keyVaultConnectionString` block as defined below. Use this argument to store SQL Server connection string in an existing Key Vault. It needs an existing Key Vault Data Factory Linked Service. Exactly one of either `connectionString` or `keyVaultConnectionString` is required. */ readonly keyVaultConnectionString: pulumi.Output; /** * A `keyVaultPassword` block as defined below. Use this argument to store SQL Server password in an existing Key Vault. It needs an existing Key Vault Data Factory Linked Service. */ readonly keyVaultPassword: pulumi.Output; /** * Specifies the name of the Data Factory Linked Service SQL Server. Changing this forces a new resource to be created. Must be unique within a data factory. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions. */ readonly name: pulumi.Output; /** * A map of parameters to associate with the Data Factory Linked Service SQL Server. */ readonly parameters: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The on-premises Windows authentication user name. */ readonly userName: pulumi.Output; /** * Create a LinkedServiceSqlServer 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: LinkedServiceSqlServerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LinkedServiceSqlServer resources. */ export interface LinkedServiceSqlServerState { /** * A map of additional properties to associate with the Data Factory Linked Service SQL Server. */ additionalProperties?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * List of tags that can be used for describing the Data Factory Linked Service SQL Server. */ annotations?: pulumi.Input[]>; /** * The connection string in which to authenticate with the SQL Server. Exactly one of either `connectionString` or `keyVaultConnectionString` is required. */ connectionString?: pulumi.Input; /** * The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource. */ dataFactoryId?: pulumi.Input; /** * The description for the Data Factory Linked Service SQL Server. */ description?: pulumi.Input; /** * The integration runtime reference to associate with the Data Factory Linked Service SQL Server. */ integrationRuntimeName?: pulumi.Input; /** * A `keyVaultConnectionString` block as defined below. Use this argument to store SQL Server connection string in an existing Key Vault. It needs an existing Key Vault Data Factory Linked Service. Exactly one of either `connectionString` or `keyVaultConnectionString` is required. */ keyVaultConnectionString?: pulumi.Input; /** * A `keyVaultPassword` block as defined below. Use this argument to store SQL Server password in an existing Key Vault. It needs an existing Key Vault Data Factory Linked Service. */ keyVaultPassword?: pulumi.Input; /** * Specifies the name of the Data Factory Linked Service SQL Server. Changing this forces a new resource to be created. Must be unique within a data factory. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions. */ name?: pulumi.Input; /** * A map of parameters to associate with the Data Factory Linked Service SQL Server. */ parameters?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The on-premises Windows authentication user name. */ userName?: pulumi.Input; } /** * The set of arguments for constructing a LinkedServiceSqlServer resource. */ export interface LinkedServiceSqlServerArgs { /** * A map of additional properties to associate with the Data Factory Linked Service SQL Server. */ additionalProperties?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * List of tags that can be used for describing the Data Factory Linked Service SQL Server. */ annotations?: pulumi.Input[]>; /** * The connection string in which to authenticate with the SQL Server. Exactly one of either `connectionString` or `keyVaultConnectionString` is required. */ connectionString?: pulumi.Input; /** * The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource. */ dataFactoryId: pulumi.Input; /** * The description for the Data Factory Linked Service SQL Server. */ description?: pulumi.Input; /** * The integration runtime reference to associate with the Data Factory Linked Service SQL Server. */ integrationRuntimeName?: pulumi.Input; /** * A `keyVaultConnectionString` block as defined below. Use this argument to store SQL Server connection string in an existing Key Vault. It needs an existing Key Vault Data Factory Linked Service. Exactly one of either `connectionString` or `keyVaultConnectionString` is required. */ keyVaultConnectionString?: pulumi.Input; /** * A `keyVaultPassword` block as defined below. Use this argument to store SQL Server password in an existing Key Vault. It needs an existing Key Vault Data Factory Linked Service. */ keyVaultPassword?: pulumi.Input; /** * Specifies the name of the Data Factory Linked Service SQL Server. Changing this forces a new resource to be created. Must be unique within a data factory. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions. */ name?: pulumi.Input; /** * A map of parameters to associate with the Data Factory Linked Service SQL Server. */ parameters?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The on-premises Windows authentication user name. */ userName?: pulumi.Input; }