google-apis-container_v1 0.22.0 → 0.23.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: 67abcaa77ef5d9c7be7cbb67e84cdea5a32f411b4b2eef3cd468c66f5dfa60f9
4
- data.tar.gz: de82a99c7c061db633c8b3d902311315bab235fcd0140c1b2a2d998cb1c57b20
3
+ metadata.gz: 034a718c55ed4a20de45e1b14c45685978492eae182d158de2a82dc4abffb113
4
+ data.tar.gz: 602a905d66d669b76b9cfdbb6e9f4974bff512c1aebd84cd5547b7557f5ef55e
5
5
  SHA512:
6
- metadata.gz: d9cc537aa5142e28a5393f47db8fa80551d971781f81e22d2b3569d8a26bf955ff7e1bf62cf060e9ba51f5b24cbf36cef2e605764596161bf53350c2b2a8b52a
7
- data.tar.gz: a7be5983c459368aa15c55e4135b8a06c246952042a7b90688a68fcf3958194c82aa4eabd97373e9183d0b76854806471d9ead4a931a5f9a3d16f54a6305a9f6
6
+ metadata.gz: 6f9a0b067dc51c8f0bb371f93348834cde1e58ed75b6276a64c410a27eaa9517a3ebf49d85e347f1c58bcefba2acc103381ae4bb2c6473cab706c618c01a84db
7
+ data.tar.gz: e1bcc190ef52eaa3364705660a4f28fdf43357d4746d3f0cfadea61a8a10f614ea1d03f75e315a6bd7e0039e3786d25d4c709a1435571136d71990c0b92fa62c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.23.0 (2022-02-08)
4
+
5
+ * Regenerated from discovery document revision 20220116
6
+
3
7
  ### v0.22.0 (2022-02-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20220114
@@ -608,6 +608,12 @@ module Google
608
608
  # @return [String]
609
609
  attr_accessor :id
610
610
 
611
+ # IdentityServiceConfig is configuration for Identity Service which allows
612
+ # customers to use external identity providers with the K8S API
613
+ # Corresponds to the JSON property `identityServiceConfig`
614
+ # @return [Google::Apis::ContainerV1::IdentityServiceConfig]
615
+ attr_accessor :identity_service_config
616
+
611
617
  # The initial Kubernetes version for this cluster. Valid versions are those
612
618
  # found in validMasterVersions returned by getServerConfig. The version can be
613
619
  # upgraded over time; such upgrades are reflected in currentMasterVersion and
@@ -895,6 +901,7 @@ module Google
895
901
  @endpoint = args[:endpoint] if args.key?(:endpoint)
896
902
  @expire_time = args[:expire_time] if args.key?(:expire_time)
897
903
  @id = args[:id] if args.key?(:id)
904
+ @identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
898
905
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
899
906
  @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
900
907
  @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
@@ -1041,6 +1048,12 @@ module Google
1041
1048
  # @return [Google::Apis::ContainerV1::GcfsConfig]
1042
1049
  attr_accessor :desired_gcfs_config
1043
1050
 
1051
+ # IdentityServiceConfig is configuration for Identity Service which allows
1052
+ # customers to use external identity providers with the K8S API
1053
+ # Corresponds to the JSON property `desiredIdentityServiceConfig`
1054
+ # @return [Google::Apis::ContainerV1::IdentityServiceConfig]
1055
+ attr_accessor :desired_identity_service_config
1056
+
1044
1057
  # The desired image type for the node pool. NOTE: Set the "desired_node_pool"
1045
1058
  # field as well.
1046
1059
  # Corresponds to the JSON property `desiredImageType`
@@ -1213,6 +1226,7 @@ module Google
1213
1226
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1214
1227
  @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1215
1228
  @desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
1229
+ @desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
1216
1230
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1217
1231
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
1218
1232
  @desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
@@ -1986,6 +2000,27 @@ module Google
1986
2000
  end
1987
2001
  end
1988
2002
 
2003
+ # IdentityServiceConfig is configuration for Identity Service which allows
2004
+ # customers to use external identity providers with the K8S API
2005
+ class IdentityServiceConfig
2006
+ include Google::Apis::Core::Hashable
2007
+
2008
+ # Whether to enable the Identity Service component
2009
+ # Corresponds to the JSON property `enabled`
2010
+ # @return [Boolean]
2011
+ attr_accessor :enabled
2012
+ alias_method :enabled?, :enabled
2013
+
2014
+ def initialize(**args)
2015
+ update!(**args)
2016
+ end
2017
+
2018
+ # Update properties of this object
2019
+ def update!(**args)
2020
+ @enabled = args[:enabled] if args.key?(:enabled)
2021
+ end
2022
+ end
2023
+
1989
2024
  # IntraNodeVisibilityConfig contains the desired config of the intra-node
1990
2025
  # visibility on this cluster.
1991
2026
  class IntraNodeVisibilityConfig
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1
18
18
  # Version of the google-apis-container_v1 gem
19
- GEM_VERSION = "0.22.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220114"
25
+ REVISION = "20220116"
26
26
  end
27
27
  end
28
28
  end
@@ -256,6 +256,12 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
+ class IdentityServiceConfig
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
259
265
  class IntraNodeVisibilityConfig
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
@@ -897,6 +903,8 @@ module Google
897
903
  property :endpoint, as: 'endpoint'
898
904
  property :expire_time, as: 'expireTime'
899
905
  property :id, as: 'id'
906
+ property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
907
+
900
908
  property :initial_cluster_version, as: 'initialClusterVersion'
901
909
  property :initial_node_count, as: 'initialNodeCount'
902
910
  collection :instance_group_urls, as: 'instanceGroupUrls'
@@ -992,6 +1000,8 @@ module Google
992
1000
 
993
1001
  property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
994
1002
 
1003
+ property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
1004
+
995
1005
  property :desired_image_type, as: 'desiredImageType'
996
1006
  property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1::IntraNodeVisibilityConfig::Representation
997
1007
 
@@ -1234,6 +1244,13 @@ module Google
1234
1244
  end
1235
1245
  end
1236
1246
 
1247
+ class IdentityServiceConfig
1248
+ # @private
1249
+ class Representation < Google::Apis::Core::JsonRepresentation
1250
+ property :enabled, as: 'enabled'
1251
+ end
1252
+ end
1253
+
1237
1254
  class IntraNodeVisibilityConfig
1238
1255
  # @private
1239
1256
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.23.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-02-07 00:00:00.000000000 Z
11
+ date: 2022-02-14 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-container_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.23.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
63
63
  post_install_message:
64
64
  rdoc_options: []