google-apis-container_v1beta1 0.71.0 → 0.73.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: 12494f7c31163cfec1f5d5373c0da73b1a7a2489212234018039c028b2d6a1fe
4
- data.tar.gz: b33beac820c20ece16cbf58b38c84a5b607262c8db352738fa87b3f30bf8f2b0
3
+ metadata.gz: 5e922c697c3b189f12a34253e7d10bd4383863ca01f2cc27b67f055e304b7cc4
4
+ data.tar.gz: abf40090ddb1377a4947438c64dcb486557da94111e1d72df81563d054cac76d
5
5
  SHA512:
6
- metadata.gz: 9b7329f8470699126eb2cd3680ad4d1be90f7459bc3f3009948b93777b9b42c24a6788e64cf344112652ea74d537f0fb3f49362df5b2d2354c2fbda84b846499
7
- data.tar.gz: c0c0193896936611dcf52bbb9a2d0e3535354f090ce15a799768cdbbf7bd9554ba3ee0e88d870bec6b69403e2a0e3993342ca6c00d028a961d3285fa49e8d978
6
+ metadata.gz: 2891d371885dfb8449ee00e140e9a153e4ccf39bd173a902f30c759bbb161cf5eb0aec09b9a218f5187f9c629c37d50d1dc9493757e233f701df7c021237bf91
7
+ data.tar.gz: c59e9cb92ba440491f1f4beb2f5734e82ff807ba75ad93c295e67434ebd941d279e1c2c14805c9e7de4ca0b6ff3f21e57ba81384b53c2dd14078e27bc09db867
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.73.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240409
6
+
7
+ ### v0.72.0 (2024-04-14)
8
+
9
+ * Regenerated from discovery document revision 20240327
10
+
3
11
  ### v0.71.0 (2024-03-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240313
@@ -302,6 +302,12 @@ module Google
302
302
  class AdvancedMachineFeatures
303
303
  include Google::Apis::Core::Hashable
304
304
 
305
+ # Whether or not to enable nested virtualization (defaults to false).
306
+ # Corresponds to the JSON property `enableNestedVirtualization`
307
+ # @return [Boolean]
308
+ attr_accessor :enable_nested_virtualization
309
+ alias_method :enable_nested_virtualization?, :enable_nested_virtualization
310
+
305
311
  # The number of threads per physical core. To disable simultaneous
306
312
  # multithreading (SMT) set this to 1. If unset, the maximum number of threads
307
313
  # supported per core by the underlying processor is assumed.
@@ -315,6 +321,7 @@ module Google
315
321
 
316
322
  # Update properties of this object
317
323
  def update!(**args)
324
+ @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
318
325
  @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
319
326
  end
320
327
  end
@@ -860,6 +867,34 @@ module Google
860
867
  end
861
868
  end
862
869
 
870
+ # CertificateAuthorityDomainConfig configures one or more fully qualified domain
871
+ # names (FQDN) to a specific certificate.
872
+ class CertificateAuthorityDomainConfig
873
+ include Google::Apis::Core::Hashable
874
+
875
+ # List of fully qualified domain names (FQDN). Specifying port is supported.
876
+ # Wilcards are NOT supported. Examples: - my.customdomain.com - 10.0.1.2:5000
877
+ # Corresponds to the JSON property `fqdns`
878
+ # @return [Array<String>]
879
+ attr_accessor :fqdns
880
+
881
+ # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
882
+ # Manager](https://cloud.google.com/secret-manager).
883
+ # Corresponds to the JSON property `gcpSecretManagerCertificateConfig`
884
+ # @return [Google::Apis::ContainerV1beta1::GcpSecretManagerCertificateConfig]
885
+ attr_accessor :gcp_secret_manager_certificate_config
886
+
887
+ def initialize(**args)
888
+ update!(**args)
889
+ end
890
+
891
+ # Update properties of this object
892
+ def update!(**args)
893
+ @fqdns = args[:fqdns] if args.key?(:fqdns)
894
+ @gcp_secret_manager_certificate_config = args[:gcp_secret_manager_certificate_config] if args.key?(:gcp_secret_manager_certificate_config)
895
+ end
896
+ end
897
+
863
898
  # CheckAutopilotCompatibilityResponse has a list of compatibility issues.
864
899
  class CheckAutopilotCompatibilityResponse
865
900
  include Google::Apis::Core::Hashable
@@ -1001,6 +1036,12 @@ module Google
1001
1036
  # @return [Google::Apis::ContainerV1beta1::ClusterTelemetry]
1002
1037
  attr_accessor :cluster_telemetry
1003
1038
 
1039
+ # CompliancePostureConfig defines the settings needed to enable/disable features
1040
+ # for the Compliance Posture.
1041
+ # Corresponds to the JSON property `compliancePostureConfig`
1042
+ # @return [Google::Apis::ContainerV1beta1::CompliancePostureConfig]
1043
+ attr_accessor :compliance_posture_config
1044
+
1004
1045
  # Which conditions caused the current cluster state.
1005
1046
  # Corresponds to the JSON property `conditions`
1006
1047
  # @return [Array<Google::Apis::ContainerV1beta1::StatusCondition>]
@@ -1472,6 +1513,7 @@ module Google
1472
1513
  @binary_authorization = args[:binary_authorization] if args.key?(:binary_authorization)
1473
1514
  @cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
1474
1515
  @cluster_telemetry = args[:cluster_telemetry] if args.key?(:cluster_telemetry)
1516
+ @compliance_posture_config = args[:compliance_posture_config] if args.key?(:compliance_posture_config)
1475
1517
  @conditions = args[:conditions] if args.key?(:conditions)
1476
1518
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
1477
1519
  @cost_management_config = args[:cost_management_config] if args.key?(:cost_management_config)
@@ -1678,6 +1720,11 @@ module Google
1678
1720
  # @return [Google::Apis::ContainerV1beta1::ClusterTelemetry]
1679
1721
  attr_accessor :desired_cluster_telemetry
1680
1722
 
1723
+ # ContainerdConfig contains configuration to customize containerd.
1724
+ # Corresponds to the JSON property `desiredContainerdConfig`
1725
+ # @return [Google::Apis::ContainerV1beta1::ContainerdConfig]
1726
+ attr_accessor :desired_containerd_config
1727
+
1681
1728
  # Configuration for fine-grained cost management feature.
1682
1729
  # Corresponds to the JSON property `desiredCostManagementConfig`
1683
1730
  # @return [Google::Apis::ContainerV1beta1::CostManagementConfig]
@@ -1761,7 +1808,8 @@ module Google
1761
1808
  # @return [String]
1762
1809
  attr_accessor :desired_image_type
1763
1810
 
1764
- # Specify the details of in-transit encryption.
1811
+ # Specify the details of in-transit encryption. Now named inter-node transparent
1812
+ # encryption.
1765
1813
  # Corresponds to the JSON property `desiredInTransitEncryptionConfig`
1766
1814
  # @return [String]
1767
1815
  attr_accessor :desired_in_transit_encryption_config
@@ -2017,6 +2065,11 @@ module Google
2017
2065
  # @return [String]
2018
2066
  attr_accessor :etag
2019
2067
 
2068
+ # Configuration options for private clusters.
2069
+ # Corresponds to the JSON property `privateClusterConfig`
2070
+ # @return [Google::Apis::ContainerV1beta1::PrivateClusterConfig]
2071
+ attr_accessor :private_cluster_config
2072
+
2020
2073
  # AdditionalPodRangesConfig is the configuration for additional pod secondary
2021
2074
  # ranges supporting the ClusterUpdate message.
2022
2075
  # Corresponds to the JSON property `removedAdditionalPodRangesConfig`
@@ -2036,6 +2089,7 @@ module Google
2036
2089
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
2037
2090
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
2038
2091
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
2092
+ @desired_containerd_config = args[:desired_containerd_config] if args.key?(:desired_containerd_config)
2039
2093
  @desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
2040
2094
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
2041
2095
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
@@ -2091,6 +2145,7 @@ module Google
2091
2145
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
2092
2146
  @enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
2093
2147
  @etag = args[:etag] if args.key?(:etag)
2148
+ @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
2094
2149
  @removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
2095
2150
  end
2096
2151
  end
@@ -2152,6 +2207,51 @@ module Google
2152
2207
  end
2153
2208
  end
2154
2209
 
2210
+ # CompliancePostureConfig defines the settings needed to enable/disable features
2211
+ # for the Compliance Posture.
2212
+ class CompliancePostureConfig
2213
+ include Google::Apis::Core::Hashable
2214
+
2215
+ # List of enabled compliance standards.
2216
+ # Corresponds to the JSON property `complianceStandards`
2217
+ # @return [Array<Google::Apis::ContainerV1beta1::ComplianceStandard>]
2218
+ attr_accessor :compliance_standards
2219
+
2220
+ # Defines the enablement mode for Compliance Posture.
2221
+ # Corresponds to the JSON property `mode`
2222
+ # @return [String]
2223
+ attr_accessor :mode
2224
+
2225
+ def initialize(**args)
2226
+ update!(**args)
2227
+ end
2228
+
2229
+ # Update properties of this object
2230
+ def update!(**args)
2231
+ @compliance_standards = args[:compliance_standards] if args.key?(:compliance_standards)
2232
+ @mode = args[:mode] if args.key?(:mode)
2233
+ end
2234
+ end
2235
+
2236
+ # Defines the details of a compliance standard.
2237
+ class ComplianceStandard
2238
+ include Google::Apis::Core::Hashable
2239
+
2240
+ # Name of the compliance standard.
2241
+ # Corresponds to the JSON property `standard`
2242
+ # @return [String]
2243
+ attr_accessor :standard
2244
+
2245
+ def initialize(**args)
2246
+ update!(**args)
2247
+ end
2248
+
2249
+ # Update properties of this object
2250
+ def update!(**args)
2251
+ @standard = args[:standard] if args.key?(:standard)
2252
+ end
2253
+ end
2254
+
2155
2255
  # ConfidentialNodes is configuration for the confidential nodes feature, which
2156
2256
  # makes nodes run on confidential VMs.
2157
2257
  class ConfidentialNodes
@@ -2214,6 +2314,26 @@ module Google
2214
2314
  end
2215
2315
  end
2216
2316
 
2317
+ # ContainerdConfig contains configuration to customize containerd.
2318
+ class ContainerdConfig
2319
+ include Google::Apis::Core::Hashable
2320
+
2321
+ # PrivateRegistryAccessConfig contains access configuration for private
2322
+ # container registries.
2323
+ # Corresponds to the JSON property `privateRegistryAccessConfig`
2324
+ # @return [Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig]
2325
+ attr_accessor :private_registry_access_config
2326
+
2327
+ def initialize(**args)
2328
+ update!(**args)
2329
+ end
2330
+
2331
+ # Update properties of this object
2332
+ def update!(**args)
2333
+ @private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
2334
+ end
2335
+ end
2336
+
2217
2337
  # Configuration for fine-grained cost management feature.
2218
2338
  class CostManagementConfig
2219
2339
  include Google::Apis::Core::Hashable
@@ -2334,6 +2454,11 @@ module Google
2334
2454
  class DnsConfig
2335
2455
  include Google::Apis::Core::Hashable
2336
2456
 
2457
+ # Optional. The domain used in Additive VPC scope.
2458
+ # Corresponds to the JSON property `additiveVpcScopeDnsDomain`
2459
+ # @return [String]
2460
+ attr_accessor :additive_vpc_scope_dns_domain
2461
+
2337
2462
  # cluster_dns indicates which in-cluster DNS provider should be used.
2338
2463
  # Corresponds to the JSON property `clusterDns`
2339
2464
  # @return [String]
@@ -2355,6 +2480,7 @@ module Google
2355
2480
 
2356
2481
  # Update properties of this object
2357
2482
  def update!(**args)
2483
+ @additive_vpc_scope_dns_domain = args[:additive_vpc_scope_dns_domain] if args.key?(:additive_vpc_scope_dns_domain)
2358
2484
  @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
2359
2485
  @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
2360
2486
  @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
@@ -2691,6 +2817,27 @@ module Google
2691
2817
  end
2692
2818
  end
2693
2819
 
2820
+ # GCPSecretManagerCertificateConfig configures a secret from [Google Secret
2821
+ # Manager](https://cloud.google.com/secret-manager).
2822
+ class GcpSecretManagerCertificateConfig
2823
+ include Google::Apis::Core::Hashable
2824
+
2825
+ # Secret URI, in the form "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$
2826
+ # VERSION". Version can be fixed (e.g. "2") or "latest"
2827
+ # Corresponds to the JSON property `secretUri`
2828
+ # @return [String]
2829
+ attr_accessor :secret_uri
2830
+
2831
+ def initialize(**args)
2832
+ update!(**args)
2833
+ end
2834
+
2835
+ # Update properties of this object
2836
+ def update!(**args)
2837
+ @secret_uri = args[:secret_uri] if args.key?(:secret_uri)
2838
+ end
2839
+ end
2840
+
2694
2841
  # GPUDriverInstallationConfig specifies the version of GPU driver to be auto
2695
2842
  # installed.
2696
2843
  class GpuDriverInstallationConfig
@@ -3045,6 +3192,31 @@ module Google
3045
3192
  end
3046
3193
  end
3047
3194
 
3195
+ # Hugepages amount in both 2m and 1g size
3196
+ class HugepagesConfig
3197
+ include Google::Apis::Core::Hashable
3198
+
3199
+ # Optional. Amount of 1G hugepages
3200
+ # Corresponds to the JSON property `hugepageSize1g`
3201
+ # @return [Fixnum]
3202
+ attr_accessor :hugepage_size1g
3203
+
3204
+ # Optional. Amount of 2M hugepages
3205
+ # Corresponds to the JSON property `hugepageSize2m`
3206
+ # @return [Fixnum]
3207
+ attr_accessor :hugepage_size2m
3208
+
3209
+ def initialize(**args)
3210
+ update!(**args)
3211
+ end
3212
+
3213
+ # Update properties of this object
3214
+ def update!(**args)
3215
+ @hugepage_size1g = args[:hugepage_size1g] if args.key?(:hugepage_size1g)
3216
+ @hugepage_size2m = args[:hugepage_size2m] if args.key?(:hugepage_size2m)
3217
+ end
3218
+ end
3219
+
3048
3220
  # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
3049
3221
  # subsetting on this cluster.
3050
3222
  class IlbSubsettingConfig
@@ -3488,6 +3660,11 @@ module Google
3488
3660
  # @return [String]
3489
3661
  attr_accessor :cgroup_mode
3490
3662
 
3663
+ # Hugepages amount in both 2m and 1g size
3664
+ # Corresponds to the JSON property `hugepages`
3665
+ # @return [Google::Apis::ContainerV1beta1::HugepagesConfig]
3666
+ attr_accessor :hugepages
3667
+
3491
3668
  # The Linux kernel parameters to be applied to the nodes and all pods running on
3492
3669
  # the nodes. The following parameters are supported. net.core.busy_poll net.core.
3493
3670
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
@@ -3504,6 +3681,7 @@ module Google
3504
3681
  # Update properties of this object
3505
3682
  def update!(**args)
3506
3683
  @cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
3684
+ @hugepages = args[:hugepages] if args.key?(:hugepages)
3507
3685
  @sysctls = args[:sysctls] if args.key?(:sysctls)
3508
3686
  end
3509
3687
  end
@@ -4383,6 +4561,11 @@ module Google
4383
4561
  # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
4384
4562
  attr_accessor :confidential_nodes
4385
4563
 
4564
+ # ContainerdConfig contains configuration to customize containerd.
4565
+ # Corresponds to the JSON property `containerdConfig`
4566
+ # @return [Google::Apis::ContainerV1beta1::ContainerdConfig]
4567
+ attr_accessor :containerd_config
4568
+
4386
4569
  # Size of the disk attached to each node, specified in GB. The smallest allowed
4387
4570
  # disk size is 10GB. If unspecified, the default disk size is 100GB.
4388
4571
  # Corresponds to the JSON property `diskSizeGb`
@@ -4645,6 +4828,7 @@ module Google
4645
4828
  @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
4646
4829
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
4647
4830
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
4831
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4648
4832
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
4649
4833
  @disk_type = args[:disk_type] if args.key?(:disk_type)
4650
4834
  @enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
@@ -4688,6 +4872,11 @@ module Google
4688
4872
  class NodeConfigDefaults
4689
4873
  include Google::Apis::Core::Hashable
4690
4874
 
4875
+ # ContainerdConfig contains configuration to customize containerd.
4876
+ # Corresponds to the JSON property `containerdConfig`
4877
+ # @return [Google::Apis::ContainerV1beta1::ContainerdConfig]
4878
+ attr_accessor :containerd_config
4879
+
4691
4880
  # GcfsConfig contains configurations of Google Container File System.
4692
4881
  # Corresponds to the JSON property `gcfsConfig`
4693
4882
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -4710,6 +4899,7 @@ module Google
4710
4899
 
4711
4900
  # Update properties of this object
4712
4901
  def update!(**args)
4902
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
4713
4903
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4714
4904
  @host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
4715
4905
  @logging_config = args[:logging_config] if args.key?(:logging_config)
@@ -5669,7 +5859,7 @@ module Google
5669
5859
  class PolicyBinding
5670
5860
  include Google::Apis::Core::Hashable
5671
5861
 
5672
- # The relative resource name of the binauthz platform policy to audit. GKE
5862
+ # The relative resource name of the binauthz platform policy to evaluate. GKE
5673
5863
  # platform policies have the following format: `projects/`project_number`/
5674
5864
  # platforms/gke/policies/`policy_id``.
5675
5865
  # Corresponds to the JSON property `name`
@@ -5775,6 +5965,33 @@ module Google
5775
5965
  end
5776
5966
  end
5777
5967
 
5968
+ # PrivateRegistryAccessConfig contains access configuration for private
5969
+ # container registries.
5970
+ class PrivateRegistryAccessConfig
5971
+ include Google::Apis::Core::Hashable
5972
+
5973
+ # Private registry access configuration.
5974
+ # Corresponds to the JSON property `certificateAuthorityDomainConfig`
5975
+ # @return [Array<Google::Apis::ContainerV1beta1::CertificateAuthorityDomainConfig>]
5976
+ attr_accessor :certificate_authority_domain_config
5977
+
5978
+ # Private registry access is enabled.
5979
+ # Corresponds to the JSON property `enabled`
5980
+ # @return [Boolean]
5981
+ attr_accessor :enabled
5982
+ alias_method :enabled?, :enabled
5983
+
5984
+ def initialize(**args)
5985
+ update!(**args)
5986
+ end
5987
+
5988
+ # Update properties of this object
5989
+ def update!(**args)
5990
+ @certificate_authority_domain_config = args[:certificate_authority_domain_config] if args.key?(:certificate_authority_domain_config)
5991
+ @enabled = args[:enabled] if args.key?(:enabled)
5992
+ end
5993
+ end
5994
+
5778
5995
  # ProtectConfig defines the flags needed to enable/disable features for the
5779
5996
  # Protect API.
5780
5997
  class ProtectConfig
@@ -7551,6 +7768,12 @@ module Google
7551
7768
  class UpdateNodePoolRequest
7552
7769
  include Google::Apis::Core::Hashable
7553
7770
 
7771
+ # A list of hardware accelerators to be attached to each node. See https://cloud.
7772
+ # google.com/compute/docs/gpus for more information about support for GPUs.
7773
+ # Corresponds to the JSON property `accelerators`
7774
+ # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
7775
+ attr_accessor :accelerators
7776
+
7554
7777
  # Required. Deprecated. The name of the cluster to upgrade. This field has been
7555
7778
  # deprecated and replaced by the name field.
7556
7779
  # Corresponds to the JSON property `clusterId`
@@ -7563,6 +7786,11 @@ module Google
7563
7786
  # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
7564
7787
  attr_accessor :confidential_nodes
7565
7788
 
7789
+ # ContainerdConfig contains configuration to customize containerd.
7790
+ # Corresponds to the JSON property `containerdConfig`
7791
+ # @return [Google::Apis::ContainerV1beta1::ContainerdConfig]
7792
+ attr_accessor :containerd_config
7793
+
7566
7794
  # Optional. The desired disk size for nodes in the node pool. Initiates an
7567
7795
  # upgrade operation that migrates the nodes in the node pool to the specified
7568
7796
  # disk size.
@@ -7772,8 +8000,10 @@ module Google
7772
8000
 
7773
8001
  # Update properties of this object
7774
8002
  def update!(**args)
8003
+ @accelerators = args[:accelerators] if args.key?(:accelerators)
7775
8004
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
7776
8005
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
8006
+ @containerd_config = args[:containerd_config] if args.key?(:containerd_config)
7777
8007
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
7778
8008
  @disk_type = args[:disk_type] if args.key?(:disk_type)
7779
8009
  @etag = args[:etag] if args.key?(:etag)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1beta1
18
18
  # Version of the google-apis-container_v1beta1 gem
19
- GEM_VERSION = "0.71.0"
19
+ GEM_VERSION = "0.73.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
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class CertificateAuthorityDomainConfig
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class CheckAutopilotCompatibilityResponse
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -214,6 +220,18 @@ module Google
214
220
  include Google::Apis::Core::JsonObjectSupport
215
221
  end
216
222
 
223
+ class CompliancePostureConfig
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
229
+ class ComplianceStandard
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
217
235
  class ConfidentialNodes
218
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
237
 
@@ -232,6 +250,12 @@ module Google
232
250
  include Google::Apis::Core::JsonObjectSupport
233
251
  end
234
252
 
253
+ class ContainerdConfig
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
235
259
  class CostManagementConfig
236
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
261
 
@@ -328,6 +352,12 @@ module Google
328
352
  include Google::Apis::Core::JsonObjectSupport
329
353
  end
330
354
 
355
+ class GcpSecretManagerCertificateConfig
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
331
361
  class GpuDriverInstallationConfig
332
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
363
 
@@ -412,6 +442,12 @@ module Google
412
442
  include Google::Apis::Core::JsonObjectSupport
413
443
  end
414
444
 
445
+ class HugepagesConfig
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
415
451
  class IlbSubsettingConfig
416
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
453
 
@@ -796,6 +832,12 @@ module Google
796
832
  include Google::Apis::Core::JsonObjectSupport
797
833
  end
798
834
 
835
+ class PrivateRegistryAccessConfig
836
+ class Representation < Google::Apis::Core::JsonRepresentation; end
837
+
838
+ include Google::Apis::Core::JsonObjectSupport
839
+ end
840
+
799
841
  class ProtectConfig
800
842
  class Representation < Google::Apis::Core::JsonRepresentation; end
801
843
 
@@ -1261,6 +1303,7 @@ module Google
1261
1303
  class AdvancedMachineFeatures
1262
1304
  # @private
1263
1305
  class Representation < Google::Apis::Core::JsonRepresentation
1306
+ property :enable_nested_virtualization, as: 'enableNestedVirtualization'
1264
1307
  property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
1265
1308
  end
1266
1309
  end
@@ -1402,6 +1445,15 @@ module Google
1402
1445
  end
1403
1446
  end
1404
1447
 
1448
+ class CertificateAuthorityDomainConfig
1449
+ # @private
1450
+ class Representation < Google::Apis::Core::JsonRepresentation
1451
+ collection :fqdns, as: 'fqdns'
1452
+ property :gcp_secret_manager_certificate_config, as: 'gcpSecretManagerCertificateConfig', class: Google::Apis::ContainerV1beta1::GcpSecretManagerCertificateConfig, decorator: Google::Apis::ContainerV1beta1::GcpSecretManagerCertificateConfig::Representation
1453
+
1454
+ end
1455
+ end
1456
+
1405
1457
  class CheckAutopilotCompatibilityResponse
1406
1458
  # @private
1407
1459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1450,6 +1502,8 @@ module Google
1450
1502
  property :cluster_ipv4_cidr, as: 'clusterIpv4Cidr'
1451
1503
  property :cluster_telemetry, as: 'clusterTelemetry', class: Google::Apis::ContainerV1beta1::ClusterTelemetry, decorator: Google::Apis::ContainerV1beta1::ClusterTelemetry::Representation
1452
1504
 
1505
+ property :compliance_posture_config, as: 'compliancePostureConfig', class: Google::Apis::ContainerV1beta1::CompliancePostureConfig, decorator: Google::Apis::ContainerV1beta1::CompliancePostureConfig::Representation
1506
+
1453
1507
  collection :conditions, as: 'conditions', class: Google::Apis::ContainerV1beta1::StatusCondition, decorator: Google::Apis::ContainerV1beta1::StatusCondition::Representation
1454
1508
 
1455
1509
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
@@ -1607,6 +1661,8 @@ module Google
1607
1661
 
1608
1662
  property :desired_cluster_telemetry, as: 'desiredClusterTelemetry', class: Google::Apis::ContainerV1beta1::ClusterTelemetry, decorator: Google::Apis::ContainerV1beta1::ClusterTelemetry::Representation
1609
1663
 
1664
+ property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1beta1::ContainerdConfig, decorator: Google::Apis::ContainerV1beta1::ContainerdConfig::Representation
1665
+
1610
1666
  property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1beta1::CostManagementConfig, decorator: Google::Apis::ContainerV1beta1::CostManagementConfig::Representation
1611
1667
 
1612
1668
  property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1beta1::DatabaseEncryption, decorator: Google::Apis::ContainerV1beta1::DatabaseEncryption::Representation
@@ -1701,6 +1757,8 @@ module Google
1701
1757
  property :enable_k8s_beta_apis, as: 'enableK8sBetaApis', class: Google::Apis::ContainerV1beta1::K8sBetaApiConfig, decorator: Google::Apis::ContainerV1beta1::K8sBetaApiConfig::Representation
1702
1758
 
1703
1759
  property :etag, as: 'etag'
1760
+ property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ContainerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1beta1::PrivateClusterConfig::Representation
1761
+
1704
1762
  property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
1705
1763
 
1706
1764
  end
@@ -1722,6 +1780,22 @@ module Google
1722
1780
  end
1723
1781
  end
1724
1782
 
1783
+ class CompliancePostureConfig
1784
+ # @private
1785
+ class Representation < Google::Apis::Core::JsonRepresentation
1786
+ collection :compliance_standards, as: 'complianceStandards', class: Google::Apis::ContainerV1beta1::ComplianceStandard, decorator: Google::Apis::ContainerV1beta1::ComplianceStandard::Representation
1787
+
1788
+ property :mode, as: 'mode'
1789
+ end
1790
+ end
1791
+
1792
+ class ComplianceStandard
1793
+ # @private
1794
+ class Representation < Google::Apis::Core::JsonRepresentation
1795
+ property :standard, as: 'standard'
1796
+ end
1797
+ end
1798
+
1725
1799
  class ConfidentialNodes
1726
1800
  # @private
1727
1801
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1743,6 +1817,14 @@ module Google
1743
1817
  end
1744
1818
  end
1745
1819
 
1820
+ class ContainerdConfig
1821
+ # @private
1822
+ class Representation < Google::Apis::Core::JsonRepresentation
1823
+ property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig::Representation
1824
+
1825
+ end
1826
+ end
1827
+
1746
1828
  class CostManagementConfig
1747
1829
  # @private
1748
1830
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1776,6 +1858,7 @@ module Google
1776
1858
  class DnsConfig
1777
1859
  # @private
1778
1860
  class Representation < Google::Apis::Core::JsonRepresentation
1861
+ property :additive_vpc_scope_dns_domain, as: 'additiveVpcScopeDnsDomain'
1779
1862
  property :cluster_dns, as: 'clusterDns'
1780
1863
  property :cluster_dns_domain, as: 'clusterDnsDomain'
1781
1864
  property :cluster_dns_scope, as: 'clusterDnsScope'
@@ -1875,6 +1958,13 @@ module Google
1875
1958
  end
1876
1959
  end
1877
1960
 
1961
+ class GcpSecretManagerCertificateConfig
1962
+ # @private
1963
+ class Representation < Google::Apis::Core::JsonRepresentation
1964
+ property :secret_uri, as: 'secretUri'
1965
+ end
1966
+ end
1967
+
1878
1968
  class GpuDriverInstallationConfig
1879
1969
  # @private
1880
1970
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1989,6 +2079,14 @@ module Google
1989
2079
  end
1990
2080
  end
1991
2081
 
2082
+ class HugepagesConfig
2083
+ # @private
2084
+ class Representation < Google::Apis::Core::JsonRepresentation
2085
+ property :hugepage_size1g, as: 'hugepageSize1g'
2086
+ property :hugepage_size2m, as: 'hugepageSize2m'
2087
+ end
2088
+ end
2089
+
1992
2090
  class IlbSubsettingConfig
1993
2091
  # @private
1994
2092
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2094,6 +2192,8 @@ module Google
2094
2192
  # @private
2095
2193
  class Representation < Google::Apis::Core::JsonRepresentation
2096
2194
  property :cgroup_mode, as: 'cgroupMode'
2195
+ property :hugepages, as: 'hugepages', class: Google::Apis::ContainerV1beta1::HugepagesConfig, decorator: Google::Apis::ContainerV1beta1::HugepagesConfig::Representation
2196
+
2097
2197
  hash :sysctls, as: 'sysctls'
2098
2198
  end
2099
2199
  end
@@ -2362,6 +2462,8 @@ module Google
2362
2462
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
2363
2463
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
2364
2464
 
2465
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1beta1::ContainerdConfig, decorator: Google::Apis::ContainerV1beta1::ContainerdConfig::Representation
2466
+
2365
2467
  property :disk_size_gb, as: 'diskSizeGb'
2366
2468
  property :disk_type, as: 'diskType'
2367
2469
  property :enable_confidential_storage, as: 'enableConfidentialStorage'
@@ -2424,6 +2526,8 @@ module Google
2424
2526
  class NodeConfigDefaults
2425
2527
  # @private
2426
2528
  class Representation < Google::Apis::Core::JsonRepresentation
2529
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1beta1::ContainerdConfig, decorator: Google::Apis::ContainerV1beta1::ContainerdConfig::Representation
2530
+
2427
2531
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2428
2532
 
2429
2533
  property :host_maintenance_policy, as: 'hostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
@@ -2697,6 +2801,15 @@ module Google
2697
2801
  end
2698
2802
  end
2699
2803
 
2804
+ class PrivateRegistryAccessConfig
2805
+ # @private
2806
+ class Representation < Google::Apis::Core::JsonRepresentation
2807
+ collection :certificate_authority_domain_config, as: 'certificateAuthorityDomainConfig', class: Google::Apis::ContainerV1beta1::CertificateAuthorityDomainConfig, decorator: Google::Apis::ContainerV1beta1::CertificateAuthorityDomainConfig::Representation
2808
+
2809
+ property :enabled, as: 'enabled'
2810
+ end
2811
+ end
2812
+
2700
2813
  class ProtectConfig
2701
2814
  # @private
2702
2815
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3152,9 +3265,13 @@ module Google
3152
3265
  class UpdateNodePoolRequest
3153
3266
  # @private
3154
3267
  class Representation < Google::Apis::Core::JsonRepresentation
3268
+ collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1beta1::AcceleratorConfig, decorator: Google::Apis::ContainerV1beta1::AcceleratorConfig::Representation
3269
+
3155
3270
  property :cluster_id, as: 'clusterId'
3156
3271
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
3157
3272
 
3273
+ property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1beta1::ContainerdConfig, decorator: Google::Apis::ContainerV1beta1::ContainerdConfig::Representation
3274
+
3158
3275
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
3159
3276
  property :disk_type, as: 'diskType'
3160
3277
  property :etag, as: 'etag'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.71.0
4
+ version: 0.73.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.71.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.73.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []