google-apis-container_v1beta1 0.84.0 → 0.85.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: 06fa6fb50e65e6849a8b74884d6654a441f468b95e62bc0273d11e98f36527eb
4
- data.tar.gz: 3b572f0ae8f9cd493800e7628b62639c0a02235e2555533a8792a6ce9325a12b
3
+ metadata.gz: 88bd16e6eb238342e6f5d959675fa05e2c18e063d475e4da4c270aec65aa48e0
4
+ data.tar.gz: db95090e54e4315a8c87fe4a0c55061d7eb688ea8419829aebd04e10b76acc18
5
5
  SHA512:
6
- metadata.gz: 62e5273586cc35a2cd9ed9275e73cfeb4eca9e711320d803c08866a8406db5df2358f8c22e2a41a2a2d5574fad33c135d5f431f81b520a90ab24843fec72aa9e
7
- data.tar.gz: 26941597228101d8a1d5d93018566c966d46970fad60b1c9a04f77e9d1d2f945c74f6c97c0d69e1fc72031cad2485e20538807294f68da28df36df1b90ae7f64
6
+ metadata.gz: 87fc5651448555a1dfb52fb96a2220290d1e78b5d872246a68961d5133739374e99a57c3f72ad7c1b2eee58cdc3dc9f70fd00aaae24f1540e1ec5022dcc6169a
7
+ data.tar.gz: d3516590b29ac541c25f3098dfbca52bba935d409c0a7c3f8e24c098a249c7258d7df84b89914f6604bf25f1a05e83301c505993ecadfe371698f6ba55fcc646
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.85.0 (2025-05-25)
4
+
5
+ * Regenerated from discovery document revision 20250513
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.84.0 (2025-05-21)
4
9
 
5
10
  * Regenerated from discovery document revision 20250506
@@ -208,6 +208,11 @@ module Google
208
208
  # @return [Google::Apis::ContainerV1beta1::GkeBackupAgentConfig]
209
209
  attr_accessor :gke_backup_agent_config
210
210
 
211
+ # Configuration for the High Scale Checkpointing.
212
+ # Corresponds to the JSON property `highScaleCheckpointingConfig`
213
+ # @return [Google::Apis::ContainerV1beta1::HighScaleCheckpointingConfig]
214
+ attr_accessor :high_scale_checkpointing_config
215
+
211
216
  # Configuration options for the horizontal pod autoscaling feature, which
212
217
  # increases or decreases the number of replica pods a replication controller has
213
218
  # based on the resource usage of the existing pods.
@@ -271,6 +276,7 @@ module Google
271
276
  @gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
272
277
  @gcs_fuse_csi_driver_config = args[:gcs_fuse_csi_driver_config] if args.key?(:gcs_fuse_csi_driver_config)
273
278
  @gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
279
+ @high_scale_checkpointing_config = args[:high_scale_checkpointing_config] if args.key?(:high_scale_checkpointing_config)
274
280
  @horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
275
281
  @http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
276
282
  @istio_config = args[:istio_config] if args.key?(:istio_config)
@@ -327,6 +333,12 @@ module Google
327
333
  attr_accessor :enable_nested_virtualization
328
334
  alias_method :enable_nested_virtualization?, :enable_nested_virtualization
329
335
 
336
+ # Type of Performance Monitoring Unit (PMU) requested on node pool instances. If
337
+ # unset, PMU will not be available to the node.
338
+ # Corresponds to the JSON property `performanceMonitoringUnit`
339
+ # @return [String]
340
+ attr_accessor :performance_monitoring_unit
341
+
330
342
  # The number of threads per physical core. To disable simultaneous
331
343
  # multithreading (SMT) set this to 1. If unset, the maximum number of threads
332
344
  # supported per core by the underlying processor is assumed.
@@ -341,10 +353,25 @@ module Google
341
353
  # Update properties of this object
342
354
  def update!(**args)
343
355
  @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
356
+ @performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
344
357
  @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
345
358
  end
346
359
  end
347
360
 
361
+ # AnonymousAuthenticationConfig defines the settings needed to limit endpoints
362
+ # that allow anonymous authentication.
363
+ class AnonymousAuthenticationConfig
364
+ include Google::Apis::Core::Hashable
365
+
366
+ def initialize(**args)
367
+ update!(**args)
368
+ end
369
+
370
+ # Update properties of this object
371
+ def update!(**args)
372
+ end
373
+ end
374
+
348
375
  # Configuration for returning group information from authenticators.
349
376
  class AuthenticatorGroupsConfig
350
377
  include Google::Apis::Core::Hashable
@@ -1066,6 +1093,12 @@ module Google
1066
1093
  # @return [Array<String>]
1067
1094
  attr_accessor :alpha_cluster_feature_gates
1068
1095
 
1096
+ # AnonymousAuthenticationConfig defines the settings needed to limit endpoints
1097
+ # that allow anonymous authentication.
1098
+ # Corresponds to the JSON property `anonymousAuthenticationConfig`
1099
+ # @return [Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig]
1100
+ attr_accessor :anonymous_authentication_config
1101
+
1069
1102
  # Configuration for returning group information from authenticators.
1070
1103
  # Corresponds to the JSON property `authenticatorGroupsConfig`
1071
1104
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
@@ -1611,6 +1644,7 @@ module Google
1611
1644
  def update!(**args)
1612
1645
  @addons_config = args[:addons_config] if args.key?(:addons_config)
1613
1646
  @alpha_cluster_feature_gates = args[:alpha_cluster_feature_gates] if args.key?(:alpha_cluster_feature_gates)
1647
+ @anonymous_authentication_config = args[:anonymous_authentication_config] if args.key?(:anonymous_authentication_config)
1614
1648
  @authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
1615
1649
  @autopilot = args[:autopilot] if args.key?(:autopilot)
1616
1650
  @autoscaling = args[:autoscaling] if args.key?(:autoscaling)
@@ -1802,6 +1836,12 @@ module Google
1802
1836
  # @return [Google::Apis::ContainerV1beta1::AddonsConfig]
1803
1837
  attr_accessor :desired_addons_config
1804
1838
 
1839
+ # AnonymousAuthenticationConfig defines the settings needed to limit endpoints
1840
+ # that allow anonymous authentication.
1841
+ # Corresponds to the JSON property `desiredAnonymousAuthenticationConfig`
1842
+ # @return [Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig]
1843
+ attr_accessor :desired_anonymous_authentication_config
1844
+
1805
1845
  # Configuration for returning group information from authenticators.
1806
1846
  # Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
1807
1847
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
@@ -2260,6 +2300,7 @@ module Google
2260
2300
  def update!(**args)
2261
2301
  @additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
2262
2302
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
2303
+ @desired_anonymous_authentication_config = args[:desired_anonymous_authentication_config] if args.key?(:desired_anonymous_authentication_config)
2263
2304
  @desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
2264
2305
  @desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
2265
2306
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
@@ -3423,6 +3464,26 @@ module Google
3423
3464
  end
3424
3465
  end
3425
3466
 
3467
+ # Configuration for the High Scale Checkpointing.
3468
+ class HighScaleCheckpointingConfig
3469
+ include Google::Apis::Core::Hashable
3470
+
3471
+ # Whether the High Scale Checkpointing is enabled for this cluster.
3472
+ # Corresponds to the JSON property `enabled`
3473
+ # @return [Boolean]
3474
+ attr_accessor :enabled
3475
+ alias_method :enabled?, :enabled
3476
+
3477
+ def initialize(**args)
3478
+ update!(**args)
3479
+ end
3480
+
3481
+ # Update properties of this object
3482
+ def update!(**args)
3483
+ @enabled = args[:enabled] if args.key?(:enabled)
3484
+ end
3485
+ end
3486
+
3426
3487
  # Configuration options for the horizontal pod autoscaling feature, which
3427
3488
  # increases or decreases the number of replica pods a replication controller has
3428
3489
  # based on the resource usage of the existing pods.
@@ -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.84.0"
19
+ GEM_VERSION = "0.85.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250506"
25
+ REVISION = "20250513"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class AnonymousAuthenticationConfig
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class AuthenticatorGroupsConfig
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -454,6 +460,12 @@ module Google
454
460
  include Google::Apis::Core::JsonObjectSupport
455
461
  end
456
462
 
463
+ class HighScaleCheckpointingConfig
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
457
469
  class HorizontalPodAutoscaling
458
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
471
 
@@ -1395,6 +1407,8 @@ module Google
1395
1407
 
1396
1408
  property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig::Representation
1397
1409
 
1410
+ property :high_scale_checkpointing_config, as: 'highScaleCheckpointingConfig', class: Google::Apis::ContainerV1beta1::HighScaleCheckpointingConfig, decorator: Google::Apis::ContainerV1beta1::HighScaleCheckpointingConfig::Representation
1411
+
1398
1412
  property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling::Representation
1399
1413
 
1400
1414
  property :http_load_balancing, as: 'httpLoadBalancing', class: Google::Apis::ContainerV1beta1::HttpLoadBalancing, decorator: Google::Apis::ContainerV1beta1::HttpLoadBalancing::Representation
@@ -1429,10 +1443,17 @@ module Google
1429
1443
  # @private
1430
1444
  class Representation < Google::Apis::Core::JsonRepresentation
1431
1445
  property :enable_nested_virtualization, as: 'enableNestedVirtualization'
1446
+ property :performance_monitoring_unit, as: 'performanceMonitoringUnit'
1432
1447
  property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
1433
1448
  end
1434
1449
  end
1435
1450
 
1451
+ class AnonymousAuthenticationConfig
1452
+ # @private
1453
+ class Representation < Google::Apis::Core::JsonRepresentation
1454
+ end
1455
+ end
1456
+
1436
1457
  class AuthenticatorGroupsConfig
1437
1458
  # @private
1438
1459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1631,6 +1652,8 @@ module Google
1631
1652
  property :addons_config, as: 'addonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
1632
1653
 
1633
1654
  collection :alpha_cluster_feature_gates, as: 'alphaClusterFeatureGates'
1655
+ property :anonymous_authentication_config, as: 'anonymousAuthenticationConfig', class: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig::Representation
1656
+
1634
1657
  property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
1635
1658
 
1636
1659
  property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
@@ -1801,6 +1824,8 @@ module Google
1801
1824
 
1802
1825
  property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
1803
1826
 
1827
+ property :desired_anonymous_authentication_config, as: 'desiredAnonymousAuthenticationConfig', class: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig::Representation
1828
+
1804
1829
  property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
1805
1830
 
1806
1831
  property :desired_autopilot_workload_policy_config, as: 'desiredAutopilotWorkloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
@@ -2259,6 +2284,13 @@ module Google
2259
2284
  end
2260
2285
  end
2261
2286
 
2287
+ class HighScaleCheckpointingConfig
2288
+ # @private
2289
+ class Representation < Google::Apis::Core::JsonRepresentation
2290
+ property :enabled, as: 'enabled'
2291
+ end
2292
+ end
2293
+
2262
2294
  class HorizontalPodAutoscaling
2263
2295
  # @private
2264
2296
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.84.0
4
+ version: 0.85.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.84.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.85.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: