google-apis-container_v1beta1 0.92.0 → 0.94.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: 58d410a17c7ad3c1e8a427d259d624a4b5f8d5025c776762bd0f43de5db965a1
|
|
4
|
+
data.tar.gz: d4c83d65fed8d2ea2b7be492ab1e51aae0b33de79be1f5f5b5cdf524ef14388c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '081bf3f9a024fb4515bcd1d4c4b0be9806fe8083e04c7841655a0ae0cb665c6e65f8c35b069ee695a20b1f3187607f1e548249c4c6d493a0286f45381b01c69a'
|
|
7
|
+
data.tar.gz: e281cd14e28413907044139f42412654afb37c7c65c1d92951a1e40e112e08f5968edca7928a24c9f98e1659dbe6a61dd40a474eae3f8ba8f777bc6652d76e74
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.94.0 (2025-10-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20250930
|
|
6
|
+
|
|
7
|
+
### v0.93.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250923
|
|
10
|
+
|
|
3
11
|
### v0.92.0 (2025-09-28)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250916
|
|
@@ -782,12 +782,19 @@ module Google
|
|
|
782
782
|
class AutoscaledRolloutPolicy
|
|
783
783
|
include Google::Apis::Core::Hashable
|
|
784
784
|
|
|
785
|
+
# Optional. Time to wait after cordoning the blue pool before draining the nodes.
|
|
786
|
+
# Defaults to 3 days. The value can be set between 0 and 7 days, inclusive.
|
|
787
|
+
# Corresponds to the JSON property `waitForDrainDuration`
|
|
788
|
+
# @return [String]
|
|
789
|
+
attr_accessor :wait_for_drain_duration
|
|
790
|
+
|
|
785
791
|
def initialize(**args)
|
|
786
792
|
update!(**args)
|
|
787
793
|
end
|
|
788
794
|
|
|
789
795
|
# Update properties of this object
|
|
790
796
|
def update!(**args)
|
|
797
|
+
@wait_for_drain_duration = args[:wait_for_drain_duration] if args.key?(:wait_for_drain_duration)
|
|
791
798
|
end
|
|
792
799
|
end
|
|
793
800
|
|
|
@@ -1666,6 +1673,11 @@ module Google
|
|
|
1666
1673
|
# @return [Google::Apis::ContainerV1beta1::SecretManagerConfig]
|
|
1667
1674
|
attr_accessor :secret_manager_config
|
|
1668
1675
|
|
|
1676
|
+
# Configuration for sync Secret Manager secrets as k8s secrets.
|
|
1677
|
+
# Corresponds to the JSON property `secretSyncConfig`
|
|
1678
|
+
# @return [Google::Apis::ContainerV1beta1::SecretSyncConfig]
|
|
1679
|
+
attr_accessor :secret_sync_config
|
|
1680
|
+
|
|
1669
1681
|
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
|
1670
1682
|
# the Security Posture API.
|
|
1671
1683
|
# Corresponds to the JSON property `securityPostureConfig`
|
|
@@ -1839,6 +1851,7 @@ module Google
|
|
|
1839
1851
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
1840
1852
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
1841
1853
|
@secret_manager_config = args[:secret_manager_config] if args.key?(:secret_manager_config)
|
|
1854
|
+
@secret_sync_config = args[:secret_sync_config] if args.key?(:secret_sync_config)
|
|
1842
1855
|
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
|
1843
1856
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
1844
1857
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
|
@@ -2784,6 +2797,11 @@ module Google
|
|
|
2784
2797
|
# @return [Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig]
|
|
2785
2798
|
attr_accessor :private_registry_access_config
|
|
2786
2799
|
|
|
2800
|
+
# Defines writable cgroups configuration.
|
|
2801
|
+
# Corresponds to the JSON property `writableCgroups`
|
|
2802
|
+
# @return [Google::Apis::ContainerV1beta1::WritableCgroups]
|
|
2803
|
+
attr_accessor :writable_cgroups
|
|
2804
|
+
|
|
2787
2805
|
def initialize(**args)
|
|
2788
2806
|
update!(**args)
|
|
2789
2807
|
end
|
|
@@ -2791,6 +2809,7 @@ module Google
|
|
|
2791
2809
|
# Update properties of this object
|
|
2792
2810
|
def update!(**args)
|
|
2793
2811
|
@private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
|
|
2812
|
+
@writable_cgroups = args[:writable_cgroups] if args.key?(:writable_cgroups)
|
|
2794
2813
|
end
|
|
2795
2814
|
end
|
|
2796
2815
|
|
|
@@ -6103,7 +6122,7 @@ module Google
|
|
|
6103
6122
|
# Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a
|
|
6104
6123
|
# sequence of decimal numbers, each with optional fraction and a unit suffix,
|
|
6105
6124
|
# such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
|
6106
|
-
# . The value must be a positive duration.
|
|
6125
|
+
# . The value must be a positive duration between 1ms and 1 second, inclusive.
|
|
6107
6126
|
# Corresponds to the JSON property `cpuCfsQuotaPeriod`
|
|
6108
6127
|
# @return [String]
|
|
6109
6128
|
attr_accessor :cpu_cfs_quota_period
|
|
@@ -8092,6 +8111,32 @@ module Google
|
|
|
8092
8111
|
end
|
|
8093
8112
|
end
|
|
8094
8113
|
|
|
8114
|
+
# Configuration for sync Secret Manager secrets as k8s secrets.
|
|
8115
|
+
class SecretSyncConfig
|
|
8116
|
+
include Google::Apis::Core::Hashable
|
|
8117
|
+
|
|
8118
|
+
# Enable/Disable Secret Sync Config.
|
|
8119
|
+
# Corresponds to the JSON property `enabled`
|
|
8120
|
+
# @return [Boolean]
|
|
8121
|
+
attr_accessor :enabled
|
|
8122
|
+
alias_method :enabled?, :enabled
|
|
8123
|
+
|
|
8124
|
+
# SyncRotationConfig is config for secret manager auto rotation.
|
|
8125
|
+
# Corresponds to the JSON property `rotationConfig`
|
|
8126
|
+
# @return [Google::Apis::ContainerV1beta1::SyncRotationConfig]
|
|
8127
|
+
attr_accessor :rotation_config
|
|
8128
|
+
|
|
8129
|
+
def initialize(**args)
|
|
8130
|
+
update!(**args)
|
|
8131
|
+
end
|
|
8132
|
+
|
|
8133
|
+
# Update properties of this object
|
|
8134
|
+
def update!(**args)
|
|
8135
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
8136
|
+
@rotation_config = args[:rotation_config] if args.key?(:rotation_config)
|
|
8137
|
+
end
|
|
8138
|
+
end
|
|
8139
|
+
|
|
8095
8140
|
# SecurityBulletinEvent is a notification sent to customers when a security
|
|
8096
8141
|
# bulletin has been posted that they are vulnerable to.
|
|
8097
8142
|
class SecurityBulletinEvent
|
|
@@ -9216,6 +9261,33 @@ module Google
|
|
|
9216
9261
|
end
|
|
9217
9262
|
end
|
|
9218
9263
|
|
|
9264
|
+
# SyncRotationConfig is config for secret manager auto rotation.
|
|
9265
|
+
class SyncRotationConfig
|
|
9266
|
+
include Google::Apis::Core::Hashable
|
|
9267
|
+
|
|
9268
|
+
# Whether the rotation is enabled.
|
|
9269
|
+
# Corresponds to the JSON property `enabled`
|
|
9270
|
+
# @return [Boolean]
|
|
9271
|
+
attr_accessor :enabled
|
|
9272
|
+
alias_method :enabled?, :enabled
|
|
9273
|
+
|
|
9274
|
+
# The interval between two consecutive rotations. Default rotation interval is 2
|
|
9275
|
+
# minutes.
|
|
9276
|
+
# Corresponds to the JSON property `rotationInterval`
|
|
9277
|
+
# @return [String]
|
|
9278
|
+
attr_accessor :rotation_interval
|
|
9279
|
+
|
|
9280
|
+
def initialize(**args)
|
|
9281
|
+
update!(**args)
|
|
9282
|
+
end
|
|
9283
|
+
|
|
9284
|
+
# Update properties of this object
|
|
9285
|
+
def update!(**args)
|
|
9286
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
9287
|
+
@rotation_interval = args[:rotation_interval] if args.key?(:rotation_interval)
|
|
9288
|
+
end
|
|
9289
|
+
end
|
|
9290
|
+
|
|
9219
9291
|
# Represents an arbitrary window of time.
|
|
9220
9292
|
class TimeWindow
|
|
9221
9293
|
include Google::Apis::Core::Hashable
|
|
@@ -10483,6 +10555,26 @@ module Google
|
|
|
10483
10555
|
@autopilot_compatibility_auditing_enabled = args[:autopilot_compatibility_auditing_enabled] if args.key?(:autopilot_compatibility_auditing_enabled)
|
|
10484
10556
|
end
|
|
10485
10557
|
end
|
|
10558
|
+
|
|
10559
|
+
# Defines writable cgroups configuration.
|
|
10560
|
+
class WritableCgroups
|
|
10561
|
+
include Google::Apis::Core::Hashable
|
|
10562
|
+
|
|
10563
|
+
# Optional. Whether writable cgroups is enabled.
|
|
10564
|
+
# Corresponds to the JSON property `enabled`
|
|
10565
|
+
# @return [Boolean]
|
|
10566
|
+
attr_accessor :enabled
|
|
10567
|
+
alias_method :enabled?, :enabled
|
|
10568
|
+
|
|
10569
|
+
def initialize(**args)
|
|
10570
|
+
update!(**args)
|
|
10571
|
+
end
|
|
10572
|
+
|
|
10573
|
+
# Update properties of this object
|
|
10574
|
+
def update!(**args)
|
|
10575
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
10576
|
+
end
|
|
10577
|
+
end
|
|
10486
10578
|
end
|
|
10487
10579
|
end
|
|
10488
10580
|
end
|
|
@@ -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.94.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 = "20250930"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1120,6 +1120,12 @@ module Google
|
|
|
1120
1120
|
include Google::Apis::Core::JsonObjectSupport
|
|
1121
1121
|
end
|
|
1122
1122
|
|
|
1123
|
+
class SecretSyncConfig
|
|
1124
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1125
|
+
|
|
1126
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1127
|
+
end
|
|
1128
|
+
|
|
1123
1129
|
class SecurityBulletinEvent
|
|
1124
1130
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1125
1131
|
|
|
@@ -1264,6 +1270,12 @@ module Google
|
|
|
1264
1270
|
include Google::Apis::Core::JsonObjectSupport
|
|
1265
1271
|
end
|
|
1266
1272
|
|
|
1273
|
+
class SyncRotationConfig
|
|
1274
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1275
|
+
|
|
1276
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1277
|
+
end
|
|
1278
|
+
|
|
1267
1279
|
class TimeWindow
|
|
1268
1280
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1269
1281
|
|
|
@@ -1420,6 +1432,12 @@ module Google
|
|
|
1420
1432
|
include Google::Apis::Core::JsonObjectSupport
|
|
1421
1433
|
end
|
|
1422
1434
|
|
|
1435
|
+
class WritableCgroups
|
|
1436
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1437
|
+
|
|
1438
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1439
|
+
end
|
|
1440
|
+
|
|
1423
1441
|
class AcceleratorConfig
|
|
1424
1442
|
# @private
|
|
1425
1443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1629,6 +1647,7 @@ module Google
|
|
|
1629
1647
|
class AutoscaledRolloutPolicy
|
|
1630
1648
|
# @private
|
|
1631
1649
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1650
|
+
property :wait_for_drain_duration, as: 'waitForDrainDuration'
|
|
1632
1651
|
end
|
|
1633
1652
|
end
|
|
1634
1653
|
|
|
@@ -1868,6 +1887,8 @@ module Google
|
|
|
1868
1887
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1869
1888
|
property :secret_manager_config, as: 'secretManagerConfig', class: Google::Apis::ContainerV1beta1::SecretManagerConfig, decorator: Google::Apis::ContainerV1beta1::SecretManagerConfig::Representation
|
|
1870
1889
|
|
|
1890
|
+
property :secret_sync_config, as: 'secretSyncConfig', class: Google::Apis::ContainerV1beta1::SecretSyncConfig, decorator: Google::Apis::ContainerV1beta1::SecretSyncConfig::Representation
|
|
1891
|
+
|
|
1871
1892
|
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::ContainerV1beta1::SecurityPostureConfig, decorator: Google::Apis::ContainerV1beta1::SecurityPostureConfig::Representation
|
|
1872
1893
|
|
|
1873
1894
|
property :self_link, as: 'selfLink'
|
|
@@ -2148,6 +2169,8 @@ module Google
|
|
|
2148
2169
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2149
2170
|
property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig::Representation
|
|
2150
2171
|
|
|
2172
|
+
property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1beta1::WritableCgroups, decorator: Google::Apis::ContainerV1beta1::WritableCgroups::Representation
|
|
2173
|
+
|
|
2151
2174
|
end
|
|
2152
2175
|
end
|
|
2153
2176
|
|
|
@@ -3542,6 +3565,15 @@ module Google
|
|
|
3542
3565
|
end
|
|
3543
3566
|
end
|
|
3544
3567
|
|
|
3568
|
+
class SecretSyncConfig
|
|
3569
|
+
# @private
|
|
3570
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3571
|
+
property :enabled, as: 'enabled'
|
|
3572
|
+
property :rotation_config, as: 'rotationConfig', class: Google::Apis::ContainerV1beta1::SyncRotationConfig, decorator: Google::Apis::ContainerV1beta1::SyncRotationConfig::Representation
|
|
3573
|
+
|
|
3574
|
+
end
|
|
3575
|
+
end
|
|
3576
|
+
|
|
3545
3577
|
class SecurityBulletinEvent
|
|
3546
3578
|
# @private
|
|
3547
3579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3801,6 +3833,14 @@ module Google
|
|
|
3801
3833
|
end
|
|
3802
3834
|
end
|
|
3803
3835
|
|
|
3836
|
+
class SyncRotationConfig
|
|
3837
|
+
# @private
|
|
3838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3839
|
+
property :enabled, as: 'enabled'
|
|
3840
|
+
property :rotation_interval, as: 'rotationInterval'
|
|
3841
|
+
end
|
|
3842
|
+
end
|
|
3843
|
+
|
|
3804
3844
|
class TimeWindow
|
|
3805
3845
|
# @private
|
|
3806
3846
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4105,6 +4145,13 @@ module Google
|
|
|
4105
4145
|
property :autopilot_compatibility_auditing_enabled, as: 'autopilotCompatibilityAuditingEnabled'
|
|
4106
4146
|
end
|
|
4107
4147
|
end
|
|
4148
|
+
|
|
4149
|
+
class WritableCgroups
|
|
4150
|
+
# @private
|
|
4151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4152
|
+
property :enabled, as: 'enabled'
|
|
4153
|
+
end
|
|
4154
|
+
end
|
|
4108
4155
|
end
|
|
4109
4156
|
end
|
|
4110
4157
|
end
|
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.94.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.94.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:
|