google-apis-container_v1beta1 0.72.0 → 0.74.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: f69e72c58d145b08bd3c65e01dd2bde94c8e9fd16600634e84706b4a49f745d7
4
- data.tar.gz: 83220fdbc55fbabcaa5054b57f8eea3bf1916636ab74b7d95267139a3ec6bb14
3
+ metadata.gz: 982b3d564102ec8a075fae2766902da006b3d4a2b6df454a3047dd48079cb70e
4
+ data.tar.gz: 5376b523c4096d5347c43b446cbf06141ff685b3fbbecd47b8e6b43a550b7eb8
5
5
  SHA512:
6
- metadata.gz: 8c0c31f9cc1098c376ce2d0653071a11468f01491a88321957d234711afaa891e271cbd94f14857226a79a5ee1598905ca00ba1c6d5922215198df784b0c364f
7
- data.tar.gz: ef390eadfc1e91ae50e5b82d3362872e52b1f70adf7f760ec974c2bdbb883c9819b4693e8835e41982a8b01db93acb2c310235744c33f5909eb9af0ca4398efb
6
+ metadata.gz: bd952f4e2d56e7c5740071836ed88158d4136a297718522ad29cdd7b093440880e82292a8b34f9f41ec5d5e1068c42b3d9087403f0007022df5d8dbfd2b3c8a3
7
+ data.tar.gz: 595dea00309f55563c5fd2c519faecb9279522c42168ee7efc2c2ab17ea68530a890e353c4d3806fc0ae98b141c12bcb1e0388f4783cf155448a628b66898d10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.74.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240422
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.73.0 (2024-04-28)
9
+
10
+ * Regenerated from discovery document revision 20240409
11
+
3
12
  ### v0.72.0 (2024-04-14)
4
13
 
5
14
  * Regenerated from discovery document revision 20240327
@@ -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
@@ -1405,6 +1412,18 @@ module Google
1405
1412
  # @return [Google::Apis::ContainerV1beta1::ResourceUsageExportConfig]
1406
1413
  attr_accessor :resource_usage_export_config
1407
1414
 
1415
+ # Output only. Reserved for future use.
1416
+ # Corresponds to the JSON property `satisfiesPzi`
1417
+ # @return [Boolean]
1418
+ attr_accessor :satisfies_pzi
1419
+ alias_method :satisfies_pzi?, :satisfies_pzi
1420
+
1421
+ # Output only. Reserved for future use.
1422
+ # Corresponds to the JSON property `satisfiesPzs`
1423
+ # @return [Boolean]
1424
+ attr_accessor :satisfies_pzs
1425
+ alias_method :satisfies_pzs?, :satisfies_pzs
1426
+
1408
1427
  # SecretManagerConfig is config for secret manager enablement.
1409
1428
  # Corresponds to the JSON property `secretManagerConfig`
1410
1429
  # @return [Google::Apis::ContainerV1beta1::SecretManagerConfig]
@@ -1563,6 +1582,8 @@ module Google
1563
1582
  @release_channel = args[:release_channel] if args.key?(:release_channel)
1564
1583
  @resource_labels = args[:resource_labels] if args.key?(:resource_labels)
1565
1584
  @resource_usage_export_config = args[:resource_usage_export_config] if args.key?(:resource_usage_export_config)
1585
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
1586
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1566
1587
  @secret_manager_config = args[:secret_manager_config] if args.key?(:secret_manager_config)
1567
1588
  @security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
1568
1589
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -1801,7 +1822,8 @@ module Google
1801
1822
  # @return [String]
1802
1823
  attr_accessor :desired_image_type
1803
1824
 
1804
- # Specify the details of in-transit encryption.
1825
+ # Specify the details of in-transit encryption. Now named inter-node transparent
1826
+ # encryption.
1805
1827
  # Corresponds to the JSON property `desiredInTransitEncryptionConfig`
1806
1828
  # @return [String]
1807
1829
  attr_accessor :desired_in_transit_encryption_config
@@ -1898,6 +1920,16 @@ module Google
1898
1920
  # @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
1899
1921
  attr_accessor :desired_network_performance_config
1900
1922
 
1923
+ # Node kubelet configs.
1924
+ # Corresponds to the JSON property `desiredNodeKubeletConfig`
1925
+ # @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
1926
+ attr_accessor :desired_node_kubelet_config
1927
+
1928
+ # Node kubelet configs.
1929
+ # Corresponds to the JSON property `desiredNodePoolAutoConfigKubeletConfig`
1930
+ # @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
1931
+ attr_accessor :desired_node_pool_auto_config_kubelet_config
1932
+
1901
1933
  # Collection of Compute Engine network tags that can be applied to a node's
1902
1934
  # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
1903
1935
  # docs/reference/rest/v1/NodeConfig)).
@@ -2111,6 +2143,8 @@ module Google
2111
2143
  @desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
2112
2144
  @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
2113
2145
  @desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
2146
+ @desired_node_kubelet_config = args[:desired_node_kubelet_config] if args.key?(:desired_node_kubelet_config)
2147
+ @desired_node_pool_auto_config_kubelet_config = args[:desired_node_pool_auto_config_kubelet_config] if args.key?(:desired_node_pool_auto_config_kubelet_config)
2114
2148
  @desired_node_pool_auto_config_network_tags = args[:desired_node_pool_auto_config_network_tags] if args.key?(:desired_node_pool_auto_config_network_tags)
2115
2149
  @desired_node_pool_auto_config_resource_manager_tags = args[:desired_node_pool_auto_config_resource_manager_tags] if args.key?(:desired_node_pool_auto_config_resource_manager_tags)
2116
2150
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
@@ -4885,6 +4919,11 @@ module Google
4885
4919
  # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
4886
4920
  attr_accessor :logging_config
4887
4921
 
4922
+ # Node kubelet configs.
4923
+ # Corresponds to the JSON property `nodeKubeletConfig`
4924
+ # @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
4925
+ attr_accessor :node_kubelet_config
4926
+
4888
4927
  def initialize(**args)
4889
4928
  update!(**args)
4890
4929
  end
@@ -4895,6 +4934,7 @@ module Google
4895
4934
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4896
4935
  @host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
4897
4936
  @logging_config = args[:logging_config] if args.key?(:logging_config)
4937
+ @node_kubelet_config = args[:node_kubelet_config] if args.key?(:node_kubelet_config)
4898
4938
  end
4899
4939
  end
4900
4940
 
@@ -5312,6 +5352,11 @@ module Google
5312
5352
  # @return [Google::Apis::ContainerV1beta1::NetworkTags]
5313
5353
  attr_accessor :network_tags
5314
5354
 
5355
+ # Node kubelet configs.
5356
+ # Corresponds to the JSON property `nodeKubeletConfig`
5357
+ # @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
5358
+ attr_accessor :node_kubelet_config
5359
+
5315
5360
  # A map of resource manager tag keys and values to be attached to the nodes for
5316
5361
  # managing Compute Engine firewalls using Network Firewall Policies. Tags must
5317
5362
  # be according to specifications in https://cloud.google.com/vpc/docs/tags-
@@ -5328,6 +5373,7 @@ module Google
5328
5373
  # Update properties of this object
5329
5374
  def update!(**args)
5330
5375
  @network_tags = args[:network_tags] if args.key?(:network_tags)
5376
+ @node_kubelet_config = args[:node_kubelet_config] if args.key?(:node_kubelet_config)
5331
5377
  @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
5332
5378
  end
5333
5379
  end
@@ -5851,7 +5897,7 @@ module Google
5851
5897
  class PolicyBinding
5852
5898
  include Google::Apis::Core::Hashable
5853
5899
 
5854
- # The relative resource name of the binauthz platform policy to audit. GKE
5900
+ # The relative resource name of the binauthz platform policy to evaluate. GKE
5855
5901
  # platform policies have the following format: `projects/`project_number`/
5856
5902
  # platforms/gke/policies/`policy_id``.
5857
5903
  # Corresponds to the JSON property `name`
@@ -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.72.0"
19
+ GEM_VERSION = "0.74.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240327"
25
+ REVISION = "20240422"
26
26
  end
27
27
  end
28
28
  end
@@ -1303,6 +1303,7 @@ module Google
1303
1303
  class AdvancedMachineFeatures
1304
1304
  # @private
1305
1305
  class Representation < Google::Apis::Core::JsonRepresentation
1306
+ property :enable_nested_virtualization, as: 'enableNestedVirtualization'
1306
1307
  property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
1307
1308
  end
1308
1309
  end
@@ -1590,6 +1591,8 @@ module Google
1590
1591
  hash :resource_labels, as: 'resourceLabels'
1591
1592
  property :resource_usage_export_config, as: 'resourceUsageExportConfig', class: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig::Representation
1592
1593
 
1594
+ property :satisfies_pzi, as: 'satisfiesPzi'
1595
+ property :satisfies_pzs, as: 'satisfiesPzs'
1593
1596
  property :secret_manager_config, as: 'secretManagerConfig', class: Google::Apis::ContainerV1beta1::SecretManagerConfig, decorator: Google::Apis::ContainerV1beta1::SecretManagerConfig::Representation
1594
1597
 
1595
1598
  property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::ContainerV1beta1::SecurityPostureConfig, decorator: Google::Apis::ContainerV1beta1::SecurityPostureConfig::Representation
@@ -1709,6 +1712,10 @@ module Google
1709
1712
  property :desired_monitoring_service, as: 'desiredMonitoringService'
1710
1713
  property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig::Representation
1711
1714
 
1715
+ property :desired_node_kubelet_config, as: 'desiredNodeKubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
1716
+
1717
+ property :desired_node_pool_auto_config_kubelet_config, as: 'desiredNodePoolAutoConfigKubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
1718
+
1712
1719
  property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
1713
1720
 
1714
1721
  property :desired_node_pool_auto_config_resource_manager_tags, as: 'desiredNodePoolAutoConfigResourceManagerTags', class: Google::Apis::ContainerV1beta1::ResourceManagerTags, decorator: Google::Apis::ContainerV1beta1::ResourceManagerTags::Representation
@@ -2533,6 +2540,8 @@ module Google
2533
2540
 
2534
2541
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
2535
2542
 
2543
+ property :node_kubelet_config, as: 'nodeKubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
2544
+
2536
2545
  end
2537
2546
  end
2538
2547
 
@@ -2626,6 +2635,8 @@ module Google
2626
2635
  class Representation < Google::Apis::Core::JsonRepresentation
2627
2636
  property :network_tags, as: 'networkTags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
2628
2637
 
2638
+ property :node_kubelet_config, as: 'nodeKubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
2639
+
2629
2640
  property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1beta1::ResourceManagerTags, decorator: Google::Apis::ContainerV1beta1::ResourceManagerTags::Representation
2630
2641
 
2631
2642
  end
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.72.0
4
+ version: 0.74.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.74.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: []