GetVirtualHub
Uses this data source to access information about an existing Virtual Hub.
Virtual Hub Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.network.getVirtualHub({
name: "example-hub",
resourceGroupName: "example-resources",
});
export const virtualHubId = example.then(example => example.id);import pulumi
import pulumi_azure as azure
example = azure.network.get_virtual_hub(name="example-hub",
resource_group_name="example-resources")
pulumi.export("virtualHubId", example.id)using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.Network.GetVirtualHub.InvokeAsync(new Azure.Network.GetVirtualHubArgs
{
Name = "example-hub",
ResourceGroupName = "example-resources",
}));
this.VirtualHubId = example.Apply(example => example.Id);
}
[Output("virtualHubId")]
public Output<string> VirtualHubId { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/network"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := network.LookupVirtualHub(ctx, &network.LookupVirtualHubArgs{
Name: "example-hub",
ResourceGroupName: "example-resources",
}, nil)
if err != nil {
return err
}
ctx.Export("virtualHubId", example.Id)
return nil
})
}Using GetVirtualHub
function getVirtualHub(args: GetVirtualHubArgs, opts?: InvokeOptions): Promise<GetVirtualHubResult>function get_virtual_hub(name=None, resource_group_name=None, opts=None)func LookupVirtualHub(ctx *Context, args *LookupVirtualHubArgs, opts ...InvokeOption) (*LookupVirtualHubResult, error)Note: This function is named
LookupVirtualHubin the Go SDK.
public static class GetVirtualHub {
public static Task<GetVirtualHubResult> InvokeAsync(GetVirtualHubArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Name string
The name of the Virtual Hub.
- Resource
Group stringName The Name of the Resource Group where the Virtual Hub exists.
- Name string
The name of the Virtual Hub.
- Resource
Group stringName The Name of the Resource Group where the Virtual Hub exists.
- name string
The name of the Virtual Hub.
- resource
Group stringName The Name of the Resource Group where the Virtual Hub exists.
- name str
The name of the Virtual Hub.
- resource_
group_ strname The Name of the Resource Group where the Virtual Hub exists.
GetVirtualHub Result
The following output properties are available:
- Address
Prefix string The Address Prefix used for this Virtual Hub.
- Id string
The provider-assigned unique ID for this managed resource.
- Location string
The Azure Region where the Virtual Hub exists.
- Name string
- Resource
Group stringName - Dictionary<string, string>
A mapping of tags assigned to the Virtual Hub.
- Virtual
Wan stringId The ID of the Virtual WAN within which the Virtual Hub exists.
- Address
Prefix string The Address Prefix used for this Virtual Hub.
- Id string
The provider-assigned unique ID for this managed resource.
- Location string
The Azure Region where the Virtual Hub exists.
- Name string
- Resource
Group stringName - map[string]string
A mapping of tags assigned to the Virtual Hub.
- Virtual
Wan stringId The ID of the Virtual WAN within which the Virtual Hub exists.
- address
Prefix string The Address Prefix used for this Virtual Hub.
- id string
The provider-assigned unique ID for this managed resource.
- location string
The Azure Region where the Virtual Hub exists.
- name string
- resource
Group stringName - {[key: string]: string}
A mapping of tags assigned to the Virtual Hub.
- virtual
Wan stringId The ID of the Virtual WAN within which the Virtual Hub exists.
- address_
prefix str The Address Prefix used for this Virtual Hub.
- id str
The provider-assigned unique ID for this managed resource.
- location str
The Azure Region where the Virtual Hub exists.
- name str
- resource_
group_ strname - Dict[str, str]
A mapping of tags assigned to the Virtual Hub.
- virtual_
wan_ strid The ID of the Virtual WAN within which the Virtual Hub exists.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.