google-apis-gkehub_v1beta 0.12.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6ad31cb85a1ecccb548ac6a22d5f638191e2bd699643b393586b09e90270a88
4
- data.tar.gz: 6f5652b33ea21250ca9d6d00b716985d7c24926927df707a170fae2ecd8c2ca1
3
+ metadata.gz: 4fdb499f1712ca252b973a566debd41bc1e3594958d4d7f4026facd0a16d3c83
4
+ data.tar.gz: 44dfa2c12889fc5b94c8344fe5b9cae0488f500e48a67b68e782f4899d3b4ea9
5
5
  SHA512:
6
- metadata.gz: 90fb01a5699b464e298654c729f7ce522cc93a2cc3bbb54da6a3bffb1574ace47e56b21a7a4455dd1ee7c48eb12fd0a98db4d4805e16161dbfeca116b3bb8598
7
- data.tar.gz: 992461c1a62ed3f4c02746e1e40ac95812127e0b2b6fbd4b9c9ac7456561ac801159b8e328a91eeb4b0f479b8eb050432019b6f8ca01a2cec0a3f6885350d193
6
+ metadata.gz: cc486496a7c2dfc0808dc2fd52d5aa3e9df5a9131fa248bfdddd3d777c35a6bc36c228465cf507d60fb818bd0b494e658c71636d6dcd184319faf4f364391840
7
+ data.tar.gz: d1cc31edf61836c4e2d825e81179922c6adfffcf6915240c054d04a3e0693b2084b117e27c6ab58044d0bef4a4930e3b31b04cdf3010104bf80d80cafa4d1523
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-gkehub_v1beta
2
2
 
3
+ ### v0.16.0 (2022-01-15)
4
+
5
+ * Regenerated from discovery document revision 20220107
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.15.0 (2021-12-16)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.14.0 (2021-11-13)
13
+
14
+ * Regenerated from discovery document revision 20211105
15
+
16
+ ### v0.13.0 (2021-10-30)
17
+
18
+ * Regenerated from discovery document revision 20211021
19
+
3
20
  ### v0.12.0 (2021-10-24)
4
21
 
5
22
  * Regenerated from discovery document revision 20211015
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/gkehub_v1beta"
51
51
  client = Google::Apis::GkehubV1beta::GKEHubService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -22,6 +22,38 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1beta
24
24
 
25
+ # Spec for App Dev Experience Feature.
26
+ class AppDevExperienceFeatureSpec
27
+ include Google::Apis::Core::Hashable
28
+
29
+ def initialize(**args)
30
+ update!(**args)
31
+ end
32
+
33
+ # Update properties of this object
34
+ def update!(**args)
35
+ end
36
+ end
37
+
38
+ # State for App Dev Exp Feature.
39
+ class AppDevExperienceFeatureState
40
+ include Google::Apis::Core::Hashable
41
+
42
+ # Status specifies state for the subcomponent.
43
+ # Corresponds to the JSON property `networkingInstallSucceeded`
44
+ # @return [Google::Apis::GkehubV1beta::Status]
45
+ attr_accessor :networking_install_succeeded
46
+
47
+ def initialize(**args)
48
+ update!(**args)
49
+ end
50
+
51
+ # Update properties of this object
52
+ def update!(**args)
53
+ @networking_install_succeeded = args[:networking_install_succeeded] if args.key?(:networking_install_succeeded)
54
+ end
55
+ end
56
+
25
57
  # Specifies the audit configuration for a service. The configuration determines
26
58
  # which permission types are logged, and what identities, if any, are exempted
27
59
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -181,6 +213,11 @@ module Google
181
213
  class CommonFeatureSpec
182
214
  include Google::Apis::Core::Hashable
183
215
 
216
+ # Spec for App Dev Experience Feature.
217
+ # Corresponds to the JSON property `appdevexperience`
218
+ # @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec]
219
+ attr_accessor :appdevexperience
220
+
184
221
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
185
222
  # feature.
186
223
  # Corresponds to the JSON property `multiclusteringress`
@@ -193,6 +230,7 @@ module Google
193
230
 
194
231
  # Update properties of this object
195
232
  def update!(**args)
233
+ @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
196
234
  @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
197
235
  end
198
236
  end
@@ -201,6 +239,11 @@ module Google
201
239
  class CommonFeatureState
202
240
  include Google::Apis::Core::Hashable
203
241
 
242
+ # State for App Dev Exp Feature.
243
+ # Corresponds to the JSON property `appdevexperience`
244
+ # @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
245
+ attr_accessor :appdevexperience
246
+
204
247
  # FeatureState describes the high-level state of a Feature. It may be used to
205
248
  # describe a Feature's state at the environ-level, or per-membershop, depending
206
249
  # on the context.
@@ -214,6 +257,7 @@ module Google
214
257
 
215
258
  # Update properties of this object
216
259
  def update!(**args)
260
+ @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
217
261
  @state = args[:state] if args.key?(:state)
218
262
  end
219
263
  end
@@ -301,6 +345,14 @@ module Google
301
345
  # @return [Google::Apis::GkehubV1beta::ConfigManagementGitConfig]
302
346
  attr_accessor :git
303
347
 
348
+ # Set to true to enable the Config Sync admission webhook to prevent drifts. If
349
+ # set to `false`, disables the Config Sync admission webhook and does not
350
+ # prevent drifts.
351
+ # Corresponds to the JSON property `preventDrift`
352
+ # @return [Boolean]
353
+ attr_accessor :prevent_drift
354
+ alias_method :prevent_drift?, :prevent_drift
355
+
304
356
  # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured”
305
357
  # mode.
306
358
  # Corresponds to the JSON property `sourceFormat`
@@ -315,6 +367,7 @@ module Google
315
367
  def update!(**args)
316
368
  @enabled = args[:enabled] if args.key?(:enabled)
317
369
  @git = args[:git] if args.key?(:git)
370
+ @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
318
371
  @source_format = args[:source_format] if args.key?(:source_format)
319
372
  end
320
373
  end
@@ -543,7 +596,9 @@ module Google
543
596
  # @return [String]
544
597
  attr_accessor :policy_dir
545
598
 
546
- # Type of secret configured for access to the Git repo.
599
+ # Type of secret configured for access to the Git repo. Must be one of ssh,
600
+ # cookiefile, gcenode, token, gcpserviceaccount or none. The validation of this
601
+ # is case-sensitive. Required.
547
602
  # Corresponds to the JSON property `secretType`
548
603
  # @return [String]
549
604
  attr_accessor :secret_type
@@ -1652,6 +1707,11 @@ module Google
1652
1707
  class MembershipFeatureState
1653
1708
  include Google::Apis::Core::Hashable
1654
1709
 
1710
+ # State for App Dev Exp Feature.
1711
+ # Corresponds to the JSON property `appdevexperience`
1712
+ # @return [Google::Apis::GkehubV1beta::AppDevExperienceFeatureState]
1713
+ attr_accessor :appdevexperience
1714
+
1655
1715
  # **Anthos Config Management**: State for a single cluster.
1656
1716
  # Corresponds to the JSON property `configmanagement`
1657
1717
  # @return [Google::Apis::GkehubV1beta::ConfigManagementMembershipState]
@@ -1680,6 +1740,7 @@ module Google
1680
1740
 
1681
1741
  # Update properties of this object
1682
1742
  def update!(**args)
1743
+ @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
1683
1744
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1684
1745
  @identityservice = args[:identityservice] if args.key?(:identityservice)
1685
1746
  @metering = args[:metering] if args.key?(:metering)
@@ -2011,6 +2072,31 @@ module Google
2011
2072
  end
2012
2073
  end
2013
2074
 
2075
+ # Status specifies state for the subcomponent.
2076
+ class Status
2077
+ include Google::Apis::Core::Hashable
2078
+
2079
+ # Code specifies AppDevExperienceFeature's subcomponent ready state.
2080
+ # Corresponds to the JSON property `code`
2081
+ # @return [String]
2082
+ attr_accessor :code
2083
+
2084
+ # Description is populated if Code is Failed, explaining why it has failed.
2085
+ # Corresponds to the JSON property `description`
2086
+ # @return [String]
2087
+ attr_accessor :description
2088
+
2089
+ def initialize(**args)
2090
+ update!(**args)
2091
+ end
2092
+
2093
+ # Update properties of this object
2094
+ def update!(**args)
2095
+ @code = args[:code] if args.key?(:code)
2096
+ @description = args[:description] if args.key?(:description)
2097
+ end
2098
+ end
2099
+
2014
2100
  # Request message for `TestIamPermissions` method.
2015
2101
  class TestIamPermissionsRequest
2016
2102
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1beta
18
18
  # Version of the google-apis-gkehub_v1beta gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211015"
25
+ REVISION = "20220107"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1beta
24
24
 
25
+ class AppDevExperienceFeatureSpec
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class AppDevExperienceFeatureState
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
25
37
  class AuditConfig
26
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
39
 
@@ -334,6 +346,12 @@ module Google
334
346
  include Google::Apis::Core::JsonObjectSupport
335
347
  end
336
348
 
349
+ class Status
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
337
355
  class TestIamPermissionsRequest
338
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
357
 
@@ -346,6 +364,20 @@ module Google
346
364
  include Google::Apis::Core::JsonObjectSupport
347
365
  end
348
366
 
367
+ class AppDevExperienceFeatureSpec
368
+ # @private
369
+ class Representation < Google::Apis::Core::JsonRepresentation
370
+ end
371
+ end
372
+
373
+ class AppDevExperienceFeatureState
374
+ # @private
375
+ class Representation < Google::Apis::Core::JsonRepresentation
376
+ property :networking_install_succeeded, as: 'networkingInstallSucceeded', class: Google::Apis::GkehubV1beta::Status, decorator: Google::Apis::GkehubV1beta::Status::Representation
377
+
378
+ end
379
+ end
380
+
349
381
  class AuditConfig
350
382
  # @private
351
383
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -382,6 +414,8 @@ module Google
382
414
  class CommonFeatureSpec
383
415
  # @private
384
416
  class Representation < Google::Apis::Core::JsonRepresentation
417
+ property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec::Representation
418
+
385
419
  property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec::Representation
386
420
 
387
421
  end
@@ -390,6 +424,8 @@ module Google
390
424
  class CommonFeatureState
391
425
  # @private
392
426
  class Representation < Google::Apis::Core::JsonRepresentation
427
+ property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
428
+
393
429
  property :state, as: 'state', class: Google::Apis::GkehubV1beta::FeatureState, decorator: Google::Apis::GkehubV1beta::FeatureState::Representation
394
430
 
395
431
  end
@@ -424,6 +460,7 @@ module Google
424
460
  property :enabled, as: 'enabled'
425
461
  property :git, as: 'git', class: Google::Apis::GkehubV1beta::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1beta::ConfigManagementGitConfig::Representation
426
462
 
463
+ property :prevent_drift, as: 'preventDrift'
427
464
  property :source_format, as: 'sourceFormat'
428
465
  end
429
466
  end
@@ -806,6 +843,8 @@ module Google
806
843
  class MembershipFeatureState
807
844
  # @private
808
845
  class Representation < Google::Apis::Core::JsonRepresentation
846
+ property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1beta::AppDevExperienceFeatureState::Representation
847
+
809
848
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipState::Representation
810
849
 
811
850
  property :identityservice, as: 'identityservice', class: Google::Apis::GkehubV1beta::IdentityServiceMembershipState, decorator: Google::Apis::GkehubV1beta::IdentityServiceMembershipState::Representation
@@ -879,6 +918,14 @@ module Google
879
918
  end
880
919
  end
881
920
 
921
+ class Status
922
+ # @private
923
+ class Representation < Google::Apis::Core::JsonRepresentation
924
+ property :code, as: 'code'
925
+ property :description, as: 'description'
926
+ end
927
+ end
928
+
882
929
  class TestIamPermissionsRequest
883
930
  # @private
884
931
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -124,22 +124,22 @@ module Google
124
124
 
125
125
  # Adds a new Feature.
126
126
  # @param [String] parent
127
- # The parent (project and location) where the Feature will be created. Specified
128
- # in the format `projects/*/locations/*`.
127
+ # Required. The parent (project and location) where the Feature will be created.
128
+ # Specified in the format `projects/*/locations/*`.
129
129
  # @param [Google::Apis::GkehubV1beta::Feature] feature_object
130
130
  # @param [String] feature_id
131
131
  # The ID of the feature to create.
132
132
  # @param [String] request_id
133
- # Optional. A request ID to identify requests. Specify a unique request ID so
134
- # that if you must retry your request, the server will know to ignore the
135
- # request if it has already been completed. The server will guarantee that for
136
- # at least 60 minutes after the first request. For example, consider a situation
137
- # where you make an initial request and the request times out. If you make the
138
- # request again with the same request ID, the server can check if original
139
- # operation with the same request ID was received, and if so, will ignore the
140
- # second request. This prevents clients from accidentally creating duplicate
141
- # commitments. The request ID must be a valid UUID with the exception that zero
142
- # UUID is not supported (00000000-0000-0000-0000-000000000000).
133
+ # A request ID to identify requests. Specify a unique request ID so that if you
134
+ # must retry your request, the server will know to ignore the request if it has
135
+ # already been completed. The server will guarantee that for at least 60 minutes
136
+ # after the first request. For example, consider a situation where you make an
137
+ # initial request and the request times out. If you make the request again with
138
+ # the same request ID, the server can check if original operation with the same
139
+ # request ID was received, and if so, will ignore the second request. This
140
+ # prevents clients from accidentally creating duplicate commitments. The request
141
+ # ID must be a valid UUID with the exception that zero UUID is not supported (
142
+ # 00000000-0000-0000-0000-000000000000).
143
143
  # @param [String] fields
144
144
  # Selector specifying which fields to include in a partial response.
145
145
  # @param [String] quota_user
@@ -173,7 +173,8 @@ module Google
173
173
 
174
174
  # Removes a Feature.
175
175
  # @param [String] name
176
- # The Feature resource name in the format `projects/*/locations/*/features/*`.
176
+ # Required. The Feature resource name in the format `projects/*/locations/*/
177
+ # features/*`.
177
178
  # @param [Boolean] force
178
179
  # If set to true, the delete will ignore any outstanding resources for this
179
180
  # Feature (that is, `FeatureState.has_resources` is set to true). These
@@ -220,7 +221,8 @@ module Google
220
221
 
221
222
  # Gets details of a single Feature.
222
223
  # @param [String] name
223
- # The Feature resource name in the format `projects/*/locations/*/features/*`
224
+ # Required. The Feature resource name in the format `projects/*/locations/*/
225
+ # features/*`
224
226
  # @param [String] fields
225
227
  # Selector specifying which fields to include in a partial response.
226
228
  # @param [String] quota_user
@@ -254,13 +256,16 @@ module Google
254
256
  # REQUIRED: The resource for which the policy is being requested. See the
255
257
  # operation documentation for the appropriate value for this field.
256
258
  # @param [Fixnum] options_requested_policy_version
257
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
258
- # 3. Requests specifying an invalid value will be rejected. Requests for
259
- # policies with any conditional bindings must specify version 3. Policies
260
- # without any conditional bindings may specify any valid value or leave the
261
- # field unset. To learn which resources support conditions in their IAM policies,
262
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
263
- # resource-policies).
259
+ # Optional. The maximum policy version that will be used to format the policy.
260
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
261
+ # rejected. Requests for policies with any conditional role bindings must
262
+ # specify version 3. Policies with no conditional role bindings may specify any
263
+ # valid value or leave the field unset. The policy in the response might use the
264
+ # policy version that you specified, or it might use a lower policy version. For
265
+ # example, if you specify version 3, but the policy has no conditional role
266
+ # bindings, the response uses version 1. To learn which resources support
267
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
268
+ # google.com/iam/help/conditions/resource-policies).
264
269
  # @param [String] fields
265
270
  # Selector specifying which fields to include in a partial response.
266
271
  # @param [String] quota_user
@@ -291,8 +296,8 @@ module Google
291
296
 
292
297
  # Lists Features in a given project and location.
293
298
  # @param [String] parent
294
- # The parent (project and location) where the Features will be listed. Specified
295
- # in the format `projects/*/locations/*`.
299
+ # Required. The parent (project and location) where the Features will be listed.
300
+ # Specified in the format `projects/*/locations/*`.
296
301
  # @param [String] filter
297
302
  # Lists Features that match the filter expression, following the syntax outlined
298
303
  # in https://google.aip.dev/160. Examples: - Feature with the name "servicemesh"
@@ -342,19 +347,20 @@ module Google
342
347
 
343
348
  # Updates an existing Feature.
344
349
  # @param [String] name
345
- # The Feature resource name in the format `projects/*/locations/*/features/*`.
350
+ # Required. The Feature resource name in the format `projects/*/locations/*/
351
+ # features/*`.
346
352
  # @param [Google::Apis::GkehubV1beta::Feature] feature_object
347
353
  # @param [String] request_id
348
- # Optional. A request ID to identify requests. Specify a unique request ID so
349
- # that if you must retry your request, the server will know to ignore the
350
- # request if it has already been completed. The server will guarantee that for
351
- # at least 60 minutes after the first request. For example, consider a situation
352
- # where you make an initial request and the request times out. If you make the
353
- # request again with the same request ID, the server can check if original
354
- # operation with the same request ID was received, and if so, will ignore the
355
- # second request. This prevents clients from accidentally creating duplicate
356
- # commitments. The request ID must be a valid UUID with the exception that zero
357
- # UUID is not supported (00000000-0000-0000-0000-000000000000).
354
+ # A request ID to identify requests. Specify a unique request ID so that if you
355
+ # must retry your request, the server will know to ignore the request if it has
356
+ # already been completed. The server will guarantee that for at least 60 minutes
357
+ # after the first request. For example, consider a situation where you make an
358
+ # initial request and the request times out. If you make the request again with
359
+ # the same request ID, the server can check if original operation with the same
360
+ # request ID was received, and if so, will ignore the second request. This
361
+ # prevents clients from accidentally creating duplicate commitments. The request
362
+ # ID must be a valid UUID with the exception that zero UUID is not supported (
363
+ # 00000000-0000-0000-0000-000000000000).
358
364
  # @param [String] update_mask
359
365
  # Mask of fields to update.
360
366
  # @param [String] fields
@@ -468,13 +474,16 @@ module Google
468
474
  # REQUIRED: The resource for which the policy is being requested. See the
469
475
  # operation documentation for the appropriate value for this field.
470
476
  # @param [Fixnum] options_requested_policy_version
471
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
472
- # 3. Requests specifying an invalid value will be rejected. Requests for
473
- # policies with any conditional bindings must specify version 3. Policies
474
- # without any conditional bindings may specify any valid value or leave the
475
- # field unset. To learn which resources support conditions in their IAM policies,
476
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
477
- # resource-policies).
477
+ # Optional. The maximum policy version that will be used to format the policy.
478
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
479
+ # rejected. Requests for policies with any conditional role bindings must
480
+ # specify version 3. Policies with no conditional role bindings may specify any
481
+ # valid value or leave the field unset. The policy in the response might use the
482
+ # policy version that you specified, or it might use a lower policy version. For
483
+ # example, if you specify version 3, but the policy has no conditional role
484
+ # bindings, the response uses version 1. To learn which resources support
485
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
486
+ # google.com/iam/help/conditions/resource-policies).
478
487
  # @param [String] fields
479
488
  # Selector specifying which fields to include in a partial response.
480
489
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.16.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2022-01-17 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-gkehub_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V1beta