google-apis-clouddeploy_v1 0.64.0 → 0.66.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: ec0682ea2571ceff41f8ee301f1a62bdf9d7d8d653c199a59d017246bec4d07b
4
- data.tar.gz: d3546d2591ae40640b0349a60dd285d303369983129c840da4ace5a23b38116e
3
+ metadata.gz: f31e9b9a0a77fb7a78a2f417c837b0f96b3220dd6b8d8e273479f097fdc68d08
4
+ data.tar.gz: 56fba0db08d19a3bb284c41a6b30fe708bdb7e458b4c090eef43550d6bca86ac
5
5
  SHA512:
6
- metadata.gz: e241e6617cb396280d2504af7d913c970d2943d51d54ed77a6f9a662486c345644bf478f05307f1efcbd154d7c24ab3591e499421eb3eb4d86b8ba82414abcf6
7
- data.tar.gz: 99284e96e77d6d7ce58a0a1317a5b191eab652cebbfc8be560739adb075b266a18d15de052414e6fc18ca9847ce8f21988538436825386df6d093603901b4bff
6
+ metadata.gz: 888033f30856b36913e163c300bb38a0d88e808412be54773fd7356b4f7f682e1b521a9817be9953ca3c33bbd2b99f184c44fd5c55177b13a5fe11437b18d2c9
7
+ data.tar.gz: 5472fc1608ceb949ed507f3074cfe0778a7338c9a36c3ec22339763ec1a1d61c4ff97fbebce5f22d00d026bc3328857b11d740e23886d4ffacbd1e7c75efe519
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.66.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251203
6
+
7
+ ### v0.65.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251105
10
+
3
11
  ### v0.64.0 (2025-11-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20251022
@@ -1268,6 +1268,11 @@ module Google
1268
1268
  # @return [String]
1269
1269
  attr_accessor :default_skaffold_version
1270
1270
 
1271
+ # Details of ToolVersions for the release.
1272
+ # Corresponds to the JSON property `defaultToolVersions`
1273
+ # @return [Google::Apis::ClouddeployV1::ToolVersions]
1274
+ attr_accessor :default_tool_versions
1275
+
1271
1276
  # Name of the configuration.
1272
1277
  # Corresponds to the JSON property `name`
1273
1278
  # @return [String]
@@ -1285,6 +1290,7 @@ module Google
1285
1290
  # Update properties of this object
1286
1291
  def update!(**args)
1287
1292
  @default_skaffold_version = args[:default_skaffold_version] if args.key?(:default_skaffold_version)
1293
+ @default_tool_versions = args[:default_tool_versions] if args.key?(:default_tool_versions)
1288
1294
  @name = args[:name] if args.key?(:name)
1289
1295
  @supported_versions = args[:supported_versions] if args.key?(:supported_versions)
1290
1296
  end
@@ -3065,8 +3071,9 @@ module Google
3065
3071
  attr_accessor :operations
3066
3072
 
3067
3073
  # Unordered list. Unreachable resources. Populated when the request sets `
3068
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
3069
- # when attempting to list all resources across all supported locations.
3074
+ # ListOperationsRequest.return_partial_success` and reads across collections.
3075
+ # For example, when attempting to list all resources across all supported
3076
+ # locations.
3070
3077
  # Corresponds to the JSON property `unreachable`
3071
3078
  # @return [Array<String>]
3072
3079
  attr_accessor :unreachable
@@ -4220,6 +4227,11 @@ module Google
4220
4227
  # @return [Array<Google::Apis::ClouddeployV1::Target>]
4221
4228
  attr_accessor :target_snapshots
4222
4229
 
4230
+ # Details of ToolVersions for the release.
4231
+ # Corresponds to the JSON property `toolVersions`
4232
+ # @return [Google::Apis::ClouddeployV1::ToolVersions]
4233
+ attr_accessor :tool_versions
4234
+
4223
4235
  # Output only. Unique identifier of the `Release`.
4224
4236
  # Corresponds to the JSON property `uid`
4225
4237
  # @return [String]
@@ -4252,6 +4264,7 @@ module Google
4252
4264
  @target_artifacts = args[:target_artifacts] if args.key?(:target_artifacts)
4253
4265
  @target_renders = args[:target_renders] if args.key?(:target_renders)
4254
4266
  @target_snapshots = args[:target_snapshots] if args.key?(:target_snapshots)
4267
+ @tool_versions = args[:tool_versions] if args.key?(:tool_versions)
4255
4268
  @uid = args[:uid] if args.key?(:uid)
4256
4269
  end
4257
4270
  end
@@ -4260,6 +4273,36 @@ module Google
4260
4273
  class ReleaseCondition
4261
4274
  include Google::Apis::Core::Hashable
4262
4275
 
4276
+ # ToolVersionSupportedCondition contains information about when support for the
4277
+ # release's version of a Tool ends.
4278
+ # Corresponds to the JSON property `dockerVersionSupportedCondition`
4279
+ # @return [Google::Apis::ClouddeployV1::ToolVersionSupportedCondition]
4280
+ attr_accessor :docker_version_supported_condition
4281
+
4282
+ # ToolVersionSupportedCondition contains information about when support for the
4283
+ # release's version of a Tool ends.
4284
+ # Corresponds to the JSON property `helmVersionSupportedCondition`
4285
+ # @return [Google::Apis::ClouddeployV1::ToolVersionSupportedCondition]
4286
+ attr_accessor :helm_version_supported_condition
4287
+
4288
+ # ToolVersionSupportedCondition contains information about when support for the
4289
+ # release's version of a Tool ends.
4290
+ # Corresponds to the JSON property `kptVersionSupportedCondition`
4291
+ # @return [Google::Apis::ClouddeployV1::ToolVersionSupportedCondition]
4292
+ attr_accessor :kpt_version_supported_condition
4293
+
4294
+ # ToolVersionSupportedCondition contains information about when support for the
4295
+ # release's version of a Tool ends.
4296
+ # Corresponds to the JSON property `kubectlVersionSupportedCondition`
4297
+ # @return [Google::Apis::ClouddeployV1::ToolVersionSupportedCondition]
4298
+ attr_accessor :kubectl_version_supported_condition
4299
+
4300
+ # ToolVersionSupportedCondition contains information about when support for the
4301
+ # release's version of a Tool ends.
4302
+ # Corresponds to the JSON property `kustomizeVersionSupportedCondition`
4303
+ # @return [Google::Apis::ClouddeployV1::ToolVersionSupportedCondition]
4304
+ attr_accessor :kustomize_version_supported_condition
4305
+
4263
4306
  # ReleaseReadyCondition contains information around the status of the Release.
4264
4307
  # If a release is not ready, you cannot create a rollout with the release.
4265
4308
  # Corresponds to the JSON property `releaseReadyCondition`
@@ -4272,14 +4315,26 @@ module Google
4272
4315
  # @return [Google::Apis::ClouddeployV1::SkaffoldSupportedCondition]
4273
4316
  attr_accessor :skaffold_supported_condition
4274
4317
 
4318
+ # ToolVersionSupportedCondition contains information about when support for the
4319
+ # release's version of a Tool ends.
4320
+ # Corresponds to the JSON property `skaffoldVersionSupportedCondition`
4321
+ # @return [Google::Apis::ClouddeployV1::ToolVersionSupportedCondition]
4322
+ attr_accessor :skaffold_version_supported_condition
4323
+
4275
4324
  def initialize(**args)
4276
4325
  update!(**args)
4277
4326
  end
4278
4327
 
4279
4328
  # Update properties of this object
4280
4329
  def update!(**args)
4330
+ @docker_version_supported_condition = args[:docker_version_supported_condition] if args.key?(:docker_version_supported_condition)
4331
+ @helm_version_supported_condition = args[:helm_version_supported_condition] if args.key?(:helm_version_supported_condition)
4332
+ @kpt_version_supported_condition = args[:kpt_version_supported_condition] if args.key?(:kpt_version_supported_condition)
4333
+ @kubectl_version_supported_condition = args[:kubectl_version_supported_condition] if args.key?(:kubectl_version_supported_condition)
4334
+ @kustomize_version_supported_condition = args[:kustomize_version_supported_condition] if args.key?(:kustomize_version_supported_condition)
4281
4335
  @release_ready_condition = args[:release_ready_condition] if args.key?(:release_ready_condition)
4282
4336
  @skaffold_supported_condition = args[:skaffold_supported_condition] if args.key?(:skaffold_supported_condition)
4337
+ @skaffold_version_supported_condition = args[:skaffold_version_supported_condition] if args.key?(:skaffold_version_supported_condition)
4283
4338
  end
4284
4339
  end
4285
4340
 
@@ -6417,6 +6472,96 @@ module Google
6417
6472
  end
6418
6473
  end
6419
6474
 
6475
+ # ToolVersionSupportedCondition contains information about when support for the
6476
+ # release's version of a Tool ends.
6477
+ class ToolVersionSupportedCondition
6478
+ include Google::Apis::Core::Hashable
6479
+
6480
+ # Output only. The time at which this release's version of the Tool will enter
6481
+ # maintenance mode.
6482
+ # Corresponds to the JSON property `maintenanceModeTime`
6483
+ # @return [String]
6484
+ attr_accessor :maintenance_mode_time
6485
+
6486
+ # Output only. True if the version of Tool used by this release is supported.
6487
+ # Corresponds to the JSON property `status`
6488
+ # @return [Boolean]
6489
+ attr_accessor :status
6490
+ alias_method :status?, :status
6491
+
6492
+ # Output only. The time at which this release's version of the Tool will no
6493
+ # longer be supported.
6494
+ # Corresponds to the JSON property `supportExpirationTime`
6495
+ # @return [String]
6496
+ attr_accessor :support_expiration_time
6497
+
6498
+ # Output only. The Tool support state for this release's version of the Tool.
6499
+ # Corresponds to the JSON property `toolVersionSupportState`
6500
+ # @return [String]
6501
+ attr_accessor :tool_version_support_state
6502
+
6503
+ def initialize(**args)
6504
+ update!(**args)
6505
+ end
6506
+
6507
+ # Update properties of this object
6508
+ def update!(**args)
6509
+ @maintenance_mode_time = args[:maintenance_mode_time] if args.key?(:maintenance_mode_time)
6510
+ @status = args[:status] if args.key?(:status)
6511
+ @support_expiration_time = args[:support_expiration_time] if args.key?(:support_expiration_time)
6512
+ @tool_version_support_state = args[:tool_version_support_state] if args.key?(:tool_version_support_state)
6513
+ end
6514
+ end
6515
+
6516
+ # Details of ToolVersions for the release.
6517
+ class ToolVersions
6518
+ include Google::Apis::Core::Hashable
6519
+
6520
+ # Optional. The docker version to use for Cloud Deploy operations.
6521
+ # Corresponds to the JSON property `docker`
6522
+ # @return [String]
6523
+ attr_accessor :docker
6524
+
6525
+ # Optional. The helm version to use for Cloud Deploy operations.
6526
+ # Corresponds to the JSON property `helm`
6527
+ # @return [String]
6528
+ attr_accessor :helm
6529
+
6530
+ # Optional. The kpt version to use for Cloud Deploy operations.
6531
+ # Corresponds to the JSON property `kpt`
6532
+ # @return [String]
6533
+ attr_accessor :kpt
6534
+
6535
+ # Optional. The kubectl version to use for Cloud Deploy operations.
6536
+ # Corresponds to the JSON property `kubectl`
6537
+ # @return [String]
6538
+ attr_accessor :kubectl
6539
+
6540
+ # Optional. The kustomize version to use for Cloud Deploy operations.
6541
+ # Corresponds to the JSON property `kustomize`
6542
+ # @return [String]
6543
+ attr_accessor :kustomize
6544
+
6545
+ # Optional. The skaffold version to use for Cloud Deploy operations.
6546
+ # Corresponds to the JSON property `skaffold`
6547
+ # @return [String]
6548
+ attr_accessor :skaffold
6549
+
6550
+ def initialize(**args)
6551
+ update!(**args)
6552
+ end
6553
+
6554
+ # Update properties of this object
6555
+ def update!(**args)
6556
+ @docker = args[:docker] if args.key?(:docker)
6557
+ @helm = args[:helm] if args.key?(:helm)
6558
+ @kpt = args[:kpt] if args.key?(:kpt)
6559
+ @kubectl = args[:kubectl] if args.key?(:kubectl)
6560
+ @kustomize = args[:kustomize] if args.key?(:kustomize)
6561
+ @skaffold = args[:skaffold] if args.key?(:skaffold)
6562
+ end
6563
+ end
6564
+
6420
6565
  # A verify Job.
6421
6566
  class VerifyJob
6422
6567
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ClouddeployV1
18
18
  # Version of the google-apis-clouddeploy_v1 gem
19
- GEM_VERSION = "0.64.0"
19
+ GEM_VERSION = "0.66.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 = "20251022"
25
+ REVISION = "20251203"
26
26
  end
27
27
  end
28
28
  end
@@ -1000,6 +1000,18 @@ module Google
1000
1000
  include Google::Apis::Core::JsonObjectSupport
1001
1001
  end
1002
1002
 
1003
+ class ToolVersionSupportedCondition
1004
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1005
+
1006
+ include Google::Apis::Core::JsonObjectSupport
1007
+ end
1008
+
1009
+ class ToolVersions
1010
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1011
+
1012
+ include Google::Apis::Core::JsonObjectSupport
1013
+ end
1014
+
1003
1015
  class VerifyJob
1004
1016
  class Representation < Google::Apis::Core::JsonRepresentation; end
1005
1017
 
@@ -1362,6 +1374,8 @@ module Google
1362
1374
  # @private
1363
1375
  class Representation < Google::Apis::Core::JsonRepresentation
1364
1376
  property :default_skaffold_version, as: 'defaultSkaffoldVersion'
1377
+ property :default_tool_versions, as: 'defaultToolVersions', class: Google::Apis::ClouddeployV1::ToolVersions, decorator: Google::Apis::ClouddeployV1::ToolVersions::Representation
1378
+
1365
1379
  property :name, as: 'name'
1366
1380
  collection :supported_versions, as: 'supportedVersions', class: Google::Apis::ClouddeployV1::SkaffoldVersion, decorator: Google::Apis::ClouddeployV1::SkaffoldVersion::Representation
1367
1381
 
@@ -2145,6 +2159,8 @@ module Google
2145
2159
 
2146
2160
  collection :target_snapshots, as: 'targetSnapshots', class: Google::Apis::ClouddeployV1::Target, decorator: Google::Apis::ClouddeployV1::Target::Representation
2147
2161
 
2162
+ property :tool_versions, as: 'toolVersions', class: Google::Apis::ClouddeployV1::ToolVersions, decorator: Google::Apis::ClouddeployV1::ToolVersions::Representation
2163
+
2148
2164
  property :uid, as: 'uid'
2149
2165
  end
2150
2166
  end
@@ -2152,10 +2168,22 @@ module Google
2152
2168
  class ReleaseCondition
2153
2169
  # @private
2154
2170
  class Representation < Google::Apis::Core::JsonRepresentation
2171
+ property :docker_version_supported_condition, as: 'dockerVersionSupportedCondition', class: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition, decorator: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition::Representation
2172
+
2173
+ property :helm_version_supported_condition, as: 'helmVersionSupportedCondition', class: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition, decorator: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition::Representation
2174
+
2175
+ property :kpt_version_supported_condition, as: 'kptVersionSupportedCondition', class: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition, decorator: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition::Representation
2176
+
2177
+ property :kubectl_version_supported_condition, as: 'kubectlVersionSupportedCondition', class: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition, decorator: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition::Representation
2178
+
2179
+ property :kustomize_version_supported_condition, as: 'kustomizeVersionSupportedCondition', class: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition, decorator: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition::Representation
2180
+
2155
2181
  property :release_ready_condition, as: 'releaseReadyCondition', class: Google::Apis::ClouddeployV1::ReleaseReadyCondition, decorator: Google::Apis::ClouddeployV1::ReleaseReadyCondition::Representation
2156
2182
 
2157
2183
  property :skaffold_supported_condition, as: 'skaffoldSupportedCondition', class: Google::Apis::ClouddeployV1::SkaffoldSupportedCondition, decorator: Google::Apis::ClouddeployV1::SkaffoldSupportedCondition::Representation
2158
2184
 
2185
+ property :skaffold_version_supported_condition, as: 'skaffoldVersionSupportedCondition', class: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition, decorator: Google::Apis::ClouddeployV1::ToolVersionSupportedCondition::Representation
2186
+
2159
2187
  end
2160
2188
  end
2161
2189
 
@@ -2729,6 +2757,28 @@ module Google
2729
2757
  end
2730
2758
  end
2731
2759
 
2760
+ class ToolVersionSupportedCondition
2761
+ # @private
2762
+ class Representation < Google::Apis::Core::JsonRepresentation
2763
+ property :maintenance_mode_time, as: 'maintenanceModeTime'
2764
+ property :status, as: 'status'
2765
+ property :support_expiration_time, as: 'supportExpirationTime'
2766
+ property :tool_version_support_state, as: 'toolVersionSupportState'
2767
+ end
2768
+ end
2769
+
2770
+ class ToolVersions
2771
+ # @private
2772
+ class Representation < Google::Apis::Core::JsonRepresentation
2773
+ property :docker, as: 'docker'
2774
+ property :helm, as: 'helm'
2775
+ property :kpt, as: 'kpt'
2776
+ property :kubectl, as: 'kubectl'
2777
+ property :kustomize, as: 'kustomize'
2778
+ property :skaffold, as: 'skaffold'
2779
+ end
2780
+ end
2781
+
2732
2782
  class VerifyJob
2733
2783
  # @private
2734
2784
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2330,11 +2330,12 @@ module Google
2330
2330
  # The standard list page token.
2331
2331
  # @param [Boolean] return_partial_success
2332
2332
  # When set to `true`, operations that are reachable are returned as normal, and
2333
- # those that are unreachable are returned in the [ListOperationsResponse.
2334
- # unreachable] field. This can only be `true` when reading across collections e.
2335
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2336
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2337
- # explicitly documented otherwise in service or product specific documentation.
2333
+ # those that are unreachable are returned in the ListOperationsResponse.
2334
+ # unreachable field. This can only be `true` when reading across collections.
2335
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
2336
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
2337
+ # if set unless explicitly documented otherwise in service or product specific
2338
+ # documentation.
2338
2339
  # @param [String] fields
2339
2340
  # Selector specifying which fields to include in a partial response.
2340
2341
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-clouddeploy_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.66.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-clouddeploy_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.66.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
62
62
  rdoc_options: []
63
63
  require_paths: