Class: Google::Apis::ComputeBeta::ExchangedPeeringRoute

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExchangedPeeringRoute

Returns a new instance of ExchangedPeeringRoute.



6812
6813
6814
# File 'generated/google/apis/compute_beta/classes.rb', line 6812

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)


6786
6787
6788
# File 'generated/google/apis/compute_beta/classes.rb', line 6786

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)


6794
6795
6796
# File 'generated/google/apis/compute_beta/classes.rb', line 6794

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)


6800
6801
6802
# File 'generated/google/apis/compute_beta/classes.rb', line 6800

def next_hop_region
  @next_hop_region
end

#priorityFixnum

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

Returns:

  • (Fixnum)


6805
6806
6807
# File 'generated/google/apis/compute_beta/classes.rb', line 6805

def priority
  @priority
end

#typeString

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

Returns:

  • (String)


6810
6811
6812
# File 'generated/google/apis/compute_beta/classes.rb', line 6810

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6817
6818
6819
6820
6821
6822
6823
# File 'generated/google/apis/compute_beta/classes.rb', line 6817

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