- JSON representation
- LinkedVpnTunnels
- LinkedInterconnectAttachments
- LinkedRouterApplianceInstances
- RouterApplianceInstance
- LinkedVpcNetwork
- StateReason
A Network Connectivity Center spoke represents one or more network connectivity resources.
When you create a spoke, you associate it with a hub. You must also identify a value for exactly one of the following fields:
- linkedVpnTunnels
- linkedInterconnectAttachments
- linkedRouterApplianceInstances
- linkedVpcNetwork
JSON representation |
---|
{ "name": string, "createTime": string, "updateTime": string, "labels": { string: string, ... }, "description": string, "hub": string, "group": string, "linkedVpnTunnels": { object ( |
Fields | |
---|---|
name |
Immutable. The name of the spoke. Spoke names must be unique. They use the following form: |
createTime |
Output only. The time the spoke was created. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
updateTime |
Output only. The time the spoke was last updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
labels |
Optional labels in key-value pair format. For more information about labels, see Requirements for labels. An object containing a list of |
description |
An optional description of the spoke. |
hub |
Immutable. The name of the hub that this spoke is attached to. |
group |
Optional. The name of the group that this spoke is associated with. |
linkedVpnTunnels |
VPN tunnels that are associated with the spoke. |
linkedInterconnectAttachments |
VLAN attachments that are associated with the spoke. |
linkedRouterApplianceInstances |
Router appliance instances that are associated with the spoke. |
linkedVpcNetwork |
Optional. VPC network that is associated with the spoke. |
uniqueId |
Output only. 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 |
state |
Output only. The current lifecycle state of this spoke. |
reasons[] |
Output only. The reasons for current state of the spoke. Only present when the spoke is in the |
spokeType |
Output only. The type of resource associated with the spoke. |
LinkedVpnTunnels
A collection of Cloud VPN tunnel resources. These resources should be redundant HA VPN tunnels that all advertise the same prefixes to Google Cloud. Alternatively, in a passive/active configuration, all tunnels should be capable of advertising the same prefixes.
JSON representation |
---|
{ "uris": [ string ], "siteToSiteDataTransfer": boolean, "vpcNetwork": string, "includeImportRanges": [ string ] } |
Fields | |
---|---|
uris[] |
The URIs of linked VPN tunnel resources. |
siteToSiteDataTransfer |
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations. |
vpcNetwork |
Output only. The VPC network where these VPN tunnels are located. |
includeImportRanges[] |
Optional. IP ranges allowed to be included during import from hub (does not control transit connectivity). The only allowed value for now is "ALL_IPV4_RANGES". |
LinkedInterconnectAttachments
A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.
JSON representation |
---|
{ "uris": [ string ], "siteToSiteDataTransfer": boolean, "vpcNetwork": string, "includeImportRanges": [ string ] } |
Fields | |
---|---|
uris[] |
The URIs of linked interconnect attachment resources |
siteToSiteDataTransfer |
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations. |
vpcNetwork |
Output only. The VPC network where these VLAN attachments are located. |
includeImportRanges[] |
Optional. IP ranges allowed to be included during import from hub (does not control transit connectivity). The only allowed value for now is "ALL_IPV4_RANGES". |
LinkedRouterApplianceInstances
A collection of router appliance instances. If you configure multiple router appliance instances to receive data from the same set of sites outside of Google Cloud, we recommend that you associate those instances with the same spoke.
JSON representation |
---|
{
"instances": [
{
object ( |
Fields | |
---|---|
instances[] |
The list of router appliance instances. |
siteToSiteDataTransfer |
A value that controls whether site-to-site data transfer is enabled for these resources. Data transfer is available only in supported locations. |
vpcNetwork |
Output only. The VPC network where these router appliance instances are located. |
includeImportRanges[] |
Optional. IP ranges allowed to be included during import from hub (does not control transit connectivity). The only allowed value for now is "ALL_IPV4_RANGES". |
RouterApplianceInstance
A router appliance instance is a Compute Engine virtual machine (VM) instance that acts as a BGP speaker. A router appliance instance is specified by the URI of the VM and the internal IP address of one of the VM's network interfaces.
JSON representation |
---|
{ "virtualMachine": string, "ipAddress": string } |
Fields | |
---|---|
virtualMachine |
The URI of the VM. |
ipAddress |
The IP address on the VM to use for peering. |
LinkedVpcNetwork
An existing VPC network.
JSON representation |
---|
{ "uri": string, "excludeExportRanges": [ string ], "includeExportRanges": [ string ], "producerVpcSpokes": [ string ] } |
Fields | |
---|---|
uri |
Required. The URI of the VPC network resource. |
excludeExportRanges[] |
Optional. IP ranges encompassing the subnets to be excluded from peering. |
includeExportRanges[] |
Optional. IP ranges allowed to be included from peering. |
producerVpcSpokes[] |
Output only. The list of Producer VPC spokes that this VPC spoke is a service consumer VPC spoke for. These producer VPCs are connected through VPC peering to this spoke's backing VPC network. |
StateReason
The reason a spoke is inactive.
JSON representation |
---|
{
"code": enum ( |
Fields | |
---|---|
code |
The code associated with this reason. |
message |
Human-readable details about this reason. |
userDetails |
Additional information provided by the user in the RejectSpoke call. |