Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.networkconnectivity/v1.Spoke
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
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)type: google-native:networkconnectivity/v1:Spoke
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 SpokeArgs
- 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 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 string
- The unique name of the resource.
- args SpokeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpokeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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 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.
- LinkedInterconnect Pulumi.Attachments Google Native. Network Connectivity. V1. Inputs. Linked Interconnect Attachments 
- VLAN attachments that are associated with the spoke.
- LinkedRouter Pulumi.Appliance Instances Google Native. Network Connectivity. V1. Inputs. Linked Router Appliance Instances 
- Router appliance instances that are associated with the spoke.
- LinkedVpc Pulumi.Network Google Native. Network Connectivity. V1. Inputs. Linked Vpc Network 
- Optional. VPC network that is associated with the spoke.
- LinkedVpn Pulumi.Tunnels Google Native. Network Connectivity. V1. Inputs. Linked Vpn Tunnels 
- VPN tunnels that are associated with the spoke.
- Location 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 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 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.
- LinkedInterconnect LinkedAttachments Interconnect Attachments Args 
- VLAN attachments that are associated with the spoke.
- LinkedRouter LinkedAppliance Instances Router Appliance Instances Args 
- Router appliance instances that are associated with the spoke.
- LinkedVpc LinkedNetwork Vpc Network Args 
- Optional. VPC network that is associated with the spoke.
- LinkedVpn LinkedTunnels Vpn Tunnels Args 
- VPN tunnels that are associated with the spoke.
- Location 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 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 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.
- linkedInterconnect LinkedAttachments Interconnect Attachments 
- VLAN attachments that are associated with the spoke.
- linkedRouter LinkedAppliance Instances Router Appliance Instances 
- Router appliance instances that are associated with the spoke.
- linkedVpc LinkedNetwork Vpc Network 
- Optional. VPC network that is associated with the spoke.
- linkedVpn LinkedTunnels Vpn Tunnels 
- VPN tunnels that are associated with the spoke.
- location 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 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 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.
- linkedInterconnect LinkedAttachments Interconnect Attachments 
- VLAN attachments that are associated with the spoke.
- linkedRouter LinkedAppliance Instances Router Appliance Instances 
- Router appliance instances that are associated with the spoke.
- linkedVpc LinkedNetwork Vpc Network 
- Optional. VPC network that is associated with the spoke.
- linkedVpn LinkedTunnels Vpn Tunnels 
- VPN tunnels that are associated with the spoke.
- location 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 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 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_ Linkedattachments Interconnect Attachments Args 
- VLAN attachments that are associated with the spoke.
- linked_router_ Linkedappliance_ instances Router Appliance Instances Args 
- Router appliance instances that are associated with the spoke.
- linked_vpc_ Linkednetwork Vpc Network Args 
- Optional. VPC network that is associated with the spoke.
- linked_vpn_ Linkedtunnels Vpn Tunnels Args 
- VPN tunnels that are associated with the spoke.
- location 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 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 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.
- linkedInterconnect Property MapAttachments 
- VLAN attachments that are associated with the spoke.
- linkedRouter Property MapAppliance Instances 
- Router appliance instances that are associated with the spoke.
- linkedVpc Property MapNetwork 
- Optional. VPC network that is associated with the spoke.
- linkedVpn Property MapTunnels 
- VPN tunnels that are associated with the spoke.
- location 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 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.Google Native. Network Connectivity. V1. Outputs. State Reason Response> 
- The reasons for current state of the spoke. Only present when the spoke is in the INACTIVEstate.
- 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
[]StateReason Response 
- The reasons for current state of the spoke. Only present when the spoke is in the INACTIVEstate.
- 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<StateReason Response> 
- The reasons for current state of the spoke. Only present when the spoke is in the INACTIVEstate.
- 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
StateReason Response[] 
- The reasons for current state of the spoke. Only present when the spoke is in the INACTIVEstate.
- 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[StateReason Response] 
- The reasons for current state of the spoke. Only present when the spoke is in the INACTIVEstate.
- 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 INACTIVEstate.
- 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      
- SiteTo boolSite Data Transfer 
- 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
- SiteTo boolSite Data Transfer 
- 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
- siteTo BooleanSite Data Transfer 
- 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
- siteTo booleanSite Data Transfer 
- 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_ boolsite_ data_ transfer 
- 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
- siteTo BooleanSite Data Transfer 
- 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        
- SiteTo boolSite Data Transfer 
- 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
- VpcNetwork string
- The VPC network where these VLAN attachments are located.
- SiteTo boolSite Data Transfer 
- 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
- VpcNetwork string
- The VPC network where these VLAN attachments are located.
- siteTo BooleanSite Data Transfer 
- 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
- vpcNetwork String
- The VPC network where these VLAN attachments are located.
- siteTo booleanSite Data Transfer 
- 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
- vpcNetwork string
- The VPC network where these VLAN attachments are located.
- site_to_ boolsite_ data_ transfer 
- 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
- vpc_network str
- The VPC network where these VLAN attachments are located.
- siteTo BooleanSite Data Transfer 
- 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
- vpcNetwork String
- The VPC network where these VLAN attachments are located.
LinkedRouterApplianceInstances, LinkedRouterApplianceInstancesArgs        
- Instances
List<Pulumi.Google Native. Network Connectivity. V1. Inputs. Router Appliance Instance> 
- The list of router appliance instances.
- SiteTo boolSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- Instances
[]RouterAppliance Instance 
- The list of router appliance instances.
- SiteTo boolSite Data Transfer 
- 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<RouterAppliance Instance> 
- The list of router appliance instances.
- siteTo BooleanSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- instances
RouterAppliance Instance[] 
- The list of router appliance instances.
- siteTo booleanSite Data Transfer 
- 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[RouterAppliance Instance] 
- The list of router appliance instances.
- site_to_ boolsite_ data_ transfer 
- 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.
- siteTo BooleanSite Data Transfer 
- 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
List<Pulumi.Google Native. Network Connectivity. V1. Inputs. Router Appliance Instance Response> 
- The list of router appliance instances.
- SiteTo boolSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- VpcNetwork string
- The VPC network where these router appliance instances are located.
- Instances
[]RouterAppliance Instance Response 
- The list of router appliance instances.
- SiteTo boolSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- VpcNetwork string
- The VPC network where these router appliance instances are located.
- instances
List<RouterAppliance Instance Response> 
- The list of router appliance instances.
- siteTo BooleanSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- vpcNetwork String
- The VPC network where these router appliance instances are located.
- instances
RouterAppliance Instance Response[] 
- The list of router appliance instances.
- siteTo booleanSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- vpcNetwork string
- The VPC network where these router appliance instances are located.
- instances
Sequence[RouterAppliance Instance Response] 
- The list of router appliance instances.
- site_to_ boolsite_ data_ transfer 
- 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 str
- The VPC network where these router appliance instances are located.
- instances List<Property Map>
- The list of router appliance instances.
- siteTo BooleanSite Data Transfer 
- A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations.
- vpcNetwork String
- The VPC network where these router appliance instances are located.
LinkedVpcNetwork, LinkedVpcNetworkArgs      
- Uri string
- The URI of the VPC network resource.
- ExcludeExport List<string>Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- Uri string
- The URI of the VPC network resource.
- ExcludeExport []stringRanges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri String
- The URI of the VPC network resource.
- excludeExport List<String>Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri string
- The URI of the VPC network resource.
- excludeExport string[]Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri str
- The URI of the VPC network resource.
- exclude_export_ Sequence[str]ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri String
- The URI of the VPC network resource.
- excludeExport List<String>Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
LinkedVpcNetworkResponse, LinkedVpcNetworkResponseArgs        
- ExcludeExport List<string>Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- Uri string
- The URI of the VPC network resource.
- ExcludeExport []stringRanges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- Uri string
- The URI of the VPC network resource.
- excludeExport List<String>Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri String
- The URI of the VPC network resource.
- excludeExport string[]Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri string
- The URI of the VPC network resource.
- exclude_export_ Sequence[str]ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri str
- The URI of the VPC network resource.
- excludeExport List<String>Ranges 
- Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri String
- The URI of the VPC network resource.
LinkedVpnTunnels, LinkedVpnTunnelsArgs      
- SiteTo boolSite Data Transfer 
- 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.
- SiteTo boolSite Data Transfer 
- 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.
- siteTo BooleanSite Data Transfer 
- 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.
- siteTo booleanSite Data Transfer 
- 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_ boolsite_ data_ transfer 
- 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.
- siteTo BooleanSite Data Transfer 
- 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        
- SiteTo boolSite Data Transfer 
- 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.
- VpcNetwork string
- The VPC network where these VPN tunnels are located.
- SiteTo boolSite Data Transfer 
- 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.
- VpcNetwork string
- The VPC network where these VPN tunnels are located.
- siteTo BooleanSite Data Transfer 
- 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.
- vpcNetwork String
- The VPC network where these VPN tunnels are located.
- siteTo booleanSite Data Transfer 
- 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.
- vpcNetwork string
- The VPC network where these VPN tunnels are located.
- site_to_ boolsite_ data_ transfer 
- 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.
- vpc_network str
- The VPC network where these VPN tunnels are located.
- siteTo BooleanSite Data Transfer 
- 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.
- vpcNetwork 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 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.
StateReasonResponse, StateReasonResponseArgs      
- Code string
- The code associated with this reason.
- Message string
- Human-readable details about this reason.
- UserDetails string
- Additional information provided by the user in the RejectSpoke call.
- Code string
- The code associated with this reason.
- Message string
- Human-readable details about this reason.
- UserDetails string
- Additional information provided by the user in the RejectSpoke call.
- code String
- The code associated with this reason.
- message String
- Human-readable details about this reason.
- userDetails String
- Additional information provided by the user in the RejectSpoke call.
- code string
- The code associated with this reason.
- message string
- Human-readable details about this reason.
- userDetails string
- Additional information provided by the user in the RejectSpoke call.
- code str
- The code associated with this reason.
- message str
- Human-readable details about this reason.
- user_details str
- Additional information provided by the user in the RejectSpoke call.
- code String
- The code associated with this reason.
- message String
- Human-readable details about this reason.
- userDetails 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.