import * as pulumi from "@pulumi/pulumi"; /** * Manages a Data Factory Managed Private Endpoint. * * ## 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, * managedVirtualNetworkEnabled: true, * }); * const exampleAccount = new azure.storage.Account("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * accountKind: "BlobStorage", * accountTier: "Standard", * accountReplicationType: "LRS", * }); * const exampleManagedPrivateEndpoint = new azure.datafactory.ManagedPrivateEndpoint("example", { * name: "example", * dataFactoryId: exampleFactory.id, * targetResourceId: exampleAccount.id, * subresourceName: "blob", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.DataFactory` - 2018-06-01 * * ## Import * * Data Factory Managed Private Endpoint can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:datafactory/managedPrivateEndpoint:ManagedPrivateEndpoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/managedVirtualNetworks/default/managedPrivateEndpoints/endpoint1 * ``` */ export declare class ManagedPrivateEndpoint extends pulumi.CustomResource { /** * Get an existing ManagedPrivateEndpoint 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?: ManagedPrivateEndpointState, opts?: pulumi.CustomResourceOptions): ManagedPrivateEndpoint; /** * Returns true if the given object is an instance of ManagedPrivateEndpoint. 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 ManagedPrivateEndpoint; /** * The ID of the Data Factory on which to create the Managed Private Endpoint. Changing this forces a new resource to be created. */ readonly dataFactoryId: pulumi.Output; /** * Fully qualified domain names. Changing this forces a new resource to be created. * * > **Note:** Possible values are listed in [documentation](https://docs.microsoft.com/azure/private-link/private-endpoint-overview#dns-configuration). */ readonly fqdns: pulumi.Output; /** * Specifies the name which should be used for this Managed Private Endpoint. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Specifies the sub resource name which the Data Factory Private Endpoint is able to connect to. Changing this forces a new resource to be created. */ readonly subresourceName: pulumi.Output; /** * The ID of the Private Link Enabled Remote Resource which this Data Factory Private Endpoint should be connected to. Changing this forces a new resource to be created. */ readonly targetResourceId: pulumi.Output; /** * Create a ManagedPrivateEndpoint 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: ManagedPrivateEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ManagedPrivateEndpoint resources. */ export interface ManagedPrivateEndpointState { /** * The ID of the Data Factory on which to create the Managed Private Endpoint. Changing this forces a new resource to be created. */ dataFactoryId?: pulumi.Input; /** * Fully qualified domain names. Changing this forces a new resource to be created. * * > **Note:** Possible values are listed in [documentation](https://docs.microsoft.com/azure/private-link/private-endpoint-overview#dns-configuration). */ fqdns?: pulumi.Input[]>; /** * Specifies the name which should be used for this Managed Private Endpoint. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the sub resource name which the Data Factory Private Endpoint is able to connect to. Changing this forces a new resource to be created. */ subresourceName?: pulumi.Input; /** * The ID of the Private Link Enabled Remote Resource which this Data Factory Private Endpoint should be connected to. Changing this forces a new resource to be created. */ targetResourceId?: pulumi.Input; } /** * The set of arguments for constructing a ManagedPrivateEndpoint resource. */ export interface ManagedPrivateEndpointArgs { /** * The ID of the Data Factory on which to create the Managed Private Endpoint. Changing this forces a new resource to be created. */ dataFactoryId: pulumi.Input; /** * Fully qualified domain names. Changing this forces a new resource to be created. * * > **Note:** Possible values are listed in [documentation](https://docs.microsoft.com/azure/private-link/private-endpoint-overview#dns-configuration). */ fqdns?: pulumi.Input[]>; /** * Specifies the name which should be used for this Managed Private Endpoint. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the sub resource name which the Data Factory Private Endpoint is able to connect to. Changing this forces a new resource to be created. */ subresourceName?: pulumi.Input; /** * The ID of the Private Link Enabled Remote Resource which this Data Factory Private Endpoint should be connected to. Changing this forces a new resource to be created. */ targetResourceId: pulumi.Input; }