google-apis-container_v1beta1 0.88.0 → 0.89.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: 36548a23745a732aa431a985d09e9c47c82d6a62dcbafcc9e60f8ee9bd4c6836
|
4
|
+
data.tar.gz: 07f1862f5025ccacdb6583ccfffd2a96342bef8db2773cc6725de8bd3d65ab7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df22bba7a78197c9bbcc427c94fc4232fb2363ef511c0641ce8d6cd0665c558a0119f39b5102222634ba2c3a8dc7ca3ef34ed3b555d411edfe1408b432540e88
|
7
|
+
data.tar.gz: 51c98b4b4b7bb1ad5c024f34bd233bc9128e4ad3cab8f99cc49fc7c646a25df7834e80eb979396eabf21c9bfb5ee564dccb92f9ffbc456415d4b9b4a21c0a19a
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -1864,6 +1857,11 @@ module Google
|
|
1864
1857
|
# @return [String]
|
1865
1858
|
attr_accessor :autoscaling_profile
|
1866
1859
|
|
1860
|
+
# DefaultComputeClassConfig defines default compute class configuration.
|
1861
|
+
# Corresponds to the JSON property `defaultComputeClassConfig`
|
1862
|
+
# @return [Google::Apis::ContainerV1beta1::DefaultComputeClassConfig]
|
1863
|
+
attr_accessor :default_compute_class_config
|
1864
|
+
|
1867
1865
|
# Enables automatic node pool creation and deletion.
|
1868
1866
|
# Corresponds to the JSON property `enableNodeAutoprovisioning`
|
1869
1867
|
# @return [Boolean]
|
@@ -1885,6 +1883,7 @@ module Google
|
|
1885
1883
|
@autoprovisioning_locations = args[:autoprovisioning_locations] if args.key?(:autoprovisioning_locations)
|
1886
1884
|
@autoprovisioning_node_pool_defaults = args[:autoprovisioning_node_pool_defaults] if args.key?(:autoprovisioning_node_pool_defaults)
|
1887
1885
|
@autoscaling_profile = args[:autoscaling_profile] if args.key?(:autoscaling_profile)
|
1886
|
+
@default_compute_class_config = args[:default_compute_class_config] if args.key?(:default_compute_class_config)
|
1888
1887
|
@enable_node_autoprovisioning = args[:enable_node_autoprovisioning] if args.key?(:enable_node_autoprovisioning)
|
1889
1888
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
1890
1889
|
end
|
@@ -3086,6 +3085,26 @@ module Google
|
|
3086
3085
|
end
|
3087
3086
|
end
|
3088
3087
|
|
3088
|
+
# DefaultComputeClassConfig defines default compute class configuration.
|
3089
|
+
class DefaultComputeClassConfig
|
3090
|
+
include Google::Apis::Core::Hashable
|
3091
|
+
|
3092
|
+
# Enables default compute class.
|
3093
|
+
# Corresponds to the JSON property `enabled`
|
3094
|
+
# @return [Boolean]
|
3095
|
+
attr_accessor :enabled
|
3096
|
+
alias_method :enabled?, :enabled
|
3097
|
+
|
3098
|
+
def initialize(**args)
|
3099
|
+
update!(**args)
|
3100
|
+
end
|
3101
|
+
|
3102
|
+
# Update properties of this object
|
3103
|
+
def update!(**args)
|
3104
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3105
|
+
end
|
3106
|
+
end
|
3107
|
+
|
3089
3108
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
3090
3109
|
# disabled on the cluster.
|
3091
3110
|
class DefaultSnatStatus
|
@@ -3540,6 +3559,11 @@ module Google
|
|
3540
3559
|
# @return [String]
|
3541
3560
|
attr_accessor :membership
|
3542
3561
|
|
3562
|
+
# The type of the cluster's fleet membership.
|
3563
|
+
# Corresponds to the JSON property `membershipType`
|
3564
|
+
# @return [String]
|
3565
|
+
attr_accessor :membership_type
|
3566
|
+
|
3543
3567
|
# Output only. Whether the cluster has been registered through the fleet API.
|
3544
3568
|
# Corresponds to the JSON property `preRegistered`
|
3545
3569
|
# @return [Boolean]
|
@@ -3560,6 +3584,7 @@ module Google
|
|
3560
3584
|
# Update properties of this object
|
3561
3585
|
def update!(**args)
|
3562
3586
|
@membership = args[:membership] if args.key?(:membership)
|
3587
|
+
@membership_type = args[:membership_type] if args.key?(:membership_type)
|
3563
3588
|
@pre_registered = args[:pre_registered] if args.key?(:pre_registered)
|
3564
3589
|
@project = args[:project] if args.key?(:project)
|
3565
3590
|
end
|
@@ -7315,6 +7340,31 @@ module Google
|
|
7315
7340
|
end
|
7316
7341
|
end
|
7317
7342
|
|
7343
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
7344
|
+
# the cluster.
|
7345
|
+
class PrivilegedAdmissionConfig
|
7346
|
+
include Google::Apis::Core::Hashable
|
7347
|
+
|
7348
|
+
# The customer allowlist Cloud Storage paths for the cluster. These paths are
|
7349
|
+
# used with the `--autopilot-privileged-admission` flag to authorize privileged
|
7350
|
+
# workloads in Autopilot clusters. Paths can be GKE-owned, in the format `gke:///
|
7351
|
+
# /`, or customer-owned, in the format `gs:///`. Wildcards (`*`) are supported
|
7352
|
+
# to authorize all allowlists under specific paths or directories. Example: `gs:/
|
7353
|
+
# /my-bucket/*` will authorize all allowlists under the `my-bucket` bucket.
|
7354
|
+
# Corresponds to the JSON property `allowlistPaths`
|
7355
|
+
# @return [Array<String>]
|
7356
|
+
attr_accessor :allowlist_paths
|
7357
|
+
|
7358
|
+
def initialize(**args)
|
7359
|
+
update!(**args)
|
7360
|
+
end
|
7361
|
+
|
7362
|
+
# Update properties of this object
|
7363
|
+
def update!(**args)
|
7364
|
+
@allowlist_paths = args[:allowlist_paths] if args.key?(:allowlist_paths)
|
7365
|
+
end
|
7366
|
+
end
|
7367
|
+
|
7318
7368
|
# ProtectConfig defines the flags needed to enable/disable features for the
|
7319
7369
|
# Protect API.
|
7320
7370
|
class ProtectConfig
|
@@ -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.89.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 = "20250725"
|
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.89.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.89.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:
|