Class: Google::Apis::ComputeAlpha::ExchangedPeeringRoute
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ExchangedPeeringRoute
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#dest_range ⇒ String
The destination range of the route.
-
#imported ⇒ Boolean
(also: #imported?)
True if the peering route has been imported from a peer.
-
#next_hop_region ⇒ String
The region of peering route next hop, only applies to dynamic routes.
-
#priority ⇒ Fixnum
The priority of the peering route.
-
#type ⇒ String
The type of the peering route.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExchangedPeeringRoute
constructor
A new instance of ExchangedPeeringRoute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExchangedPeeringRoute
Returns a new instance of ExchangedPeeringRoute.
8850 8851 8852 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8850 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dest_range ⇒ String
The destination range of the route.
Corresponds to the JSON property destRange
8824 8825 8826 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8824 def dest_range @dest_range end |
#imported ⇒ Boolean Also known as: imported?
True if the peering route has been imported from a peer. The actual import
happens if the field networkPeering.importCustomRoutes is true for this
network, and networkPeering.exportCustomRoutes is true for the peer network,
and the import does not result in a route conflict.
Corresponds to the JSON property imported
8832 8833 8834 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8832 def imported @imported end |
#next_hop_region ⇒ String
The region of peering route next hop, only applies to dynamic routes.
Corresponds to the JSON property nextHopRegion
8838 8839 8840 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8838 def next_hop_region @next_hop_region end |
#priority ⇒ Fixnum
The priority of the peering route.
Corresponds to the JSON property priority
8843 8844 8845 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8843 def priority @priority end |
#type ⇒ String
The type of the peering route.
Corresponds to the JSON property type
8848 8849 8850 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8848 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8855 8856 8857 8858 8859 8860 8861 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8855 def update!(**args) @dest_range = args[:dest_range] if args.key?(:dest_range) @imported = args[:imported] if args.key?(:imported) @next_hop_region = args[:next_hop_region] if args.key?(:next_hop_region) @priority = args[:priority] if args.key?(:priority) @type = args[:type] if args.key?(:type) end |