Class: Google::Apis::ComputeAlpha::ExchangedPeeringRoute
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ExchangedPeeringRoute
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#dest_range ⇒ String
The destination range of the route.
-
#imported ⇒ Boolean
(also: #imported?)
If the peering route is imported if there is no confliction.
-
#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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExchangedPeeringRoute
Returns a new instance of ExchangedPeeringRoute
5935 5936 5937 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5935 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dest_range ⇒ String
The destination range of the route.
Corresponds to the JSON property destRange
5912 5913 5914 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5912 def dest_range @dest_range end |
#imported ⇒ Boolean Also known as: imported?
If the peering route is imported if there is no confliction.
Corresponds to the JSON property imported
5917 5918 5919 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5917 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
5923 5924 5925 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5923 def next_hop_region @next_hop_region end |
#priority ⇒ Fixnum
The priority of the peering route.
Corresponds to the JSON property priority
5928 5929 5930 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5928 def priority @priority end |
#type ⇒ String
The type of the peering route.
Corresponds to the JSON property type
5933 5934 5935 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5933 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5940 5941 5942 5943 5944 5945 5946 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 5940 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 |