import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Data Factory Self-hosted 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 exampleIntegrationRuntimeSelfHosted = new azure.datafactory.IntegrationRuntimeSelfHosted("example", { * name: "example", * dataFactoryId: exampleFactory.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.DataFactory` - 2018-06-01 * * ## Import * * Data Factories can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:datafactory/integrationRuntimeSelfHosted:IntegrationRuntimeSelfHosted example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/integrationRuntimes/example * ``` */ export declare class IntegrationRuntimeSelfHosted extends pulumi.CustomResource { /** * Get an existing IntegrationRuntimeSelfHosted 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?: IntegrationRuntimeSelfHostedState, opts?: pulumi.CustomResourceOptions): IntegrationRuntimeSelfHosted; /** * Returns true if the given object is an instance of IntegrationRuntimeSelfHosted. 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 IntegrationRuntimeSelfHosted; /** * 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 name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created. */ readonly name: pulumi.Output; /** * The primary integration runtime authentication key. */ readonly primaryAuthorizationKey: pulumi.Output; /** * A `rbacAuthorization` block as defined below. Changing this forces a new resource to be created. */ readonly rbacAuthorizations: pulumi.Output; /** * The secondary integration runtime authentication key. */ readonly secondaryAuthorizationKey: pulumi.Output; /** * Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay. */ readonly selfContainedInteractiveAuthoringEnabled: pulumi.Output; /** * Create a IntegrationRuntimeSelfHosted 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: IntegrationRuntimeSelfHostedArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IntegrationRuntimeSelfHosted resources. */ export interface IntegrationRuntimeSelfHostedState { /** * 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 name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created. */ name?: pulumi.Input; /** * The primary integration runtime authentication key. */ primaryAuthorizationKey?: pulumi.Input; /** * A `rbacAuthorization` block as defined below. Changing this forces a new resource to be created. */ rbacAuthorizations?: pulumi.Input[]>; /** * The secondary integration runtime authentication key. */ secondaryAuthorizationKey?: pulumi.Input; /** * Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay. */ selfContainedInteractiveAuthoringEnabled?: pulumi.Input; } /** * The set of arguments for constructing a IntegrationRuntimeSelfHosted resource. */ export interface IntegrationRuntimeSelfHostedArgs { /** * 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 name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created. */ name?: pulumi.Input; /** * A `rbacAuthorization` block as defined below. Changing this forces a new resource to be created. */ rbacAuthorizations?: pulumi.Input[]>; /** * Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay. */ selfContainedInteractiveAuthoringEnabled?: pulumi.Input; }