google-apis-container_v1beta1 0.83.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88bd16e6eb238342e6f5d959675fa05e2c18e063d475e4da4c270aec65aa48e0
|
4
|
+
data.tar.gz: db95090e54e4315a8c87fe4a0c55061d7eb688ea8419829aebd04e10b76acc18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87fc5651448555a1dfb52fb96a2220290d1e78b5d872246a68961d5133739374e99a57c3f72ad7c1b2eee58cdc3dc9f70fd00aaae24f1540e1ec5022dcc6169a
|
7
|
+
data.tar.gz: d3516590b29ac541c25f3098dfbca52bba935d409c0a7c3f8e24c098a249c7258d7df84b89914f6604bf25f1a05e83301c505993ecadfe371698f6ba55fcc646
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
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
|
+
|
8
|
+
### v0.84.0 (2025-05-21)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250506
|
11
|
+
|
3
12
|
### v0.83.0 (2025-05-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250429
|
@@ -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
|
@@ -1059,6 +1086,19 @@ module Google
|
|
1059
1086
|
# @return [Google::Apis::ContainerV1beta1::AddonsConfig]
|
1060
1087
|
attr_accessor :addons_config
|
1061
1088
|
|
1089
|
+
# The list of user specified Kubernetes feature gates. Each string represents
|
1090
|
+
# the activation status of a feature gate (e.g. "featureX=true" or "featureX=
|
1091
|
+
# false")
|
1092
|
+
# Corresponds to the JSON property `alphaClusterFeatureGates`
|
1093
|
+
# @return [Array<String>]
|
1094
|
+
attr_accessor :alpha_cluster_feature_gates
|
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
|
+
|
1062
1102
|
# Configuration for returning group information from authenticators.
|
1063
1103
|
# Corresponds to the JSON property `authenticatorGroupsConfig`
|
1064
1104
|
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
@@ -1603,6 +1643,8 @@ module Google
|
|
1603
1643
|
# Update properties of this object
|
1604
1644
|
def update!(**args)
|
1605
1645
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
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)
|
1606
1648
|
@authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
|
1607
1649
|
@autopilot = args[:autopilot] if args.key?(:autopilot)
|
1608
1650
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
@@ -1794,6 +1836,12 @@ module Google
|
|
1794
1836
|
# @return [Google::Apis::ContainerV1beta1::AddonsConfig]
|
1795
1837
|
attr_accessor :desired_addons_config
|
1796
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
|
+
|
1797
1845
|
# Configuration for returning group information from authenticators.
|
1798
1846
|
# Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
|
1799
1847
|
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
@@ -2252,6 +2300,7 @@ module Google
|
|
2252
2300
|
def update!(**args)
|
2253
2301
|
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
2254
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)
|
2255
2304
|
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
2256
2305
|
@desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
|
2257
2306
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
@@ -3415,6 +3464,26 @@ module Google
|
|
3415
3464
|
end
|
3416
3465
|
end
|
3417
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
|
+
|
3418
3487
|
# Configuration options for the horizontal pod autoscaling feature, which
|
3419
3488
|
# increases or decreases the number of replica pods a replication controller has
|
3420
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.
|
19
|
+
GEM_VERSION = "0.85.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
@@ -1630,6 +1651,9 @@ module Google
|
|
1630
1651
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1631
1652
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
1632
1653
|
|
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
|
+
|
1633
1657
|
property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
1634
1658
|
|
1635
1659
|
property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
|
@@ -1800,6 +1824,8 @@ module Google
|
|
1800
1824
|
|
1801
1825
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
1802
1826
|
|
1827
|
+
property :desired_anonymous_authentication_config, as: 'desiredAnonymousAuthenticationConfig', class: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig::Representation
|
1828
|
+
|
1803
1829
|
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
1804
1830
|
|
1805
1831
|
property :desired_autopilot_workload_policy_config, as: 'desiredAutopilotWorkloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
|
@@ -2258,6 +2284,13 @@ module Google
|
|
2258
2284
|
end
|
2259
2285
|
end
|
2260
2286
|
|
2287
|
+
class HighScaleCheckpointingConfig
|
2288
|
+
# @private
|
2289
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2290
|
+
property :enabled, as: 'enabled'
|
2291
|
+
end
|
2292
|
+
end
|
2293
|
+
|
2261
2294
|
class HorizontalPodAutoscaling
|
2262
2295
|
# @private
|
2263
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.
|
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.
|
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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Kubernetes Engine API V1beta1
|
79
79
|
test_files: []
|