google-apis-gkehub_v1alpha 0.33.0 → 0.34.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: e0af1adaa546730469b513b87e36583b4e6e06aafb87c4a882fffcfe0be1d464
4
- data.tar.gz: 3dfe542a0b7d0fba5851b089570253faff804c93c8e56d0f4b9d52a8c2325d7d
3
+ metadata.gz: 67d9879995be19c94e1a3ec80f1a52d491a88432f760288c9a9e613aacc2329f
4
+ data.tar.gz: 5207a25ab4c2dd0f6e274ded5fad580094ede9c207393c54fbc7fb6f32d57519
5
5
  SHA512:
6
- metadata.gz: bd55fc8b9b0209a962d3a8eca26ab753b312d7121c8dd2d64df4ec06fcb202b5bc02b78e3c4c44b446c21c97cb95c9e4be8a4c67bb6923fe52da289e35b42297
7
- data.tar.gz: c4a72c79a4a5c6f4828b026c7b42738fb4d2f9d13ece54e5cb59a7bb7acacd6d2b753dced7228774e7c7be54aede9759c61a1270dd89bb82e457326f1af0bfb4
6
+ metadata.gz: 239acad3dfadc978bee5db43ad4e9199e4aa9172f643c319d87e82c7f6aef4cf7872b10b4d98c378eb078d1febd3efcd2e62b35338acdbc119cab6a510618e4e
7
+ data.tar.gz: 2dddbfba346f6bc4320b2ff2253320f4927b0d99cbcad96d8de076c75df6c434d2a81a4c4c5ac4aefe92e4c4d6dc22a12b2ce9c97b825a2265ca18026784778d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.34.0 (2022-07-16)
4
+
5
+ * Regenerated from discovery document revision 20220706
6
+
3
7
  ### v0.33.0 (2022-07-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20220628
@@ -1998,6 +1998,11 @@ module Google
1998
1998
  class IdentityServiceAuthMethod
1999
1999
  include Google::Apis::Core::Hashable
2000
2000
 
2001
+ # Configuration for the AzureAD Auth flow.
2002
+ # Corresponds to the JSON property `azureadConfig`
2003
+ # @return [Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig]
2004
+ attr_accessor :azuread_config
2005
+
2001
2006
  # Identifier for auth config.
2002
2007
  # Corresponds to the JSON property `name`
2003
2008
  # @return [String]
@@ -2019,12 +2024,59 @@ module Google
2019
2024
 
2020
2025
  # Update properties of this object
2021
2026
  def update!(**args)
2027
+ @azuread_config = args[:azuread_config] if args.key?(:azuread_config)
2022
2028
  @name = args[:name] if args.key?(:name)
2023
2029
  @oidc_config = args[:oidc_config] if args.key?(:oidc_config)
2024
2030
  @proxy = args[:proxy] if args.key?(:proxy)
2025
2031
  end
2026
2032
  end
2027
2033
 
2034
+ # Configuration for the AzureAD Auth flow.
2035
+ class IdentityServiceAzureAdConfig
2036
+ include Google::Apis::Core::Hashable
2037
+
2038
+ # ID for the registered client application that makes authentication requests to
2039
+ # the Azure AD identity provider.
2040
+ # Corresponds to the JSON property `clientId`
2041
+ # @return [String]
2042
+ attr_accessor :client_id
2043
+
2044
+ # Raw client secret will be passed to the GKE Hub CLH.
2045
+ # Corresponds to the JSON property `clientSecret`
2046
+ # @return [String]
2047
+ attr_accessor :client_secret
2048
+
2049
+ # Encrypted AzureAD client secrets
2050
+ # Corresponds to the JSON property `encryptedClientSecret`
2051
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
2052
+ # @return [String]
2053
+ attr_accessor :encrypted_client_secret
2054
+
2055
+ # The redirect URL that kubectl uses for authorization.
2056
+ # Corresponds to the JSON property `kubectlRedirectUri`
2057
+ # @return [String]
2058
+ attr_accessor :kubectl_redirect_uri
2059
+
2060
+ # Kind of Azure AD account to be authenticated. Supported values are or for
2061
+ # accounts belonging to a specific tenant.
2062
+ # Corresponds to the JSON property `tenant`
2063
+ # @return [String]
2064
+ attr_accessor :tenant
2065
+
2066
+ def initialize(**args)
2067
+ update!(**args)
2068
+ end
2069
+
2070
+ # Update properties of this object
2071
+ def update!(**args)
2072
+ @client_id = args[:client_id] if args.key?(:client_id)
2073
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
2074
+ @encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
2075
+ @kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
2076
+ @tenant = args[:tenant] if args.key?(:tenant)
2077
+ end
2078
+ end
2079
+
2028
2080
  # **Anthos Identity Service**: Configuration for a single Membership.
2029
2081
  class IdentityServiceMembershipSpec
2030
2082
  include Google::Apis::Core::Hashable
@@ -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.33.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220628"
25
+ REVISION = "20220706"
26
26
  end
27
27
  end
28
28
  end
@@ -364,6 +364,12 @@ module Google
364
364
  include Google::Apis::Core::JsonObjectSupport
365
365
  end
366
366
 
367
+ class IdentityServiceAzureAdConfig
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
367
373
  class IdentityServiceMembershipSpec
368
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
375
 
@@ -1243,6 +1249,8 @@ module Google
1243
1249
  class IdentityServiceAuthMethod
1244
1250
  # @private
1245
1251
  class Representation < Google::Apis::Core::JsonRepresentation
1252
+ property :azuread_config, as: 'azureadConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig::Representation
1253
+
1246
1254
  property :name, as: 'name'
1247
1255
  property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig::Representation
1248
1256
 
@@ -1250,6 +1258,17 @@ module Google
1250
1258
  end
1251
1259
  end
1252
1260
 
1261
+ class IdentityServiceAzureAdConfig
1262
+ # @private
1263
+ class Representation < Google::Apis::Core::JsonRepresentation
1264
+ property :client_id, as: 'clientId'
1265
+ property :client_secret, as: 'clientSecret'
1266
+ property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
1267
+ property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
1268
+ property :tenant, as: 'tenant'
1269
+ end
1270
+ end
1271
+
1253
1272
  class IdentityServiceMembershipSpec
1254
1273
  # @private
1255
1274
  class Representation < Google::Apis::Core::JsonRepresentation
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.33.0
4
+ version: 0.34.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: 2022-07-11 00:00:00.000000000 Z
11
+ date: 2022-07-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-gkehub_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.34.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: []