import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Connection for a Virtual Hub. * * ## 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 exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-network", * addressSpaces: ["172.16.0.0/12"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleVirtualWan = new azure.network.VirtualWan("example", { * name: "example-vwan", * resourceGroupName: example.name, * location: example.location, * }); * const exampleVirtualHub = new azure.network.VirtualHub("example", { * name: "example-hub", * resourceGroupName: example.name, * location: example.location, * virtualWanId: exampleVirtualWan.id, * addressPrefix: "10.0.1.0/24", * }); * const exampleVirtualHubConnection = new azure.network.VirtualHubConnection("example", { * name: "example-vhub", * virtualHubId: exampleVirtualHub.id, * remoteVirtualNetworkId: exampleVirtualNetwork.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Virtual Hub Connection's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/virtualHubConnection:VirtualHubConnection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/virtualHubs/hub1/hubVirtualNetworkConnections/connection1 * ``` */ export declare class VirtualHubConnection extends pulumi.CustomResource { /** * Get an existing VirtualHubConnection 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?: VirtualHubConnectionState, opts?: pulumi.CustomResourceOptions): VirtualHubConnection; /** * Returns true if the given object is an instance of VirtualHubConnection. 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 VirtualHubConnection; /** * Should Internet Security be enabled to secure internet traffic? Defaults to `false`. */ readonly internetSecurityEnabled: pulumi.Output; /** * The Name which should be used for this Connection, which must be unique within the Virtual Hub. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The ID of the Virtual Network which the Virtual Hub should be connected to. Changing this forces a new resource to be created. */ readonly remoteVirtualNetworkId: pulumi.Output; /** * A `routing` block as defined below. */ readonly routing: pulumi.Output; /** * The ID of the Virtual Hub within which this connection should be created. Changing this forces a new resource to be created. */ readonly virtualHubId: pulumi.Output; /** * Create a VirtualHubConnection 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: VirtualHubConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VirtualHubConnection resources. */ export interface VirtualHubConnectionState { /** * Should Internet Security be enabled to secure internet traffic? Defaults to `false`. */ internetSecurityEnabled?: pulumi.Input; /** * The Name which should be used for this Connection, which must be unique within the Virtual Hub. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The ID of the Virtual Network which the Virtual Hub should be connected to. Changing this forces a new resource to be created. */ remoteVirtualNetworkId?: pulumi.Input; /** * A `routing` block as defined below. */ routing?: pulumi.Input; /** * The ID of the Virtual Hub within which this connection should be created. Changing this forces a new resource to be created. */ virtualHubId?: pulumi.Input; } /** * The set of arguments for constructing a VirtualHubConnection resource. */ export interface VirtualHubConnectionArgs { /** * Should Internet Security be enabled to secure internet traffic? Defaults to `false`. */ internetSecurityEnabled?: pulumi.Input; /** * The Name which should be used for this Connection, which must be unique within the Virtual Hub. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The ID of the Virtual Network which the Virtual Hub should be connected to. Changing this forces a new resource to be created. */ remoteVirtualNetworkId: pulumi.Input; /** * A `routing` block as defined below. */ routing?: pulumi.Input; /** * The ID of the Virtual Hub within which this connection should be created. Changing this forces a new resource to be created. */ virtualHubId: pulumi.Input; }