google-apis-container_v1beta1 0.88.0 → 0.90.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: 9bf2cd30161cde9bb112782827faa2dc70de2fb42005c5e6e3f7d5b7c13ce88b
|
4
|
+
data.tar.gz: ffad9d6fff1160e9ad294060791c33892071132f7ad06514ca030d1d8ed702b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 693e9a6c87bf0300e2a886e29f363f0ddad15b0f5db704d9bbe2153b409144891e08666c14457142dc88d9566d0dfe1426d046f78ba4dac024995308d7d10138
|
7
|
+
data.tar.gz: c866c9b58ebd7bfa22e5311eb299ed319bf2e2c6c100a817102982ba38937041808ef79cc8547faf9e7ccf6e07a1f694013b46ba60a5daf6586c750f884629d8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.90.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250807
|
6
|
+
|
7
|
+
### v0.89.0 (2025-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250725
|
10
|
+
|
3
11
|
### v0.88.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250701
|
@@ -445,12 +445,19 @@ module Google
|
|
445
445
|
class AutoIpamConfig
|
446
446
|
include Google::Apis::Core::Hashable
|
447
447
|
|
448
|
+
# The flag that enables Auto IPAM on this cluster
|
449
|
+
# Corresponds to the JSON property `enabled`
|
450
|
+
# @return [Boolean]
|
451
|
+
attr_accessor :enabled
|
452
|
+
alias_method :enabled?, :enabled
|
453
|
+
|
448
454
|
def initialize(**args)
|
449
455
|
update!(**args)
|
450
456
|
end
|
451
457
|
|
452
458
|
# Update properties of this object
|
453
459
|
def update!(**args)
|
460
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
454
461
|
end
|
455
462
|
end
|
456
463
|
|
@@ -518,6 +525,12 @@ module Google
|
|
518
525
|
attr_accessor :enabled
|
519
526
|
alias_method :enabled?, :enabled
|
520
527
|
|
528
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
529
|
+
# the cluster.
|
530
|
+
# Corresponds to the JSON property `privilegedAdmissionConfig`
|
531
|
+
# @return [Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig]
|
532
|
+
attr_accessor :privileged_admission_config
|
533
|
+
|
521
534
|
# WorkloadPolicyConfig is the configuration related to GCW workload policy
|
522
535
|
# Corresponds to the JSON property `workloadPolicyConfig`
|
523
536
|
# @return [Google::Apis::ContainerV1beta1::WorkloadPolicyConfig]
|
@@ -531,6 +544,7 @@ module Google
|
|
531
544
|
def update!(**args)
|
532
545
|
@conversion_status = args[:conversion_status] if args.key?(:conversion_status)
|
533
546
|
@enabled = args[:enabled] if args.key?(:enabled)
|
547
|
+
@privileged_admission_config = args[:privileged_admission_config] if args.key?(:privileged_admission_config)
|
534
548
|
@workload_policy_config = args[:workload_policy_config] if args.key?(:workload_policy_config)
|
535
549
|
end
|
536
550
|
end
|
@@ -763,20 +777,6 @@ module Google
|
|
763
777
|
end
|
764
778
|
end
|
765
779
|
|
766
|
-
# Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
|
767
|
-
# to scale both the green and blue pools.
|
768
|
-
class AutoscaledRolloutPolicy
|
769
|
-
include Google::Apis::Core::Hashable
|
770
|
-
|
771
|
-
def initialize(**args)
|
772
|
-
update!(**args)
|
773
|
-
end
|
774
|
-
|
775
|
-
# Update properties of this object
|
776
|
-
def update!(**args)
|
777
|
-
end
|
778
|
-
end
|
779
|
-
|
780
780
|
# Deprecated.
|
781
781
|
class AvailableVersion
|
782
782
|
include Google::Apis::Core::Hashable
|
@@ -936,12 +936,6 @@ module Google
|
|
936
936
|
class BlueGreenSettings
|
937
937
|
include Google::Apis::Core::Hashable
|
938
938
|
|
939
|
-
# Autoscaled rollout policy uses cluster autoscaler during blue-green upgrades
|
940
|
-
# to scale both the green and blue pools.
|
941
|
-
# Corresponds to the JSON property `autoscaledRolloutPolicy`
|
942
|
-
# @return [Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy]
|
943
|
-
attr_accessor :autoscaled_rollout_policy
|
944
|
-
|
945
939
|
# Time needed after draining entire blue pool. After this period, blue pool will
|
946
940
|
# be cleaned up.
|
947
941
|
# Corresponds to the JSON property `nodePoolSoakDuration`
|
@@ -959,7 +953,6 @@ module Google
|
|
959
953
|
|
960
954
|
# Update properties of this object
|
961
955
|
def update!(**args)
|
962
|
-
@autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
|
963
956
|
@node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
|
964
957
|
@standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
|
965
958
|
end
|
@@ -1721,7 +1714,9 @@ module Google
|
|
1721
1714
|
# @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
|
1722
1715
|
attr_accessor :vertical_pod_autoscaling
|
1723
1716
|
|
1724
|
-
# Configuration for direct-path (via ALTS) with workload identity.
|
1717
|
+
# Configuration for direct-path (via ALTS) with workload identity. This feature
|
1718
|
+
# is not officially supported for external customers in Kubernetes Engine when
|
1719
|
+
# using Workload Identity.
|
1725
1720
|
# Corresponds to the JSON property `workloadAltsConfig`
|
1726
1721
|
# @return [Google::Apis::ContainerV1beta1::WorkloadAltsConfig]
|
1727
1722
|
attr_accessor :workload_alts_config
|
@@ -1864,6 +1859,11 @@ module Google
|
|
1864
1859
|
# @return [String]
|
1865
1860
|
attr_accessor :autoscaling_profile
|
1866
1861
|
|
1862
|
+
# DefaultComputeClassConfig defines default compute class configuration.
|
1863
|
+
# Corresponds to the JSON property `defaultComputeClassConfig`
|
1864
|
+
# @return [Google::Apis::ContainerV1beta1::DefaultComputeClassConfig]
|
1865
|
+
attr_accessor :default_compute_class_config
|
1866
|
+
|
1867
1867
|
# Enables automatic node pool creation and deletion.
|
1868
1868
|
# Corresponds to the JSON property `enableNodeAutoprovisioning`
|
1869
1869
|
# @return [Boolean]
|
@@ -1885,6 +1885,7 @@ module Google
|
|
1885
1885
|
@autoprovisioning_locations = args[:autoprovisioning_locations] if args.key?(:autoprovisioning_locations)
|
1886
1886
|
@autoprovisioning_node_pool_defaults = args[:autoprovisioning_node_pool_defaults] if args.key?(:autoprovisioning_node_pool_defaults)
|
1887
1887
|
@autoscaling_profile = args[:autoscaling_profile] if args.key?(:autoscaling_profile)
|
1888
|
+
@default_compute_class_config = args[:default_compute_class_config] if args.key?(:default_compute_class_config)
|
1888
1889
|
@enable_node_autoprovisioning = args[:enable_node_autoprovisioning] if args.key?(:enable_node_autoprovisioning)
|
1889
1890
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
1890
1891
|
end
|
@@ -2375,7 +2376,9 @@ module Google
|
|
2375
2376
|
# @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
|
2376
2377
|
attr_accessor :desired_vertical_pod_autoscaling
|
2377
2378
|
|
2378
|
-
# Configuration for direct-path (via ALTS) with workload identity.
|
2379
|
+
# Configuration for direct-path (via ALTS) with workload identity. This feature
|
2380
|
+
# is not officially supported for external customers in Kubernetes Engine when
|
2381
|
+
# using Workload Identity.
|
2379
2382
|
# Corresponds to the JSON property `desiredWorkloadAltsConfig`
|
2380
2383
|
# @return [Google::Apis::ContainerV1beta1::WorkloadAltsConfig]
|
2381
2384
|
attr_accessor :desired_workload_alts_config
|
@@ -3086,6 +3089,26 @@ module Google
|
|
3086
3089
|
end
|
3087
3090
|
end
|
3088
3091
|
|
3092
|
+
# DefaultComputeClassConfig defines default compute class configuration.
|
3093
|
+
class DefaultComputeClassConfig
|
3094
|
+
include Google::Apis::Core::Hashable
|
3095
|
+
|
3096
|
+
# Enables default compute class.
|
3097
|
+
# Corresponds to the JSON property `enabled`
|
3098
|
+
# @return [Boolean]
|
3099
|
+
attr_accessor :enabled
|
3100
|
+
alias_method :enabled?, :enabled
|
3101
|
+
|
3102
|
+
def initialize(**args)
|
3103
|
+
update!(**args)
|
3104
|
+
end
|
3105
|
+
|
3106
|
+
# Update properties of this object
|
3107
|
+
def update!(**args)
|
3108
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3109
|
+
end
|
3110
|
+
end
|
3111
|
+
|
3089
3112
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
3090
3113
|
# disabled on the cluster.
|
3091
3114
|
class DefaultSnatStatus
|
@@ -3540,6 +3563,11 @@ module Google
|
|
3540
3563
|
# @return [String]
|
3541
3564
|
attr_accessor :membership
|
3542
3565
|
|
3566
|
+
# The type of the cluster's fleet membership.
|
3567
|
+
# Corresponds to the JSON property `membershipType`
|
3568
|
+
# @return [String]
|
3569
|
+
attr_accessor :membership_type
|
3570
|
+
|
3543
3571
|
# Output only. Whether the cluster has been registered through the fleet API.
|
3544
3572
|
# Corresponds to the JSON property `preRegistered`
|
3545
3573
|
# @return [Boolean]
|
@@ -3560,6 +3588,7 @@ module Google
|
|
3560
3588
|
# Update properties of this object
|
3561
3589
|
def update!(**args)
|
3562
3590
|
@membership = args[:membership] if args.key?(:membership)
|
3591
|
+
@membership_type = args[:membership_type] if args.key?(:membership_type)
|
3563
3592
|
@pre_registered = args[:pre_registered] if args.key?(:pre_registered)
|
3564
3593
|
@project = args[:project] if args.key?(:project)
|
3565
3594
|
end
|
@@ -4844,7 +4873,10 @@ module Google
|
|
4844
4873
|
include Google::Apis::Core::Hashable
|
4845
4874
|
|
4846
4875
|
# If set to true, the Lustre CSI driver will install Lustre kernel modules using
|
4847
|
-
# port 6988.
|
4876
|
+
# port 6988. This serves as a workaround for a port conflict with the gke-
|
4877
|
+
# metadata-server. This field is required ONLY under the following conditions: 1.
|
4878
|
+
# The GKE node version is older than 1.33.2-gke.4655000. 2. You're connecting
|
4879
|
+
# to a Lustre instance that has the 'gke-support-enabled' flag.
|
4848
4880
|
# Corresponds to the JSON property `enableLegacyLustrePort`
|
4849
4881
|
# @return [Boolean]
|
4850
4882
|
attr_accessor :enable_legacy_lustre_port
|
@@ -7315,6 +7347,31 @@ module Google
|
|
7315
7347
|
end
|
7316
7348
|
end
|
7317
7349
|
|
7350
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
7351
|
+
# the cluster.
|
7352
|
+
class PrivilegedAdmissionConfig
|
7353
|
+
include Google::Apis::Core::Hashable
|
7354
|
+
|
7355
|
+
# The customer allowlist Cloud Storage paths for the cluster. These paths are
|
7356
|
+
# used with the `--autopilot-privileged-admission` flag to authorize privileged
|
7357
|
+
# workloads in Autopilot clusters. Paths can be GKE-owned, in the format `gke:///
|
7358
|
+
# /`, or customer-owned, in the format `gs:///`. Wildcards (`*`) are supported
|
7359
|
+
# to authorize all allowlists under specific paths or directories. Example: `gs:/
|
7360
|
+
# /my-bucket/*` will authorize all allowlists under the `my-bucket` bucket.
|
7361
|
+
# Corresponds to the JSON property `allowlistPaths`
|
7362
|
+
# @return [Array<String>]
|
7363
|
+
attr_accessor :allowlist_paths
|
7364
|
+
|
7365
|
+
def initialize(**args)
|
7366
|
+
update!(**args)
|
7367
|
+
end
|
7368
|
+
|
7369
|
+
# Update properties of this object
|
7370
|
+
def update!(**args)
|
7371
|
+
@allowlist_paths = args[:allowlist_paths] if args.key?(:allowlist_paths)
|
7372
|
+
end
|
7373
|
+
end
|
7374
|
+
|
7318
7375
|
# ProtectConfig defines the flags needed to enable/disable features for the
|
7319
7376
|
# Protect API.
|
7320
7377
|
class ProtectConfig
|
@@ -10196,7 +10253,9 @@ module Google
|
|
10196
10253
|
end
|
10197
10254
|
end
|
10198
10255
|
|
10199
|
-
# Configuration for direct-path (via ALTS) with workload identity.
|
10256
|
+
# Configuration for direct-path (via ALTS) with workload identity. This feature
|
10257
|
+
# is not officially supported for external customers in Kubernetes Engine when
|
10258
|
+
# using Workload Identity.
|
10200
10259
|
class WorkloadAltsConfig
|
10201
10260
|
include Google::Apis::Core::Hashable
|
10202
10261
|
|
@@ -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.90.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,12 +130,6 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
-
class AutoscaledRolloutPolicy
|
134
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
-
|
136
|
-
include Google::Apis::Core::JsonObjectSupport
|
137
|
-
end
|
138
|
-
|
139
133
|
class AvailableVersion
|
140
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
135
|
|
@@ -352,6 +346,12 @@ module Google
|
|
352
346
|
include Google::Apis::Core::JsonObjectSupport
|
353
347
|
end
|
354
348
|
|
349
|
+
class DefaultComputeClassConfig
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
355
355
|
class DefaultSnatStatus
|
356
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
357
|
|
@@ -970,6 +970,12 @@ module Google
|
|
970
970
|
include Google::Apis::Core::JsonObjectSupport
|
971
971
|
end
|
972
972
|
|
973
|
+
class PrivilegedAdmissionConfig
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
973
979
|
class ProtectConfig
|
974
980
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
981
|
|
@@ -1530,6 +1536,7 @@ module Google
|
|
1530
1536
|
class AutoIpamConfig
|
1531
1537
|
# @private
|
1532
1538
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1539
|
+
property :enabled, as: 'enabled'
|
1533
1540
|
end
|
1534
1541
|
end
|
1535
1542
|
|
@@ -1554,6 +1561,8 @@ module Google
|
|
1554
1561
|
property :conversion_status, as: 'conversionStatus', class: Google::Apis::ContainerV1beta1::AutopilotConversionStatus, decorator: Google::Apis::ContainerV1beta1::AutopilotConversionStatus::Representation
|
1555
1562
|
|
1556
1563
|
property :enabled, as: 'enabled'
|
1564
|
+
property :privileged_admission_config, as: 'privilegedAdmissionConfig', class: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig::Representation
|
1565
|
+
|
1557
1566
|
property :workload_policy_config, as: 'workloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
|
1558
1567
|
|
1559
1568
|
end
|
@@ -1605,12 +1614,6 @@ module Google
|
|
1605
1614
|
end
|
1606
1615
|
end
|
1607
1616
|
|
1608
|
-
class AutoscaledRolloutPolicy
|
1609
|
-
# @private
|
1610
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1611
|
-
end
|
1612
|
-
end
|
1613
|
-
|
1614
1617
|
class AvailableVersion
|
1615
1618
|
# @private
|
1616
1619
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1658,8 +1661,6 @@ module Google
|
|
1658
1661
|
class BlueGreenSettings
|
1659
1662
|
# @private
|
1660
1663
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1661
|
-
property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::AutoscaledRolloutPolicy::Representation
|
1662
|
-
|
1663
1664
|
property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
|
1664
1665
|
property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1beta1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1beta1::StandardRolloutPolicy::Representation
|
1665
1666
|
|
@@ -1880,6 +1881,8 @@ module Google
|
|
1880
1881
|
property :autoprovisioning_node_pool_defaults, as: 'autoprovisioningNodePoolDefaults', class: Google::Apis::ContainerV1beta1::AutoprovisioningNodePoolDefaults, decorator: Google::Apis::ContainerV1beta1::AutoprovisioningNodePoolDefaults::Representation
|
1881
1882
|
|
1882
1883
|
property :autoscaling_profile, as: 'autoscalingProfile'
|
1884
|
+
property :default_compute_class_config, as: 'defaultComputeClassConfig', class: Google::Apis::ContainerV1beta1::DefaultComputeClassConfig, decorator: Google::Apis::ContainerV1beta1::DefaultComputeClassConfig::Representation
|
1885
|
+
|
1883
1886
|
property :enable_node_autoprovisioning, as: 'enableNodeAutoprovisioning'
|
1884
1887
|
collection :resource_limits, as: 'resourceLimits', class: Google::Apis::ContainerV1beta1::ResourceLimit, decorator: Google::Apis::ContainerV1beta1::ResourceLimit::Representation
|
1885
1888
|
|
@@ -2213,6 +2216,13 @@ module Google
|
|
2213
2216
|
end
|
2214
2217
|
end
|
2215
2218
|
|
2219
|
+
class DefaultComputeClassConfig
|
2220
|
+
# @private
|
2221
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2222
|
+
property :enabled, as: 'enabled'
|
2223
|
+
end
|
2224
|
+
end
|
2225
|
+
|
2216
2226
|
class DefaultSnatStatus
|
2217
2227
|
# @private
|
2218
2228
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2325,6 +2335,7 @@ module Google
|
|
2325
2335
|
# @private
|
2326
2336
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2327
2337
|
property :membership, as: 'membership'
|
2338
|
+
property :membership_type, as: 'membershipType'
|
2328
2339
|
property :pre_registered, as: 'preRegistered'
|
2329
2340
|
property :project, as: 'project'
|
2330
2341
|
end
|
@@ -3300,6 +3311,13 @@ module Google
|
|
3300
3311
|
end
|
3301
3312
|
end
|
3302
3313
|
|
3314
|
+
class PrivilegedAdmissionConfig
|
3315
|
+
# @private
|
3316
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3317
|
+
collection :allowlist_paths, as: 'allowlistPaths'
|
3318
|
+
end
|
3319
|
+
end
|
3320
|
+
|
3303
3321
|
class ProtectConfig
|
3304
3322
|
# @private
|
3305
3323
|
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.90.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.90.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:
|