import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Data Factory Azure-SSIS Integration Runtime. * * ## 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 exampleIntegrationRuntimeSsis = new azure.datafactory.IntegrationRuntimeSsis("example", { * name: "example", * dataFactoryId: exampleFactory.id, * location: example.location, * nodeSize: "Standard_D8_v3", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.DataFactory` - 2018-06-01 * * ## Import * * Data Factory Azure-SSIS Integration Runtimes can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:datafactory/integrationRuntimeSsis:IntegrationRuntimeSsis example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/integrationRuntimes/example * ``` */ export declare class IntegrationRuntimeSsis extends pulumi.CustomResource { /** * Get an existing IntegrationRuntimeSsis 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?: IntegrationRuntimeSsisState, opts?: pulumi.CustomResourceOptions): IntegrationRuntimeSsis; /** * Returns true if the given object is an instance of IntegrationRuntimeSsis. 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 IntegrationRuntimeSsis; /** * A `catalogInfo` block as defined below. */ readonly catalogInfo: pulumi.Output; /** * One `copyComputeScale` block as defined below. */ readonly copyComputeScale: pulumi.Output; /** * The name of a Data Factory Credential that the SSIS integration will use to access data sources. For example, `azure.datafactory.CredentialUserManagedIdentity` * * > **Note:** If `credentialName` is omitted, the integration runtime will use the Data Factory assigned identity. */ readonly credentialName: pulumi.Output; /** * A `customSetupScript` block as defined below. */ readonly customSetupScript: pulumi.Output; /** * The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource. */ readonly dataFactoryId: pulumi.Output; /** * Integration runtime description. */ readonly description: pulumi.Output; /** * The Azure-SSIS Integration Runtime edition. Valid values are `Standard` and `Enterprise`. Defaults to `Standard`. */ readonly edition: pulumi.Output; /** * An `expressCustomSetup` block as defined below. */ readonly expressCustomSetup: pulumi.Output; /** * A `expressVnetIntegration` block as defined below. */ readonly expressVnetIntegration: pulumi.Output; /** * The type of the license that is used. Valid values are `LicenseIncluded` and `BasePrice`. Defaults to `LicenseIncluded`. */ readonly licenseType: pulumi.Output; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * Defines the maximum parallel executions per node. Defaults to `1`. Max is `1`. */ readonly maxParallelExecutionsPerNode: pulumi.Output; /** * Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions. */ readonly name: pulumi.Output; /** * The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: `Standard_D2_v3`, `Standard_D4_v3`, `Standard_D8_v3`, `Standard_D16_v3`, `Standard_D32_v3`, `Standard_D64_v3`, `Standard_E2_v3`, `Standard_E4_v3`, `Standard_E8_v3`, `Standard_E16_v3`, `Standard_E32_v3`, `Standard_E64_v3`, `Standard_D1_v2`, `Standard_D2_v2`, `Standard_D3_v2`, `Standard_D4_v2`, `Standard_A4_v2` and `Standard_A8_v2` */ readonly nodeSize: pulumi.Output; /** * Number of nodes for the Azure-SSIS Integration Runtime. Max is `10`. Defaults to `1`. */ readonly numberOfNodes: pulumi.Output; /** * One or more `packageStore` block as defined below. */ readonly packageStores: pulumi.Output; /** * One `pipelineExternalComputeScale` block as defined below. */ readonly pipelineExternalComputeScale: pulumi.Output; /** * A `proxy` block as defined below. */ readonly proxy: pulumi.Output; /** * A `vnetIntegration` block as defined below. */ readonly vnetIntegration: pulumi.Output; /** * Create a IntegrationRuntimeSsis 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: IntegrationRuntimeSsisArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IntegrationRuntimeSsis resources. */ export interface IntegrationRuntimeSsisState { /** * A `catalogInfo` block as defined below. */ catalogInfo?: pulumi.Input; /** * One `copyComputeScale` block as defined below. */ copyComputeScale?: pulumi.Input; /** * The name of a Data Factory Credential that the SSIS integration will use to access data sources. For example, `azure.datafactory.CredentialUserManagedIdentity` * * > **Note:** If `credentialName` is omitted, the integration runtime will use the Data Factory assigned identity. */ credentialName?: pulumi.Input; /** * A `customSetupScript` block as defined below. */ customSetupScript?: pulumi.Input; /** * The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource. */ dataFactoryId?: pulumi.Input; /** * Integration runtime description. */ description?: pulumi.Input; /** * The Azure-SSIS Integration Runtime edition. Valid values are `Standard` and `Enterprise`. Defaults to `Standard`. */ edition?: pulumi.Input; /** * An `expressCustomSetup` block as defined below. */ expressCustomSetup?: pulumi.Input; /** * A `expressVnetIntegration` block as defined below. */ expressVnetIntegration?: pulumi.Input; /** * The type of the license that is used. Valid values are `LicenseIncluded` and `BasePrice`. Defaults to `LicenseIncluded`. */ licenseType?: pulumi.Input; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Defines the maximum parallel executions per node. Defaults to `1`. Max is `1`. */ maxParallelExecutionsPerNode?: pulumi.Input; /** * Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions. */ name?: pulumi.Input; /** * The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: `Standard_D2_v3`, `Standard_D4_v3`, `Standard_D8_v3`, `Standard_D16_v3`, `Standard_D32_v3`, `Standard_D64_v3`, `Standard_E2_v3`, `Standard_E4_v3`, `Standard_E8_v3`, `Standard_E16_v3`, `Standard_E32_v3`, `Standard_E64_v3`, `Standard_D1_v2`, `Standard_D2_v2`, `Standard_D3_v2`, `Standard_D4_v2`, `Standard_A4_v2` and `Standard_A8_v2` */ nodeSize?: pulumi.Input; /** * Number of nodes for the Azure-SSIS Integration Runtime. Max is `10`. Defaults to `1`. */ numberOfNodes?: pulumi.Input; /** * One or more `packageStore` block as defined below. */ packageStores?: pulumi.Input[]>; /** * One `pipelineExternalComputeScale` block as defined below. */ pipelineExternalComputeScale?: pulumi.Input; /** * A `proxy` block as defined below. */ proxy?: pulumi.Input; /** * A `vnetIntegration` block as defined below. */ vnetIntegration?: pulumi.Input; } /** * The set of arguments for constructing a IntegrationRuntimeSsis resource. */ export interface IntegrationRuntimeSsisArgs { /** * A `catalogInfo` block as defined below. */ catalogInfo?: pulumi.Input; /** * One `copyComputeScale` block as defined below. */ copyComputeScale?: pulumi.Input; /** * The name of a Data Factory Credential that the SSIS integration will use to access data sources. For example, `azure.datafactory.CredentialUserManagedIdentity` * * > **Note:** If `credentialName` is omitted, the integration runtime will use the Data Factory assigned identity. */ credentialName?: pulumi.Input; /** * A `customSetupScript` block as defined below. */ customSetupScript?: pulumi.Input; /** * The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource. */ dataFactoryId: pulumi.Input; /** * Integration runtime description. */ description?: pulumi.Input; /** * The Azure-SSIS Integration Runtime edition. Valid values are `Standard` and `Enterprise`. Defaults to `Standard`. */ edition?: pulumi.Input; /** * An `expressCustomSetup` block as defined below. */ expressCustomSetup?: pulumi.Input; /** * A `expressVnetIntegration` block as defined below. */ expressVnetIntegration?: pulumi.Input; /** * The type of the license that is used. Valid values are `LicenseIncluded` and `BasePrice`. Defaults to `LicenseIncluded`. */ licenseType?: pulumi.Input; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Defines the maximum parallel executions per node. Defaults to `1`. Max is `1`. */ maxParallelExecutionsPerNode?: pulumi.Input; /** * Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions. */ name?: pulumi.Input; /** * The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: `Standard_D2_v3`, `Standard_D4_v3`, `Standard_D8_v3`, `Standard_D16_v3`, `Standard_D32_v3`, `Standard_D64_v3`, `Standard_E2_v3`, `Standard_E4_v3`, `Standard_E8_v3`, `Standard_E16_v3`, `Standard_E32_v3`, `Standard_E64_v3`, `Standard_D1_v2`, `Standard_D2_v2`, `Standard_D3_v2`, `Standard_D4_v2`, `Standard_A4_v2` and `Standard_A8_v2` */ nodeSize: pulumi.Input; /** * Number of nodes for the Azure-SSIS Integration Runtime. Max is `10`. Defaults to `1`. */ numberOfNodes?: pulumi.Input; /** * One or more `packageStore` block as defined below. */ packageStores?: pulumi.Input[]>; /** * One `pipelineExternalComputeScale` block as defined below. */ pipelineExternalComputeScale?: pulumi.Input; /** * A `proxy` block as defined below. */ proxy?: pulumi.Input; /** * A `vnetIntegration` block as defined below. */ vnetIntegration?: pulumi.Input; }