google-apis-clouddeploy_v1 0.23.0 → 0.25.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: f7bcfaf3eb4f658ab5acbe13e3d92f2c93fc14fb883011c3d8dd715c0f0ff4a1
4
- data.tar.gz: d4d1c9027bf259913647fd716ff4bbe3b1f49711538695fc34a0de5f423f3305
3
+ metadata.gz: cab3e1e8a7010ee4a042b3d2315698918dd4feed57a3b30b2a58681cd652b540
4
+ data.tar.gz: d998da5955797f6158116ec140321905190c0dc819623a4f246c80d2bc04586b
5
5
  SHA512:
6
- metadata.gz: 7447664b61014b48d1ac29e4843c60aebddc9f5d9c624bc34b901e738dda2d1a86b7f701125785db47be38b2da62ae4630275715a32acdbbbfe6a5a2a893e571
7
- data.tar.gz: 54c712634c82883a804dba613a9ba78c17e3d16e62b86d7be9d84bcf638df2b14f2668ffebceeaca9f20b45e71edad1e5f6b71fba280d4095ad86245fe5b0998
6
+ metadata.gz: 70ef5c489e0642171e4270d66ee4fad19136a1274b7455305a8b5fb5a8b5a49f50b43bb366965de03e5050f20533de31287d96bea493b3676c3a828e70d5bfff
7
+ data.tar.gz: 150d583b61515fd0f3c8538d261fd79bfcc2788c53cf7637f2ad4739343f72e5c4432f99ac9f257d42b90050f683394d3c974bde4a808f5bb4ee192f7dd3b1a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.25.0 (2023-05-07)
4
+
5
+ * Regenerated from discovery document revision 20230426
6
+
7
+ ### v0.24.0 (2023-04-30)
8
+
9
+ * Regenerated from discovery document revision 20230419
10
+
3
11
  ### v0.23.0 (2023-03-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20230315
@@ -857,6 +857,33 @@ module Google
857
857
  end
858
858
  end
859
859
 
860
+ # The artifacts produced by a deploy operation.
861
+ class DeployArtifact
862
+ include Google::Apis::Core::Hashable
863
+
864
+ # Output only. URI of a directory containing the artifacts. All paths are
865
+ # relative to this location.
866
+ # Corresponds to the JSON property `artifactUri`
867
+ # @return [String]
868
+ attr_accessor :artifact_uri
869
+
870
+ # Output only. File paths of the manifests applied during the deploy operation
871
+ # relative to the URI.
872
+ # Corresponds to the JSON property `manifestPaths`
873
+ # @return [Array<String>]
874
+ attr_accessor :manifest_paths
875
+
876
+ def initialize(**args)
877
+ update!(**args)
878
+ end
879
+
880
+ # Update properties of this object
881
+ def update!(**args)
882
+ @artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri)
883
+ @manifest_paths = args[:manifest_paths] if args.key?(:manifest_paths)
884
+ end
885
+ end
886
+
860
887
  # A deploy Job.
861
888
  class DeployJob
862
889
  include Google::Apis::Core::Hashable
@@ -874,6 +901,11 @@ module Google
874
901
  class DeployJobRun
875
902
  include Google::Apis::Core::Hashable
876
903
 
904
+ # The artifacts produced by a deploy operation.
905
+ # Corresponds to the JSON property `artifact`
906
+ # @return [Google::Apis::ClouddeployV1::DeployArtifact]
907
+ attr_accessor :artifact
908
+
877
909
  # Output only. The resource name of the Cloud Build `Build` object that is used
878
910
  # to deploy. Format is projects/`project`/locations/`location`/builds/`build`.
879
911
  # Corresponds to the JSON property `build`
@@ -903,6 +935,7 @@ module Google
903
935
 
904
936
  # Update properties of this object
905
937
  def update!(**args)
938
+ @artifact = args[:artifact] if args.key?(:artifact)
906
939
  @build = args[:build] if args.key?(:build)
907
940
  @failure_cause = args[:failure_cause] if args.key?(:failure_cause)
908
941
  @failure_message = args[:failure_message] if args.key?(:failure_message)
@@ -1643,7 +1676,7 @@ module Google
1643
1676
  end
1644
1677
  end
1645
1678
 
1646
- # A resource that represents Google Cloud Platform location.
1679
+ # A resource that represents a Google Cloud location.
1647
1680
  class Location
1648
1681
  include Google::Apis::Core::Hashable
1649
1682
 
@@ -1897,6 +1930,12 @@ module Google
1897
1930
  class PhaseArtifact
1898
1931
  include Google::Apis::Core::Hashable
1899
1932
 
1933
+ # Output only. File path of the directory of rendered job manifests relative to
1934
+ # the URI. This is only set if it is applicable.
1935
+ # Corresponds to the JSON property `jobManifestsPath`
1936
+ # @return [String]
1937
+ attr_accessor :job_manifests_path
1938
+
1900
1939
  # Output only. File path of the rendered manifest relative to the URI.
1901
1940
  # Corresponds to the JSON property `manifestPath`
1902
1941
  # @return [String]
@@ -1914,6 +1953,7 @@ module Google
1914
1953
 
1915
1954
  # Update properties of this object
1916
1955
  def update!(**args)
1956
+ @job_manifests_path = args[:job_manifests_path] if args.key?(:job_manifests_path)
1917
1957
  @manifest_path = args[:manifest_path] if args.key?(:manifest_path)
1918
1958
  @skaffold_config_path = args[:skaffold_config_path] if args.key?(:skaffold_config_path)
1919
1959
  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.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230315"
25
+ REVISION = "20230426"
26
26
  end
27
27
  end
28
28
  end
@@ -208,6 +208,12 @@ module Google
208
208
  include Google::Apis::Core::JsonObjectSupport
209
209
  end
210
210
 
211
+ class DeployArtifact
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
211
217
  class DeployJob
212
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
219
 
@@ -853,6 +859,14 @@ module Google
853
859
  end
854
860
  end
855
861
 
862
+ class DeployArtifact
863
+ # @private
864
+ class Representation < Google::Apis::Core::JsonRepresentation
865
+ property :artifact_uri, as: 'artifactUri'
866
+ collection :manifest_paths, as: 'manifestPaths'
867
+ end
868
+ end
869
+
856
870
  class DeployJob
857
871
  # @private
858
872
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -862,6 +876,8 @@ module Google
862
876
  class DeployJobRun
863
877
  # @private
864
878
  class Representation < Google::Apis::Core::JsonRepresentation
879
+ property :artifact, as: 'artifact', class: Google::Apis::ClouddeployV1::DeployArtifact, decorator: Google::Apis::ClouddeployV1::DeployArtifact::Representation
880
+
865
881
  property :build, as: 'build'
866
882
  property :failure_cause, as: 'failureCause'
867
883
  property :failure_message, as: 'failureMessage'
@@ -1149,6 +1165,7 @@ module Google
1149
1165
  class PhaseArtifact
1150
1166
  # @private
1151
1167
  class Representation < Google::Apis::Core::JsonRepresentation
1168
+ property :job_manifests_path, as: 'jobManifestsPath'
1152
1169
  property :manifest_path, as: 'manifestPath'
1153
1170
  property :skaffold_config_path, as: 'skaffoldConfigPath'
1154
1171
  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.23.0
4
+ version: 0.25.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: 2023-04-02 00:00:00.000000000 Z
11
+ date: 2023-05-14 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.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.25.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: []