1. Packages
  2. Google Cloud Native
  3. API Docs
  4. networkconnectivity
  5. networkconnectivity/v1
  6. Spoke

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.networkconnectivity/v1.Spoke

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates a Network Connectivity Center spoke.

Create Spoke Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Spoke(name: string, args: SpokeArgs, opts?: CustomResourceOptions);
@overload
def Spoke(resource_name: str,
          args: SpokeArgs,
          opts: Optional[ResourceOptions] = None)

@overload
def Spoke(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          spoke_id: Optional[str] = None,
          linked_vpc_network: Optional[LinkedVpcNetworkArgs] = None,
          hub: Optional[str] = None,
          labels: Optional[Mapping[str, str]] = None,
          linked_interconnect_attachments: Optional[LinkedInterconnectAttachmentsArgs] = None,
          linked_router_appliance_instances: Optional[LinkedRouterApplianceInstancesArgs] = None,
          description: Optional[str] = None,
          linked_vpn_tunnels: Optional[LinkedVpnTunnelsArgs] = None,
          location: Optional[str] = None,
          name: Optional[str] = None,
          project: Optional[str] = None,
          request_id: Optional[str] = None,
          group: Optional[str] = None)
func NewSpoke(ctx *Context, name string, args SpokeArgs, opts ...ResourceOption) (*Spoke, error)
public Spoke(string name, SpokeArgs args, CustomResourceOptions? opts = null)
public Spoke(String name, SpokeArgs args)
public Spoke(String name, SpokeArgs args, CustomResourceOptions options)
type: google-native:networkconnectivity/v1:Spoke
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SpokeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SpokeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SpokeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SpokeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SpokeArgs
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 spokeResource = new GoogleNative.NetworkConnectivity.V1.Spoke("spokeResource", new()
{
    SpokeId = "string",
    LinkedVpcNetwork = new GoogleNative.NetworkConnectivity.V1.Inputs.LinkedVpcNetworkArgs
    {
        Uri = "string",
        ExcludeExportRanges = new[]
        {
            "string",
        },
    },
    Hub = "string",
    Labels = 
    {
        { "string", "string" },
    },
    LinkedInterconnectAttachments = new GoogleNative.NetworkConnectivity.V1.Inputs.LinkedInterconnectAttachmentsArgs
    {
        SiteToSiteDataTransfer = false,
        Uris = new[]
        {
            "string",
        },
    },
    LinkedRouterApplianceInstances = new GoogleNative.NetworkConnectivity.V1.Inputs.LinkedRouterApplianceInstancesArgs
    {
        Instances = new[]
        {
            new GoogleNative.NetworkConnectivity.V1.Inputs.RouterApplianceInstanceArgs
            {
                IpAddress = "string",
                VirtualMachine = "string",
            },
        },
        SiteToSiteDataTransfer = false,
    },
    Description = "string",
    LinkedVpnTunnels = new GoogleNative.NetworkConnectivity.V1.Inputs.LinkedVpnTunnelsArgs
    {
        SiteToSiteDataTransfer = false,
        Uris = new[]
        {
            "string",
        },
    },
    Location = "string",
    Name = "string",
    Project = "string",
    RequestId = "string",
    Group = "string",
});
Copy
example, err := networkconnectivity.NewSpoke(ctx, "spokeResource", &networkconnectivity.SpokeArgs{
	SpokeId: pulumi.String("string"),
	LinkedVpcNetwork: &networkconnectivity.LinkedVpcNetworkArgs{
		Uri: pulumi.String("string"),
		ExcludeExportRanges: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Hub: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	LinkedInterconnectAttachments: &networkconnectivity.LinkedInterconnectAttachmentsArgs{
		SiteToSiteDataTransfer: pulumi.Bool(false),
		Uris: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	LinkedRouterApplianceInstances: &networkconnectivity.LinkedRouterApplianceInstancesArgs{
		Instances: networkconnectivity.RouterApplianceInstanceArray{
			&networkconnectivity.RouterApplianceInstanceArgs{
				IpAddress:      pulumi.String("string"),
				VirtualMachine: pulumi.String("string"),
			},
		},
		SiteToSiteDataTransfer: pulumi.Bool(false),
	},
	Description: pulumi.String("string"),
	LinkedVpnTunnels: &networkconnectivity.LinkedVpnTunnelsArgs{
		SiteToSiteDataTransfer: pulumi.Bool(false),
		Uris: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location:  pulumi.String("string"),
	Name:      pulumi.String("string"),
	Project:   pulumi.String("string"),
	RequestId: pulumi.String("string"),
	Group:     pulumi.String("string"),
})
Copy
var spokeResource = new Spoke("spokeResource", SpokeArgs.builder()
    .spokeId("string")
    .linkedVpcNetwork(LinkedVpcNetworkArgs.builder()
        .uri("string")
        .excludeExportRanges("string")
        .build())
    .hub("string")
    .labels(Map.of("string", "string"))
    .linkedInterconnectAttachments(LinkedInterconnectAttachmentsArgs.builder()
        .siteToSiteDataTransfer(false)
        .uris("string")
        .build())
    .linkedRouterApplianceInstances(LinkedRouterApplianceInstancesArgs.builder()
        .instances(RouterApplianceInstanceArgs.builder()
            .ipAddress("string")
            .virtualMachine("string")
            .build())
        .siteToSiteDataTransfer(false)
        .build())
    .description("string")
    .linkedVpnTunnels(LinkedVpnTunnelsArgs.builder()
        .siteToSiteDataTransfer(false)
        .uris("string")
        .build())
    .location("string")
    .name("string")
    .project("string")
    .requestId("string")
    .group("string")
    .build());
Copy
spoke_resource = google_native.networkconnectivity.v1.Spoke("spokeResource",
    spoke_id="string",
    linked_vpc_network={
        "uri": "string",
        "exclude_export_ranges": ["string"],
    },
    hub="string",
    labels={
        "string": "string",
    },
    linked_interconnect_attachments={
        "site_to_site_data_transfer": False,
        "uris": ["string"],
    },
    linked_router_appliance_instances={
        "instances": [{
            "ip_address": "string",
            "virtual_machine": "string",
        }],
        "site_to_site_data_transfer": False,
    },
    description="string",
    linked_vpn_tunnels={
        "site_to_site_data_transfer": False,
        "uris": ["string"],
    },
    location="string",
    name="string",
    project="string",
    request_id="string",
    group="string")
Copy
const spokeResource = new google_native.networkconnectivity.v1.Spoke("spokeResource", {
    spokeId: "string",
    linkedVpcNetwork: {
        uri: "string",
        excludeExportRanges: ["string"],
    },
    hub: "string",
    labels: {
        string: "string",
    },
    linkedInterconnectAttachments: {
        siteToSiteDataTransfer: false,
        uris: ["string"],
    },
    linkedRouterApplianceInstances: {
        instances: [{
            ipAddress: "string",
            virtualMachine: "string",
        }],
        siteToSiteDataTransfer: false,
    },
    description: "string",
    linkedVpnTunnels: {
        siteToSiteDataTransfer: false,
        uris: ["string"],
    },
    location: "string",
    name: "string",
    project: "string",
    requestId: "string",
    group: "string",
});
Copy
type: google-native:networkconnectivity/v1:Spoke
properties:
    description: string
    group: string
    hub: string
    labels:
        string: string
    linkedInterconnectAttachments:
        siteToSiteDataTransfer: false
        uris:
            - string
    linkedRouterApplianceInstances:
        instances:
            - ipAddress: string
              virtualMachine: string
        siteToSiteDataTransfer: false
    linkedVpcNetwork:
        excludeExportRanges:
            - string
        uri: string
    linkedVpnTunnels:
        siteToSiteDataTransfer: false
        uris:
            - string
    location: string
    name: string
    project: string
    requestId: string
    spokeId: string
Copy

Spoke Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Spoke resource accepts the following input properties:

SpokeId
This property is required.
Changes to this property will trigger replacement.
string
Required. Unique id for the spoke to create.
Description string
An optional description of the spoke.
Group string
Optional. The name of the group that this spoke is associated with.
Hub string
Immutable. The name of the hub that this spoke is attached to.
Labels Dictionary<string, string>
Optional labels in key-value pair format. For more information about labels, see Requirements for labels.
LinkedInterconnectAttachments Pulumi.GoogleNative.NetworkConnectivity.V1.Inputs.LinkedInterconnectAttachments
VLAN attachments that are associated with the spoke.
LinkedRouterApplianceInstances Pulumi.GoogleNative.NetworkConnectivity.V1.Inputs.LinkedRouterApplianceInstances
Router appliance instances that are associated with the spoke.
LinkedVpcNetwork Pulumi.GoogleNative.NetworkConnectivity.V1.Inputs.LinkedVpcNetwork
Optional. VPC network that is associated with the spoke.
LinkedVpnTunnels Pulumi.GoogleNative.NetworkConnectivity.V1.Inputs.LinkedVpnTunnels
VPN tunnels that are associated with the spoke.
Location Changes to this property will trigger replacement. string
Name string
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: projects/{project_number}/locations/{region}/spokes/{spoke_id}
Project Changes to this property will trigger replacement. string
RequestId string
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
SpokeId
This property is required.
Changes to this property will trigger replacement.
string
Required. Unique id for the spoke to create.
Description string
An optional description of the spoke.
Group string
Optional. The name of the group that this spoke is associated with.
Hub string
Immutable. The name of the hub that this spoke is attached to.
Labels map[string]string
Optional labels in key-value pair format. For more information about labels, see Requirements for labels.
LinkedInterconnectAttachments LinkedInterconnectAttachmentsArgs
VLAN attachments that are associated with the spoke.
LinkedRouterApplianceInstances LinkedRouterApplianceInstancesArgs
Router appliance instances that are associated with the spoke.
LinkedVpcNetwork LinkedVpcNetworkArgs
Optional. VPC network that is associated with the spoke.
LinkedVpnTunnels LinkedVpnTunnelsArgs
VPN tunnels that are associated with the spoke.
Location Changes to this property will trigger replacement. string
Name string
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: projects/{project_number}/locations/{region}/spokes/{spoke_id}
Project Changes to this property will trigger replacement. string
RequestId string
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
spokeId
This property is required.
Changes to this property will trigger replacement.
String
Required. Unique id for the spoke to create.
description String
An optional description of the spoke.
group String
Optional. The name of the group that this spoke is associated with.
hub String
Immutable. The name of the hub that this spoke is attached to.
labels Map<String,String>
Optional labels in key-value pair format. For more information about labels, see Requirements for labels.
linkedInterconnectAttachments LinkedInterconnectAttachments
VLAN attachments that are associated with the spoke.
linkedRouterApplianceInstances LinkedRouterApplianceInstances
Router appliance instances that are associated with the spoke.
linkedVpcNetwork LinkedVpcNetwork
Optional. VPC network that is associated with the spoke.
linkedVpnTunnels LinkedVpnTunnels
VPN tunnels that are associated with the spoke.
location Changes to this property will trigger replacement. String
name String
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: projects/{project_number}/locations/{region}/spokes/{spoke_id}
project Changes to this property will trigger replacement. String
requestId String
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
spokeId
This property is required.
Changes to this property will trigger replacement.
string
Required. Unique id for the spoke to create.
description string
An optional description of the spoke.
group string
Optional. The name of the group that this spoke is associated with.
hub string
Immutable. The name of the hub that this spoke is attached to.
labels {[key: string]: string}
Optional labels in key-value pair format. For more information about labels, see Requirements for labels.
linkedInterconnectAttachments LinkedInterconnectAttachments
VLAN attachments that are associated with the spoke.
linkedRouterApplianceInstances LinkedRouterApplianceInstances
Router appliance instances that are associated with the spoke.
linkedVpcNetwork LinkedVpcNetwork
Optional. VPC network that is associated with the spoke.
linkedVpnTunnels LinkedVpnTunnels
VPN tunnels that are associated with the spoke.
location Changes to this property will trigger replacement. string
name string
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: projects/{project_number}/locations/{region}/spokes/{spoke_id}
project Changes to this property will trigger replacement. string
requestId string
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
spoke_id
This property is required.
Changes to this property will trigger replacement.
str
Required. Unique id for the spoke to create.
description str
An optional description of the spoke.
group str
Optional. The name of the group that this spoke is associated with.
hub str
Immutable. The name of the hub that this spoke is attached to.
labels Mapping[str, str]
Optional labels in key-value pair format. For more information about labels, see Requirements for labels.
linked_interconnect_attachments LinkedInterconnectAttachmentsArgs
VLAN attachments that are associated with the spoke.
linked_router_appliance_instances LinkedRouterApplianceInstancesArgs
Router appliance instances that are associated with the spoke.
linked_vpc_network LinkedVpcNetworkArgs
Optional. VPC network that is associated with the spoke.
linked_vpn_tunnels LinkedVpnTunnelsArgs
VPN tunnels that are associated with the spoke.
location Changes to this property will trigger replacement. str
name str
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: projects/{project_number}/locations/{region}/spokes/{spoke_id}
project Changes to this property will trigger replacement. str
request_id str
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
spokeId
This property is required.
Changes to this property will trigger replacement.
String
Required. Unique id for the spoke to create.
description String
An optional description of the spoke.
group String
Optional. The name of the group that this spoke is associated with.
hub String
Immutable. The name of the hub that this spoke is attached to.
labels Map<String>
Optional labels in key-value pair format. For more information about labels, see Requirements for labels.
linkedInterconnectAttachments Property Map
VLAN attachments that are associated with the spoke.
linkedRouterApplianceInstances Property Map
Router appliance instances that are associated with the spoke.
linkedVpcNetwork Property Map
Optional. VPC network that is associated with the spoke.
linkedVpnTunnels Property Map
VPN tunnels that are associated with the spoke.
location Changes to this property will trigger replacement. String
name String
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: projects/{project_number}/locations/{region}/spokes/{spoke_id}
project Changes to this property will trigger replacement. String
requestId String
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server knows to ignore the request if it has already been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check to see whether the original operation was received. If it was, the server ignores the second request. This behavior prevents clients from mistakenly creating duplicate commitments. The request ID must be a valid UUID, with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).

Outputs

All input properties are implicitly available as output properties. Additionally, the Spoke resource produces the following output properties:

CreateTime string
The time the spoke was created.
Id string
The provider-assigned unique ID for this managed resource.
Reasons List<Pulumi.GoogleNative.NetworkConnectivity.V1.Outputs.StateReasonResponse>
The reasons for current state of the spoke. Only present when the spoke is in the INACTIVE state.
SpokeType string
The type of resource associated with the spoke.
State string
The current lifecycle state of this spoke.
UniqueId string
The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id.
UpdateTime string
The time the spoke was last updated.
CreateTime string
The time the spoke was created.
Id string
The provider-assigned unique ID for this managed resource.
Reasons []StateReasonResponse
The reasons for current state of the spoke. Only present when the spoke is in the INACTIVE state.
SpokeType string
The type of resource associated with the spoke.
State string
The current lifecycle state of this spoke.
UniqueId string
The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id.
UpdateTime string
The time the spoke was last updated.
createTime String
The time the spoke was created.
id String
The provider-assigned unique ID for this managed resource.
reasons List<StateReasonResponse>
The reasons for current state of the spoke. Only present when the spoke is in the INACTIVE state.
spokeType String
The type of resource associated with the spoke.
state String
The current lifecycle state of this spoke.
uniqueId String
The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id.
updateTime String
The time the spoke was last updated.
createTime string
The time the spoke was created.
id string
The provider-assigned unique ID for this managed resource.
reasons StateReasonResponse[]
The reasons for current state of the spoke. Only present when the spoke is in the INACTIVE state.
spokeType string
The type of resource associated with the spoke.
state string
The current lifecycle state of this spoke.
uniqueId string
The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id.
updateTime string
The time the spoke was last updated.
create_time str
The time the spoke was created.
id str
The provider-assigned unique ID for this managed resource.
reasons Sequence[StateReasonResponse]
The reasons for current state of the spoke. Only present when the spoke is in the INACTIVE state.
spoke_type str
The type of resource associated with the spoke.
state str
The current lifecycle state of this spoke.
unique_id str
The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id.
update_time str
The time the spoke was last updated.
createTime String
The time the spoke was created.
id String
The provider-assigned unique ID for this managed resource.
reasons List<Property Map>
The reasons for current state of the spoke. Only present when the spoke is in the INACTIVE state.
spokeType String
The type of resource associated with the spoke.
state String
The current lifecycle state of this spoke.
uniqueId String
The Google-generated UUID for the spoke. This value is unique across all spoke resources. If a spoke is deleted and another with the same name is created, the new spoke is assigned a different unique_id.
updateTime String
The time the spoke was last updated.

Supporting Types

LinkedInterconnectAttachments
, LinkedInterconnectAttachmentsArgs

SiteToSiteDataTransfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris List<string>
The URIs of linked interconnect attachment resources
SiteToSiteDataTransfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris []string
The URIs of linked interconnect attachment resources
siteToSiteDataTransfer Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris List<String>
The URIs of linked interconnect attachment resources
siteToSiteDataTransfer boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris string[]
The URIs of linked interconnect attachment resources
site_to_site_data_transfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris Sequence[str]
The URIs of linked interconnect attachment resources
siteToSiteDataTransfer Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris List<String>
The URIs of linked interconnect attachment resources

LinkedInterconnectAttachmentsResponse
, LinkedInterconnectAttachmentsResponseArgs

SiteToSiteDataTransfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris This property is required. List<string>
The URIs of linked interconnect attachment resources
VpcNetwork This property is required. string
The VPC network where these VLAN attachments are located.
SiteToSiteDataTransfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris This property is required. []string
The URIs of linked interconnect attachment resources
VpcNetwork This property is required. string
The VPC network where these VLAN attachments are located.
siteToSiteDataTransfer This property is required. Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. List<String>
The URIs of linked interconnect attachment resources
vpcNetwork This property is required. String
The VPC network where these VLAN attachments are located.
siteToSiteDataTransfer This property is required. boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. string[]
The URIs of linked interconnect attachment resources
vpcNetwork This property is required. string
The VPC network where these VLAN attachments are located.
site_to_site_data_transfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. Sequence[str]
The URIs of linked interconnect attachment resources
vpc_network This property is required. str
The VPC network where these VLAN attachments are located.
siteToSiteDataTransfer This property is required. Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. List<String>
The URIs of linked interconnect attachment resources
vpcNetwork This property is required. String
The VPC network where these VLAN attachments are located.

LinkedRouterApplianceInstances
, LinkedRouterApplianceInstancesArgs

Instances List<Pulumi.GoogleNative.NetworkConnectivity.V1.Inputs.RouterApplianceInstance>
The list of router appliance instances.
SiteToSiteDataTransfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Instances []RouterApplianceInstance
The list of router appliance instances.
SiteToSiteDataTransfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
instances List<RouterApplianceInstance>
The list of router appliance instances.
siteToSiteDataTransfer Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
instances RouterApplianceInstance[]
The list of router appliance instances.
siteToSiteDataTransfer boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
instances Sequence[RouterApplianceInstance]
The list of router appliance instances.
site_to_site_data_transfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
instances List<Property Map>
The list of router appliance instances.
siteToSiteDataTransfer Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.

LinkedRouterApplianceInstancesResponse
, LinkedRouterApplianceInstancesResponseArgs

Instances This property is required. List<Pulumi.GoogleNative.NetworkConnectivity.V1.Inputs.RouterApplianceInstanceResponse>
The list of router appliance instances.
SiteToSiteDataTransfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
VpcNetwork This property is required. string
The VPC network where these router appliance instances are located.
Instances This property is required. []RouterApplianceInstanceResponse
The list of router appliance instances.
SiteToSiteDataTransfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
VpcNetwork This property is required. string
The VPC network where these router appliance instances are located.
instances This property is required. List<RouterApplianceInstanceResponse>
The list of router appliance instances.
siteToSiteDataTransfer This property is required. Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
vpcNetwork This property is required. String
The VPC network where these router appliance instances are located.
instances This property is required. RouterApplianceInstanceResponse[]
The list of router appliance instances.
siteToSiteDataTransfer This property is required. boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
vpcNetwork This property is required. string
The VPC network where these router appliance instances are located.
instances This property is required. Sequence[RouterApplianceInstanceResponse]
The list of router appliance instances.
site_to_site_data_transfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
vpc_network This property is required. str
The VPC network where these router appliance instances are located.
instances This property is required. List<Property Map>
The list of router appliance instances.
siteToSiteDataTransfer This property is required. Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
vpcNetwork This property is required. String
The VPC network where these router appliance instances are located.

LinkedVpcNetwork
, LinkedVpcNetworkArgs

Uri This property is required. string
The URI of the VPC network resource.
ExcludeExportRanges List<string>
Optional. IP ranges encompassing the subnets to be excluded from peering.
Uri This property is required. string
The URI of the VPC network resource.
ExcludeExportRanges []string
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. String
The URI of the VPC network resource.
excludeExportRanges List<String>
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. string
The URI of the VPC network resource.
excludeExportRanges string[]
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. str
The URI of the VPC network resource.
exclude_export_ranges Sequence[str]
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. String
The URI of the VPC network resource.
excludeExportRanges List<String>
Optional. IP ranges encompassing the subnets to be excluded from peering.

LinkedVpcNetworkResponse
, LinkedVpcNetworkResponseArgs

ExcludeExportRanges This property is required. List<string>
Optional. IP ranges encompassing the subnets to be excluded from peering.
Uri This property is required. string
The URI of the VPC network resource.
ExcludeExportRanges This property is required. []string
Optional. IP ranges encompassing the subnets to be excluded from peering.
Uri This property is required. string
The URI of the VPC network resource.
excludeExportRanges This property is required. List<String>
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. String
The URI of the VPC network resource.
excludeExportRanges This property is required. string[]
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. string
The URI of the VPC network resource.
exclude_export_ranges This property is required. Sequence[str]
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. str
The URI of the VPC network resource.
excludeExportRanges This property is required. List<String>
Optional. IP ranges encompassing the subnets to be excluded from peering.
uri This property is required. String
The URI of the VPC network resource.

LinkedVpnTunnels
, LinkedVpnTunnelsArgs

SiteToSiteDataTransfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris List<string>
The URIs of linked VPN tunnel resources.
SiteToSiteDataTransfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris []string
The URIs of linked VPN tunnel resources.
siteToSiteDataTransfer Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris List<String>
The URIs of linked VPN tunnel resources.
siteToSiteDataTransfer boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris string[]
The URIs of linked VPN tunnel resources.
site_to_site_data_transfer bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris Sequence[str]
The URIs of linked VPN tunnel resources.
siteToSiteDataTransfer Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris List<String>
The URIs of linked VPN tunnel resources.

LinkedVpnTunnelsResponse
, LinkedVpnTunnelsResponseArgs

SiteToSiteDataTransfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris This property is required. List<string>
The URIs of linked VPN tunnel resources.
VpcNetwork This property is required. string
The VPC network where these VPN tunnels are located.
SiteToSiteDataTransfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
Uris This property is required. []string
The URIs of linked VPN tunnel resources.
VpcNetwork This property is required. string
The VPC network where these VPN tunnels are located.
siteToSiteDataTransfer This property is required. Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. List<String>
The URIs of linked VPN tunnel resources.
vpcNetwork This property is required. String
The VPC network where these VPN tunnels are located.
siteToSiteDataTransfer This property is required. boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. string[]
The URIs of linked VPN tunnel resources.
vpcNetwork This property is required. string
The VPC network where these VPN tunnels are located.
site_to_site_data_transfer This property is required. bool
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. Sequence[str]
The URIs of linked VPN tunnel resources.
vpc_network This property is required. str
The VPC network where these VPN tunnels are located.
siteToSiteDataTransfer This property is required. Boolean
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
uris This property is required. List<String>
The URIs of linked VPN tunnel resources.
vpcNetwork This property is required. String
The VPC network where these VPN tunnels are located.

RouterApplianceInstance
, RouterApplianceInstanceArgs

IpAddress string
The IP address on the VM to use for peering.
VirtualMachine string
The URI of the VM.
IpAddress string
The IP address on the VM to use for peering.
VirtualMachine string
The URI of the VM.
ipAddress String
The IP address on the VM to use for peering.
virtualMachine String
The URI of the VM.
ipAddress string
The IP address on the VM to use for peering.
virtualMachine string
The URI of the VM.
ip_address str
The IP address on the VM to use for peering.
virtual_machine str
The URI of the VM.
ipAddress String
The IP address on the VM to use for peering.
virtualMachine String
The URI of the VM.

RouterApplianceInstanceResponse
, RouterApplianceInstanceResponseArgs

IpAddress This property is required. string
The IP address on the VM to use for peering.
VirtualMachine This property is required. string
The URI of the VM.
IpAddress This property is required. string
The IP address on the VM to use for peering.
VirtualMachine This property is required. string
The URI of the VM.
ipAddress This property is required. String
The IP address on the VM to use for peering.
virtualMachine This property is required. String
The URI of the VM.
ipAddress This property is required. string
The IP address on the VM to use for peering.
virtualMachine This property is required. string
The URI of the VM.
ip_address This property is required. str
The IP address on the VM to use for peering.
virtual_machine This property is required. str
The URI of the VM.
ipAddress This property is required. String
The IP address on the VM to use for peering.
virtualMachine This property is required. String
The URI of the VM.

StateReasonResponse
, StateReasonResponseArgs

Code This property is required. string
The code associated with this reason.
Message This property is required. string
Human-readable details about this reason.
UserDetails This property is required. string
Additional information provided by the user in the RejectSpoke call.
Code This property is required. string
The code associated with this reason.
Message This property is required. string
Human-readable details about this reason.
UserDetails This property is required. string
Additional information provided by the user in the RejectSpoke call.
code This property is required. String
The code associated with this reason.
message This property is required. String
Human-readable details about this reason.
userDetails This property is required. String
Additional information provided by the user in the RejectSpoke call.
code This property is required. string
The code associated with this reason.
message This property is required. string
Human-readable details about this reason.
userDetails This property is required. string
Additional information provided by the user in the RejectSpoke call.
code This property is required. str
The code associated with this reason.
message This property is required. str
Human-readable details about this reason.
user_details This property is required. str
Additional information provided by the user in the RejectSpoke call.
code This property is required. String
The code associated with this reason.
message This property is required. String
Human-readable details about this reason.
userDetails This property is required. String
Additional information provided by the user in the RejectSpoke call.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi