google-apis-clouddeploy_v1 0.41.0 → 0.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0575809ec3be54f2d4d1e815ae1bd500a87345af0dbe6961135595d57f03895
4
- data.tar.gz: 6eae26470496292fad6983bb7feefde3714a92bee732788d8fd003afae3310f1
3
+ metadata.gz: 4e1cd995f595f7c3e07fa5acd2c53a1ac465e4075d3454bdae026aa5f06d3c55
4
+ data.tar.gz: 050be6133cde0d4df831a0280cd2da6fc68e581566d27c9b6d4b37d2f1a2458c
5
5
  SHA512:
6
- metadata.gz: 5be200a8190246a1a537989f7fecfa90abbb453504a69396abfc5e4595a3e3337dc9402934625bdedd696b7efc716fb3a23cd9a426c1993cf2d5eaae6d984d6b
7
- data.tar.gz: e7eb288f012703282cd3084cefd94bc43a4caf9f44da20f00d29425a51c28f7d451ee5da30c4b6d363eca02f8b951d9e93861a0bd7fb1c6b591ac9495803b936
6
+ metadata.gz: 7172ad73215ce057aa48d8173504dacacf59344aeaeec5b42e544f672be5756a23bcf87d10e30030a97431a93a0ae4330bb2ccc165121fc63c94583bec265caa
7
+ data.tar.gz: 978ccae627cec150789b0567e0e61c324dbfc3089886f0fe83e43efc48bf1ac0df399c1e6337f5c3c2c6cb0466fa041cb687cb80fe2c26767203aacc1d9fa32a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.43.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240417
6
+
7
+ ### v0.42.0 (2024-03-03)
8
+
9
+ * Regenerated from discovery document revision 20240221
10
+
3
11
  ### v0.41.0 (2024-02-24)
4
12
 
5
13
  * Regenerated using generator version 0.14.0
@@ -510,6 +510,11 @@ module Google
510
510
  # @return [Array<String>]
511
511
  attr_accessor :advance_automation_runs
512
512
 
513
+ # Output only. The current AutomationRun repairing the rollout.
514
+ # Corresponds to the JSON property `currentRepairAutomationRun`
515
+ # @return [String]
516
+ attr_accessor :current_repair_automation_run
517
+
513
518
  # Output only. The ID of the AutomationRun initiated by a promote release rule.
514
519
  # Corresponds to the JSON property `promoteAutomationRun`
515
520
  # @return [String]
@@ -527,6 +532,7 @@ module Google
527
532
  # Update properties of this object
528
533
  def update!(**args)
529
534
  @advance_automation_runs = args[:advance_automation_runs] if args.key?(:advance_automation_runs)
535
+ @current_repair_automation_run = args[:current_repair_automation_run] if args.key?(:current_repair_automation_run)
530
536
  @promote_automation_run = args[:promote_automation_run] if args.key?(:promote_automation_run)
531
537
  @repair_automation_runs = args[:repair_automation_runs] if args.key?(:repair_automation_runs)
532
538
  end
@@ -4678,6 +4684,38 @@ module Google
4678
4684
  end
4679
4685
  end
4680
4686
 
4687
+ # Cloud Build V2 Repository containing Skaffold Configs.
4688
+ class SkaffoldGcbRepoSource
4689
+ include Google::Apis::Core::Hashable
4690
+
4691
+ # Optional. Relative path from the repository root to the Skaffold Config file.
4692
+ # Corresponds to the JSON property `path`
4693
+ # @return [String]
4694
+ attr_accessor :path
4695
+
4696
+ # Optional. Branch or tag to use when cloning the repository.
4697
+ # Corresponds to the JSON property `ref`
4698
+ # @return [String]
4699
+ attr_accessor :ref
4700
+
4701
+ # Required. Name of the Cloud Build V2 Repository. Format is projects/`project`/
4702
+ # locations/`location`/connections/`connection`/repositories/`repository`.
4703
+ # Corresponds to the JSON property `repository`
4704
+ # @return [String]
4705
+ attr_accessor :repository
4706
+
4707
+ def initialize(**args)
4708
+ update!(**args)
4709
+ end
4710
+
4711
+ # Update properties of this object
4712
+ def update!(**args)
4713
+ @path = args[:path] if args.key?(:path)
4714
+ @ref = args[:ref] if args.key?(:ref)
4715
+ @repository = args[:repository] if args.key?(:repository)
4716
+ end
4717
+ end
4718
+
4681
4719
  # Cloud Storage bucket containing Skaffold Config modules.
4682
4720
  class SkaffoldGcsSource
4683
4721
  include Google::Apis::Core::Hashable
@@ -4714,7 +4752,7 @@ module Google
4714
4752
  # @return [String]
4715
4753
  attr_accessor :path
4716
4754
 
4717
- # Optional. Git ref the package should be cloned from.
4755
+ # Optional. Git branch or tag to use when cloning the repository.
4718
4756
  # Corresponds to the JSON property `ref`
4719
4757
  # @return [String]
4720
4758
  attr_accessor :ref
@@ -4750,6 +4788,11 @@ module Google
4750
4788
  # @return [Google::Apis::ClouddeployV1::SkaffoldGitSource]
4751
4789
  attr_accessor :git
4752
4790
 
4791
+ # Cloud Build V2 Repository containing Skaffold Configs.
4792
+ # Corresponds to the JSON property `googleCloudBuildRepo`
4793
+ # @return [Google::Apis::ClouddeployV1::SkaffoldGcbRepoSource]
4794
+ attr_accessor :google_cloud_build_repo
4795
+
4753
4796
  # Cloud Storage bucket containing Skaffold Config modules.
4754
4797
  # Corresponds to the JSON property `googleCloudStorage`
4755
4798
  # @return [Google::Apis::ClouddeployV1::SkaffoldGcsSource]
@@ -4763,6 +4806,7 @@ module Google
4763
4806
  def update!(**args)
4764
4807
  @configs = args[:configs] if args.key?(:configs)
4765
4808
  @git = args[:git] if args.key?(:git)
4809
+ @google_cloud_build_repo = args[:google_cloud_build_repo] if args.key?(:google_cloud_build_repo)
4766
4810
  @google_cloud_storage = args[:google_cloud_storage] if args.key?(:google_cloud_storage)
4767
4811
  end
4768
4812
  end
@@ -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.41.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240131"
25
+ REVISION = "20240417"
26
26
  end
27
27
  end
28
28
  end
@@ -754,6 +754,12 @@ module Google
754
754
  include Google::Apis::Core::JsonObjectSupport
755
755
  end
756
756
 
757
+ class SkaffoldGcbRepoSource
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
757
763
  class SkaffoldGcsSource
758
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
759
765
 
@@ -1025,6 +1031,7 @@ module Google
1025
1031
  # @private
1026
1032
  class Representation < Google::Apis::Core::JsonRepresentation
1027
1033
  collection :advance_automation_runs, as: 'advanceAutomationRuns'
1034
+ property :current_repair_automation_run, as: 'currentRepairAutomationRun'
1028
1035
  property :promote_automation_run, as: 'promoteAutomationRun'
1029
1036
  collection :repair_automation_runs, as: 'repairAutomationRuns'
1030
1037
  end
@@ -2143,6 +2150,15 @@ module Google
2143
2150
  end
2144
2151
  end
2145
2152
 
2153
+ class SkaffoldGcbRepoSource
2154
+ # @private
2155
+ class Representation < Google::Apis::Core::JsonRepresentation
2156
+ property :path, as: 'path'
2157
+ property :ref, as: 'ref'
2158
+ property :repository, as: 'repository'
2159
+ end
2160
+ end
2161
+
2146
2162
  class SkaffoldGcsSource
2147
2163
  # @private
2148
2164
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2166,6 +2182,8 @@ module Google
2166
2182
  collection :configs, as: 'configs'
2167
2183
  property :git, as: 'git', class: Google::Apis::ClouddeployV1::SkaffoldGitSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGitSource::Representation
2168
2184
 
2185
+ property :google_cloud_build_repo, as: 'googleCloudBuildRepo', class: Google::Apis::ClouddeployV1::SkaffoldGcbRepoSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGcbRepoSource::Representation
2186
+
2169
2187
  property :google_cloud_storage, as: 'googleCloudStorage', class: Google::Apis::ClouddeployV1::SkaffoldGcsSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGcsSource::Representation
2170
2188
 
2171
2189
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-clouddeploy_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
63
63
  post_install_message:
64
64
  rdoc_options: []