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=google_native.networkconnectivity.v1.LinkedVpcNetworkArgs(
uri="string",
exclude_export_ranges=["string"],
),
hub="string",
labels={
"string": "string",
},
linked_interconnect_attachments=google_native.networkconnectivity.v1.LinkedInterconnectAttachmentsArgs(
site_to_site_data_transfer=False,
uris=["string"],
),
linked_router_appliance_instances=google_native.networkconnectivity.v1.LinkedRouterApplianceInstancesArgs(
instances=[google_native.networkconnectivity.v1.RouterApplianceInstanceArgs(
ip_address="string",
virtual_machine="string",
)],
site_to_site_data_transfer=False,
),
description="string",
linked_vpn_tunnels=google_native.networkconnectivity.v1.LinkedVpnTunnelsArgs(
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
The Spoke resource accepts the following input properties:
- Spoke
Id 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.
- Linked
Interconnect Pulumi.Attachments Google Native. Network Connectivity. V1. Inputs. Linked Interconnect Attachments - VLAN attachments that are associated with the spoke.
- Linked
Router Pulumi.Appliance Instances Google Native. Network Connectivity. V1. Inputs. Linked Router Appliance Instances - Router appliance instances that are associated with the spoke.
- Linked
Vpc Pulumi.Network Google Native. Network Connectivity. V1. Inputs. Linked Vpc Network - Optional. VPC network that is associated with the spoke.
- Linked
Vpn 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
- Request
Id 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 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.
- 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 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
- Request
Id 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 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.
- linked
Interconnect LinkedAttachments Interconnect Attachments - VLAN attachments that are associated with the spoke.
- linked
Router LinkedAppliance Instances Router Appliance Instances - Router appliance instances that are associated with the spoke.
- linked
Vpc LinkedNetwork Vpc Network - Optional. VPC network that is associated with the spoke.
- linked
Vpn 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
- request
Id 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 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.
- linked
Interconnect LinkedAttachments Interconnect Attachments - VLAN attachments that are associated with the spoke.
- linked
Router LinkedAppliance Instances Router Appliance Instances - Router appliance instances that are associated with the spoke.
- linked
Vpc LinkedNetwork Vpc Network - Optional. VPC network that is associated with the spoke.
- linked
Vpn 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
- request
Id 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).
- spoke
Id 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.
- linked
Interconnect Property MapAttachments - VLAN attachments that are associated with the spoke.
- linked
Router Property MapAppliance Instances - Router appliance instances that are associated with the spoke.
- linked
Vpc Property MapNetwork - Optional. VPC network that is associated with the spoke.
- linked
Vpn 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
- request
Id 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:
- Create
Time 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
INACTIVE
state. - Spoke
Type string - The type of resource associated with the spoke.
- State string
- The current lifecycle state of this spoke.
- Unique
Id 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
. - Update
Time string - The time the spoke was last updated.
- Create
Time string - The time the spoke was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Reasons
[]State
Reason Response - The reasons for current state of the spoke. Only present when the spoke is in the
INACTIVE
state. - Spoke
Type string - The type of resource associated with the spoke.
- State string
- The current lifecycle state of this spoke.
- Unique
Id 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
. - Update
Time string - The time the spoke was last updated.
- create
Time String - The time the spoke was created.
- id String
- The provider-assigned unique ID for this managed resource.
- reasons
List<State
Reason Response> - The reasons for current state of the spoke. Only present when the spoke is in the
INACTIVE
state. - spoke
Type String - The type of resource associated with the spoke.
- state String
- The current lifecycle state of this spoke.
- unique
Id 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
. - update
Time String - The time the spoke was last updated.
- create
Time string - The time the spoke was created.
- id string
- The provider-assigned unique ID for this managed resource.
- reasons
State
Reason Response[] - The reasons for current state of the spoke. Only present when the spoke is in the
INACTIVE
state. - spoke
Type string - The type of resource associated with the spoke.
- state string
- The current lifecycle state of this spoke.
- unique
Id 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
. - update
Time 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[State
Reason Response] - 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.
- create
Time 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. - spoke
Type String - The type of resource associated with the spoke.
- state String
- The current lifecycle state of this spoke.
- unique
Id 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
. - update
Time String - The time the spoke was last updated.
Supporting Types
LinkedInterconnectAttachments, LinkedInterconnectAttachmentsArgs
- 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 List<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 []string
- The URIs of linked interconnect attachment resources
- site
To 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
- site
To 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
- site
To 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
- 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 List<string>
- The URIs of linked interconnect attachment resources
- Vpc
Network 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 []string
- The URIs of linked interconnect attachment resources
- Vpc
Network string - The VPC network where these VLAN attachments are located.
- site
To 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
- vpc
Network String - The VPC network where these VLAN attachments are located.
- site
To 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
- vpc
Network 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.
- site
To 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
- vpc
Network 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.
- 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
[]Router
Appliance 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<Router
Appliance Instance> - The list of router appliance instances.
- site
To 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
Router
Appliance Instance[] - The list of router appliance instances.
- site
To 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[Router
Appliance 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.
- site
To 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.
- 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 string - The VPC network where these router appliance instances are located.
- Instances
[]Router
Appliance 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 string - The VPC network where these router appliance instances are located.
- instances
List<Router
Appliance Instance Response> - The list of router appliance instances.
- site
To 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.
- vpc
Network String - The VPC network where these router appliance instances are located.
- instances
Router
Appliance Instance Response[] - The list of router appliance instances.
- site
To 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.
- vpc
Network string - The VPC network where these router appliance instances are located.
- instances
Sequence[Router
Appliance 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.
- site
To 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.
- vpc
Network String - The VPC network where these router appliance instances are located.
LinkedVpcNetwork, LinkedVpcNetworkArgs
- Uri string
- The URI of the VPC network resource.
- Exclude
Export List<string>Ranges - Optional. IP ranges encompassing the subnets to be excluded from peering.
- Uri string
- The URI of the VPC network resource.
- Exclude
Export []stringRanges - Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri String
- The URI of the VPC network resource.
- exclude
Export List<String>Ranges - Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri string
- The URI of the VPC network resource.
- exclude
Export 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.
- exclude
Export List<String>Ranges - Optional. IP ranges encompassing the subnets to be excluded from peering.
LinkedVpcNetworkResponse, LinkedVpcNetworkResponseArgs
- Exclude
Export List<string>Ranges - Optional. IP ranges encompassing the subnets to be excluded from peering.
- Uri string
- The URI of the VPC network resource.
- Exclude
Export []stringRanges - Optional. IP ranges encompassing the subnets to be excluded from peering.
- Uri string
- The URI of the VPC network resource.
- exclude
Export List<String>Ranges - Optional. IP ranges encompassing the subnets to be excluded from peering.
- uri String
- The URI of the VPC network resource.
- exclude
Export 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.
- exclude
Export 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
- 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 List<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 []string
- The URIs of linked VPN tunnel resources.
- site
To 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.
- site
To 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.
- site
To 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
- 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 List<string>
- The URIs of linked VPN tunnel resources.
- Vpc
Network 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 []string
- The URIs of linked VPN tunnel resources.
- Vpc
Network string - The VPC network where these VPN tunnels are located.
- site
To 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.
- vpc
Network String - The VPC network where these VPN tunnels are located.
- site
To 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.
- vpc
Network 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.
- site
To 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.
- vpc
Network String - The VPC network where these VPN tunnels are located.
RouterApplianceInstance, RouterApplianceInstanceArgs
- Ip
Address string - The IP address on the VM to use for peering.
- Virtual
Machine string - The URI of the VM.
- Ip
Address string - The IP address on the VM to use for peering.
- Virtual
Machine string - The URI of the VM.
- ip
Address String - The IP address on the VM to use for peering.
- virtual
Machine String - The URI of the VM.
- ip
Address string - The IP address on the VM to use for peering.
- virtual
Machine 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.
- ip
Address String - The IP address on the VM to use for peering.
- virtual
Machine String - The URI of the VM.
RouterApplianceInstanceResponse, RouterApplianceInstanceResponseArgs
- Ip
Address string - The IP address on the VM to use for peering.
- Virtual
Machine string - The URI of the VM.
- Ip
Address string - The IP address on the VM to use for peering.
- Virtual
Machine string - The URI of the VM.
- ip
Address String - The IP address on the VM to use for peering.
- virtual
Machine String - The URI of the VM.
- ip
Address string - The IP address on the VM to use for peering.
- virtual
Machine 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.
- ip
Address String - The IP address on the VM to use for peering.
- virtual
Machine String - The URI of the VM.
StateReasonResponse, StateReasonResponseArgs
- Code string
- The code associated with this reason.
- Message string
- Human-readable details about this reason.
- User
Details 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.
- User
Details 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.
- user
Details 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.
- user
Details 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.
- user
Details 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.