Class: Google::Cloud::Compute::V1::RouterBgpPeer
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::RouterBgpPeer
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Defined Under Namespace
Modules: AdvertiseMode, AdvertisedGroups, Enable, ManagementType
Instance Attribute Summary collapse
-
#advertise_mode ⇒ ::String
User-specified flag to indicate which mode to use for advertisement.
-
#advertised_groups ⇒ ::Array<::String>
User-specified list of prefix groups to advertise in custom mode, which currently supports the following option:.
-
#advertised_ip_ranges ⇒ ::Array<::Google::Cloud::Compute::V1::RouterAdvertisedIpRange>
User-specified list of individual IP ranges to advertise in custom mode.
-
#advertised_route_priority ⇒ ::Integer
The priority of routes advertised to this BGP peer.
-
#bfd ⇒ ::Google::Cloud::Compute::V1::RouterBgpPeerBfd
BFD configuration for the BGP peering.
-
#custom_learned_ip_ranges ⇒ ::Array<::Google::Cloud::Compute::V1::RouterBgpPeerCustomLearnedIpRange>
A list of user-defined custom learned route IP address ranges for a BGP session.
-
#custom_learned_route_priority ⇒ ::Integer
The user-defined custom learned route priority for a BGP session.
-
#enable ⇒ ::String
The status of the BGP peer connection.
-
#enable_ipv4 ⇒ ::Boolean
Enable IPv4 traffic over BGP Peer.
-
#enable_ipv6 ⇒ ::Boolean
Enable IPv6 traffic over BGP Peer.
-
#export_policies ⇒ ::Array<::String>
List of export policies applied to this peer, in the order they must be evaluated.
-
#import_policies ⇒ ::Array<::String>
List of import policies applied to this peer, in the order they must be evaluated.
-
#interface_name ⇒ ::String
Name of the interface the BGP peer is associated with.
-
#ip_address ⇒ ::String
IP address of the interface inside Google Cloud Platform.
-
#ipv4_nexthop_address ⇒ ::String
IPv4 address of the interface inside Google Cloud Platform.
-
#ipv6_nexthop_address ⇒ ::String
IPv6 address of the interface inside Google Cloud Platform.
-
#management_type ⇒ ::String
Output only.
-
#md5_authentication_key_name ⇒ ::String
Present if MD5 authentication is enabled for the peering.
-
#name ⇒ ::String
Name of this BGP peer.
-
#peer_asn ⇒ ::Integer
Peer BGP Autonomous System Number (ASN).
-
#peer_ip_address ⇒ ::String
IP address of the BGP interface outside Google Cloud Platform.
-
#peer_ipv4_nexthop_address ⇒ ::String
IPv4 address of the BGP interface outside Google Cloud Platform.
-
#peer_ipv6_nexthop_address ⇒ ::String
IPv6 address of the BGP interface outside Google Cloud Platform.
-
#router_appliance_instance ⇒ ::String
URI of the VM instance that is used as third-party router appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances.
Instance Attribute Details
#advertise_mode ⇒ ::String
Returns User-specified flag to indicate which mode to use for advertisement. Check the AdvertiseMode enum for the list of possible values.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#advertised_groups ⇒ ::Array<::String>
Returns User-specified list of prefix groups to advertise in custom mode, which currently supports the following option:
- ALL_SUBNETS: Advertises all of the router's own VPC subnets. This excludes any routes learned for subnets that use VPC Network Peering.
Note that this field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These groups are advertised in addition to any specified prefixes. Leave this field blank to advertise no custom groups. Check the AdvertisedGroups enum for the list of possible values.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#advertised_ip_ranges ⇒ ::Array<::Google::Cloud::Compute::V1::RouterAdvertisedIpRange>
Returns User-specified list of individual IP ranges to advertise in custom mode. This field can only be populated if advertise_mode is CUSTOM and overrides the list defined for the router (in the "bgp" message). These IP ranges are advertised in addition to any specified groups. Leave this field blank to advertise no custom IP ranges.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#advertised_route_priority ⇒ ::Integer
Returns The priority of routes advertised to this BGP peer. Where there is more than one matching route of maximum length, the routes with the lowest priority value win.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#bfd ⇒ ::Google::Cloud::Compute::V1::RouterBgpPeerBfd
Returns BFD configuration for the BGP peering.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#custom_learned_ip_ranges ⇒ ::Array<::Google::Cloud::Compute::V1::RouterBgpPeerCustomLearnedIpRange>
Returns A list of user-defined custom learned route IP address ranges for a BGP session.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#custom_learned_route_priority ⇒ ::Integer
Returns The user-defined custom learned route priority for a BGP session. This
value is applied to all custom learned route ranges for the session.
You can choose a value from 0 to 65335. If you don't provide a
value, Google Cloud assigns a priority of 100 to the ranges.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#enable ⇒ ::String
Returns The status of the BGP peer connection.
If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. Check the Enable enum for the list of possible values.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#enable_ipv4 ⇒ ::Boolean
Returns Enable IPv4 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 4.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#enable_ipv6 ⇒ ::Boolean
Returns Enable IPv6 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 6.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#export_policies ⇒ ::Array<::String>
Returns List of export policies applied to this peer, in the order they must be evaluated. The name must correspond to an existing policy that has ROUTE_POLICY_TYPE_EXPORT type.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#import_policies ⇒ ::Array<::String>
Returns List of import policies applied to this peer, in the order they must be evaluated. The name must correspond to an existing policy that has ROUTE_POLICY_TYPE_IMPORT type.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#interface_name ⇒ ::String
Returns Name of the interface the BGP peer is associated with.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#ip_address ⇒ ::String
Returns IP address of the interface inside Google Cloud Platform.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#ipv4_nexthop_address ⇒ ::String
Returns IPv4 address of the interface inside Google Cloud Platform.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#ipv6_nexthop_address ⇒ ::String
Returns IPv6 address of the interface inside Google Cloud Platform.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#management_type ⇒ ::String
Returns Output only. [Output Only] The resource that configures and manages this BGP peer.
- MANAGED_BY_USER is the default value and can be managed by you or other users
- MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed by Cloud Interconnect, specifically by an InterconnectAttachment of type PARTNER. Google automatically creates, updates, and deletes this type of BGP peer when the PARTNER InterconnectAttachment is created, updated, or deleted. Check the ManagementType enum for the list of possible values.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#md5_authentication_key_name ⇒ ::String
Returns Present if MD5 authentication is enabled for the peering. Must be the name of one of the entries in the Router.md5_authentication_keys. The field must comply with RFC1035.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#name ⇒ ::String
Returns Name of this BGP peer.
The name must be 1-63 characters long, and comply withRFC1035. Specifically, the name must be 1-63
characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a
lowercase letter, and all following characters must be a dash, lowercase
letter, or digit, except the last character, which cannot be a dash.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#peer_asn ⇒ ::Integer
Returns Peer BGP Autonomous System Number (ASN). Each BGP interface may use a different value.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#peer_ip_address ⇒ ::String
Returns IP address of the BGP interface outside Google Cloud Platform.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#peer_ipv4_nexthop_address ⇒ ::String
Returns IPv4 address of the BGP interface outside Google Cloud Platform.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#peer_ipv6_nexthop_address ⇒ ::String
Returns IPv6 address of the BGP interface outside Google Cloud Platform.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |
#router_appliance_instance ⇒ ::String
Returns URI of the VM instance that is used as third-party router appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances. The VM instance must be located in zones contained in the same region as this Cloud Router. The VM instance is the peer side of the BGP session.
68523 68524 68525 68526 68527 68528 68529 68530 68531 68532 68533 68534 68535 68536 68537 68538 68539 68540 68541 68542 68543 68544 68545 68546 68547 68548 68549 68550 68551 68552 68553 68554 68555 68556 68557 68558 68559 68560 68561 68562 68563 68564 68565 68566 68567 68568 68569 68570 68571 68572 68573 68574 68575 68576 68577 68578 68579 68580 68581 68582 68583 68584 68585 68586 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 68523 class RouterBgpPeer include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # User-specified flag to indicate which mode to use for advertisement. module AdvertiseMode # A value indicating that the enum field is not set. UNDEFINED_ADVERTISE_MODE = 0 CUSTOM = 388_595_569 DEFAULT = 115_302_945 end module AdvertisedGroups # A value indicating that the enum field is not set. UNDEFINED_ADVERTISED_GROUPS = 0 # Advertise all available subnets (including peer VPC subnets). ALL_SUBNETS = 3_622_872 end # The status of the BGP peer connection. # # # If set to FALSE, any active session with the peer is terminated and # all associated routing information is removed. If set to TRUE, the # peer connection can be established with routing information. The default # is TRUE. module Enable # A value indicating that the enum field is not set. UNDEFINED_ENABLE = 0 FALSE = 66_658_563 TRUE = 2_583_950 end # Output only. [Output Only] The resource that configures and manages this BGP peer. # # - MANAGED_BY_USER is the default value and can be managed by you # or other users # - MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed # by Cloud Interconnect, specifically by an InterconnectAttachment of type # PARTNER. Google automatically creates, updates, and deletes this type of # BGP peer when the PARTNER InterconnectAttachment is created, updated, # or deleted. module ManagementType # A value indicating that the enum field is not set. UNDEFINED_MANAGEMENT_TYPE = 0 # The BGP peer is automatically created for PARTNER type # InterconnectAttachment; Google will automatically create/delete # this BGP peer when the PARTNER InterconnectAttachment is # created/deleted, and Google will update the ipAddress and # peerIpAddress when the PARTNER InterconnectAttachment is provisioned. # This type of BGP peer cannot be created or deleted, but can be # modified for all fields except for name, ipAddress and peerIpAddress. MANAGED_BY_ATTACHMENT = 458_926_411 # Default value, the BGP peer is manually created and managed by user. MANAGED_BY_USER = 317_294_067 end end |