import * as pulumi from "@pulumi/pulumi"; /** * Manages a Bgp 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 exampleVirtualHub = new azure.network.VirtualHub("example", { * name: "example-vhub", * resourceGroupName: example.name, * location: example.location, * sku: "Standard", * }); * const examplePublicIp = new azure.network.PublicIp("example", { * name: "example-pip", * location: example.location, * resourceGroupName: example.name, * allocationMethod: "Static", * sku: "Standard", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-vnet", * addressSpaces: ["10.5.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "RouteServerSubnet", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.5.1.0/24"], * }); * const exampleVirtualHubIp = new azure.network.VirtualHubIp("example", { * name: "example-vhubip", * virtualHubId: exampleVirtualHub.id, * privateIpAddress: "10.5.1.18", * privateIpAllocationMethod: "Static", * publicIpAddressId: examplePublicIp.id, * subnetId: exampleSubnet.id, * }); * const exampleBgpConnection = new azure.network.BgpConnection("example", { * name: "example-vhub-bgpconnection", * virtualHubId: exampleVirtualHub.id, * peerAsn: 65514, * peerIp: "169.254.21.5", * }, { * dependsOn: [exampleVirtualHubIp], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Virtual Hub Bgp Connections can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/bgpConnection:BgpConnection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/virtualHubs/virtualHub1/bgpConnections/connection1 * ``` */ export declare class BgpConnection extends pulumi.CustomResource { /** * Get an existing BgpConnection 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?: BgpConnectionState, opts?: pulumi.CustomResourceOptions): BgpConnection; /** * Returns true if the given object is an instance of BgpConnection. 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 BgpConnection; /** * The name which should be used for this Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The peer autonomous system number for the Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ readonly peerAsn: pulumi.Output; /** * The peer IP address for the Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ readonly peerIp: pulumi.Output; /** * The ID of the Virtual Hub within which this Bgp connection should be created. Changing this forces a new resource to be created. */ readonly virtualHubId: pulumi.Output; /** * The ID of virtual network connection. Changing this forces a new resource to be created. */ readonly virtualNetworkConnectionId: pulumi.Output; /** * Create a BgpConnection 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: BgpConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BgpConnection resources. */ export interface BgpConnectionState { /** * The name which should be used for this Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The peer autonomous system number for the Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ peerAsn?: pulumi.Input; /** * The peer IP address for the Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ peerIp?: pulumi.Input; /** * The ID of the Virtual Hub within which this Bgp connection should be created. Changing this forces a new resource to be created. */ virtualHubId?: pulumi.Input; /** * The ID of virtual network connection. Changing this forces a new resource to be created. */ virtualNetworkConnectionId?: pulumi.Input; } /** * The set of arguments for constructing a BgpConnection resource. */ export interface BgpConnectionArgs { /** * The name which should be used for this Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The peer autonomous system number for the Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ peerAsn: pulumi.Input; /** * The peer IP address for the Virtual Hub Bgp Connection. Changing this forces a new resource to be created. */ peerIp: pulumi.Input; /** * The ID of the Virtual Hub within which this Bgp connection should be created. Changing this forces a new resource to be created. */ virtualHubId: pulumi.Input; /** * The ID of virtual network connection. Changing this forces a new resource to be created. */ virtualNetworkConnectionId?: pulumi.Input; }