google-apis-gkehub_v1beta 0.81.0 → 0.82.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: 9d8ae341eb0525419a8007ca2469709bbb626bd23a59c3691dd82255f54d3caf
|
4
|
+
data.tar.gz: 9e7a66ebe9ffd18366138b1d273dca22c2d72b84f06e772f99f2aa0973cf6725
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f647314868e962c195a1b726549db4acf493d6e76c337734dd2efbb6b9318be585ec25dd0d5e4cd9b3ac223cb870c73217611c9a1823b6c8fabcaa7231338160
|
7
|
+
data.tar.gz: 1023792f9fe32d6da8e0392efb9bca086de9e6616af62355a34537ae1134a0d35de73147eec4421d65c1376e7f5b0963497c766d6e8ba5a919e6b85c3c4cd22b
|
data/CHANGELOG.md
CHANGED
@@ -941,6 +941,11 @@ module Google
|
|
941
941
|
class ConfigManagementConfigSync
|
942
942
|
include Google::Apis::Core::Hashable
|
943
943
|
|
944
|
+
# Optional. Configuration for deployment overrides.
|
945
|
+
# Corresponds to the JSON property `deploymentOverrides`
|
946
|
+
# @return [Array<Google::Apis::GkehubV1beta::ConfigManagementDeploymentOverride>]
|
947
|
+
attr_accessor :deployment_overrides
|
948
|
+
|
944
949
|
# Optional. Enables the installation of ConfigSync. If set to true, ConfigSync
|
945
950
|
# resources will be created and the other ConfigSync fields will be applied if
|
946
951
|
# exist. If set to false, all other ConfigSync fields will be ignored,
|
@@ -1001,6 +1006,7 @@ module Google
|
|
1001
1006
|
|
1002
1007
|
# Update properties of this object
|
1003
1008
|
def update!(**args)
|
1009
|
+
@deployment_overrides = args[:deployment_overrides] if args.key?(:deployment_overrides)
|
1004
1010
|
@enabled = args[:enabled] if args.key?(:enabled)
|
1005
1011
|
@git = args[:git] if args.key?(:git)
|
1006
1012
|
@metrics_gcp_service_account_email = args[:metrics_gcp_service_account_email] if args.key?(:metrics_gcp_service_account_email)
|
@@ -1233,6 +1239,80 @@ module Google
|
|
1233
1239
|
end
|
1234
1240
|
end
|
1235
1241
|
|
1242
|
+
# Configuration for a container override.
|
1243
|
+
class ConfigManagementContainerOverride
|
1244
|
+
include Google::Apis::Core::Hashable
|
1245
|
+
|
1246
|
+
# Required. The name of the container.
|
1247
|
+
# Corresponds to the JSON property `containerName`
|
1248
|
+
# @return [String]
|
1249
|
+
attr_accessor :container_name
|
1250
|
+
|
1251
|
+
# Optional. The cpu limit of the container.
|
1252
|
+
# Corresponds to the JSON property `cpuLimit`
|
1253
|
+
# @return [String]
|
1254
|
+
attr_accessor :cpu_limit
|
1255
|
+
|
1256
|
+
# Optional. The cpu request of the container.
|
1257
|
+
# Corresponds to the JSON property `cpuRequest`
|
1258
|
+
# @return [String]
|
1259
|
+
attr_accessor :cpu_request
|
1260
|
+
|
1261
|
+
# Optional. The memory limit of the container.
|
1262
|
+
# Corresponds to the JSON property `memoryLimit`
|
1263
|
+
# @return [String]
|
1264
|
+
attr_accessor :memory_limit
|
1265
|
+
|
1266
|
+
# Optional. The memory request of the container.
|
1267
|
+
# Corresponds to the JSON property `memoryRequest`
|
1268
|
+
# @return [String]
|
1269
|
+
attr_accessor :memory_request
|
1270
|
+
|
1271
|
+
def initialize(**args)
|
1272
|
+
update!(**args)
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
# Update properties of this object
|
1276
|
+
def update!(**args)
|
1277
|
+
@container_name = args[:container_name] if args.key?(:container_name)
|
1278
|
+
@cpu_limit = args[:cpu_limit] if args.key?(:cpu_limit)
|
1279
|
+
@cpu_request = args[:cpu_request] if args.key?(:cpu_request)
|
1280
|
+
@memory_limit = args[:memory_limit] if args.key?(:memory_limit)
|
1281
|
+
@memory_request = args[:memory_request] if args.key?(:memory_request)
|
1282
|
+
end
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# Configuration for a deployment override.
|
1286
|
+
class ConfigManagementDeploymentOverride
|
1287
|
+
include Google::Apis::Core::Hashable
|
1288
|
+
|
1289
|
+
# Optional. The containers of the deployment resource to be overridden.
|
1290
|
+
# Corresponds to the JSON property `containers`
|
1291
|
+
# @return [Array<Google::Apis::GkehubV1beta::ConfigManagementContainerOverride>]
|
1292
|
+
attr_accessor :containers
|
1293
|
+
|
1294
|
+
# Required. The name of the deployment resource to be overridden.
|
1295
|
+
# Corresponds to the JSON property `deploymentName`
|
1296
|
+
# @return [String]
|
1297
|
+
attr_accessor :deployment_name
|
1298
|
+
|
1299
|
+
# Required. The namespace of the deployment resource to be overridden..
|
1300
|
+
# Corresponds to the JSON property `deploymentNamespace`
|
1301
|
+
# @return [String]
|
1302
|
+
attr_accessor :deployment_namespace
|
1303
|
+
|
1304
|
+
def initialize(**args)
|
1305
|
+
update!(**args)
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
# Update properties of this object
|
1309
|
+
def update!(**args)
|
1310
|
+
@containers = args[:containers] if args.key?(:containers)
|
1311
|
+
@deployment_name = args[:deployment_name] if args.key?(:deployment_name)
|
1312
|
+
@deployment_namespace = args[:deployment_namespace] if args.key?(:deployment_namespace)
|
1313
|
+
end
|
1314
|
+
end
|
1315
|
+
|
1236
1316
|
# Model for a config file in the git repo with an associated Sync error
|
1237
1317
|
class ConfigManagementErrorResource
|
1238
1318
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1beta
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.82.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250302"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,18 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class ConfigManagementContainerOverride
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
235
|
+
class ConfigManagementDeploymentOverride
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
229
241
|
class ConfigManagementErrorResource
|
230
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
243
|
|
@@ -1276,6 +1288,8 @@ module Google
|
|
1276
1288
|
class ConfigManagementConfigSync
|
1277
1289
|
# @private
|
1278
1290
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1291
|
+
collection :deployment_overrides, as: 'deploymentOverrides', class: Google::Apis::GkehubV1beta::ConfigManagementDeploymentOverride, decorator: Google::Apis::GkehubV1beta::ConfigManagementDeploymentOverride::Representation
|
1292
|
+
|
1279
1293
|
property :enabled, as: 'enabled'
|
1280
1294
|
property :git, as: 'git', class: Google::Apis::GkehubV1beta::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1beta::ConfigManagementGitConfig::Representation
|
1281
1295
|
|
@@ -1344,6 +1358,27 @@ module Google
|
|
1344
1358
|
end
|
1345
1359
|
end
|
1346
1360
|
|
1361
|
+
class ConfigManagementContainerOverride
|
1362
|
+
# @private
|
1363
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1364
|
+
property :container_name, as: 'containerName'
|
1365
|
+
property :cpu_limit, as: 'cpuLimit'
|
1366
|
+
property :cpu_request, as: 'cpuRequest'
|
1367
|
+
property :memory_limit, as: 'memoryLimit'
|
1368
|
+
property :memory_request, as: 'memoryRequest'
|
1369
|
+
end
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class ConfigManagementDeploymentOverride
|
1373
|
+
# @private
|
1374
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1375
|
+
collection :containers, as: 'containers', class: Google::Apis::GkehubV1beta::ConfigManagementContainerOverride, decorator: Google::Apis::GkehubV1beta::ConfigManagementContainerOverride::Representation
|
1376
|
+
|
1377
|
+
property :deployment_name, as: 'deploymentName'
|
1378
|
+
property :deployment_namespace, as: 'deploymentNamespace'
|
1379
|
+
end
|
1380
|
+
end
|
1381
|
+
|
1347
1382
|
class ConfigManagementErrorResource
|
1348
1383
|
# @private
|
1349
1384
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.82.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-gkehub_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.82.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|