azure-native.network.HubVirtualNetworkConnection
Explore with Pulumi AI
HubVirtualNetworkConnection Resource. API Version: 2020-11-01.
Example Usage
HubVirtualNetworkConnectionPut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var hubVirtualNetworkConnection = new AzureNative.Network.HubVirtualNetworkConnection("hubVirtualNetworkConnection", new()
{
ConnectionName = "connection1",
EnableInternetSecurity = false,
RemoteVirtualNetwork = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/SpokeVnet1",
},
ResourceGroupName = "rg1",
RoutingConfiguration = new AzureNative.Network.Inputs.RoutingConfigurationArgs
{
AssociatedRouteTable = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
},
PropagatedRouteTables = new AzureNative.Network.Inputs.PropagatedRouteTableArgs
{
Ids = new[]
{
new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
},
},
Labels = new[]
{
"label1",
"label2",
},
},
VnetRoutes = new AzureNative.Network.Inputs.VnetRouteArgs
{
StaticRoutes = new[]
{
new AzureNative.Network.Inputs.StaticRouteArgs
{
AddressPrefixes = new[]
{
"10.1.0.0/16",
"10.2.0.0/16",
},
Name = "route1",
NextHopIpAddress = "10.0.0.68",
},
new AzureNative.Network.Inputs.StaticRouteArgs
{
AddressPrefixes = new[]
{
"10.3.0.0/16",
"10.4.0.0/16",
},
Name = "route2",
NextHopIpAddress = "10.0.0.65",
},
},
},
},
VirtualHubName = "virtualHub1",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.HubVirtualNetworkConnection;
import com.pulumi.azurenative.network.HubVirtualNetworkConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var hubVirtualNetworkConnection = new HubVirtualNetworkConnection("hubVirtualNetworkConnection", HubVirtualNetworkConnectionArgs.builder()
.connectionName("connection1")
.enableInternetSecurity(false)
.remoteVirtualNetwork(Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/SpokeVnet1"))
.resourceGroupName("rg1")
.routingConfiguration(Map.ofEntries(
Map.entry("associatedRouteTable", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1")),
Map.entry("propagatedRouteTables", Map.ofEntries(
Map.entry("ids", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1")),
Map.entry("labels",
"label1",
"label2")
)),
Map.entry("vnetRoutes", Map.of("staticRoutes",
Map.ofEntries(
Map.entry("addressPrefixes",
"10.1.0.0/16",
"10.2.0.0/16"),
Map.entry("name", "route1"),
Map.entry("nextHopIpAddress", "10.0.0.68")
),
Map.ofEntries(
Map.entry("addressPrefixes",
"10.3.0.0/16",
"10.4.0.0/16"),
Map.entry("name", "route2"),
Map.entry("nextHopIpAddress", "10.0.0.65")
)))
))
.virtualHubName("virtualHub1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
hub_virtual_network_connection = azure_native.network.HubVirtualNetworkConnection("hubVirtualNetworkConnection",
connection_name="connection1",
enable_internet_security=False,
remote_virtual_network=azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/SpokeVnet1",
),
resource_group_name="rg1",
routing_configuration=azure_native.network.RoutingConfigurationResponseArgs(
associated_route_table=azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
),
propagated_route_tables={
"ids": [azure_native.network.SubResourceArgs(
id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
)],
"labels": [
"label1",
"label2",
],
},
vnet_routes={
"staticRoutes": [
azure_native.network.StaticRouteArgs(
address_prefixes=[
"10.1.0.0/16",
"10.2.0.0/16",
],
name="route1",
next_hop_ip_address="10.0.0.68",
),
azure_native.network.StaticRouteArgs(
address_prefixes=[
"10.3.0.0/16",
"10.4.0.0/16",
],
name="route2",
next_hop_ip_address="10.0.0.65",
),
],
},
),
virtual_hub_name="virtualHub1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hubVirtualNetworkConnection = new azure_native.network.HubVirtualNetworkConnection("hubVirtualNetworkConnection", {
connectionName: "connection1",
enableInternetSecurity: false,
remoteVirtualNetwork: {
id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/SpokeVnet1",
},
resourceGroupName: "rg1",
routingConfiguration: {
associatedRouteTable: {
id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
},
propagatedRouteTables: {
ids: [{
id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1",
}],
labels: [
"label1",
"label2",
],
},
vnetRoutes: {
staticRoutes: [
{
addressPrefixes: [
"10.1.0.0/16",
"10.2.0.0/16",
],
name: "route1",
nextHopIpAddress: "10.0.0.68",
},
{
addressPrefixes: [
"10.3.0.0/16",
"10.4.0.0/16",
],
name: "route2",
nextHopIpAddress: "10.0.0.65",
},
],
},
},
virtualHubName: "virtualHub1",
});
resources:
hubVirtualNetworkConnection:
type: azure-native:network:HubVirtualNetworkConnection
properties:
connectionName: connection1
enableInternetSecurity: false
remoteVirtualNetwork:
id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/SpokeVnet1
resourceGroupName: rg1
routingConfiguration:
associatedRouteTable:
id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1
propagatedRouteTables:
ids:
- id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubRouteTables/hubRouteTable1
labels:
- label1
- label2
vnetRoutes:
staticRoutes:
- addressPrefixes:
- 10.1.0.0/16
- 10.2.0.0/16
name: route1
nextHopIpAddress: 10.0.0.68
- addressPrefixes:
- 10.3.0.0/16
- 10.4.0.0/16
name: route2
nextHopIpAddress: 10.0.0.65
virtualHubName: virtualHub1
Create HubVirtualNetworkConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HubVirtualNetworkConnection(name: string, args: HubVirtualNetworkConnectionArgs, opts?: CustomResourceOptions);
@overload
def HubVirtualNetworkConnection(resource_name: str,
args: HubVirtualNetworkConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HubVirtualNetworkConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
virtual_hub_name: Optional[str] = None,
allow_hub_to_remote_vnet_transit: Optional[bool] = None,
allow_remote_vnet_to_use_hub_vnet_gateways: Optional[bool] = None,
connection_name: Optional[str] = None,
enable_internet_security: Optional[bool] = None,
id: Optional[str] = None,
name: Optional[str] = None,
remote_virtual_network: Optional[SubResourceArgs] = None,
routing_configuration: Optional[RoutingConfigurationArgs] = None)
func NewHubVirtualNetworkConnection(ctx *Context, name string, args HubVirtualNetworkConnectionArgs, opts ...ResourceOption) (*HubVirtualNetworkConnection, error)
public HubVirtualNetworkConnection(string name, HubVirtualNetworkConnectionArgs args, CustomResourceOptions? opts = null)
public HubVirtualNetworkConnection(String name, HubVirtualNetworkConnectionArgs args)
public HubVirtualNetworkConnection(String name, HubVirtualNetworkConnectionArgs args, CustomResourceOptions options)
type: azure-native:network:HubVirtualNetworkConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args HubVirtualNetworkConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args HubVirtualNetworkConnectionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HubVirtualNetworkConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HubVirtualNetworkConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HubVirtualNetworkConnectionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var hubVirtualNetworkConnectionResource = new AzureNative.Network.HubVirtualNetworkConnection("hubVirtualNetworkConnectionResource", new()
{
ResourceGroupName = "string",
VirtualHubName = "string",
AllowHubToRemoteVnetTransit = false,
AllowRemoteVnetToUseHubVnetGateways = false,
ConnectionName = "string",
EnableInternetSecurity = false,
Id = "string",
Name = "string",
RemoteVirtualNetwork =
{
{ "id", "string" },
},
RoutingConfiguration =
{
{ "associatedRouteTable",
{
{ "id", "string" },
} },
{ "propagatedRouteTables",
{
{ "ids", new[]
{
{
{ "id", "string" },
},
} },
{ "labels", new[]
{
"string",
} },
} },
{ "vnetRoutes",
{
{ "staticRoutes", new[]
{
{
{ "addressPrefixes", new[]
{
"string",
} },
{ "name", "string" },
{ "nextHopIpAddress", "string" },
},
} },
} },
},
});
example, err := network.NewHubVirtualNetworkConnection(ctx, "hubVirtualNetworkConnectionResource", &network.HubVirtualNetworkConnectionArgs{
ResourceGroupName: "string",
VirtualHubName: "string",
AllowHubToRemoteVnetTransit: false,
AllowRemoteVnetToUseHubVnetGateways: false,
ConnectionName: "string",
EnableInternetSecurity: false,
Id: "string",
Name: "string",
RemoteVirtualNetwork: map[string]interface{}{
"id": "string",
},
RoutingConfiguration: map[string]interface{}{
"associatedRouteTable": map[string]interface{}{
"id": "string",
},
"propagatedRouteTables": map[string]interface{}{
"ids": []map[string]interface{}{
map[string]interface{}{
"id": "string",
},
},
"labels": []string{
"string",
},
},
"vnetRoutes": map[string]interface{}{
"staticRoutes": []map[string]interface{}{
map[string]interface{}{
"addressPrefixes": []string{
"string",
},
"name": "string",
"nextHopIpAddress": "string",
},
},
},
},
})
var hubVirtualNetworkConnectionResource = new HubVirtualNetworkConnection("hubVirtualNetworkConnectionResource", HubVirtualNetworkConnectionArgs.builder()
.resourceGroupName("string")
.virtualHubName("string")
.allowHubToRemoteVnetTransit(false)
.allowRemoteVnetToUseHubVnetGateways(false)
.connectionName("string")
.enableInternetSecurity(false)
.id("string")
.name("string")
.remoteVirtualNetwork(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.routingConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
hub_virtual_network_connection_resource = azure_native.network.HubVirtualNetworkConnection("hubVirtualNetworkConnectionResource",
resource_group_name=string,
virtual_hub_name=string,
allow_hub_to_remote_vnet_transit=False,
allow_remote_vnet_to_use_hub_vnet_gateways=False,
connection_name=string,
enable_internet_security=False,
id=string,
name=string,
remote_virtual_network={
id: string,
},
routing_configuration={
associatedRouteTable: {
id: string,
},
propagatedRouteTables: {
ids: [{
id: string,
}],
labels: [string],
},
vnetRoutes: {
staticRoutes: [{
addressPrefixes: [string],
name: string,
nextHopIpAddress: string,
}],
},
})
const hubVirtualNetworkConnectionResource = new azure_native.network.HubVirtualNetworkConnection("hubVirtualNetworkConnectionResource", {
resourceGroupName: "string",
virtualHubName: "string",
allowHubToRemoteVnetTransit: false,
allowRemoteVnetToUseHubVnetGateways: false,
connectionName: "string",
enableInternetSecurity: false,
id: "string",
name: "string",
remoteVirtualNetwork: {
id: "string",
},
routingConfiguration: {
associatedRouteTable: {
id: "string",
},
propagatedRouteTables: {
ids: [{
id: "string",
}],
labels: ["string"],
},
vnetRoutes: {
staticRoutes: [{
addressPrefixes: ["string"],
name: "string",
nextHopIpAddress: "string",
}],
},
},
});
type: azure-native:network:HubVirtualNetworkConnection
properties:
allowHubToRemoteVnetTransit: false
allowRemoteVnetToUseHubVnetGateways: false
connectionName: string
enableInternetSecurity: false
id: string
name: string
remoteVirtualNetwork:
id: string
resourceGroupName: string
routingConfiguration:
associatedRouteTable:
id: string
propagatedRouteTables:
ids:
- id: string
labels:
- string
vnetRoutes:
staticRoutes:
- addressPrefixes:
- string
name: string
nextHopIpAddress: string
virtualHubName: string
HubVirtualNetworkConnection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The HubVirtualNetworkConnection resource accepts the following input properties:
- Resource
Group stringName - The resource group name of the HubVirtualNetworkConnection.
- Virtual
Hub stringName - The name of the VirtualHub.
- Allow
Hub boolTo Remote Vnet Transit - Deprecated: VirtualHub to RemoteVnet transit to enabled or not.
- Allow
Remote boolVnet To Use Hub Vnet Gateways - Deprecated: Allow RemoteVnet to use Virtual Hub's gateways.
- Connection
Name string - The name of the HubVirtualNetworkConnection.
- Enable
Internet boolSecurity - Enable internet security.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Remote
Virtual Pulumi.Network Azure Native. Network. Inputs. Sub Resource - Reference to the remote virtual network.
- Routing
Configuration Pulumi.Azure Native. Network. Inputs. Routing Configuration - The Routing Configuration indicating the associated and propagated route tables on this connection.
- Resource
Group stringName - The resource group name of the HubVirtualNetworkConnection.
- Virtual
Hub stringName - The name of the VirtualHub.
- Allow
Hub boolTo Remote Vnet Transit - Deprecated: VirtualHub to RemoteVnet transit to enabled or not.
- Allow
Remote boolVnet To Use Hub Vnet Gateways - Deprecated: Allow RemoteVnet to use Virtual Hub's gateways.
- Connection
Name string - The name of the HubVirtualNetworkConnection.
- Enable
Internet boolSecurity - Enable internet security.
- Id string
- Resource ID.
- Name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- Remote
Virtual SubNetwork Resource Args - Reference to the remote virtual network.
- Routing
Configuration RoutingConfiguration Args - The Routing Configuration indicating the associated and propagated route tables on this connection.
- resource
Group StringName - The resource group name of the HubVirtualNetworkConnection.
- virtual
Hub StringName - The name of the VirtualHub.
- allow
Hub BooleanTo Remote Vnet Transit - Deprecated: VirtualHub to RemoteVnet transit to enabled or not.
- allow
Remote BooleanVnet To Use Hub Vnet Gateways - Deprecated: Allow RemoteVnet to use Virtual Hub's gateways.
- connection
Name String - The name of the HubVirtualNetworkConnection.
- enable
Internet BooleanSecurity - Enable internet security.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- remote
Virtual SubNetwork Resource - Reference to the remote virtual network.
- routing
Configuration RoutingConfiguration - The Routing Configuration indicating the associated and propagated route tables on this connection.
- resource
Group stringName - The resource group name of the HubVirtualNetworkConnection.
- virtual
Hub stringName - The name of the VirtualHub.
- allow
Hub booleanTo Remote Vnet Transit - Deprecated: VirtualHub to RemoteVnet transit to enabled or not.
- allow
Remote booleanVnet To Use Hub Vnet Gateways - Deprecated: Allow RemoteVnet to use Virtual Hub's gateways.
- connection
Name string - The name of the HubVirtualNetworkConnection.
- enable
Internet booleanSecurity - Enable internet security.
- id string
- Resource ID.
- name string
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- remote
Virtual SubNetwork Resource - Reference to the remote virtual network.
- routing
Configuration RoutingConfiguration - The Routing Configuration indicating the associated and propagated route tables on this connection.
- resource_
group_ strname - The resource group name of the HubVirtualNetworkConnection.
- virtual_
hub_ strname - The name of the VirtualHub.
- allow_
hub_ boolto_ remote_ vnet_ transit - Deprecated: VirtualHub to RemoteVnet transit to enabled or not.
- allow_
remote_ boolvnet_ to_ use_ hub_ vnet_ gateways - Deprecated: Allow RemoteVnet to use Virtual Hub's gateways.
- connection_
name str - The name of the HubVirtualNetworkConnection.
- enable_
internet_ boolsecurity - Enable internet security.
- id str
- Resource ID.
- name str
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- remote_
virtual_ Subnetwork Resource Args - Reference to the remote virtual network.
- routing_
configuration RoutingConfiguration Args - The Routing Configuration indicating the associated and propagated route tables on this connection.
- resource
Group StringName - The resource group name of the HubVirtualNetworkConnection.
- virtual
Hub StringName - The name of the VirtualHub.
- allow
Hub BooleanTo Remote Vnet Transit - Deprecated: VirtualHub to RemoteVnet transit to enabled or not.
- allow
Remote BooleanVnet To Use Hub Vnet Gateways - Deprecated: Allow RemoteVnet to use Virtual Hub's gateways.
- connection
Name String - The name of the HubVirtualNetworkConnection.
- enable
Internet BooleanSecurity - Enable internet security.
- id String
- Resource ID.
- name String
- The name of the resource that is unique within a resource group. This name can be used to access the resource.
- remote
Virtual Property MapNetwork - Reference to the remote virtual network.
- routing
Configuration Property Map - The Routing Configuration indicating the associated and propagated route tables on this connection.
Outputs
All input properties are implicitly available as output properties. Additionally, the HubVirtualNetworkConnection resource produces the following output properties:
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
State string - The provisioning state of the hub virtual network connection resource.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
State string - The provisioning state of the hub virtual network connection resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - The provisioning state of the hub virtual network connection resource.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- id string
- The provider-assigned unique ID for this managed resource.
- provisioning
State string - The provisioning state of the hub virtual network connection resource.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- id str
- The provider-assigned unique ID for this managed resource.
- provisioning_
state str - The provisioning state of the hub virtual network connection resource.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - The provisioning state of the hub virtual network connection resource.
Supporting Types
PropagatedRouteTable, PropagatedRouteTableArgs
- Ids
List<Pulumi.
Azure Native. Network. Inputs. Sub Resource> - The list of resource ids of all the RouteTables.
- Labels List<string>
- The list of labels.
- Ids
[]Sub
Resource - The list of resource ids of all the RouteTables.
- Labels []string
- The list of labels.
- ids
List<Sub
Resource> - The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
- ids
Sub
Resource[] - The list of resource ids of all the RouteTables.
- labels string[]
- The list of labels.
- ids
Sequence[Sub
Resource] - The list of resource ids of all the RouteTables.
- labels Sequence[str]
- The list of labels.
- ids List<Property Map>
- The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
PropagatedRouteTableResponse, PropagatedRouteTableResponseArgs
- Ids
List<Pulumi.
Azure Native. Network. Inputs. Sub Resource Response> - The list of resource ids of all the RouteTables.
- Labels List<string>
- The list of labels.
- Ids
[]Sub
Resource Response - The list of resource ids of all the RouteTables.
- Labels []string
- The list of labels.
- ids
List<Sub
Resource Response> - The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
- ids
Sub
Resource Response[] - The list of resource ids of all the RouteTables.
- labels string[]
- The list of labels.
- ids
Sequence[Sub
Resource Response] - The list of resource ids of all the RouteTables.
- labels Sequence[str]
- The list of labels.
- ids List<Property Map>
- The list of resource ids of all the RouteTables.
- labels List<String>
- The list of labels.
RoutingConfiguration, RoutingConfigurationArgs
- Associated
Route Pulumi.Table Azure Native. Network. Inputs. Sub Resource - The resource id RouteTable associated with this RoutingConfiguration.
- Propagated
Route Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table - The list of RouteTables to advertise the routes to.
- Vnet
Routes Pulumi.Azure Native. Network. Inputs. Vnet Route - List of routes that control routing from VirtualHub into a virtual network connection.
- Associated
Route SubTable Resource - The resource id RouteTable associated with this RoutingConfiguration.
- Propagated
Route PropagatedTables Route Table - The list of RouteTables to advertise the routes to.
- Vnet
Routes VnetRoute - List of routes that control routing from VirtualHub into a virtual network connection.
- associated
Route SubTable Resource - The resource id RouteTable associated with this RoutingConfiguration.
- propagated
Route PropagatedTables Route Table - The list of RouteTables to advertise the routes to.
- vnet
Routes VnetRoute - List of routes that control routing from VirtualHub into a virtual network connection.
- associated
Route SubTable Resource - The resource id RouteTable associated with this RoutingConfiguration.
- propagated
Route PropagatedTables Route Table - The list of RouteTables to advertise the routes to.
- vnet
Routes VnetRoute - List of routes that control routing from VirtualHub into a virtual network connection.
- associated_
route_ Subtable Resource - The resource id RouteTable associated with this RoutingConfiguration.
- propagated_
route_ Propagatedtables Route Table - The list of RouteTables to advertise the routes to.
- vnet_
routes VnetRoute - List of routes that control routing from VirtualHub into a virtual network connection.
- associated
Route Property MapTable - The resource id RouteTable associated with this RoutingConfiguration.
- propagated
Route Property MapTables - The list of RouteTables to advertise the routes to.
- vnet
Routes Property Map - List of routes that control routing from VirtualHub into a virtual network connection.
RoutingConfigurationResponse, RoutingConfigurationResponseArgs
- Associated
Route Pulumi.Table Azure Native. Network. Inputs. Sub Resource Response - The resource id RouteTable associated with this RoutingConfiguration.
- Propagated
Route Pulumi.Tables Azure Native. Network. Inputs. Propagated Route Table Response - The list of RouteTables to advertise the routes to.
- Vnet
Routes Pulumi.Azure Native. Network. Inputs. Vnet Route Response - List of routes that control routing from VirtualHub into a virtual network connection.
- Associated
Route SubTable Resource Response - The resource id RouteTable associated with this RoutingConfiguration.
- Propagated
Route PropagatedTables Route Table Response - The list of RouteTables to advertise the routes to.
- Vnet
Routes VnetRoute Response - List of routes that control routing from VirtualHub into a virtual network connection.
- associated
Route SubTable Resource Response - The resource id RouteTable associated with this RoutingConfiguration.
- propagated
Route PropagatedTables Route Table Response - The list of RouteTables to advertise the routes to.
- vnet
Routes VnetRoute Response - List of routes that control routing from VirtualHub into a virtual network connection.
- associated
Route SubTable Resource Response - The resource id RouteTable associated with this RoutingConfiguration.
- propagated
Route PropagatedTables Route Table Response - The list of RouteTables to advertise the routes to.
- vnet
Routes VnetRoute Response - List of routes that control routing from VirtualHub into a virtual network connection.
- associated_
route_ Subtable Resource Response - The resource id RouteTable associated with this RoutingConfiguration.
- propagated_
route_ Propagatedtables Route Table Response - The list of RouteTables to advertise the routes to.
- vnet_
routes VnetRoute Response - List of routes that control routing from VirtualHub into a virtual network connection.
- associated
Route Property MapTable - The resource id RouteTable associated with this RoutingConfiguration.
- propagated
Route Property MapTables - The list of RouteTables to advertise the routes to.
- vnet
Routes Property Map - List of routes that control routing from VirtualHub into a virtual network connection.
StaticRoute, StaticRouteArgs
- Address
Prefixes List<string> - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- Address
Prefixes []string - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
- address
Prefixes string[] - List of all address prefixes.
- name string
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop stringIp Address - The ip address of the next hop.
- address_
prefixes Sequence[str] - List of all address prefixes.
- name str
- The name of the StaticRoute that is unique within a VnetRoute.
- next_
hop_ strip_ address - The ip address of the next hop.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
StaticRouteResponse, StaticRouteResponseArgs
- Address
Prefixes List<string> - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- Address
Prefixes []string - List of all address prefixes.
- Name string
- The name of the StaticRoute that is unique within a VnetRoute.
- Next
Hop stringIp Address - The ip address of the next hop.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
- address
Prefixes string[] - List of all address prefixes.
- name string
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop stringIp Address - The ip address of the next hop.
- address_
prefixes Sequence[str] - List of all address prefixes.
- name str
- The name of the StaticRoute that is unique within a VnetRoute.
- next_
hop_ strip_ address - The ip address of the next hop.
- address
Prefixes List<String> - List of all address prefixes.
- name String
- The name of the StaticRoute that is unique within a VnetRoute.
- next
Hop StringIp Address - The ip address of the next hop.
SubResource, SubResourceArgs
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
VnetRoute, VnetRouteArgs
- Static
Routes List<Pulumi.Azure Native. Network. Inputs. Static Route> - List of all Static Routes.
- Static
Routes []StaticRoute - List of all Static Routes.
- static
Routes List<StaticRoute> - List of all Static Routes.
- static
Routes StaticRoute[] - List of all Static Routes.
- static_
routes Sequence[StaticRoute] - List of all Static Routes.
- static
Routes List<Property Map> - List of all Static Routes.
VnetRouteResponse, VnetRouteResponseArgs
- Static
Routes List<Pulumi.Azure Native. Network. Inputs. Static Route Response> - List of all Static Routes.
- Static
Routes []StaticRoute Response - List of all Static Routes.
- static
Routes List<StaticRoute Response> - List of all Static Routes.
- static
Routes StaticRoute Response[] - List of all Static Routes.
- static_
routes Sequence[StaticRoute Response] - List of all Static Routes.
- static
Routes List<Property Map> - List of all Static Routes.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:HubVirtualNetworkConnection connection1 /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/virtualHub1/hubVirtualNetworkConnections/connection1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0