google-apis-gkehub_v1 0.81.0 → 0.83.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: 90ae2b420fa0c4dd2fbba60aea0ac1409bc0130d4c8f6b3d554d998394e344a4
4
- data.tar.gz: 326d547ad890cfddc661b4ad779dabc393839ff47f9617f020ee52de39851e0d
3
+ metadata.gz: 9e8f8cb759f6f6dd787a1902c8983b860c945f4354abd4f63ad65490232e3771
4
+ data.tar.gz: e57fd68c2728de6cbc9b4a34460f52e1db0e61dae3614f994eed69658320c5b1
5
5
  SHA512:
6
- metadata.gz: d97f135e7ddd056789a2d79e5bcf9d4a66666245e46cf023f565ca7eec28042e0c9b8efa88bb5402f0f2bb998a4a9805e3a12ee2f3df1fd4dce9e90b4570896e
7
- data.tar.gz: f109484d0c2145cfca8b1f945f192799e7ea48d258d6dcfbe94e2335ecba4e2afa191228fcb375ba15e757d8d33768c7a7e72493f761bbe842a055a6c2b71466
6
+ metadata.gz: 9aac0e30d1e195b0118d1742d26ac7528ed991a4a6f7b8b05f5c6dc40cf65931e08277ed9236e47dfd7dd83249e2b4dd5167adc7b3e7720a25bee3cf61226741
7
+ data.tar.gz: f553ddcda0474576ff01191fb1743bcdf65f1c3fbd955997ca720444d72f882a3cb89cbfe2157f8a48bbcec6ac314cdd39c2fe0f2a985f3949c8204f960d1017
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v1
2
2
 
3
+ ### v0.83.0 (2025-03-09)
4
+
5
+ * Regenerated from discovery document revision 20250302
6
+
7
+ ### v0.82.0 (2025-02-26)
8
+
9
+ * Regenerated from discovery document revision 20250209
10
+
3
11
  ### v0.81.0 (2025-01-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20250103
@@ -877,12 +877,10 @@ module Google
877
877
  class ConfigManagementConfigSync
878
878
  include Google::Apis::Core::Hashable
879
879
 
880
- # Optional. Set to true to allow the vertical scaling. Defaults to false which
881
- # disallows vertical scaling. This field is deprecated.
882
- # Corresponds to the JSON property `allowVerticalScale`
883
- # @return [Boolean]
884
- attr_accessor :allow_vertical_scale
885
- alias_method :allow_vertical_scale?, :allow_vertical_scale
880
+ # Optional. Configuration for deployment overrides.
881
+ # Corresponds to the JSON property `deploymentOverrides`
882
+ # @return [Array<Google::Apis::GkehubV1::ConfigManagementDeploymentOverride>]
883
+ attr_accessor :deployment_overrides
886
884
 
887
885
  # Optional. Enables the installation of ConfigSync. If set to true, ConfigSync
888
886
  # resources will be created and the other ConfigSync fields will be applied if
@@ -944,7 +942,7 @@ module Google
944
942
 
945
943
  # Update properties of this object
946
944
  def update!(**args)
947
- @allow_vertical_scale = args[:allow_vertical_scale] if args.key?(:allow_vertical_scale)
945
+ @deployment_overrides = args[:deployment_overrides] if args.key?(:deployment_overrides)
948
946
  @enabled = args[:enabled] if args.key?(:enabled)
949
947
  @git = args[:git] if args.key?(:git)
950
948
  @metrics_gcp_service_account_email = args[:metrics_gcp_service_account_email] if args.key?(:metrics_gcp_service_account_email)
@@ -1177,6 +1175,80 @@ module Google
1177
1175
  end
1178
1176
  end
1179
1177
 
1178
+ # Configuration for a container override.
1179
+ class ConfigManagementContainerOverride
1180
+ include Google::Apis::Core::Hashable
1181
+
1182
+ # Required. The name of the container.
1183
+ # Corresponds to the JSON property `containerName`
1184
+ # @return [String]
1185
+ attr_accessor :container_name
1186
+
1187
+ # Optional. The cpu limit of the container.
1188
+ # Corresponds to the JSON property `cpuLimit`
1189
+ # @return [String]
1190
+ attr_accessor :cpu_limit
1191
+
1192
+ # Optional. The cpu request of the container.
1193
+ # Corresponds to the JSON property `cpuRequest`
1194
+ # @return [String]
1195
+ attr_accessor :cpu_request
1196
+
1197
+ # Optional. The memory limit of the container.
1198
+ # Corresponds to the JSON property `memoryLimit`
1199
+ # @return [String]
1200
+ attr_accessor :memory_limit
1201
+
1202
+ # Optional. The memory request of the container.
1203
+ # Corresponds to the JSON property `memoryRequest`
1204
+ # @return [String]
1205
+ attr_accessor :memory_request
1206
+
1207
+ def initialize(**args)
1208
+ update!(**args)
1209
+ end
1210
+
1211
+ # Update properties of this object
1212
+ def update!(**args)
1213
+ @container_name = args[:container_name] if args.key?(:container_name)
1214
+ @cpu_limit = args[:cpu_limit] if args.key?(:cpu_limit)
1215
+ @cpu_request = args[:cpu_request] if args.key?(:cpu_request)
1216
+ @memory_limit = args[:memory_limit] if args.key?(:memory_limit)
1217
+ @memory_request = args[:memory_request] if args.key?(:memory_request)
1218
+ end
1219
+ end
1220
+
1221
+ # Configuration for a deployment override.
1222
+ class ConfigManagementDeploymentOverride
1223
+ include Google::Apis::Core::Hashable
1224
+
1225
+ # Optional. The containers of the deployment resource to be overridden.
1226
+ # Corresponds to the JSON property `containers`
1227
+ # @return [Array<Google::Apis::GkehubV1::ConfigManagementContainerOverride>]
1228
+ attr_accessor :containers
1229
+
1230
+ # Required. The name of the deployment resource to be overridden.
1231
+ # Corresponds to the JSON property `deploymentName`
1232
+ # @return [String]
1233
+ attr_accessor :deployment_name
1234
+
1235
+ # Required. The namespace of the deployment resource to be overridden..
1236
+ # Corresponds to the JSON property `deploymentNamespace`
1237
+ # @return [String]
1238
+ attr_accessor :deployment_namespace
1239
+
1240
+ def initialize(**args)
1241
+ update!(**args)
1242
+ end
1243
+
1244
+ # Update properties of this object
1245
+ def update!(**args)
1246
+ @containers = args[:containers] if args.key?(:containers)
1247
+ @deployment_name = args[:deployment_name] if args.key?(:deployment_name)
1248
+ @deployment_namespace = args[:deployment_namespace] if args.key?(:deployment_namespace)
1249
+ end
1250
+ end
1251
+
1180
1252
  # Model for a config file in the git repo with an associated Sync error
1181
1253
  class ConfigManagementErrorResource
1182
1254
  include Google::Apis::Core::Hashable
@@ -1268,8 +1340,8 @@ module Google
1268
1340
  attr_accessor :policy_dir
1269
1341
 
1270
1342
  # Required. Type of secret configured for access to the Git repo. Must be one of
1271
- # ssh, cookiefile, gcenode, token, gcpserviceaccount or none. The validation of
1272
- # this is case-sensitive. Required.
1343
+ # ssh, cookiefile, gcenode, token, gcpserviceaccount, githubapp or none. The
1344
+ # validation of this is case-sensitive.
1273
1345
  # Corresponds to the JSON property `secretType`
1274
1346
  # @return [String]
1275
1347
  attr_accessor :secret_type
@@ -1279,7 +1351,7 @@ module Google
1279
1351
  # @return [String]
1280
1352
  attr_accessor :sync_branch
1281
1353
 
1282
- # Optional. The URL of the Git repository to use as the source of truth.
1354
+ # Required. The URL of the Git repository to use as the source of truth.
1283
1355
  # Corresponds to the JSON property `syncRepo`
1284
1356
  # @return [String]
1285
1357
  attr_accessor :sync_repo
@@ -1593,12 +1665,14 @@ module Google
1593
1665
  # @return [String]
1594
1666
  attr_accessor :policy_dir
1595
1667
 
1596
- # Optional. Type of secret configured for access to the Git repo.
1668
+ # Required. Type of secret configured for access to the OCI repo. Must be one of
1669
+ # gcenode, gcpserviceaccount, k8sserviceaccount or none. The validation of this
1670
+ # is case-sensitive.
1597
1671
  # Corresponds to the JSON property `secretType`
1598
1672
  # @return [String]
1599
1673
  attr_accessor :secret_type
1600
1674
 
1601
- # Optional. The OCI image repository URL for the package to sync from. e.g. `
1675
+ # Required. The OCI image repository URL for the package to sync from. e.g. `
1602
1676
  # LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY_NAME/PACKAGE_NAME`.
1603
1677
  # Corresponds to the JSON property `syncRepo`
1604
1678
  # @return [String]
@@ -5491,7 +5565,8 @@ module Google
5491
5565
  end
5492
5566
  end
5493
5567
 
5494
- # Condition being reported.
5568
+ # Condition being reported. TODO b/395151419: Remove this message once the
5569
+ # membership-level conditions field uses the common Condition message.
5495
5570
  class ServiceMeshCondition
5496
5571
  include Google::Apis::Core::Hashable
5497
5572
 
@@ -5623,7 +5698,8 @@ module Google
5623
5698
  class ServiceMeshMembershipState
5624
5699
  include Google::Apis::Core::Hashable
5625
5700
 
5626
- # Output only. List of conditions reported for this membership.
5701
+ # Output only. List of conditions reported for this membership. TODO b/395151419:
5702
+ # Use the common Condition message.
5627
5703
  # Corresponds to the JSON property `conditions`
5628
5704
  # @return [Array<Google::Apis::GkehubV1::ServiceMeshCondition>]
5629
5705
  attr_accessor :conditions
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1
18
18
  # Version of the google-apis-gkehub_v1 gem
19
- GEM_VERSION = "0.81.0"
19
+ GEM_VERSION = "0.83.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 = "20250103"
25
+ REVISION = "20250302"
26
26
  end
27
27
  end
28
28
  end
@@ -208,6 +208,18 @@ module Google
208
208
  include Google::Apis::Core::JsonObjectSupport
209
209
  end
210
210
 
211
+ class ConfigManagementContainerOverride
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class ConfigManagementDeploymentOverride
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class ConfigManagementErrorResource
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -1223,7 +1235,8 @@ module Google
1223
1235
  class ConfigManagementConfigSync
1224
1236
  # @private
1225
1237
  class Representation < Google::Apis::Core::JsonRepresentation
1226
- property :allow_vertical_scale, as: 'allowVerticalScale'
1238
+ collection :deployment_overrides, as: 'deploymentOverrides', class: Google::Apis::GkehubV1::ConfigManagementDeploymentOverride, decorator: Google::Apis::GkehubV1::ConfigManagementDeploymentOverride::Representation
1239
+
1227
1240
  property :enabled, as: 'enabled'
1228
1241
  property :git, as: 'git', class: Google::Apis::GkehubV1::ConfigManagementGitConfig, decorator: Google::Apis::GkehubV1::ConfigManagementGitConfig::Representation
1229
1242
 
@@ -1292,6 +1305,27 @@ module Google
1292
1305
  end
1293
1306
  end
1294
1307
 
1308
+ class ConfigManagementContainerOverride
1309
+ # @private
1310
+ class Representation < Google::Apis::Core::JsonRepresentation
1311
+ property :container_name, as: 'containerName'
1312
+ property :cpu_limit, as: 'cpuLimit'
1313
+ property :cpu_request, as: 'cpuRequest'
1314
+ property :memory_limit, as: 'memoryLimit'
1315
+ property :memory_request, as: 'memoryRequest'
1316
+ end
1317
+ end
1318
+
1319
+ class ConfigManagementDeploymentOverride
1320
+ # @private
1321
+ class Representation < Google::Apis::Core::JsonRepresentation
1322
+ collection :containers, as: 'containers', class: Google::Apis::GkehubV1::ConfigManagementContainerOverride, decorator: Google::Apis::GkehubV1::ConfigManagementContainerOverride::Representation
1323
+
1324
+ property :deployment_name, as: 'deploymentName'
1325
+ property :deployment_namespace, as: 'deploymentNamespace'
1326
+ end
1327
+ end
1328
+
1295
1329
  class ConfigManagementErrorResource
1296
1330
  # @private
1297
1331
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.81.0
4
+ version: 0.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.81.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.83.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for GKE Hub API V1
79
79
  test_files: []