google-apis-container_v1 0.68.0 → 0.70.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: 634229878e0eaf3d2a19b0d4b39ac3e3da987ae3c65fb14d63b79c83a87f12d5
4
- data.tar.gz: 3ab912d30d2b2edc74c6b09c630a4c4fc86ac2c19688a984e6015918f4848b2c
3
+ metadata.gz: aed1371737968cf8ddf7563a0e343ae1dbfcc1702d98dc8468626168e41a7eee
4
+ data.tar.gz: 2c97ef1ea823fd0f2fbe37a65362e87cd3a9f20bc21cd0598b43f20a7eabbe38
5
5
  SHA512:
6
- metadata.gz: f20dddd4a4e6a814d093f0c47f8ed5adff98d2d6bed72cd71162e2c43181bbf7eb50321587413cbb43b4664dfb80207acf1c43264a187f764696a6925dfa2447
7
- data.tar.gz: a34a02b6fef4c9375d1e08366d875ea5592f98e571eb2d6a5ad497bfb4465e35c67daf7d783423fc4bc35b8f9138f2793907c1f57dfafb20103c572c466ea4e1
6
+ metadata.gz: cd6dedea2b7aa8312428cb3c41af8b435e13c5abb8f589a6419949c31800e17cef778f6865493cd925f0398c92dbf44f9dce5bac7c66df4ac83bafcdeed8d1fe
7
+ data.tar.gz: 60b5848b1e5b3b9e7720efbf397d422941e880e66f76bf65315a5fcb8112656da4d1b1940b36e46448490c65900dd3bed9e61edfd59573f7e8be5c1f7ec53cf0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.70.0 (2024-04-14)
4
+
5
+ * Regenerated from discovery document revision 20240327
6
+
7
+ ### v0.69.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240313
10
+
3
11
  ### v0.68.0 (2024-03-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20240229
@@ -755,6 +755,34 @@ module Google
755
755
  end
756
756
  end
757
757
 
758
+ # CertificateAuthorityDomainConfig configures one or more fully qualified domain
759
+ # names (FQDN) to a specific certificate.
760
+ class CertificateAuthorityDomainConfig
761
+ include Google::Apis::Core::Hashable
762
+
763
+ # List of fully qualified domain names (FQDN). Specifying port is supported.
764
+ # Wilcards are NOT supported. Examples: - my.customdomain.com - 10.0.1.2:5000
765
+ # Corresponds to the JSON property `fqdns`
766
+ # @return [Array<String>]
767
+ attr_accessor :fqdns
768
+
769
+ # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
770
+ # Manager](https://cloud.google.com/secret-manager).
771
+ # Corresponds to the JSON property `gcpSecretManagerCertificateConfig`
772
+ # @return [Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig]
773
+ attr_accessor :gcp_secret_manager_certificate_config
774
+
775
+ def initialize(**args)
776
+ update!(**args)
777
+ end
778
+
779
+ # Update properties of this object
780
+ def update!(**args)
781
+ @fqdns = args[:fqdns] if args.key?(:fqdns)
782
+ @gcp_secret_manager_certificate_config = args[:gcp_secret_manager_certificate_config] if args.key?(:gcp_secret_manager_certificate_config)
783
+ end
784
+ end
785
+
758
786
  # CheckAutopilotCompatibilityResponse has a list of compatibility issues.
759
787
  class CheckAutopilotCompatibilityResponse
760
788
  include Google::Apis::Core::Hashable
@@ -1478,6 +1506,11 @@ module Google
1478
1506
  # @return [Google::Apis::ContainerV1::ClusterAutoscaling]
1479
1507
  attr_accessor :desired_cluster_autoscaling
1480
1508
 
1509
+ # ContainerdConfig contains configuration to customize containerd.
1510
+ # Corresponds to the JSON property `desiredContainerdConfig`
1511
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
1512
+ attr_accessor :desired_containerd_config
1513
+
1481
1514
  # Configuration for fine-grained cost management feature.
1482
1515
  # Corresponds to the JSON property `desiredCostManagementConfig`
1483
1516
  # @return [Google::Apis::ContainerV1::CostManagementConfig]
@@ -1792,6 +1825,7 @@ module Google
1792
1825
  @desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
1793
1826
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1794
1827
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1828
+ @desired_containerd_config = args[:desired_containerd_config] if args.key?(:desired_containerd_config)
1795
1829
  @desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
1796
1830
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
1797
1831
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
@@ -1962,6 +1996,26 @@ module Google
1962
1996
  end
1963
1997
  end
1964
1998
 
1999
+ # ContainerdConfig contains configuration to customize containerd.
2000
+ class ContainerdConfig
2001
+ include Google::Apis::Core::Hashable
2002
+
2003
+ # PrivateRegistryAccessConfig contains access configuration for private
2004
+ # container registries.
2005
+ # Corresponds to the JSON property `privateRegistryAccessConfig`
2006
+ # @return [Google::Apis::ContainerV1::PrivateRegistryAccessConfig]
2007
+ attr_accessor :private_registry_access_config
2008
+
2009
+ def initialize(**args)
2010
+ update!(**args)
2011
+ end
2012
+
2013
+ # Update properties of this object
2014
+ def update!(**args)
2015
+ @private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
2016
+ end
2017
+ end
2018
+
1965
2019
  # Configuration for fine-grained cost management feature.
1966
2020
  class CostManagementConfig
1967
2021
  include Google::Apis::Core::Hashable
@@ -2082,6 +2136,11 @@ module Google
2082
2136
  class DnsConfig
2083
2137
  include Google::Apis::Core::Hashable
2084
2138
 
2139
+ # Optional. The domain used in Additive VPC scope.
2140
+ # Corresponds to the JSON property `additiveVpcScopeDnsDomain`
2141
+ # @return [String]
2142
+ attr_accessor :additive_vpc_scope_dns_domain
2143
+
2085
2144
  # cluster_dns indicates which in-cluster DNS provider should be used.
2086
2145
  # Corresponds to the JSON property `clusterDns`
2087
2146
  # @return [String]
@@ -2103,6 +2162,7 @@ module Google
2103
2162
 
2104
2163
  # Update properties of this object
2105
2164
  def update!(**args)
2165
+ @additive_vpc_scope_dns_domain = args[:additive_vpc_scope_dns_domain] if args.key?(:additive_vpc_scope_dns_domain)
2106
2166
  @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
2107
2167
  @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
2108
2168
  @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
@@ -2142,12 +2202,28 @@ module Google
2142
2202
  class DatabaseEncryption
2143
2203
  include Google::Apis::Core::Hashable
2144
2204
 
2205
+ # Output only. The current state of etcd encryption.
2206
+ # Corresponds to the JSON property `currentState`
2207
+ # @return [String]
2208
+ attr_accessor :current_state
2209
+
2210
+ # Output only. Keys in use by the cluster for decrypting existing objects, in
2211
+ # addition to the key in `key_name`. Each item is a CloudKMS key resource.
2212
+ # Corresponds to the JSON property `decryptionKeys`
2213
+ # @return [Array<String>]
2214
+ attr_accessor :decryption_keys
2215
+
2145
2216
  # Name of CloudKMS key to use for the encryption of secrets in etcd. Ex.
2146
2217
  # projects/my-project/locations/global/keyRings/my-ring/cryptoKeys/my-key
2147
2218
  # Corresponds to the JSON property `keyName`
2148
2219
  # @return [String]
2149
2220
  attr_accessor :key_name
2150
2221
 
2222
+ # Output only. Records errors seen during DatabaseEncryption update operations.
2223
+ # Corresponds to the JSON property `lastOperationErrors`
2224
+ # @return [Array<Google::Apis::ContainerV1::OperationError>]
2225
+ attr_accessor :last_operation_errors
2226
+
2151
2227
  # The desired state of etcd encryption.
2152
2228
  # Corresponds to the JSON property `state`
2153
2229
  # @return [String]
@@ -2159,7 +2235,10 @@ module Google
2159
2235
 
2160
2236
  # Update properties of this object
2161
2237
  def update!(**args)
2238
+ @current_state = args[:current_state] if args.key?(:current_state)
2239
+ @decryption_keys = args[:decryption_keys] if args.key?(:decryption_keys)
2162
2240
  @key_name = args[:key_name] if args.key?(:key_name)
2241
+ @last_operation_errors = args[:last_operation_errors] if args.key?(:last_operation_errors)
2163
2242
  @state = args[:state] if args.key?(:state)
2164
2243
  end
2165
2244
  end
@@ -2350,6 +2429,27 @@ module Google
2350
2429
  end
2351
2430
  end
2352
2431
 
2432
+ # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
2433
+ # Manager](https://cloud.google.com/secret-manager).
2434
+ class GcpSecretManagerCertificateConfig
2435
+ include Google::Apis::Core::Hashable
2436
+
2437
+ # Secret URI, in the form "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$
2438
+ # VERSION". Version can be fixed (e.g. "2") or "latest"
2439
+ # Corresponds to the JSON property `secretUri`
2440
+ # @return [String]
2441
+ attr_accessor :secret_uri
2442
+
2443
+ def initialize(**args)
2444
+ update!(**args)
2445
+ end
2446
+
2447
+ # Update properties of this object
2448
+ def update!(**args)
2449
+ @secret_uri = args[:secret_uri] if args.key?(:secret_uri)
2450
+ end
2451
+ end
2452
+
2353
2453
  # GPUDriverInstallationConfig specifies the version of GPU driver to be auto
2354
2454
  # installed.
2355
2455
  class GpuDriverInstallationConfig
@@ -2679,6 +2779,31 @@ module Google
2679
2779
  end
2680
2780
  end
2681
2781
 
2782
+ # Hugepages amount in both 2m and 1g size
2783
+ class HugepagesConfig
2784
+ include Google::Apis::Core::Hashable
2785
+
2786
+ # Optional. Amount of 1G hugepages
2787
+ # Corresponds to the JSON property `hugepageSize1g`
2788
+ # @return [Fixnum]
2789
+ attr_accessor :hugepage_size1g
2790
+
2791
+ # Optional. Amount of 2M hugepages
2792
+ # Corresponds to the JSON property `hugepageSize2m`
2793
+ # @return [Fixnum]
2794
+ attr_accessor :hugepage_size2m
2795
+
2796
+ def initialize(**args)
2797
+ update!(**args)
2798
+ end
2799
+
2800
+ # Update properties of this object
2801
+ def update!(**args)
2802
+ @hugepage_size1g = args[:hugepage_size1g] if args.key?(:hugepage_size1g)
2803
+ @hugepage_size2m = args[:hugepage_size2m] if args.key?(:hugepage_size2m)
2804
+ end
2805
+ end
2806
+
2682
2807
  # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
2683
2808
  # subsetting on this cluster.
2684
2809
  class IlbSubsettingConfig
@@ -3060,6 +3185,11 @@ module Google
3060
3185
  # @return [String]
3061
3186
  attr_accessor :cgroup_mode
3062
3187
 
3188
+ # Hugepages amount in both 2m and 1g size
3189
+ # Corresponds to the JSON property `hugepages`
3190
+ # @return [Google::Apis::ContainerV1::HugepagesConfig]
3191
+ attr_accessor :hugepages
3192
+
3063
3193
  # The Linux kernel parameters to be applied to the nodes and all pods running on
3064
3194
  # the nodes. The following parameters are supported. net.core.busy_poll net.core.
3065
3195
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
@@ -3076,6 +3206,7 @@ module Google
3076
3206
  # Update properties of this object
3077
3207
  def update!(**args)
3078
3208
  @cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
3209
+ @hugepages = args[:hugepages] if args.key?(:hugepages)
3079
3210
  @sysctls = args[:sysctls] if args.key?(:sysctls)
3080
3211
  end
3081
3212
  end
@@ -3872,6 +4003,11 @@ module Google
3872
4003
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
3873
4004
  attr_accessor :confidential_nodes
3874
4005
 
4006
+ # ContainerdConfig contains configuration to customize containerd.
4007
+ # Corresponds to the JSON property `containerdConfig`
4008
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
4009
+ attr_accessor :containerd_config
4010
+
3875
4011
  # Size of the disk attached to each node, specified in GB. The smallest allowed
3876
4012
  # disk size is 10GB. If unspecified, the default disk size is 100GB.
3877
4013
  # Corresponds to the JSON property `diskSizeGb`
@@ -4123,6 +4259,7 @@ module Google
4123
4259
  @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
4124
4260
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
4125
4261
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
4262
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4126
4263
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
4127
4264
  @disk_type = args[:disk_type] if args.key?(:disk_type)
4128
4265
  @enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
@@ -4164,6 +4301,11 @@ module Google
4164
4301
  class NodeConfigDefaults
4165
4302
  include Google::Apis::Core::Hashable
4166
4303
 
4304
+ # ContainerdConfig contains configuration to customize containerd.
4305
+ # Corresponds to the JSON property `containerdConfig`
4306
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
4307
+ attr_accessor :containerd_config
4308
+
4167
4309
  # GcfsConfig contains configurations of Google Container File System (image
4168
4310
  # streaming).
4169
4311
  # Corresponds to the JSON property `gcfsConfig`
@@ -4181,6 +4323,7 @@ module Google
4181
4323
 
4182
4324
  # Update properties of this object
4183
4325
  def update!(**args)
4326
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4184
4327
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4185
4328
  @logging_config = args[:logging_config] if args.key?(:logging_config)
4186
4329
  end
@@ -4927,6 +5070,38 @@ module Google
4927
5070
  end
4928
5071
  end
4929
5072
 
5073
+ # OperationError records errors seen from CloudKMS keys encountered during
5074
+ # updates to DatabaseEncryption configuration.
5075
+ class OperationError
5076
+ include Google::Apis::Core::Hashable
5077
+
5078
+ # Description of the error seen during the operation.
5079
+ # Corresponds to the JSON property `errorMessage`
5080
+ # @return [String]
5081
+ attr_accessor :error_message
5082
+
5083
+ # CloudKMS key resource that had the error.
5084
+ # Corresponds to the JSON property `keyName`
5085
+ # @return [String]
5086
+ attr_accessor :key_name
5087
+
5088
+ # Time when the CloudKMS error was seen.
5089
+ # Corresponds to the JSON property `timestamp`
5090
+ # @return [String]
5091
+ attr_accessor :timestamp
5092
+
5093
+ def initialize(**args)
5094
+ update!(**args)
5095
+ end
5096
+
5097
+ # Update properties of this object
5098
+ def update!(**args)
5099
+ @error_message = args[:error_message] if args.key?(:error_message)
5100
+ @key_name = args[:key_name] if args.key?(:key_name)
5101
+ @timestamp = args[:timestamp] if args.key?(:timestamp)
5102
+ end
5103
+ end
5104
+
4930
5105
  # Information about operation (or operation stage) progress.
4931
5106
  class OperationProgress
4932
5107
  include Google::Apis::Core::Hashable
@@ -5138,6 +5313,33 @@ module Google
5138
5313
  end
5139
5314
  end
5140
5315
 
5316
+ # PrivateRegistryAccessConfig contains access configuration for private
5317
+ # container registries.
5318
+ class PrivateRegistryAccessConfig
5319
+ include Google::Apis::Core::Hashable
5320
+
5321
+ # Private registry access configuration.
5322
+ # Corresponds to the JSON property `certificateAuthorityDomainConfig`
5323
+ # @return [Array<Google::Apis::ContainerV1::CertificateAuthorityDomainConfig>]
5324
+ attr_accessor :certificate_authority_domain_config
5325
+
5326
+ # Private registry access is enabled.
5327
+ # Corresponds to the JSON property `enabled`
5328
+ # @return [Boolean]
5329
+ attr_accessor :enabled
5330
+ alias_method :enabled?, :enabled
5331
+
5332
+ def initialize(**args)
5333
+ update!(**args)
5334
+ end
5335
+
5336
+ # Update properties of this object
5337
+ def update!(**args)
5338
+ @certificate_authority_domain_config = args[:certificate_authority_domain_config] if args.key?(:certificate_authority_domain_config)
5339
+ @enabled = args[:enabled] if args.key?(:enabled)
5340
+ end
5341
+ end
5342
+
5141
5343
  # Pub/Sub specific notification config.
5142
5344
  class PubSub
5143
5345
  include Google::Apis::Core::Hashable
@@ -6815,6 +7017,12 @@ module Google
6815
7017
  class UpdateNodePoolRequest
6816
7018
  include Google::Apis::Core::Hashable
6817
7019
 
7020
+ # A list of hardware accelerators to be attached to each node. See https://cloud.
7021
+ # google.com/compute/docs/gpus for more information about support for GPUs.
7022
+ # Corresponds to the JSON property `accelerators`
7023
+ # @return [Array<Google::Apis::ContainerV1::AcceleratorConfig>]
7024
+ attr_accessor :accelerators
7025
+
6818
7026
  # Deprecated. The name of the cluster to upgrade. This field has been deprecated
6819
7027
  # and replaced by the name field.
6820
7028
  # Corresponds to the JSON property `clusterId`
@@ -6827,6 +7035,11 @@ module Google
6827
7035
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
6828
7036
  attr_accessor :confidential_nodes
6829
7037
 
7038
+ # ContainerdConfig contains configuration to customize containerd.
7039
+ # Corresponds to the JSON property `containerdConfig`
7040
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
7041
+ attr_accessor :containerd_config
7042
+
6830
7043
  # Optional. The desired disk size for nodes in the node pool specified in GB.
6831
7044
  # The smallest allowed disk size is 10GB. Initiates an upgrade operation that
6832
7045
  # migrates the nodes in the node pool to the specified disk size.
@@ -7037,8 +7250,10 @@ module Google
7037
7250
 
7038
7251
  # Update properties of this object
7039
7252
  def update!(**args)
7253
+ @accelerators = args[:accelerators] if args.key?(:accelerators)
7040
7254
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
7041
7255
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
7256
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
7042
7257
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
7043
7258
  @disk_type = args[:disk_type] if args.key?(:disk_type)
7044
7259
  @etag = args[:etag] if args.key?(:etag)
@@ -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.68.0"
19
+ GEM_VERSION = "0.70.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 = "20240229"
25
+ REVISION = "20240327"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,12 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class CertificateAuthorityDomainConfig
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class CheckAutopilotCompatibilityResponse
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -208,6 +214,12 @@ module Google
208
214
  include Google::Apis::Core::JsonObjectSupport
209
215
  end
210
216
 
217
+ class ContainerdConfig
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class CostManagementConfig
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -292,6 +304,12 @@ module Google
292
304
  include Google::Apis::Core::JsonObjectSupport
293
305
  end
294
306
 
307
+ class GcpSecretManagerCertificateConfig
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
295
313
  class GpuDriverInstallationConfig
296
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
315
 
@@ -370,6 +388,12 @@ module Google
370
388
  include Google::Apis::Core::JsonObjectSupport
371
389
  end
372
390
 
391
+ class HugepagesConfig
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
373
397
  class IlbSubsettingConfig
374
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
399
 
@@ -664,6 +688,12 @@ module Google
664
688
  include Google::Apis::Core::JsonObjectSupport
665
689
  end
666
690
 
691
+ class OperationError
692
+ class Representation < Google::Apis::Core::JsonRepresentation; end
693
+
694
+ include Google::Apis::Core::JsonObjectSupport
695
+ end
696
+
667
697
  class OperationProgress
668
698
  class Representation < Google::Apis::Core::JsonRepresentation; end
669
699
 
@@ -700,6 +730,12 @@ module Google
700
730
  include Google::Apis::Core::JsonObjectSupport
701
731
  end
702
732
 
733
+ class PrivateRegistryAccessConfig
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
703
739
  class PubSub
704
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
705
741
 
@@ -1226,6 +1262,15 @@ module Google
1226
1262
  end
1227
1263
  end
1228
1264
 
1265
+ class CertificateAuthorityDomainConfig
1266
+ # @private
1267
+ class Representation < Google::Apis::Core::JsonRepresentation
1268
+ collection :fqdns, as: 'fqdns'
1269
+ property :gcp_secret_manager_certificate_config, as: 'gcpSecretManagerCertificateConfig', class: Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig, decorator: Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig::Representation
1270
+
1271
+ end
1272
+ end
1273
+
1229
1274
  class CheckAutopilotCompatibilityResponse
1230
1275
  # @private
1231
1276
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1404,6 +1449,8 @@ module Google
1404
1449
 
1405
1450
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1::ClusterAutoscaling::Representation
1406
1451
 
1452
+ property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
1453
+
1407
1454
  property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
1408
1455
 
1409
1456
  property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1::DatabaseEncryption, decorator: Google::Apis::ContainerV1::DatabaseEncryption::Representation
@@ -1524,6 +1571,14 @@ module Google
1524
1571
  end
1525
1572
  end
1526
1573
 
1574
+ class ContainerdConfig
1575
+ # @private
1576
+ class Representation < Google::Apis::Core::JsonRepresentation
1577
+ property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1::PrivateRegistryAccessConfig::Representation
1578
+
1579
+ end
1580
+ end
1581
+
1527
1582
  class CostManagementConfig
1528
1583
  # @private
1529
1584
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1557,6 +1612,7 @@ module Google
1557
1612
  class DnsConfig
1558
1613
  # @private
1559
1614
  class Representation < Google::Apis::Core::JsonRepresentation
1615
+ property :additive_vpc_scope_dns_domain, as: 'additiveVpcScopeDnsDomain'
1560
1616
  property :cluster_dns, as: 'clusterDns'
1561
1617
  property :cluster_dns_domain, as: 'clusterDnsDomain'
1562
1618
  property :cluster_dns_scope, as: 'clusterDnsScope'
@@ -1574,7 +1630,11 @@ module Google
1574
1630
  class DatabaseEncryption
1575
1631
  # @private
1576
1632
  class Representation < Google::Apis::Core::JsonRepresentation
1633
+ property :current_state, as: 'currentState'
1634
+ collection :decryption_keys, as: 'decryptionKeys'
1577
1635
  property :key_name, as: 'keyName'
1636
+ collection :last_operation_errors, as: 'lastOperationErrors', class: Google::Apis::ContainerV1::OperationError, decorator: Google::Apis::ContainerV1::OperationError::Representation
1637
+
1578
1638
  property :state, as: 'state'
1579
1639
  end
1580
1640
  end
@@ -1636,6 +1696,13 @@ module Google
1636
1696
  end
1637
1697
  end
1638
1698
 
1699
+ class GcpSecretManagerCertificateConfig
1700
+ # @private
1701
+ class Representation < Google::Apis::Core::JsonRepresentation
1702
+ property :secret_uri, as: 'secretUri'
1703
+ end
1704
+ end
1705
+
1639
1706
  class GpuDriverInstallationConfig
1640
1707
  # @private
1641
1708
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1741,6 +1808,14 @@ module Google
1741
1808
  end
1742
1809
  end
1743
1810
 
1811
+ class HugepagesConfig
1812
+ # @private
1813
+ class Representation < Google::Apis::Core::JsonRepresentation
1814
+ property :hugepage_size1g, as: 'hugepageSize1g'
1815
+ property :hugepage_size2m, as: 'hugepageSize2m'
1816
+ end
1817
+ end
1818
+
1744
1819
  class IlbSubsettingConfig
1745
1820
  # @private
1746
1821
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1830,6 +1905,8 @@ module Google
1830
1905
  # @private
1831
1906
  class Representation < Google::Apis::Core::JsonRepresentation
1832
1907
  property :cgroup_mode, as: 'cgroupMode'
1908
+ property :hugepages, as: 'hugepages', class: Google::Apis::ContainerV1::HugepagesConfig, decorator: Google::Apis::ContainerV1::HugepagesConfig::Representation
1909
+
1833
1910
  hash :sysctls, as: 'sysctls'
1834
1911
  end
1835
1912
  end
@@ -2073,6 +2150,8 @@ module Google
2073
2150
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
2074
2151
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2075
2152
 
2153
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2154
+
2076
2155
  property :disk_size_gb, as: 'diskSizeGb'
2077
2156
  property :disk_type, as: 'diskType'
2078
2157
  property :enable_confidential_storage, as: 'enableConfidentialStorage'
@@ -2131,6 +2210,8 @@ module Google
2131
2210
  class NodeConfigDefaults
2132
2211
  # @private
2133
2212
  class Representation < Google::Apis::Core::JsonRepresentation
2213
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2214
+
2134
2215
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
2135
2216
 
2136
2217
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
@@ -2312,6 +2393,15 @@ module Google
2312
2393
  end
2313
2394
  end
2314
2395
 
2396
+ class OperationError
2397
+ # @private
2398
+ class Representation < Google::Apis::Core::JsonRepresentation
2399
+ property :error_message, as: 'errorMessage'
2400
+ property :key_name, as: 'keyName'
2401
+ property :timestamp, as: 'timestamp'
2402
+ end
2403
+ end
2404
+
2315
2405
  class OperationProgress
2316
2406
  # @private
2317
2407
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2370,6 +2460,15 @@ module Google
2370
2460
  end
2371
2461
  end
2372
2462
 
2463
+ class PrivateRegistryAccessConfig
2464
+ # @private
2465
+ class Representation < Google::Apis::Core::JsonRepresentation
2466
+ collection :certificate_authority_domain_config, as: 'certificateAuthorityDomainConfig', class: Google::Apis::ContainerV1::CertificateAuthorityDomainConfig, decorator: Google::Apis::ContainerV1::CertificateAuthorityDomainConfig::Representation
2467
+
2468
+ property :enabled, as: 'enabled'
2469
+ end
2470
+ end
2471
+
2373
2472
  class PubSub
2374
2473
  # @private
2375
2474
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2795,9 +2894,13 @@ module Google
2795
2894
  class UpdateNodePoolRequest
2796
2895
  # @private
2797
2896
  class Representation < Google::Apis::Core::JsonRepresentation
2897
+ collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1::AcceleratorConfig, decorator: Google::Apis::ContainerV1::AcceleratorConfig::Representation
2898
+
2798
2899
  property :cluster_id, as: 'clusterId'
2799
2900
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2800
2901
 
2902
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2903
+
2801
2904
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
2802
2905
  property :disk_type, as: 'diskType'
2803
2906
  property :etag, as: 'etag'
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.68.0
4
+ version: 0.70.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-17 00:00:00.000000000 Z
11
+ date: 2024-04-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.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.70.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: []