google-apis-container_v1 0.69.0 → 0.71.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: 329ebfc9abc17b8cce839a8742d7961434917cec101496858a3fcf38144d1e3c
4
- data.tar.gz: 15ee414c7bd0510d838e0455791f666b16c0d757ed8c049d3779f5e3fb5a401f
3
+ metadata.gz: 3927a686709043def35852b8895f2cce4553003e7474c0db6937fb4677deb4c5
4
+ data.tar.gz: ce142ab00b7c3eba955ab6b807978ed0cfe1c21a5faec44d786fb4f9975d73fe
5
5
  SHA512:
6
- metadata.gz: a6736be72b35fdc01be7d92af4925f66d34efbd822b553e978f564d5b5b173d56b8b9e986548616bc9df3b80b69b0c95fad301470447e059d927297865c1f89b
7
- data.tar.gz: b561d1959369ba577dfbaf1e0930d4ac1b8d5abf168b3ec6ceb85bf27172e7935b5eeff60e177abb1ad0b85be326969a7c6b2dcd7fc41620572dc8773ebb2edb
6
+ metadata.gz: 396700276eff789651327fc3f1a42cf4efe0319a4d8b8fd0df60bee106499843bef39f5fd2a4d4d9086a3b3a2a98470c219cf0371d0cf96519512fbb6b532980
7
+ data.tar.gz: 42302894a314f88597e1622b2e29f82917cd8b567a46c1826848e8adf003bc70bd6c12bacddc2ce16ca516e2532a8445bab46986bf4e9a8beda2bef57650b95c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.71.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240409
6
+
7
+ ### v0.70.0 (2024-04-14)
8
+
9
+ * Regenerated from discovery document revision 20240327
10
+
3
11
  ### v0.69.0 (2024-03-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240313
@@ -284,6 +284,12 @@ module Google
284
284
  class AdvancedMachineFeatures
285
285
  include Google::Apis::Core::Hashable
286
286
 
287
+ # Whether or not to enable nested virtualization (defaults to false).
288
+ # Corresponds to the JSON property `enableNestedVirtualization`
289
+ # @return [Boolean]
290
+ attr_accessor :enable_nested_virtualization
291
+ alias_method :enable_nested_virtualization?, :enable_nested_virtualization
292
+
287
293
  # The number of threads per physical core. To disable simultaneous
288
294
  # multithreading (SMT) set this to 1. If unset, the maximum number of threads
289
295
  # supported per core by the underlying processor is assumed.
@@ -297,6 +303,7 @@ module Google
297
303
 
298
304
  # Update properties of this object
299
305
  def update!(**args)
306
+ @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
300
307
  @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
301
308
  end
302
309
  end
@@ -755,6 +762,34 @@ module Google
755
762
  end
756
763
  end
757
764
 
765
+ # CertificateAuthorityDomainConfig configures one or more fully qualified domain
766
+ # names (FQDN) to a specific certificate.
767
+ class CertificateAuthorityDomainConfig
768
+ include Google::Apis::Core::Hashable
769
+
770
+ # List of fully qualified domain names (FQDN). Specifying port is supported.
771
+ # Wilcards are NOT supported. Examples: - my.customdomain.com - 10.0.1.2:5000
772
+ # Corresponds to the JSON property `fqdns`
773
+ # @return [Array<String>]
774
+ attr_accessor :fqdns
775
+
776
+ # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
777
+ # Manager](https://cloud.google.com/secret-manager).
778
+ # Corresponds to the JSON property `gcpSecretManagerCertificateConfig`
779
+ # @return [Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig]
780
+ attr_accessor :gcp_secret_manager_certificate_config
781
+
782
+ def initialize(**args)
783
+ update!(**args)
784
+ end
785
+
786
+ # Update properties of this object
787
+ def update!(**args)
788
+ @fqdns = args[:fqdns] if args.key?(:fqdns)
789
+ @gcp_secret_manager_certificate_config = args[:gcp_secret_manager_certificate_config] if args.key?(:gcp_secret_manager_certificate_config)
790
+ end
791
+ end
792
+
758
793
  # CheckAutopilotCompatibilityResponse has a list of compatibility issues.
759
794
  class CheckAutopilotCompatibilityResponse
760
795
  include Google::Apis::Core::Hashable
@@ -1478,6 +1513,11 @@ module Google
1478
1513
  # @return [Google::Apis::ContainerV1::ClusterAutoscaling]
1479
1514
  attr_accessor :desired_cluster_autoscaling
1480
1515
 
1516
+ # ContainerdConfig contains configuration to customize containerd.
1517
+ # Corresponds to the JSON property `desiredContainerdConfig`
1518
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
1519
+ attr_accessor :desired_containerd_config
1520
+
1481
1521
  # Configuration for fine-grained cost management feature.
1482
1522
  # Corresponds to the JSON property `desiredCostManagementConfig`
1483
1523
  # @return [Google::Apis::ContainerV1::CostManagementConfig]
@@ -1792,6 +1832,7 @@ module Google
1792
1832
  @desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
1793
1833
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1794
1834
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1835
+ @desired_containerd_config = args[:desired_containerd_config] if args.key?(:desired_containerd_config)
1795
1836
  @desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
1796
1837
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
1797
1838
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
@@ -1962,6 +2003,26 @@ module Google
1962
2003
  end
1963
2004
  end
1964
2005
 
2006
+ # ContainerdConfig contains configuration to customize containerd.
2007
+ class ContainerdConfig
2008
+ include Google::Apis::Core::Hashable
2009
+
2010
+ # PrivateRegistryAccessConfig contains access configuration for private
2011
+ # container registries.
2012
+ # Corresponds to the JSON property `privateRegistryAccessConfig`
2013
+ # @return [Google::Apis::ContainerV1::PrivateRegistryAccessConfig]
2014
+ attr_accessor :private_registry_access_config
2015
+
2016
+ def initialize(**args)
2017
+ update!(**args)
2018
+ end
2019
+
2020
+ # Update properties of this object
2021
+ def update!(**args)
2022
+ @private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
2023
+ end
2024
+ end
2025
+
1965
2026
  # Configuration for fine-grained cost management feature.
1966
2027
  class CostManagementConfig
1967
2028
  include Google::Apis::Core::Hashable
@@ -2082,6 +2143,11 @@ module Google
2082
2143
  class DnsConfig
2083
2144
  include Google::Apis::Core::Hashable
2084
2145
 
2146
+ # Optional. The domain used in Additive VPC scope.
2147
+ # Corresponds to the JSON property `additiveVpcScopeDnsDomain`
2148
+ # @return [String]
2149
+ attr_accessor :additive_vpc_scope_dns_domain
2150
+
2085
2151
  # cluster_dns indicates which in-cluster DNS provider should be used.
2086
2152
  # Corresponds to the JSON property `clusterDns`
2087
2153
  # @return [String]
@@ -2103,6 +2169,7 @@ module Google
2103
2169
 
2104
2170
  # Update properties of this object
2105
2171
  def update!(**args)
2172
+ @additive_vpc_scope_dns_domain = args[:additive_vpc_scope_dns_domain] if args.key?(:additive_vpc_scope_dns_domain)
2106
2173
  @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
2107
2174
  @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
2108
2175
  @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
@@ -2369,6 +2436,27 @@ module Google
2369
2436
  end
2370
2437
  end
2371
2438
 
2439
+ # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
2440
+ # Manager](https://cloud.google.com/secret-manager).
2441
+ class GcpSecretManagerCertificateConfig
2442
+ include Google::Apis::Core::Hashable
2443
+
2444
+ # Secret URI, in the form "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$
2445
+ # VERSION". Version can be fixed (e.g. "2") or "latest"
2446
+ # Corresponds to the JSON property `secretUri`
2447
+ # @return [String]
2448
+ attr_accessor :secret_uri
2449
+
2450
+ def initialize(**args)
2451
+ update!(**args)
2452
+ end
2453
+
2454
+ # Update properties of this object
2455
+ def update!(**args)
2456
+ @secret_uri = args[:secret_uri] if args.key?(:secret_uri)
2457
+ end
2458
+ end
2459
+
2372
2460
  # GPUDriverInstallationConfig specifies the version of GPU driver to be auto
2373
2461
  # installed.
2374
2462
  class GpuDriverInstallationConfig
@@ -2698,6 +2786,31 @@ module Google
2698
2786
  end
2699
2787
  end
2700
2788
 
2789
+ # Hugepages amount in both 2m and 1g size
2790
+ class HugepagesConfig
2791
+ include Google::Apis::Core::Hashable
2792
+
2793
+ # Optional. Amount of 1G hugepages
2794
+ # Corresponds to the JSON property `hugepageSize1g`
2795
+ # @return [Fixnum]
2796
+ attr_accessor :hugepage_size1g
2797
+
2798
+ # Optional. Amount of 2M hugepages
2799
+ # Corresponds to the JSON property `hugepageSize2m`
2800
+ # @return [Fixnum]
2801
+ attr_accessor :hugepage_size2m
2802
+
2803
+ def initialize(**args)
2804
+ update!(**args)
2805
+ end
2806
+
2807
+ # Update properties of this object
2808
+ def update!(**args)
2809
+ @hugepage_size1g = args[:hugepage_size1g] if args.key?(:hugepage_size1g)
2810
+ @hugepage_size2m = args[:hugepage_size2m] if args.key?(:hugepage_size2m)
2811
+ end
2812
+ end
2813
+
2701
2814
  # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
2702
2815
  # subsetting on this cluster.
2703
2816
  class IlbSubsettingConfig
@@ -3079,6 +3192,11 @@ module Google
3079
3192
  # @return [String]
3080
3193
  attr_accessor :cgroup_mode
3081
3194
 
3195
+ # Hugepages amount in both 2m and 1g size
3196
+ # Corresponds to the JSON property `hugepages`
3197
+ # @return [Google::Apis::ContainerV1::HugepagesConfig]
3198
+ attr_accessor :hugepages
3199
+
3082
3200
  # The Linux kernel parameters to be applied to the nodes and all pods running on
3083
3201
  # the nodes. The following parameters are supported. net.core.busy_poll net.core.
3084
3202
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
@@ -3095,6 +3213,7 @@ module Google
3095
3213
  # Update properties of this object
3096
3214
  def update!(**args)
3097
3215
  @cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
3216
+ @hugepages = args[:hugepages] if args.key?(:hugepages)
3098
3217
  @sysctls = args[:sysctls] if args.key?(:sysctls)
3099
3218
  end
3100
3219
  end
@@ -3679,7 +3798,8 @@ module Google
3679
3798
  # @return [Google::Apis::ContainerV1::GatewayApiConfig]
3680
3799
  attr_accessor :gateway_api_config
3681
3800
 
3682
- # Specify the details of in-transit encryption.
3801
+ # Specify the details of in-transit encryption. Now named inter-node transparent
3802
+ # encryption.
3683
3803
  # Corresponds to the JSON property `inTransitEncryptionConfig`
3684
3804
  # @return [String]
3685
3805
  attr_accessor :in_transit_encryption_config
@@ -3891,6 +4011,11 @@ module Google
3891
4011
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
3892
4012
  attr_accessor :confidential_nodes
3893
4013
 
4014
+ # ContainerdConfig contains configuration to customize containerd.
4015
+ # Corresponds to the JSON property `containerdConfig`
4016
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
4017
+ attr_accessor :containerd_config
4018
+
3894
4019
  # Size of the disk attached to each node, specified in GB. The smallest allowed
3895
4020
  # disk size is 10GB. If unspecified, the default disk size is 100GB.
3896
4021
  # Corresponds to the JSON property `diskSizeGb`
@@ -4142,6 +4267,7 @@ module Google
4142
4267
  @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
4143
4268
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
4144
4269
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
4270
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4145
4271
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
4146
4272
  @disk_type = args[:disk_type] if args.key?(:disk_type)
4147
4273
  @enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
@@ -4183,6 +4309,11 @@ module Google
4183
4309
  class NodeConfigDefaults
4184
4310
  include Google::Apis::Core::Hashable
4185
4311
 
4312
+ # ContainerdConfig contains configuration to customize containerd.
4313
+ # Corresponds to the JSON property `containerdConfig`
4314
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
4315
+ attr_accessor :containerd_config
4316
+
4186
4317
  # GcfsConfig contains configurations of Google Container File System (image
4187
4318
  # streaming).
4188
4319
  # Corresponds to the JSON property `gcfsConfig`
@@ -4200,6 +4331,7 @@ module Google
4200
4331
 
4201
4332
  # Update properties of this object
4202
4333
  def update!(**args)
4334
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4203
4335
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4204
4336
  @logging_config = args[:logging_config] if args.key?(:logging_config)
4205
4337
  end
@@ -5189,6 +5321,33 @@ module Google
5189
5321
  end
5190
5322
  end
5191
5323
 
5324
+ # PrivateRegistryAccessConfig contains access configuration for private
5325
+ # container registries.
5326
+ class PrivateRegistryAccessConfig
5327
+ include Google::Apis::Core::Hashable
5328
+
5329
+ # Private registry access configuration.
5330
+ # Corresponds to the JSON property `certificateAuthorityDomainConfig`
5331
+ # @return [Array<Google::Apis::ContainerV1::CertificateAuthorityDomainConfig>]
5332
+ attr_accessor :certificate_authority_domain_config
5333
+
5334
+ # Private registry access is enabled.
5335
+ # Corresponds to the JSON property `enabled`
5336
+ # @return [Boolean]
5337
+ attr_accessor :enabled
5338
+ alias_method :enabled?, :enabled
5339
+
5340
+ def initialize(**args)
5341
+ update!(**args)
5342
+ end
5343
+
5344
+ # Update properties of this object
5345
+ def update!(**args)
5346
+ @certificate_authority_domain_config = args[:certificate_authority_domain_config] if args.key?(:certificate_authority_domain_config)
5347
+ @enabled = args[:enabled] if args.key?(:enabled)
5348
+ end
5349
+ end
5350
+
5192
5351
  # Pub/Sub specific notification config.
5193
5352
  class PubSub
5194
5353
  include Google::Apis::Core::Hashable
@@ -6866,6 +7025,12 @@ module Google
6866
7025
  class UpdateNodePoolRequest
6867
7026
  include Google::Apis::Core::Hashable
6868
7027
 
7028
+ # A list of hardware accelerators to be attached to each node. See https://cloud.
7029
+ # google.com/compute/docs/gpus for more information about support for GPUs.
7030
+ # Corresponds to the JSON property `accelerators`
7031
+ # @return [Array<Google::Apis::ContainerV1::AcceleratorConfig>]
7032
+ attr_accessor :accelerators
7033
+
6869
7034
  # Deprecated. The name of the cluster to upgrade. This field has been deprecated
6870
7035
  # and replaced by the name field.
6871
7036
  # Corresponds to the JSON property `clusterId`
@@ -6878,6 +7043,11 @@ module Google
6878
7043
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
6879
7044
  attr_accessor :confidential_nodes
6880
7045
 
7046
+ # ContainerdConfig contains configuration to customize containerd.
7047
+ # Corresponds to the JSON property `containerdConfig`
7048
+ # @return [Google::Apis::ContainerV1::ContainerdConfig]
7049
+ attr_accessor :containerd_config
7050
+
6881
7051
  # Optional. The desired disk size for nodes in the node pool specified in GB.
6882
7052
  # The smallest allowed disk size is 10GB. Initiates an upgrade operation that
6883
7053
  # migrates the nodes in the node pool to the specified disk size.
@@ -7088,8 +7258,10 @@ module Google
7088
7258
 
7089
7259
  # Update properties of this object
7090
7260
  def update!(**args)
7261
+ @accelerators = args[:accelerators] if args.key?(:accelerators)
7091
7262
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
7092
7263
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
7264
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
7093
7265
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
7094
7266
  @disk_type = args[:disk_type] if args.key?(:disk_type)
7095
7267
  @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.71.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 = "20240409"
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
 
@@ -1118,6 +1148,7 @@ module Google
1118
1148
  class AdvancedMachineFeatures
1119
1149
  # @private
1120
1150
  class Representation < Google::Apis::Core::JsonRepresentation
1151
+ property :enable_nested_virtualization, as: 'enableNestedVirtualization'
1121
1152
  property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
1122
1153
  end
1123
1154
  end
@@ -1232,6 +1263,15 @@ module Google
1232
1263
  end
1233
1264
  end
1234
1265
 
1266
+ class CertificateAuthorityDomainConfig
1267
+ # @private
1268
+ class Representation < Google::Apis::Core::JsonRepresentation
1269
+ collection :fqdns, as: 'fqdns'
1270
+ property :gcp_secret_manager_certificate_config, as: 'gcpSecretManagerCertificateConfig', class: Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig, decorator: Google::Apis::ContainerV1::GcpSecretManagerCertificateConfig::Representation
1271
+
1272
+ end
1273
+ end
1274
+
1235
1275
  class CheckAutopilotCompatibilityResponse
1236
1276
  # @private
1237
1277
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1410,6 +1450,8 @@ module Google
1410
1450
 
1411
1451
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1::ClusterAutoscaling::Representation
1412
1452
 
1453
+ property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
1454
+
1413
1455
  property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
1414
1456
 
1415
1457
  property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1::DatabaseEncryption, decorator: Google::Apis::ContainerV1::DatabaseEncryption::Representation
@@ -1530,6 +1572,14 @@ module Google
1530
1572
  end
1531
1573
  end
1532
1574
 
1575
+ class ContainerdConfig
1576
+ # @private
1577
+ class Representation < Google::Apis::Core::JsonRepresentation
1578
+ property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1::PrivateRegistryAccessConfig::Representation
1579
+
1580
+ end
1581
+ end
1582
+
1533
1583
  class CostManagementConfig
1534
1584
  # @private
1535
1585
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1563,6 +1613,7 @@ module Google
1563
1613
  class DnsConfig
1564
1614
  # @private
1565
1615
  class Representation < Google::Apis::Core::JsonRepresentation
1616
+ property :additive_vpc_scope_dns_domain, as: 'additiveVpcScopeDnsDomain'
1566
1617
  property :cluster_dns, as: 'clusterDns'
1567
1618
  property :cluster_dns_domain, as: 'clusterDnsDomain'
1568
1619
  property :cluster_dns_scope, as: 'clusterDnsScope'
@@ -1646,6 +1697,13 @@ module Google
1646
1697
  end
1647
1698
  end
1648
1699
 
1700
+ class GcpSecretManagerCertificateConfig
1701
+ # @private
1702
+ class Representation < Google::Apis::Core::JsonRepresentation
1703
+ property :secret_uri, as: 'secretUri'
1704
+ end
1705
+ end
1706
+
1649
1707
  class GpuDriverInstallationConfig
1650
1708
  # @private
1651
1709
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1751,6 +1809,14 @@ module Google
1751
1809
  end
1752
1810
  end
1753
1811
 
1812
+ class HugepagesConfig
1813
+ # @private
1814
+ class Representation < Google::Apis::Core::JsonRepresentation
1815
+ property :hugepage_size1g, as: 'hugepageSize1g'
1816
+ property :hugepage_size2m, as: 'hugepageSize2m'
1817
+ end
1818
+ end
1819
+
1754
1820
  class IlbSubsettingConfig
1755
1821
  # @private
1756
1822
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1840,6 +1906,8 @@ module Google
1840
1906
  # @private
1841
1907
  class Representation < Google::Apis::Core::JsonRepresentation
1842
1908
  property :cgroup_mode, as: 'cgroupMode'
1909
+ property :hugepages, as: 'hugepages', class: Google::Apis::ContainerV1::HugepagesConfig, decorator: Google::Apis::ContainerV1::HugepagesConfig::Representation
1910
+
1843
1911
  hash :sysctls, as: 'sysctls'
1844
1912
  end
1845
1913
  end
@@ -2083,6 +2151,8 @@ module Google
2083
2151
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
2084
2152
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2085
2153
 
2154
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2155
+
2086
2156
  property :disk_size_gb, as: 'diskSizeGb'
2087
2157
  property :disk_type, as: 'diskType'
2088
2158
  property :enable_confidential_storage, as: 'enableConfidentialStorage'
@@ -2141,6 +2211,8 @@ module Google
2141
2211
  class NodeConfigDefaults
2142
2212
  # @private
2143
2213
  class Representation < Google::Apis::Core::JsonRepresentation
2214
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2215
+
2144
2216
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
2145
2217
 
2146
2218
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
@@ -2389,6 +2461,15 @@ module Google
2389
2461
  end
2390
2462
  end
2391
2463
 
2464
+ class PrivateRegistryAccessConfig
2465
+ # @private
2466
+ class Representation < Google::Apis::Core::JsonRepresentation
2467
+ collection :certificate_authority_domain_config, as: 'certificateAuthorityDomainConfig', class: Google::Apis::ContainerV1::CertificateAuthorityDomainConfig, decorator: Google::Apis::ContainerV1::CertificateAuthorityDomainConfig::Representation
2468
+
2469
+ property :enabled, as: 'enabled'
2470
+ end
2471
+ end
2472
+
2392
2473
  class PubSub
2393
2474
  # @private
2394
2475
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2814,9 +2895,13 @@ module Google
2814
2895
  class UpdateNodePoolRequest
2815
2896
  # @private
2816
2897
  class Representation < Google::Apis::Core::JsonRepresentation
2898
+ collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1::AcceleratorConfig, decorator: Google::Apis::ContainerV1::AcceleratorConfig::Representation
2899
+
2817
2900
  property :cluster_id, as: 'clusterId'
2818
2901
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2819
2902
 
2903
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
2904
+
2820
2905
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
2821
2906
  property :disk_type, as: 'diskType'
2822
2907
  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.71.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-28 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.71.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: []