import * as pulumi from "@pulumi/pulumi"; /** * Manages a Synapse Azure 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", * location: "West Europe", * }); * const exampleAccount = new azure.storage.Account("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * accountTier: "Standard", * accountReplicationType: "LRS", * }); * const exampleContainer = new azure.storage.Container("example", { * name: "content", * storageAccountName: exampleAccount.name, * containerAccessType: "private", * }); * const exampleDataLakeGen2Filesystem = new azure.storage.DataLakeGen2Filesystem("example", { * name: "example", * storageAccountId: exampleAccount.id, * }); * const exampleWorkspace = new azure.synapse.Workspace("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * storageDataLakeGen2FilesystemId: exampleDataLakeGen2Filesystem.id, * sqlAdministratorLogin: "sqladminuser", * sqlAdministratorLoginPassword: "H@Sh1CoR3!", * managedVirtualNetworkEnabled: true, * identity: { * type: "SystemAssigned", * }, * }); * const exampleFirewallRule = new azure.synapse.FirewallRule("example", { * name: "AllowAll", * synapseWorkspaceId: exampleWorkspace.id, * startIpAddress: "0.0.0.0", * endIpAddress: "255.255.255.255", * }); * const exampleIntegrationRuntimeAzure = new azure.synapse.IntegrationRuntimeAzure("example", { * name: "example", * synapseWorkspaceId: exampleWorkspace.id, * location: example.location, * }); * ``` * * ## Import * * Synapse Azure Integration Runtimes can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:synapse/integrationRuntimeAzure:IntegrationRuntimeAzure example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Synapse/workspaces/workspace1/integrationRuntimes/IntegrationRuntime1 * ``` */ export declare class IntegrationRuntimeAzure extends pulumi.CustomResource { /** * Get an existing IntegrationRuntimeAzure 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?: IntegrationRuntimeAzureState, opts?: pulumi.CustomResourceOptions): IntegrationRuntimeAzure; /** * Returns true if the given object is an instance of IntegrationRuntimeAzure. 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 IntegrationRuntimeAzure; /** * Compute type of the cluster which will execute data flow job. Valid values are `General`, `ComputeOptimized` and `MemoryOptimized`. Defaults to `General`. */ readonly computeType: pulumi.Output; /** * Core count of the cluster which will execute data flow job. Valid values are `8`, `16`, `32`, `48`, `80`, `144` and `272`. Defaults to `8`. */ readonly coreCount: pulumi.Output; /** * Integration runtime description. */ readonly description: pulumi.Output; /** * The Azure Region where the Synapse Azure Integration Runtime should exist. Use `AutoResolve` to create an auto-resolve integration runtime. Changing this forces a new Synapse Azure Integration Runtime to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Synapse Azure Integration Runtime. Changing this forces a new Synapse Azure Integration Runtime to be created. */ readonly name: pulumi.Output; /** * The Synapse Workspace ID in which to associate the Integration Runtime with. Changing this forces a new Synapse Azure Integration Runtime to be created. */ readonly synapseWorkspaceId: pulumi.Output; /** * Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to `0`. */ readonly timeToLiveMin: pulumi.Output; /** * Create a IntegrationRuntimeAzure 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: IntegrationRuntimeAzureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IntegrationRuntimeAzure resources. */ export interface IntegrationRuntimeAzureState { /** * Compute type of the cluster which will execute data flow job. Valid values are `General`, `ComputeOptimized` and `MemoryOptimized`. Defaults to `General`. */ computeType?: pulumi.Input; /** * Core count of the cluster which will execute data flow job. Valid values are `8`, `16`, `32`, `48`, `80`, `144` and `272`. Defaults to `8`. */ coreCount?: pulumi.Input; /** * Integration runtime description. */ description?: pulumi.Input; /** * The Azure Region where the Synapse Azure Integration Runtime should exist. Use `AutoResolve` to create an auto-resolve integration runtime. Changing this forces a new Synapse Azure Integration Runtime to be created. */ location?: pulumi.Input; /** * The name which should be used for this Synapse Azure Integration Runtime. Changing this forces a new Synapse Azure Integration Runtime to be created. */ name?: pulumi.Input; /** * The Synapse Workspace ID in which to associate the Integration Runtime with. Changing this forces a new Synapse Azure Integration Runtime to be created. */ synapseWorkspaceId?: pulumi.Input; /** * Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to `0`. */ timeToLiveMin?: pulumi.Input; } /** * The set of arguments for constructing a IntegrationRuntimeAzure resource. */ export interface IntegrationRuntimeAzureArgs { /** * Compute type of the cluster which will execute data flow job. Valid values are `General`, `ComputeOptimized` and `MemoryOptimized`. Defaults to `General`. */ computeType?: pulumi.Input; /** * Core count of the cluster which will execute data flow job. Valid values are `8`, `16`, `32`, `48`, `80`, `144` and `272`. Defaults to `8`. */ coreCount?: pulumi.Input; /** * Integration runtime description. */ description?: pulumi.Input; /** * The Azure Region where the Synapse Azure Integration Runtime should exist. Use `AutoResolve` to create an auto-resolve integration runtime. Changing this forces a new Synapse Azure Integration Runtime to be created. */ location?: pulumi.Input; /** * The name which should be used for this Synapse Azure Integration Runtime. Changing this forces a new Synapse Azure Integration Runtime to be created. */ name?: pulumi.Input; /** * The Synapse Workspace ID in which to associate the Integration Runtime with. Changing this forces a new Synapse Azure Integration Runtime to be created. */ synapseWorkspaceId: pulumi.Input; /** * Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to `0`. */ timeToLiveMin?: pulumi.Input; }