google-apis-gkehub_v1 0.72.0 → 0.74.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: a516fbab1a0595dd6a91bb25030ac869bad8d67ea3539abea87a42e711b93d90
4
- data.tar.gz: 198bdf1455fec44d4afe96f35fc14df6b0cb6f13ee85aeb9c7ba03ad11de4cd3
3
+ metadata.gz: c0b0df6fd69bf01084c2933986deb3d20d47b54e1a5381ba65415c7f1bf7a921
4
+ data.tar.gz: 7d5582cee1bafd5273ad69acddb77397fbca451063d2ec2a0dc720a209b1bed5
5
5
  SHA512:
6
- metadata.gz: 2cbfdeba2eee3489ff6523d71f9764520fc3b0b23a5fe8926875b9a6b26cb0c8c7fc2323759bd90b7f995bd5cb9aa6e836b57382c8cf1f022e1f8e5dfa750419
7
- data.tar.gz: a69fe222d860d0dc7afe52b1bbb7a4146bfc780a2b60f691acc889cbb58877e154959bfdfce459007739c2b69ae9df6776b0f57e9d8d35d2360a605d3bf890bd
6
+ metadata.gz: 245f7da12581bbada657c433b2e63ef50a3143e7c6d74547d0626b4f28f1c04c5282a7a85dfedad5160281c9974e8359d4ae13a08078509b0c521cd03c556ca8
7
+ data.tar.gz: 4c9bfdf706e47d94092b5960bfc78e3e7c9f9119768467c0680f6b69fc53766fb9d55fcc526b03447680b79f9c099f379a47b89c9db528bfa5153eb891f09a9f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.74.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240428
6
+
7
+ ### v0.73.0 (2024-04-21)
8
+
9
+ * Regenerated from discovery document revision 20240412
10
+
3
11
  ### v0.72.0 (2024-03-31)
4
12
 
5
13
  * Regenerated from discovery document revision 20240322
@@ -2720,6 +2720,26 @@ module Google
2720
2720
  end
2721
2721
  end
2722
2722
 
2723
+ # Holds non-protocol-related configuration options.
2724
+ class IdentityServiceIdentityServiceOptions
2725
+ include Google::Apis::Core::Hashable
2726
+
2727
+ # Optional. Determines the lifespan of STS tokens issued by Anthos Identity
2728
+ # Service.
2729
+ # Corresponds to the JSON property `sessionDuration`
2730
+ # @return [String]
2731
+ attr_accessor :session_duration
2732
+
2733
+ def initialize(**args)
2734
+ update!(**args)
2735
+ end
2736
+
2737
+ # Update properties of this object
2738
+ def update!(**args)
2739
+ @session_duration = args[:session_duration] if args.key?(:session_duration)
2740
+ end
2741
+ end
2742
+
2723
2743
  # Configuration for the LDAP Auth flow.
2724
2744
  class IdentityServiceLdapConfig
2725
2745
  include Google::Apis::Core::Hashable
@@ -2769,6 +2789,11 @@ module Google
2769
2789
  # @return [Array<Google::Apis::GkehubV1::IdentityServiceAuthMethod>]
2770
2790
  attr_accessor :auth_methods
2771
2791
 
2792
+ # Holds non-protocol-related configuration options.
2793
+ # Corresponds to the JSON property `identityServiceOptions`
2794
+ # @return [Google::Apis::GkehubV1::IdentityServiceIdentityServiceOptions]
2795
+ attr_accessor :identity_service_options
2796
+
2772
2797
  def initialize(**args)
2773
2798
  update!(**args)
2774
2799
  end
@@ -2776,6 +2801,7 @@ module Google
2776
2801
  # Update properties of this object
2777
2802
  def update!(**args)
2778
2803
  @auth_methods = args[:auth_methods] if args.key?(:auth_methods)
2804
+ @identity_service_options = args[:identity_service_options] if args.key?(:identity_service_options)
2779
2805
  end
2780
2806
  end
2781
2807
 
@@ -5291,6 +5317,11 @@ module Google
5291
5317
  # @return [Array<Google::Apis::GkehubV1::ServiceMeshStatusDetails>]
5292
5318
  attr_accessor :details
5293
5319
 
5320
+ # Output only. Implementation of managed control plane.
5321
+ # Corresponds to the JSON property `implementation`
5322
+ # @return [String]
5323
+ attr_accessor :implementation
5324
+
5294
5325
  # LifecycleState of control plane management.
5295
5326
  # Corresponds to the JSON property `state`
5296
5327
  # @return [String]
@@ -5303,6 +5334,7 @@ module Google
5303
5334
  # Update properties of this object
5304
5335
  def update!(**args)
5305
5336
  @details = args[:details] if args.key?(:details)
5337
+ @implementation = args[:implementation] if args.key?(:implementation)
5306
5338
  @state = args[:state] if args.key?(:state)
5307
5339
  end
5308
5340
  end
@@ -5363,7 +5395,7 @@ module Google
5363
5395
  class ServiceMeshMembershipState
5364
5396
  include Google::Apis::Core::Hashable
5365
5397
 
5366
- # Output only. List of condition reporting membership statues
5398
+ # Output only. List of conditions reported for this membership.
5367
5399
  # Corresponds to the JSON property `conditions`
5368
5400
  # @return [Array<Google::Apis::GkehubV1::ServiceMeshCondition>]
5369
5401
  attr_accessor :conditions
@@ -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.72.0"
19
+ GEM_VERSION = "0.74.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240322"
25
+ REVISION = "20240428"
26
26
  end
27
27
  end
28
28
  end
@@ -484,6 +484,12 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
+ class IdentityServiceIdentityServiceOptions
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
487
493
  class IdentityServiceLdapConfig
488
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
495
 
@@ -1713,6 +1719,13 @@ module Google
1713
1719
  end
1714
1720
  end
1715
1721
 
1722
+ class IdentityServiceIdentityServiceOptions
1723
+ # @private
1724
+ class Representation < Google::Apis::Core::JsonRepresentation
1725
+ property :session_duration, as: 'sessionDuration'
1726
+ end
1727
+ end
1728
+
1716
1729
  class IdentityServiceLdapConfig
1717
1730
  # @private
1718
1731
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1732,6 +1745,8 @@ module Google
1732
1745
  class Representation < Google::Apis::Core::JsonRepresentation
1733
1746
  collection :auth_methods, as: 'authMethods', class: Google::Apis::GkehubV1::IdentityServiceAuthMethod, decorator: Google::Apis::GkehubV1::IdentityServiceAuthMethod::Representation
1734
1747
 
1748
+ property :identity_service_options, as: 'identityServiceOptions', class: Google::Apis::GkehubV1::IdentityServiceIdentityServiceOptions, decorator: Google::Apis::GkehubV1::IdentityServiceIdentityServiceOptions::Representation
1749
+
1735
1750
  end
1736
1751
  end
1737
1752
 
@@ -2415,6 +2430,7 @@ module Google
2415
2430
  class Representation < Google::Apis::Core::JsonRepresentation
2416
2431
  collection :details, as: 'details', class: Google::Apis::GkehubV1::ServiceMeshStatusDetails, decorator: Google::Apis::GkehubV1::ServiceMeshStatusDetails::Representation
2417
2432
 
2433
+ property :implementation, as: 'implementation'
2418
2434
  property :state, as: 'state'
2419
2435
  end
2420
2436
  end
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.72.0
4
+ version: 0.74.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: 2024-03-31 00:00:00.000000000 Z
11
+ date: 2024-05-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-gkehub_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.74.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: []