google-apis-container_v1 0.69.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: 329ebfc9abc17b8cce839a8742d7961434917cec101496858a3fcf38144d1e3c
4
- data.tar.gz: 15ee414c7bd0510d838e0455791f666b16c0d757ed8c049d3779f5e3fb5a401f
3
+ metadata.gz: aed1371737968cf8ddf7563a0e343ae1dbfcc1702d98dc8468626168e41a7eee
4
+ data.tar.gz: 2c97ef1ea823fd0f2fbe37a65362e87cd3a9f20bc21cd0598b43f20a7eabbe38
5
5
  SHA512:
6
- metadata.gz: a6736be72b35fdc01be7d92af4925f66d34efbd822b553e978f564d5b5b173d56b8b9e986548616bc9df3b80b69b0c95fad301470447e059d927297865c1f89b
7
- data.tar.gz: b561d1959369ba577dfbaf1e0930d4ac1b8d5abf168b3ec6ceb85bf27172e7935b5eeff60e177abb1ad0b85be326969a7c6b2dcd7fc41620572dc8773ebb2edb
6
+ metadata.gz: cd6dedea2b7aa8312428cb3c41af8b435e13c5abb8f589a6419949c31800e17cef778f6865493cd925f0398c92dbf44f9dce5bac7c66df4ac83bafcdeed8d1fe
7
+ data.tar.gz: 60b5848b1e5b3b9e7720efbf397d422941e880e66f76bf65315a5fcb8112656da4d1b1940b36e46448490c65900dd3bed9e61edfd59573f7e8be5c1f7ec53cf0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.69.0 (2024-03-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20240313
@@ -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)
@@ -2369,6 +2429,27 @@ module Google
2369
2429
  end
2370
2430
  end
2371
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
+
2372
2453
  # GPUDriverInstallationConfig specifies the version of GPU driver to be auto
2373
2454
  # installed.
2374
2455
  class GpuDriverInstallationConfig
@@ -2698,6 +2779,31 @@ module Google
2698
2779
  end
2699
2780
  end
2700
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
+
2701
2807
  # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
2702
2808
  # subsetting on this cluster.
2703
2809
  class IlbSubsettingConfig
@@ -3079,6 +3185,11 @@ module Google
3079
3185
  # @return [String]
3080
3186
  attr_accessor :cgroup_mode
3081
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
+
3082
3193
  # The Linux kernel parameters to be applied to the nodes and all pods running on
3083
3194
  # the nodes. The following parameters are supported. net.core.busy_poll net.core.
3084
3195
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
@@ -3095,6 +3206,7 @@ module Google
3095
3206
  # Update properties of this object
3096
3207
  def update!(**args)
3097
3208
  @cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
3209
+ @hugepages = args[:hugepages] if args.key?(:hugepages)
3098
3210
  @sysctls = args[:sysctls] if args.key?(:sysctls)
3099
3211
  end
3100
3212
  end
@@ -3891,6 +4003,11 @@ module Google
3891
4003
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
3892
4004
  attr_accessor :confidential_nodes
3893
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
+
3894
4011
  # Size of the disk attached to each node, specified in GB. The smallest allowed
3895
4012
  # disk size is 10GB. If unspecified, the default disk size is 100GB.
3896
4013
  # Corresponds to the JSON property `diskSizeGb`
@@ -4142,6 +4259,7 @@ module Google
4142
4259
  @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
4143
4260
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
4144
4261
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
4262
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4145
4263
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
4146
4264
  @disk_type = args[:disk_type] if args.key?(:disk_type)
4147
4265
  @enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
@@ -4183,6 +4301,11 @@ module Google
4183
4301
  class NodeConfigDefaults
4184
4302
  include Google::Apis::Core::Hashable
4185
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
+
4186
4309
  # GcfsConfig contains configurations of Google Container File System (image
4187
4310
  # streaming).
4188
4311
  # Corresponds to the JSON property `gcfsConfig`
@@ -4200,6 +4323,7 @@ module Google
4200
4323
 
4201
4324
  # Update properties of this object
4202
4325
  def update!(**args)
4326
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4203
4327
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4204
4328
  @logging_config = args[:logging_config] if args.key?(:logging_config)
4205
4329
  end
@@ -5189,6 +5313,33 @@ module Google
5189
5313
  end
5190
5314
  end
5191
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
+
5192
5343
  # Pub/Sub specific notification config.
5193
5344
  class PubSub
5194
5345
  include Google::Apis::Core::Hashable
@@ -6866,6 +7017,12 @@ module Google
6866
7017
  class UpdateNodePoolRequest
6867
7018
  include Google::Apis::Core::Hashable
6868
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
+
6869
7026
  # Deprecated. The name of the cluster to upgrade. This field has been deprecated
6870
7027
  # and replaced by the name field.
6871
7028
  # Corresponds to the JSON property `clusterId`
@@ -6878,6 +7035,11 @@ module Google
6878
7035
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
6879
7036
  attr_accessor :confidential_nodes
6880
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
+
6881
7043
  # Optional. The desired disk size for nodes in the node pool specified in GB.
6882
7044
  # The smallest allowed disk size is 10GB. Initiates an upgrade operation that
6883
7045
  # migrates the nodes in the node pool to the specified disk size.
@@ -7088,8 +7250,10 @@ module Google
7088
7250
 
7089
7251
  # Update properties of this object
7090
7252
  def update!(**args)
7253
+ @accelerators = args[:accelerators] if args.key?(:accelerators)
7091
7254
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
7092
7255
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
7256
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
7093
7257
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
7094
7258
  @disk_type = args[:disk_type] if args.key?(:disk_type)
7095
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.69.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 = "20240313"
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
 
@@ -706,6 +730,12 @@ module Google
706
730
  include Google::Apis::Core::JsonObjectSupport
707
731
  end
708
732
 
733
+ class PrivateRegistryAccessConfig
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
709
739
  class PubSub
710
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
741
 
@@ -1232,6 +1262,15 @@ module Google
1232
1262
  end
1233
1263
  end
1234
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
+
1235
1274
  class CheckAutopilotCompatibilityResponse
1236
1275
  # @private
1237
1276
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1410,6 +1449,8 @@ module Google
1410
1449
 
1411
1450
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1::ClusterAutoscaling::Representation
1412
1451
 
1452
+ property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
1453
+
1413
1454
  property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
1414
1455
 
1415
1456
  property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1::DatabaseEncryption, decorator: Google::Apis::ContainerV1::DatabaseEncryption::Representation
@@ -1530,6 +1571,14 @@ module Google
1530
1571
  end
1531
1572
  end
1532
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
+
1533
1582
  class CostManagementConfig
1534
1583
  # @private
1535
1584
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1563,6 +1612,7 @@ module Google
1563
1612
  class DnsConfig
1564
1613
  # @private
1565
1614
  class Representation < Google::Apis::Core::JsonRepresentation
1615
+ property :additive_vpc_scope_dns_domain, as: 'additiveVpcScopeDnsDomain'
1566
1616
  property :cluster_dns, as: 'clusterDns'
1567
1617
  property :cluster_dns_domain, as: 'clusterDnsDomain'
1568
1618
  property :cluster_dns_scope, as: 'clusterDnsScope'
@@ -1646,6 +1696,13 @@ module Google
1646
1696
  end
1647
1697
  end
1648
1698
 
1699
+ class GcpSecretManagerCertificateConfig
1700
+ # @private
1701
+ class Representation < Google::Apis::Core::JsonRepresentation
1702
+ property :secret_uri, as: 'secretUri'
1703
+ end
1704
+ end
1705
+
1649
1706
  class GpuDriverInstallationConfig
1650
1707
  # @private
1651
1708
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1751,6 +1808,14 @@ module Google
1751
1808
  end
1752
1809
  end
1753
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
+
1754
1819
  class IlbSubsettingConfig
1755
1820
  # @private
1756
1821
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1840,6 +1905,8 @@ module Google
1840
1905
  # @private
1841
1906
  class Representation < Google::Apis::Core::JsonRepresentation
1842
1907
  property :cgroup_mode, as: 'cgroupMode'
1908
+ property :hugepages, as: 'hugepages', class: Google::Apis::ContainerV1::HugepagesConfig, decorator: Google::Apis::ContainerV1::HugepagesConfig::Representation
1909
+
1843
1910
  hash :sysctls, as: 'sysctls'
1844
1911
  end
1845
1912
  end
@@ -2083,6 +2150,8 @@ module Google
2083
2150
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
2084
2151
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2085
2152
 
2153
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2154
+
2086
2155
  property :disk_size_gb, as: 'diskSizeGb'
2087
2156
  property :disk_type, as: 'diskType'
2088
2157
  property :enable_confidential_storage, as: 'enableConfidentialStorage'
@@ -2141,6 +2210,8 @@ module Google
2141
2210
  class NodeConfigDefaults
2142
2211
  # @private
2143
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
+
2144
2215
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
2145
2216
 
2146
2217
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
@@ -2389,6 +2460,15 @@ module Google
2389
2460
  end
2390
2461
  end
2391
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
+
2392
2472
  class PubSub
2393
2473
  # @private
2394
2474
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2814,9 +2894,13 @@ module Google
2814
2894
  class UpdateNodePoolRequest
2815
2895
  # @private
2816
2896
  class Representation < Google::Apis::Core::JsonRepresentation
2897
+ collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1::AcceleratorConfig, decorator: Google::Apis::ContainerV1::AcceleratorConfig::Representation
2898
+
2817
2899
  property :cluster_id, as: 'clusterId'
2818
2900
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2819
2901
 
2902
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2903
+
2820
2904
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
2821
2905
  property :disk_type, as: 'diskType'
2822
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.69.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-24 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.69.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: []