Class: Google::Apis::NetworkmanagementV1::RouteInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1::RouteInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb
Overview
For display only. Metadata associated with a Compute Engine route.
Instance Attribute Summary collapse
-
#dest_ip_range ⇒ String
Destination IP range of the route.
-
#display_name ⇒ String
Name of a Compute Engine route.
-
#instance_tags ⇒ Array<String>
Instance tags of the route.
-
#network_uri ⇒ String
URI of a Compute Engine network.
-
#next_hop ⇒ String
Next hop of the route.
-
#next_hop_type ⇒ String
Type of next hop.
-
#priority ⇒ Fixnum
Priority of the route.
-
#route_type ⇒ String
Type of route.
-
#uri ⇒ String
URI of a Compute Engine route.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouteInfo
constructor
A new instance of RouteInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouteInfo
Returns a new instance of RouteInfo.
1306 1307 1308 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1306 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dest_ip_range ⇒ String
Destination IP range of the route.
Corresponds to the JSON property destIpRange
1262 1263 1264 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1262 def dest_ip_range @dest_ip_range end |
#display_name ⇒ String
Name of a Compute Engine route.
Corresponds to the JSON property displayName
1267 1268 1269 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1267 def display_name @display_name end |
#instance_tags ⇒ Array<String>
Instance tags of the route.
Corresponds to the JSON property instanceTags
1272 1273 1274 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1272 def @instance_tags end |
#network_uri ⇒ String
URI of a Compute Engine network.
Corresponds to the JSON property networkUri
1277 1278 1279 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1277 def network_uri @network_uri end |
#next_hop ⇒ String
Next hop of the route.
Corresponds to the JSON property nextHop
1282 1283 1284 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1282 def next_hop @next_hop end |
#next_hop_type ⇒ String
Type of next hop.
Corresponds to the JSON property nextHopType
1287 1288 1289 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1287 def next_hop_type @next_hop_type end |
#priority ⇒ Fixnum
Priority of the route.
Corresponds to the JSON property priority
1292 1293 1294 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1292 def priority @priority end |
#route_type ⇒ String
Type of route.
Corresponds to the JSON property routeType
1297 1298 1299 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1297 def route_type @route_type end |
#uri ⇒ String
URI of a Compute Engine route. Dynamic route from cloud router does not have a
URI. Advertised route from Google Cloud VPC to on-premises network also does
not have a URI.
Corresponds to the JSON property uri
1304 1305 1306 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1304 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 1311 def update!(**args) @dest_ip_range = args[:dest_ip_range] if args.key?(:dest_ip_range) @display_name = args[:display_name] if args.key?(:display_name) @instance_tags = args[:instance_tags] if args.key?(:instance_tags) @network_uri = args[:network_uri] if args.key?(:network_uri) @next_hop = args[:next_hop] if args.key?(:next_hop) @next_hop_type = args[:next_hop_type] if args.key?(:next_hop_type) @priority = args[:priority] if args.key?(:priority) @route_type = args[:route_type] if args.key?(:route_type) @uri = args[:uri] if args.key?(:uri) end |