google-apis-compute_beta 0.70.0 → 0.71.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: e1f6f87734b1cde6b8c951eea8ee441849caf3dc124494662dc01ef02549ebe8
|
|
4
|
+
data.tar.gz: e29ff676d8051e6ee54dabdd73b28e66d699f7196f5edb19a387edcc435864d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 123fcdfdbcfaad35dba9023052886b2ea11af2103dc0beaa012802bdf0a6673ba9c8d50c5d20207201051a4150fd0612dd7218fbfe7371c702d506e277ae400d
|
|
7
|
+
data.tar.gz: a328611901c46237673fc0b378442199045dd0db79d0d2a9c6946539fc1f8ff69ad00e977b9b5ff13b77977d81521b93f1d8384d1fdb96b2dcd80392bfca7a92
|
data/CHANGELOG.md
CHANGED
|
@@ -6032,7 +6032,9 @@ module Google
|
|
|
6032
6032
|
|
|
6033
6033
|
# The name of the encryption key that is stored in Google Cloud KMS. For example:
|
|
6034
6034
|
# "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/
|
|
6035
|
-
# cryptoKeys/key
|
|
6035
|
+
# cryptoKeys/key The fully-qualifed key name may be returned for resource GET
|
|
6036
|
+
# requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/
|
|
6037
|
+
# keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
|
|
6036
6038
|
# Corresponds to the JSON property `kmsKeyName`
|
|
6037
6039
|
# @return [String]
|
|
6038
6040
|
attr_accessor :kms_key_name
|
|
@@ -33374,6 +33376,12 @@ module Google
|
|
|
33374
33376
|
# @return [String]
|
|
33375
33377
|
attr_accessor :next_hop_gateway
|
|
33376
33378
|
|
|
33379
|
+
# [Output Only] The full resource name of the Network Connectivity Center hub
|
|
33380
|
+
# that will handle matching packets.
|
|
33381
|
+
# Corresponds to the JSON property `nextHopHub`
|
|
33382
|
+
# @return [String]
|
|
33383
|
+
attr_accessor :next_hop_hub
|
|
33384
|
+
|
|
33377
33385
|
# The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should
|
|
33378
33386
|
# handle matching packets or the IP address of the forwarding Rule. For example,
|
|
33379
33387
|
# the following are all valid URLs: - 10.128.0.56 - https://www.googleapis.com/
|
|
@@ -33473,6 +33481,7 @@ module Google
|
|
|
33473
33481
|
@name = args[:name] if args.key?(:name)
|
|
33474
33482
|
@network = args[:network] if args.key?(:network)
|
|
33475
33483
|
@next_hop_gateway = args[:next_hop_gateway] if args.key?(:next_hop_gateway)
|
|
33484
|
+
@next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
|
|
33476
33485
|
@next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
|
|
33477
33486
|
@next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
|
|
33478
33487
|
@next_hop_interconnect_attachment = args[:next_hop_interconnect_attachment] if args.key?(:next_hop_interconnect_attachment)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeBeta
|
|
18
18
|
# Version of the google-apis-compute_beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.71.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 = "20230606"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -14415,6 +14415,7 @@ module Google
|
|
|
14415
14415
|
property :name, as: 'name'
|
|
14416
14416
|
property :network, as: 'network'
|
|
14417
14417
|
property :next_hop_gateway, as: 'nextHopGateway'
|
|
14418
|
+
property :next_hop_hub, as: 'nextHopHub'
|
|
14418
14419
|
property :next_hop_ilb, as: 'nextHopIlb'
|
|
14419
14420
|
property :next_hop_instance, as: 'nextHopInstance'
|
|
14420
14421
|
property :next_hop_interconnect_attachment, as: 'nextHopInterconnectAttachment'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.71.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-06-
|
|
11
|
+
date: 2023-06-18 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_beta/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.71.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|