google-apis-gkehub_v1alpha 0.80.0 → 0.81.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: 309341c876030f8f541b81eb0162ad0f690b5d4fe25fe922b0c7813554c71486
4
- data.tar.gz: 130285ba09e3df0136928033b675585b865e4667daed504215eddf4c79d98935
3
+ metadata.gz: bd521617423ff3494f5e0216c86b32e2ec16e5670f1bb7ff11f6ef1639316f3d
4
+ data.tar.gz: dbea871cafd8047a3b806e2cda020a4fd1f87226d56b12e650e4b94f8a632b56
5
5
  SHA512:
6
- metadata.gz: d18d1ac15aefcb61f21d6fc97bbe1aa5d6b36641f5918ad01bd3069250b5c8e237e01d4e530ac26ec3ab1a4eb78cc6a6f150cc21acbad156a96fe1d3fd58f033
7
- data.tar.gz: c3e6da9db3e393179399331b3f21fbc981854fa7bfb50d300a58490c386e655f59d976a5b63c75b66183b2a4983cdfb1c325d3dec5560d25ec4157617b192f04
6
+ metadata.gz: 1021fbce20823c177f1b77cefd3944b5e6986ae9192181c0fd1175809a95c30d9aa883e9b9f9341af05046b109b2bec26ec58172a5138ad6c9b52466c91d1924
7
+ data.tar.gz: edb45009f47bb06c4642b0809786c056f04a675ed4373912f6dd753124adae62f345057e23322f947262ec62334a92255ea18599469eee373cd7b138520436d1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.81.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240428
6
+
3
7
  ### v0.80.0 (2024-04-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20240412
@@ -3065,6 +3065,26 @@ module Google
3065
3065
  end
3066
3066
  end
3067
3067
 
3068
+ # Holds non-protocol-related configuration options.
3069
+ class IdentityServiceIdentityServiceOptions
3070
+ include Google::Apis::Core::Hashable
3071
+
3072
+ # Optional. Determines the lifespan of STS tokens issued by Anthos Identity
3073
+ # Service.
3074
+ # Corresponds to the JSON property `sessionDuration`
3075
+ # @return [String]
3076
+ attr_accessor :session_duration
3077
+
3078
+ def initialize(**args)
3079
+ update!(**args)
3080
+ end
3081
+
3082
+ # Update properties of this object
3083
+ def update!(**args)
3084
+ @session_duration = args[:session_duration] if args.key?(:session_duration)
3085
+ end
3086
+ end
3087
+
3068
3088
  # Configuration for the LDAP Auth flow.
3069
3089
  class IdentityServiceLdapConfig
3070
3090
  include Google::Apis::Core::Hashable
@@ -3114,6 +3134,11 @@ module Google
3114
3134
  # @return [Array<Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod>]
3115
3135
  attr_accessor :auth_methods
3116
3136
 
3137
+ # Holds non-protocol-related configuration options.
3138
+ # Corresponds to the JSON property `identityServiceOptions`
3139
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceIdentityServiceOptions]
3140
+ attr_accessor :identity_service_options
3141
+
3117
3142
  def initialize(**args)
3118
3143
  update!(**args)
3119
3144
  end
@@ -3121,6 +3146,7 @@ module Google
3121
3146
  # Update properties of this object
3122
3147
  def update!(**args)
3123
3148
  @auth_methods = args[:auth_methods] if args.key?(:auth_methods)
3149
+ @identity_service_options = args[:identity_service_options] if args.key?(:identity_service_options)
3124
3150
  end
3125
3151
  end
3126
3152
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.80.0"
19
+ GEM_VERSION = "0.81.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 = "20240412"
25
+ REVISION = "20240428"
26
26
  end
27
27
  end
28
28
  end
@@ -550,6 +550,12 @@ module Google
550
550
  include Google::Apis::Core::JsonObjectSupport
551
551
  end
552
552
 
553
+ class IdentityServiceIdentityServiceOptions
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
553
559
  class IdentityServiceLdapConfig
554
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
561
 
@@ -1979,6 +1985,13 @@ module Google
1979
1985
  end
1980
1986
  end
1981
1987
 
1988
+ class IdentityServiceIdentityServiceOptions
1989
+ # @private
1990
+ class Representation < Google::Apis::Core::JsonRepresentation
1991
+ property :session_duration, as: 'sessionDuration'
1992
+ end
1993
+ end
1994
+
1982
1995
  class IdentityServiceLdapConfig
1983
1996
  # @private
1984
1997
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1998,6 +2011,8 @@ module Google
1998
2011
  class Representation < Google::Apis::Core::JsonRepresentation
1999
2012
  collection :auth_methods, as: 'authMethods', class: Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod, decorator: Google::Apis::GkehubV1alpha::IdentityServiceAuthMethod::Representation
2000
2013
 
2014
+ property :identity_service_options, as: 'identityServiceOptions', class: Google::Apis::GkehubV1alpha::IdentityServiceIdentityServiceOptions, decorator: Google::Apis::GkehubV1alpha::IdentityServiceIdentityServiceOptions::Representation
2015
+
2001
2016
  end
2002
2017
  end
2003
2018
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.80.0
4
+ version: 0.81.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-04-21 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.80.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.81.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []