google-apis-compute_alpha 0.83.0 → 0.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee5b01e167d5d459608c474504c34ed4d32e7fd5ca18dd0e5ebafccf8a30508f
|
4
|
+
data.tar.gz: 83c439fc744ef5c53c0e3338bce5f2acf389cd812f742c56919487d2cfc777f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 251f4edb86e67f19e9f49e2957692be9eafbe7a907166501626c45681f68ab74c67acb6b683f42c9dc3403014bd816b408539d92ee1813c6e5b6f95cb6858b50
|
7
|
+
data.tar.gz: 2566bdd643141454bd73dd130067287d0c790d2f98c00c154fa4d6fc417fc05fd55e2532a092a73507d9df2f27048d342275f2e006c6a1417adc63a5973a7d98
|
data/CHANGELOG.md
CHANGED
@@ -27384,6 +27384,13 @@ module Google
|
|
27384
27384
|
# @return [Fixnum]
|
27385
27385
|
attr_accessor :port
|
27386
27386
|
|
27387
|
+
# The name of the zone where the instance hosting the network endpoint is
|
27388
|
+
# located (valid only for regional GCE_VM_IP_PORT NEGs). It should comply with
|
27389
|
+
# RFC1035. The zone must belong to the region of the Network Endpoint Group.
|
27390
|
+
# Corresponds to the JSON property `zone`
|
27391
|
+
# @return [String]
|
27392
|
+
attr_accessor :zone
|
27393
|
+
|
27387
27394
|
def initialize(**args)
|
27388
27395
|
update!(**args)
|
27389
27396
|
end
|
@@ -27397,6 +27404,7 @@ module Google
|
|
27397
27404
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
27398
27405
|
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
27399
27406
|
@port = args[:port] if args.key?(:port)
|
27407
|
+
@zone = args[:zone] if args.key?(:zone)
|
27400
27408
|
end
|
27401
27409
|
end
|
27402
27410
|
|
@@ -39260,6 +39268,13 @@ module Google
|
|
39260
39268
|
# @return [String]
|
39261
39269
|
attr_accessor :next_hop_instance
|
39262
39270
|
|
39271
|
+
# [Output only] Internal fixed region-to-region cost that Google Cloud
|
39272
|
+
# calculates based on factors such as network performance, distance, and
|
39273
|
+
# available bandwidth between regions.
|
39274
|
+
# Corresponds to the JSON property `nextHopInterRegionCost`
|
39275
|
+
# @return [Fixnum]
|
39276
|
+
attr_accessor :next_hop_inter_region_cost
|
39277
|
+
|
39263
39278
|
# [Output Only] The URL to an InterconnectAttachment which is the next hop for
|
39264
39279
|
# the route. This field will only be populated for the dynamic routes generated
|
39265
39280
|
# by Cloud Router with a linked interconnectAttachment.
|
@@ -39277,11 +39292,23 @@ module Google
|
|
39277
39292
|
# @return [String]
|
39278
39293
|
attr_accessor :next_hop_ip
|
39279
39294
|
|
39295
|
+
# [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates the
|
39296
|
+
# desirability of a particular route in a network.
|
39297
|
+
# Corresponds to the JSON property `nextHopMed`
|
39298
|
+
# @return [Fixnum]
|
39299
|
+
attr_accessor :next_hop_med
|
39300
|
+
|
39280
39301
|
# The URL of the local network if it should handle matching packets.
|
39281
39302
|
# Corresponds to the JSON property `nextHopNetwork`
|
39282
39303
|
# @return [String]
|
39283
39304
|
attr_accessor :next_hop_network
|
39284
39305
|
|
39306
|
+
# [Output Only] Indicates the origin of the route. Can be IGP (Interior Gateway
|
39307
|
+
# Protocol), EGP (Exterior Gateway Protocol), or INCOMPLETE.
|
39308
|
+
# Corresponds to the JSON property `nextHopOrigin`
|
39309
|
+
# @return [String]
|
39310
|
+
attr_accessor :next_hop_origin
|
39311
|
+
|
39285
39312
|
# [Output Only] The network peering name that should handle matching packets,
|
39286
39313
|
# which should conform to RFC1035.
|
39287
39314
|
# Corresponds to the JSON property `nextHopPeering`
|
@@ -39357,9 +39384,12 @@ module Google
|
|
39357
39384
|
@next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
|
39358
39385
|
@next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
|
39359
39386
|
@next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
|
39387
|
+
@next_hop_inter_region_cost = args[:next_hop_inter_region_cost] if args.key?(:next_hop_inter_region_cost)
|
39360
39388
|
@next_hop_interconnect_attachment = args[:next_hop_interconnect_attachment] if args.key?(:next_hop_interconnect_attachment)
|
39361
39389
|
@next_hop_ip = args[:next_hop_ip] if args.key?(:next_hop_ip)
|
39390
|
+
@next_hop_med = args[:next_hop_med] if args.key?(:next_hop_med)
|
39362
39391
|
@next_hop_network = args[:next_hop_network] if args.key?(:next_hop_network)
|
39392
|
+
@next_hop_origin = args[:next_hop_origin] if args.key?(:next_hop_origin)
|
39363
39393
|
@next_hop_peering = args[:next_hop_peering] if args.key?(:next_hop_peering)
|
39364
39394
|
@next_hop_vpn_tunnel = args[:next_hop_vpn_tunnel] if args.key?(:next_hop_vpn_tunnel)
|
39365
39395
|
@priority = args[:priority] if args.key?(:priority)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeAlpha
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.84.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231024"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -14006,6 +14006,7 @@ module Google
|
|
14006
14006
|
property :ip_address, as: 'ipAddress'
|
14007
14007
|
property :ipv6_address, as: 'ipv6Address'
|
14008
14008
|
property :port, as: 'port'
|
14009
|
+
property :zone, as: 'zone'
|
14009
14010
|
end
|
14010
14011
|
end
|
14011
14012
|
|
@@ -17128,9 +17129,12 @@ module Google
|
|
17128
17129
|
property :next_hop_hub, as: 'nextHopHub'
|
17129
17130
|
property :next_hop_ilb, as: 'nextHopIlb'
|
17130
17131
|
property :next_hop_instance, as: 'nextHopInstance'
|
17132
|
+
property :next_hop_inter_region_cost, as: 'nextHopInterRegionCost'
|
17131
17133
|
property :next_hop_interconnect_attachment, as: 'nextHopInterconnectAttachment'
|
17132
17134
|
property :next_hop_ip, as: 'nextHopIp'
|
17135
|
+
property :next_hop_med, as: 'nextHopMed'
|
17133
17136
|
property :next_hop_network, as: 'nextHopNetwork'
|
17137
|
+
property :next_hop_origin, as: 'nextHopOrigin'
|
17134
17138
|
property :next_hop_peering, as: 'nextHopPeering'
|
17135
17139
|
property :next_hop_vpn_tunnel, as: 'nextHopVpnTunnel'
|
17136
17140
|
property :priority, as: 'priority'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.84.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.84.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|