google-apis-container_v1beta1 0.93.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
@@ -1673,6 +1673,11 @@ module Google
|
|
1673
1673
|
# @return [Google::Apis::ContainerV1beta1::SecretManagerConfig]
|
1674
1674
|
attr_accessor :secret_manager_config
|
1675
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
|
+
|
1676
1681
|
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
1677
1682
|
# the Security Posture API.
|
1678
1683
|
# Corresponds to the JSON property `securityPostureConfig`
|
@@ -1846,6 +1851,7 @@ module Google
|
|
1846
1851
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
1847
1852
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1848
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)
|
1849
1855
|
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
1850
1856
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1851
1857
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
@@ -2791,6 +2797,11 @@ module Google
|
|
2791
2797
|
# @return [Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig]
|
2792
2798
|
attr_accessor :private_registry_access_config
|
2793
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
|
+
|
2794
2805
|
def initialize(**args)
|
2795
2806
|
update!(**args)
|
2796
2807
|
end
|
@@ -2798,6 +2809,7 @@ module Google
|
|
2798
2809
|
# Update properties of this object
|
2799
2810
|
def update!(**args)
|
2800
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)
|
2801
2813
|
end
|
2802
2814
|
end
|
2803
2815
|
|
@@ -6110,7 +6122,7 @@ module Google
|
|
6110
6122
|
# Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a
|
6111
6123
|
# sequence of decimal numbers, each with optional fraction and a unit suffix,
|
6112
6124
|
# such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
6113
|
-
# . The value must be a positive duration.
|
6125
|
+
# . The value must be a positive duration between 1ms and 1 second, inclusive.
|
6114
6126
|
# Corresponds to the JSON property `cpuCfsQuotaPeriod`
|
6115
6127
|
# @return [String]
|
6116
6128
|
attr_accessor :cpu_cfs_quota_period
|
@@ -8099,6 +8111,32 @@ module Google
|
|
8099
8111
|
end
|
8100
8112
|
end
|
8101
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
|
+
|
8102
8140
|
# SecurityBulletinEvent is a notification sent to customers when a security
|
8103
8141
|
# bulletin has been posted that they are vulnerable to.
|
8104
8142
|
class SecurityBulletinEvent
|
@@ -9223,6 +9261,33 @@ module Google
|
|
9223
9261
|
end
|
9224
9262
|
end
|
9225
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
|
+
|
9226
9291
|
# Represents an arbitrary window of time.
|
9227
9292
|
class TimeWindow
|
9228
9293
|
include Google::Apis::Core::Hashable
|
@@ -10490,6 +10555,26 @@ module Google
|
|
10490
10555
|
@autopilot_compatibility_auditing_enabled = args[:autopilot_compatibility_auditing_enabled] if args.key?(:autopilot_compatibility_auditing_enabled)
|
10491
10556
|
end
|
10492
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
|
10493
10578
|
end
|
10494
10579
|
end
|
10495
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
|
@@ -1869,6 +1887,8 @@ module Google
|
|
1869
1887
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
1870
1888
|
property :secret_manager_config, as: 'secretManagerConfig', class: Google::Apis::ContainerV1beta1::SecretManagerConfig, decorator: Google::Apis::ContainerV1beta1::SecretManagerConfig::Representation
|
1871
1889
|
|
1890
|
+
property :secret_sync_config, as: 'secretSyncConfig', class: Google::Apis::ContainerV1beta1::SecretSyncConfig, decorator: Google::Apis::ContainerV1beta1::SecretSyncConfig::Representation
|
1891
|
+
|
1872
1892
|
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::ContainerV1beta1::SecurityPostureConfig, decorator: Google::Apis::ContainerV1beta1::SecurityPostureConfig::Representation
|
1873
1893
|
|
1874
1894
|
property :self_link, as: 'selfLink'
|
@@ -2149,6 +2169,8 @@ module Google
|
|
2149
2169
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2150
2170
|
property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig::Representation
|
2151
2171
|
|
2172
|
+
property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1beta1::WritableCgroups, decorator: Google::Apis::ContainerV1beta1::WritableCgroups::Representation
|
2173
|
+
|
2152
2174
|
end
|
2153
2175
|
end
|
2154
2176
|
|
@@ -3543,6 +3565,15 @@ module Google
|
|
3543
3565
|
end
|
3544
3566
|
end
|
3545
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
|
+
|
3546
3577
|
class SecurityBulletinEvent
|
3547
3578
|
# @private
|
3548
3579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3802,6 +3833,14 @@ module Google
|
|
3802
3833
|
end
|
3803
3834
|
end
|
3804
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
|
+
|
3805
3844
|
class TimeWindow
|
3806
3845
|
# @private
|
3807
3846
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4106,6 +4145,13 @@ module Google
|
|
4106
4145
|
property :autopilot_compatibility_auditing_enabled, as: 'autopilotCompatibilityAuditingEnabled'
|
4107
4146
|
end
|
4108
4147
|
end
|
4148
|
+
|
4149
|
+
class WritableCgroups
|
4150
|
+
# @private
|
4151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4152
|
+
property :enabled, as: 'enabled'
|
4153
|
+
end
|
4154
|
+
end
|
4109
4155
|
end
|
4110
4156
|
end
|
4111
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:
|