Class: Google::Apis::ComputeV1::ExchangedPeeringRoute

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ExchangedPeeringRoute

Returns a new instance of ExchangedPeeringRoute.



5577
5578
5579
# File 'generated/google/apis/compute_v1/classes.rb', line 5577

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dest_rangeString

The destination range of the route. Corresponds to the JSON property destRange

Returns:

  • (String)


5551
5552
5553
# File 'generated/google/apis/compute_v1/classes.rb', line 5551

def dest_range
  @dest_range
end

#importedBoolean 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

Returns:

  • (Boolean)


5559
5560
5561
# File 'generated/google/apis/compute_v1/classes.rb', line 5559

def imported
  @imported
end

#next_hop_regionString

The region of peering route next hop, only applies to dynamic routes. Corresponds to the JSON property nextHopRegion

Returns:

  • (String)


5565
5566
5567
# File 'generated/google/apis/compute_v1/classes.rb', line 5565

def next_hop_region
  @next_hop_region
end

#priorityFixnum

The priority of the peering route. Corresponds to the JSON property priority

Returns:

  • (Fixnum)


5570
5571
5572
# File 'generated/google/apis/compute_v1/classes.rb', line 5570

def priority
  @priority
end

#typeString

The type of the peering route. Corresponds to the JSON property type

Returns:

  • (String)


5575
5576
5577
# File 'generated/google/apis/compute_v1/classes.rb', line 5575

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5582
5583
5584
5585
5586
5587
5588
# File 'generated/google/apis/compute_v1/classes.rb', line 5582

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