google-apis-gkehub_v1 0.14.0 → 0.15.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: b920aef329067c20b1b3c86d270d9aa377c6494ae02bdfd6ffcecbce22bb0069
4
- data.tar.gz: d5dfb57356937043a75080c4cb30ad809d1c43021339ac1815c28f593fd01694
3
+ metadata.gz: 609996b51ec3a826d1eb6de33f2318eb5c7a5414f7c2425fcf677398ab3d072f
4
+ data.tar.gz: 61a07ebfd395bbc384df28a1ec0f88531cc44221715a255d5151a7632f069973
5
5
  SHA512:
6
- metadata.gz: a7ab3bb75836fa39f96a7cb594425126ffdda18837ac0378af2a7209107056981c1dd7ccd192a04069ba458cd4e94b1f1dd743cb299935d52622de1512eace13
7
- data.tar.gz: 74f4c4b2019417b61ba9d32965f938d5623102426d612809ea6f71d3d1ef9451758d6c31ac8690159ec6dcb2a194522ce39038bc0f932bba0ef2a88332447a2b
6
+ metadata.gz: 360b76965b2d178fb93d2b5c07b28c582af4e46a97b162c22deaf941fe2920148de6db17776f30c189d006a7707453cf94ea5d6632988ffaf0323041a3c6173a
7
+ data.tar.gz: a45e91b07742e2713fbeadff667c8687a33e0dd1fa8be2368bede28fedeb3ea097651738de133d759270e1cbb693fe4797b3dcbaead5e2e6dd3712bafbfd4a65
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.15.0 (2021-10-30)
4
+
5
+ * Regenerated from discovery document revision 20211021
6
+
3
7
  ### v0.14.0 (2021-10-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20211015
@@ -22,6 +22,38 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1
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::GkehubV1::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
@@ -235,6 +267,11 @@ module Google
235
267
  class CommonFeatureSpec
236
268
  include Google::Apis::Core::Hashable
237
269
 
270
+ # Spec for App Dev Experience Feature.
271
+ # Corresponds to the JSON property `appdevexperience`
272
+ # @return [Google::Apis::GkehubV1::AppDevExperienceFeatureSpec]
273
+ attr_accessor :appdevexperience
274
+
238
275
  # **Multi-cluster Ingress**: The configuration for the MultiClusterIngress
239
276
  # feature.
240
277
  # Corresponds to the JSON property `multiclusteringress`
@@ -247,6 +284,7 @@ module Google
247
284
 
248
285
  # Update properties of this object
249
286
  def update!(**args)
287
+ @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
250
288
  @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
251
289
  end
252
290
  end
@@ -255,6 +293,11 @@ module Google
255
293
  class CommonFeatureState
256
294
  include Google::Apis::Core::Hashable
257
295
 
296
+ # State for App Dev Exp Feature.
297
+ # Corresponds to the JSON property `appdevexperience`
298
+ # @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
299
+ attr_accessor :appdevexperience
300
+
258
301
  # FeatureState describes the high-level state of a Feature. It may be used to
259
302
  # describe a Feature's state at the environ-level, or per-membershop, depending
260
303
  # on the context.
@@ -268,6 +311,7 @@ module Google
268
311
 
269
312
  # Update properties of this object
270
313
  def update!(**args)
314
+ @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
271
315
  @state = args[:state] if args.key?(:state)
272
316
  end
273
317
  end
@@ -1760,6 +1804,11 @@ module Google
1760
1804
  class MembershipFeatureState
1761
1805
  include Google::Apis::Core::Hashable
1762
1806
 
1807
+ # State for App Dev Exp Feature.
1808
+ # Corresponds to the JSON property `appdevexperience`
1809
+ # @return [Google::Apis::GkehubV1::AppDevExperienceFeatureState]
1810
+ attr_accessor :appdevexperience
1811
+
1763
1812
  # **Anthos Config Management**: State for a single cluster.
1764
1813
  # Corresponds to the JSON property `configmanagement`
1765
1814
  # @return [Google::Apis::GkehubV1::ConfigManagementMembershipState]
@@ -1778,6 +1827,7 @@ module Google
1778
1827
 
1779
1828
  # Update properties of this object
1780
1829
  def update!(**args)
1830
+ @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience)
1781
1831
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
1782
1832
  @state = args[:state] if args.key?(:state)
1783
1833
  end
@@ -2159,6 +2209,31 @@ module Google
2159
2209
  end
2160
2210
  end
2161
2211
 
2212
+ # Status specifies state for the subcomponent.
2213
+ class Status
2214
+ include Google::Apis::Core::Hashable
2215
+
2216
+ # Code specifies AppDevExperienceFeature's subcomponent ready state.
2217
+ # Corresponds to the JSON property `code`
2218
+ # @return [String]
2219
+ attr_accessor :code
2220
+
2221
+ # Description is populated if Code is Failed, explaining why it has failed.
2222
+ # Corresponds to the JSON property `description`
2223
+ # @return [String]
2224
+ attr_accessor :description
2225
+
2226
+ def initialize(**args)
2227
+ update!(**args)
2228
+ end
2229
+
2230
+ # Update properties of this object
2231
+ def update!(**args)
2232
+ @code = args[:code] if args.key?(:code)
2233
+ @description = args[:description] if args.key?(:description)
2234
+ end
2235
+ end
2236
+
2162
2237
  # Request message for `TestIamPermissions` method.
2163
2238
  class TestIamPermissionsRequest
2164
2239
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1
18
18
  # Version of the google-apis-gkehub_v1 gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211015"
25
+ REVISION = "20211021"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module GkehubV1
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
 
@@ -352,6 +364,12 @@ module Google
352
364
  include Google::Apis::Core::JsonObjectSupport
353
365
  end
354
366
 
367
+ class Status
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
355
373
  class TestIamPermissionsRequest
356
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
375
 
@@ -370,6 +388,20 @@ module Google
370
388
  include Google::Apis::Core::JsonObjectSupport
371
389
  end
372
390
 
391
+ class AppDevExperienceFeatureSpec
392
+ # @private
393
+ class Representation < Google::Apis::Core::JsonRepresentation
394
+ end
395
+ end
396
+
397
+ class AppDevExperienceFeatureState
398
+ # @private
399
+ class Representation < Google::Apis::Core::JsonRepresentation
400
+ property :networking_install_succeeded, as: 'networkingInstallSucceeded', class: Google::Apis::GkehubV1::Status, decorator: Google::Apis::GkehubV1::Status::Representation
401
+
402
+ end
403
+ end
404
+
373
405
  class AuditConfig
374
406
  # @private
375
407
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -416,6 +448,8 @@ module Google
416
448
  class CommonFeatureSpec
417
449
  # @private
418
450
  class Representation < Google::Apis::Core::JsonRepresentation
451
+ property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureSpec, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureSpec::Representation
452
+
419
453
  property :multiclusteringress, as: 'multiclusteringress', class: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec, decorator: Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec::Representation
420
454
 
421
455
  end
@@ -424,6 +458,8 @@ module Google
424
458
  class CommonFeatureState
425
459
  # @private
426
460
  class Representation < Google::Apis::Core::JsonRepresentation
461
+ property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
462
+
427
463
  property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
428
464
 
429
465
  end
@@ -847,6 +883,8 @@ module Google
847
883
  class MembershipFeatureState
848
884
  # @private
849
885
  class Representation < Google::Apis::Core::JsonRepresentation
886
+ property :appdevexperience, as: 'appdevexperience', class: Google::Apis::GkehubV1::AppDevExperienceFeatureState, decorator: Google::Apis::GkehubV1::AppDevExperienceFeatureState::Representation
887
+
850
888
  property :configmanagement, as: 'configmanagement', class: Google::Apis::GkehubV1::ConfigManagementMembershipState, decorator: Google::Apis::GkehubV1::ConfigManagementMembershipState::Representation
851
889
 
852
890
  property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
@@ -931,6 +969,14 @@ module Google
931
969
  end
932
970
  end
933
971
 
972
+ class Status
973
+ # @private
974
+ class Representation < Google::Apis::Core::JsonRepresentation
975
+ property :code, as: 'code'
976
+ property :description, as: 'description'
977
+ end
978
+ end
979
+
934
980
  class TestIamPermissionsRequest
935
981
  # @private
936
982
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.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: 2021-11-01 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
63
63
  post_install_message:
64
64
  rdoc_options: []