google-apis-gkehub_v1alpha 0.36.0 → 0.37.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: 17ed99a8d0ee5072a938d16a92cc4eac92cda57f88e6f73d9029ac9853fc3f3d
4
- data.tar.gz: 2091c5e6783cfd4388eb4e69f647d2eaa9d9b6ae1fb25a52c62f86769a5e6f81
3
+ metadata.gz: d678100bdeea2fc0fd7f5f0bfbb504ca7fb49a8ea4f38a565cfdde1c7dba10a0
4
+ data.tar.gz: 1201bb08aa0e87fdcf280866a98a228c064148ed58fb924e638fb572f9e74913
5
5
  SHA512:
6
- metadata.gz: 92cd0d01e0961c3a30fa819f6b73fb9991a95d6b43d88d5620a048cfee8a3a853e09384f6ead363e5ef7b669d6cf23d7b0d66710a13030ee9aad9a827e3c83b8
7
- data.tar.gz: f06c2e4935511a846b7dd2dd3a40b8052fdd7f231ebd2a876d571db6aaa39457f9bdc3eb905b5915ebc915483d45560930880f5d34e2bde2381fd7ccdebd7f28
6
+ metadata.gz: ae1d6eef61ba83cc50b6744ee8a532c260e11ca71eab2cfa3498f8e8adc6e4a2f23c878bd48a7ec91271022070610db5e7d204d4cf179736e167f43860e3f367
7
+ data.tar.gz: effe435c4469fe208ab71e33d085666191b6211b0d8ee550f48f48b67acaf51ac5cc376789099597857994f47d4b7e29b9003d099c8e019598a10ff161458b77
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.37.0 (2022-08-22)
4
+
5
+ * Regenerated from discovery document revision 20220812
6
+
3
7
  ### v0.36.0 (2022-08-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20220805
@@ -2016,16 +2016,6 @@ module Google
2016
2016
  class IdentityServiceAuthMethod
2017
2017
  include Google::Apis::Core::Hashable
2018
2018
 
2019
- # Configuration for the AzureAD Auth flow.
2020
- # Corresponds to the JSON property `azureadConfig`
2021
- # @return [Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig]
2022
- attr_accessor :azuread_config
2023
-
2024
- # Configuration for the Google Plugin Auth flow.
2025
- # Corresponds to the JSON property `googleConfig`
2026
- # @return [Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig]
2027
- attr_accessor :google_config
2028
-
2029
2019
  # Identifier for auth config.
2030
2020
  # Corresponds to the JSON property `name`
2031
2021
  # @return [String]
@@ -2047,81 +2037,12 @@ module Google
2047
2037
 
2048
2038
  # Update properties of this object
2049
2039
  def update!(**args)
2050
- @azuread_config = args[:azuread_config] if args.key?(:azuread_config)
2051
- @google_config = args[:google_config] if args.key?(:google_config)
2052
2040
  @name = args[:name] if args.key?(:name)
2053
2041
  @oidc_config = args[:oidc_config] if args.key?(:oidc_config)
2054
2042
  @proxy = args[:proxy] if args.key?(:proxy)
2055
2043
  end
2056
2044
  end
2057
2045
 
2058
- # Configuration for the AzureAD Auth flow.
2059
- class IdentityServiceAzureAdConfig
2060
- include Google::Apis::Core::Hashable
2061
-
2062
- # ID for the registered client application that makes authentication requests to
2063
- # the Azure AD identity provider.
2064
- # Corresponds to the JSON property `clientId`
2065
- # @return [String]
2066
- attr_accessor :client_id
2067
-
2068
- # Input only. Unencrypted AzureAD client secret will be passed to the GKE Hub
2069
- # CLH.
2070
- # Corresponds to the JSON property `clientSecret`
2071
- # @return [String]
2072
- attr_accessor :client_secret
2073
-
2074
- # Output only. Encrypted AzureAD client secret.
2075
- # Corresponds to the JSON property `encryptedClientSecret`
2076
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
2077
- # @return [String]
2078
- attr_accessor :encrypted_client_secret
2079
-
2080
- # The redirect URL that kubectl uses for authorization.
2081
- # Corresponds to the JSON property `kubectlRedirectUri`
2082
- # @return [String]
2083
- attr_accessor :kubectl_redirect_uri
2084
-
2085
- # Kind of Azure AD account to be authenticated. Supported values are or for
2086
- # accounts belonging to a specific tenant.
2087
- # Corresponds to the JSON property `tenant`
2088
- # @return [String]
2089
- attr_accessor :tenant
2090
-
2091
- def initialize(**args)
2092
- update!(**args)
2093
- end
2094
-
2095
- # Update properties of this object
2096
- def update!(**args)
2097
- @client_id = args[:client_id] if args.key?(:client_id)
2098
- @client_secret = args[:client_secret] if args.key?(:client_secret)
2099
- @encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
2100
- @kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
2101
- @tenant = args[:tenant] if args.key?(:tenant)
2102
- end
2103
- end
2104
-
2105
- # Configuration for the Google Plugin Auth flow.
2106
- class IdentityServiceGoogleConfig
2107
- include Google::Apis::Core::Hashable
2108
-
2109
- # Disable automatic configuration of Google Plugin on supported platforms.
2110
- # Corresponds to the JSON property `disable`
2111
- # @return [Boolean]
2112
- attr_accessor :disable
2113
- alias_method :disable?, :disable
2114
-
2115
- def initialize(**args)
2116
- update!(**args)
2117
- end
2118
-
2119
- # Update properties of this object
2120
- def update!(**args)
2121
- @disable = args[:disable] if args.key?(:disable)
2122
- end
2123
- end
2124
-
2125
2046
  # **Anthos Identity Service**: Configuration for a single Membership.
2126
2047
  class IdentityServiceMembershipSpec
2127
2048
  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.36.0"
19
+ GEM_VERSION = "0.37.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 = "20220805"
25
+ REVISION = "20220812"
26
26
  end
27
27
  end
28
28
  end
@@ -370,18 +370,6 @@ module Google
370
370
  include Google::Apis::Core::JsonObjectSupport
371
371
  end
372
372
 
373
- class IdentityServiceAzureAdConfig
374
- class Representation < Google::Apis::Core::JsonRepresentation; end
375
-
376
- include Google::Apis::Core::JsonObjectSupport
377
- end
378
-
379
- class IdentityServiceGoogleConfig
380
- class Representation < Google::Apis::Core::JsonRepresentation; end
381
-
382
- include Google::Apis::Core::JsonObjectSupport
383
- end
384
-
385
373
  class IdentityServiceMembershipSpec
386
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
375
 
@@ -1263,10 +1251,6 @@ module Google
1263
1251
  class IdentityServiceAuthMethod
1264
1252
  # @private
1265
1253
  class Representation < Google::Apis::Core::JsonRepresentation
1266
- property :azuread_config, as: 'azureadConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceAzureAdConfig::Representation
1267
-
1268
- property :google_config, as: 'googleConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceGoogleConfig::Representation
1269
-
1270
1254
  property :name, as: 'name'
1271
1255
  property :oidc_config, as: 'oidcConfig', class: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig, decorator: Google::Apis::GkehubV1alpha::IdentityServiceOidcConfig::Representation
1272
1256
 
@@ -1274,24 +1258,6 @@ module Google
1274
1258
  end
1275
1259
  end
1276
1260
 
1277
- class IdentityServiceAzureAdConfig
1278
- # @private
1279
- class Representation < Google::Apis::Core::JsonRepresentation
1280
- property :client_id, as: 'clientId'
1281
- property :client_secret, as: 'clientSecret'
1282
- property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
1283
- property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
1284
- property :tenant, as: 'tenant'
1285
- end
1286
- end
1287
-
1288
- class IdentityServiceGoogleConfig
1289
- # @private
1290
- class Representation < Google::Apis::Core::JsonRepresentation
1291
- property :disable, as: 'disable'
1292
- end
1293
- end
1294
-
1295
1261
  class IdentityServiceMembershipSpec
1296
1262
  # @private
1297
1263
  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.36.0
4
+ version: 0.37.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-08-15 00:00:00.000000000 Z
11
+ date: 2022-08-29 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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.37.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: []