google-apis-container_v1 0.96.0 → 0.97.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: 861fba79fd2b2271a1075779057b9ccbef31c551ec2fdfd27fe6e6932b606786
|
4
|
+
data.tar.gz: d8604327ce54fcd6fb5bdadd966598c2b33afd34bca35cd62749308fe32c36bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b7867ba684fea2b6b152da7e9bb84df91ae244e659a1cb500bf7e8c605dae853aafe395e6b576c8934398c6fdab8dabbccfce23ee9ce55bccdba4c931a83f1c
|
7
|
+
data.tar.gz: e9112b83c755da0eef44a4d33668798be2e691278e0ba804ab2deba64917e71e0328c6d3f204814e23b786609cd0fb7bd8c9f04b016501f3d44a07d44f62aef6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.97.0 (2025-05-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250513
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.96.0 (2025-05-21)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250506
|
@@ -202,6 +202,11 @@ module Google
|
|
202
202
|
# @return [Google::Apis::ContainerV1::GkeBackupAgentConfig]
|
203
203
|
attr_accessor :gke_backup_agent_config
|
204
204
|
|
205
|
+
# Configuration for the High Scale Checkpointing.
|
206
|
+
# Corresponds to the JSON property `highScaleCheckpointingConfig`
|
207
|
+
# @return [Google::Apis::ContainerV1::HighScaleCheckpointingConfig]
|
208
|
+
attr_accessor :high_scale_checkpointing_config
|
209
|
+
|
205
210
|
# Configuration options for the horizontal pod autoscaling feature, which
|
206
211
|
# increases or decreases the number of replica pods a replication controller has
|
207
212
|
# based on the resource usage of the existing pods.
|
@@ -255,6 +260,7 @@ module Google
|
|
255
260
|
@gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
|
256
261
|
@gcs_fuse_csi_driver_config = args[:gcs_fuse_csi_driver_config] if args.key?(:gcs_fuse_csi_driver_config)
|
257
262
|
@gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
|
263
|
+
@high_scale_checkpointing_config = args[:high_scale_checkpointing_config] if args.key?(:high_scale_checkpointing_config)
|
258
264
|
@horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
|
259
265
|
@http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
|
260
266
|
@kubernetes_dashboard = args[:kubernetes_dashboard] if args.key?(:kubernetes_dashboard)
|
@@ -309,6 +315,12 @@ module Google
|
|
309
315
|
attr_accessor :enable_nested_virtualization
|
310
316
|
alias_method :enable_nested_virtualization?, :enable_nested_virtualization
|
311
317
|
|
318
|
+
# Type of Performance Monitoring Unit (PMU) requested on node pool instances. If
|
319
|
+
# unset, PMU will not be available to the node.
|
320
|
+
# Corresponds to the JSON property `performanceMonitoringUnit`
|
321
|
+
# @return [String]
|
322
|
+
attr_accessor :performance_monitoring_unit
|
323
|
+
|
312
324
|
# The number of threads per physical core. To disable simultaneous
|
313
325
|
# multithreading (SMT) set this to 1. If unset, the maximum number of threads
|
314
326
|
# supported per core by the underlying processor is assumed.
|
@@ -323,10 +335,25 @@ module Google
|
|
323
335
|
# Update properties of this object
|
324
336
|
def update!(**args)
|
325
337
|
@enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
|
338
|
+
@performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
|
326
339
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
327
340
|
end
|
328
341
|
end
|
329
342
|
|
343
|
+
# AnonymousAuthenticationConfig defines the settings needed to limit endpoints
|
344
|
+
# that allow anonymous authentication.
|
345
|
+
class AnonymousAuthenticationConfig
|
346
|
+
include Google::Apis::Core::Hashable
|
347
|
+
|
348
|
+
def initialize(**args)
|
349
|
+
update!(**args)
|
350
|
+
end
|
351
|
+
|
352
|
+
# Update properties of this object
|
353
|
+
def update!(**args)
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
330
357
|
# Configuration for returning group information from authenticators.
|
331
358
|
class AuthenticatorGroupsConfig
|
332
359
|
include Google::Apis::Core::Hashable
|
@@ -961,6 +988,12 @@ module Google
|
|
961
988
|
# @return [Array<String>]
|
962
989
|
attr_accessor :alpha_cluster_feature_gates
|
963
990
|
|
991
|
+
# AnonymousAuthenticationConfig defines the settings needed to limit endpoints
|
992
|
+
# that allow anonymous authentication.
|
993
|
+
# Corresponds to the JSON property `anonymousAuthenticationConfig`
|
994
|
+
# @return [Google::Apis::ContainerV1::AnonymousAuthenticationConfig]
|
995
|
+
attr_accessor :anonymous_authentication_config
|
996
|
+
|
964
997
|
# Configuration for returning group information from authenticators.
|
965
998
|
# Corresponds to the JSON property `authenticatorGroupsConfig`
|
966
999
|
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
@@ -1450,6 +1483,7 @@ module Google
|
|
1450
1483
|
def update!(**args)
|
1451
1484
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
1452
1485
|
@alpha_cluster_feature_gates = args[:alpha_cluster_feature_gates] if args.key?(:alpha_cluster_feature_gates)
|
1486
|
+
@anonymous_authentication_config = args[:anonymous_authentication_config] if args.key?(:anonymous_authentication_config)
|
1453
1487
|
@authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
|
1454
1488
|
@autopilot = args[:autopilot] if args.key?(:autopilot)
|
1455
1489
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
@@ -1613,6 +1647,12 @@ module Google
|
|
1613
1647
|
# @return [Google::Apis::ContainerV1::AddonsConfig]
|
1614
1648
|
attr_accessor :desired_addons_config
|
1615
1649
|
|
1650
|
+
# AnonymousAuthenticationConfig defines the settings needed to limit endpoints
|
1651
|
+
# that allow anonymous authentication.
|
1652
|
+
# Corresponds to the JSON property `desiredAnonymousAuthenticationConfig`
|
1653
|
+
# @return [Google::Apis::ContainerV1::AnonymousAuthenticationConfig]
|
1654
|
+
attr_accessor :desired_anonymous_authentication_config
|
1655
|
+
|
1616
1656
|
# Configuration for returning group information from authenticators.
|
1617
1657
|
# Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
|
1618
1658
|
# @return [Google::Apis::ContainerV1::AuthenticatorGroupsConfig]
|
@@ -2021,6 +2061,7 @@ module Google
|
|
2021
2061
|
def update!(**args)
|
2022
2062
|
@additional_pod_ranges_config = args[:additional_pod_ranges_config] if args.key?(:additional_pod_ranges_config)
|
2023
2063
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
2064
|
+
@desired_anonymous_authentication_config = args[:desired_anonymous_authentication_config] if args.key?(:desired_anonymous_authentication_config)
|
2024
2065
|
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
2025
2066
|
@desired_autopilot_workload_policy_config = args[:desired_autopilot_workload_policy_config] if args.key?(:desired_autopilot_workload_policy_config)
|
2026
2067
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
@@ -3106,6 +3147,26 @@ module Google
|
|
3106
3147
|
end
|
3107
3148
|
end
|
3108
3149
|
|
3150
|
+
# Configuration for the High Scale Checkpointing.
|
3151
|
+
class HighScaleCheckpointingConfig
|
3152
|
+
include Google::Apis::Core::Hashable
|
3153
|
+
|
3154
|
+
# Whether the High Scale Checkpointing is enabled for this cluster.
|
3155
|
+
# Corresponds to the JSON property `enabled`
|
3156
|
+
# @return [Boolean]
|
3157
|
+
attr_accessor :enabled
|
3158
|
+
alias_method :enabled?, :enabled
|
3159
|
+
|
3160
|
+
def initialize(**args)
|
3161
|
+
update!(**args)
|
3162
|
+
end
|
3163
|
+
|
3164
|
+
# Update properties of this object
|
3165
|
+
def update!(**args)
|
3166
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3167
|
+
end
|
3168
|
+
end
|
3169
|
+
|
3109
3170
|
# Configuration options for the horizontal pod autoscaling feature, which
|
3110
3171
|
# increases or decreases the number of replica pods a replication controller has
|
3111
3172
|
# based on the resource usage of the existing pods.
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.97.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
|
|
@@ -418,6 +424,12 @@ module Google
|
|
418
424
|
include Google::Apis::Core::JsonObjectSupport
|
419
425
|
end
|
420
426
|
|
427
|
+
class HighScaleCheckpointingConfig
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
421
433
|
class HorizontalPodAutoscaling
|
422
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
435
|
|
@@ -1256,6 +1268,8 @@ module Google
|
|
1256
1268
|
|
1257
1269
|
property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1::GkeBackupAgentConfig::Representation
|
1258
1270
|
|
1271
|
+
property :high_scale_checkpointing_config, as: 'highScaleCheckpointingConfig', class: Google::Apis::ContainerV1::HighScaleCheckpointingConfig, decorator: Google::Apis::ContainerV1::HighScaleCheckpointingConfig::Representation
|
1272
|
+
|
1259
1273
|
property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1::HorizontalPodAutoscaling::Representation
|
1260
1274
|
|
1261
1275
|
property :http_load_balancing, as: 'httpLoadBalancing', class: Google::Apis::ContainerV1::HttpLoadBalancing, decorator: Google::Apis::ContainerV1::HttpLoadBalancing::Representation
|
@@ -1286,10 +1300,17 @@ module Google
|
|
1286
1300
|
# @private
|
1287
1301
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1288
1302
|
property :enable_nested_virtualization, as: 'enableNestedVirtualization'
|
1303
|
+
property :performance_monitoring_unit, as: 'performanceMonitoringUnit'
|
1289
1304
|
property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
|
1290
1305
|
end
|
1291
1306
|
end
|
1292
1307
|
|
1308
|
+
class AnonymousAuthenticationConfig
|
1309
|
+
# @private
|
1310
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1311
|
+
end
|
1312
|
+
end
|
1313
|
+
|
1293
1314
|
class AuthenticatorGroupsConfig
|
1294
1315
|
# @private
|
1295
1316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1461,6 +1482,8 @@ module Google
|
|
1461
1482
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ContainerV1::AddonsConfig, decorator: Google::Apis::ContainerV1::AddonsConfig::Representation
|
1462
1483
|
|
1463
1484
|
collection :alpha_cluster_feature_gates, as: 'alphaClusterFeatureGates'
|
1485
|
+
property :anonymous_authentication_config, as: 'anonymousAuthenticationConfig', class: Google::Apis::ContainerV1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1::AnonymousAuthenticationConfig::Representation
|
1486
|
+
|
1464
1487
|
property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
1465
1488
|
|
1466
1489
|
property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1::Autopilot, decorator: Google::Apis::ContainerV1::Autopilot::Representation
|
@@ -1608,6 +1631,8 @@ module Google
|
|
1608
1631
|
|
1609
1632
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1::AddonsConfig, decorator: Google::Apis::ContainerV1::AddonsConfig::Representation
|
1610
1633
|
|
1634
|
+
property :desired_anonymous_authentication_config, as: 'desiredAnonymousAuthenticationConfig', class: Google::Apis::ContainerV1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1::AnonymousAuthenticationConfig::Representation
|
1635
|
+
|
1611
1636
|
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1::AuthenticatorGroupsConfig::Representation
|
1612
1637
|
|
1613
1638
|
property :desired_autopilot_workload_policy_config, as: 'desiredAutopilotWorkloadPolicyConfig', class: Google::Apis::ContainerV1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1::WorkloadPolicyConfig::Representation
|
@@ -2032,6 +2057,13 @@ module Google
|
|
2032
2057
|
end
|
2033
2058
|
end
|
2034
2059
|
|
2060
|
+
class HighScaleCheckpointingConfig
|
2061
|
+
# @private
|
2062
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2063
|
+
property :enabled, as: 'enabled'
|
2064
|
+
end
|
2065
|
+
end
|
2066
|
+
|
2035
2067
|
class HorizontalPodAutoscaling
|
2036
2068
|
# @private
|
2037
2069
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.97.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.97.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|