google-apis-cloudbuild_v1alpha2 0.16.0 → 0.19.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: 5da035ee1549eefba22894d69ad89f2b9ba2a34680043c1eef258b1942e8673e
4
- data.tar.gz: c40ea62c66972527bdee9f5d900c3c8075a3b9198597c8d1935d2d8972f8fd60
3
+ metadata.gz: 89173f488d19b950d78c7bed43ae3b744646b9f483a590f580339c991546486e
4
+ data.tar.gz: b519cb80052b579f2331f03796c43a4413894ef63f03b924bd155be56c3c3a6a
5
5
  SHA512:
6
- metadata.gz: ea078a3bf330850b208a4bab7e166bb9c1155c5c991cc4d1bbc5427fdc440fac439cac46b85de04177a301faf23e0ebfea1381c99908bc09e5f956bc75c5e827
7
- data.tar.gz: 30b8e7806bc174be749b47862bc706407db6ca75e9b9a2da27e40537b4ebfda0985c20a06fd69285c1e1e61eb29bdde02dd3afd3ccc1ceb6f079785948c2a974
6
+ metadata.gz: 507ffe36364ddb54edd9cab76eb1510c2b0abc5ffc20f15cb62a543f61cc2dc775b9c3a268cc0af8719daac6379c1c09d86a87204a16c564fd2234c8611982aa
7
+ data.tar.gz: dd6648fde9274f3ff0b85f80c88215dc90bbb93cd15a6daca60d24bc800d83f05ed938001ad506f0f309011aa68446f5cfeb8711b2113342b92262d4bfa98232
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.19.0 (2022-03-02)
4
+
5
+ * Regenerated from discovery document revision 20220218
6
+
7
+ ### v0.18.0 (2022-02-11)
8
+
9
+ * Regenerated from discovery document revision 20220131
10
+
11
+ ### v0.17.0 (2022-02-05)
12
+
13
+ * Regenerated from discovery document revision 20220126
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.16.0 (2022-01-11)
4
17
 
5
18
  * Regenerated from discovery document revision 20211230
@@ -1876,6 +1876,65 @@ module Google
1876
1876
  end
1877
1877
  end
1878
1878
 
1879
+ # Represents the custom metadata of the RunWorkflow long-running operation.
1880
+ class RunWorkflowCustomOperationMetadata
1881
+ include Google::Apis::Core::Hashable
1882
+
1883
+ # Output only. API version used to start the operation.
1884
+ # Corresponds to the JSON property `apiVersion`
1885
+ # @return [String]
1886
+ attr_accessor :api_version
1887
+
1888
+ # Output only. The time the operation was created.
1889
+ # Corresponds to the JSON property `createTime`
1890
+ # @return [String]
1891
+ attr_accessor :create_time
1892
+
1893
+ # Output only. The time the operation finished running.
1894
+ # Corresponds to the JSON property `endTime`
1895
+ # @return [String]
1896
+ attr_accessor :end_time
1897
+
1898
+ # Output only. ID of the pipeline run created by RunWorkflow.
1899
+ # Corresponds to the JSON property `pipelineRunId`
1900
+ # @return [String]
1901
+ attr_accessor :pipeline_run_id
1902
+
1903
+ # Output only. Identifies whether the user has requested cancellation of the
1904
+ # operation. Operations that have successfully been cancelled have Operation.
1905
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1906
+ # CANCELLED`.
1907
+ # Corresponds to the JSON property `requestedCancellation`
1908
+ # @return [Boolean]
1909
+ attr_accessor :requested_cancellation
1910
+ alias_method :requested_cancellation?, :requested_cancellation
1911
+
1912
+ # Output only. Server-defined resource path for the target of the operation.
1913
+ # Corresponds to the JSON property `target`
1914
+ # @return [String]
1915
+ attr_accessor :target
1916
+
1917
+ # Output only. Name of the verb executed by the operation.
1918
+ # Corresponds to the JSON property `verb`
1919
+ # @return [String]
1920
+ attr_accessor :verb
1921
+
1922
+ def initialize(**args)
1923
+ update!(**args)
1924
+ end
1925
+
1926
+ # Update properties of this object
1927
+ def update!(**args)
1928
+ @api_version = args[:api_version] if args.key?(:api_version)
1929
+ @create_time = args[:create_time] if args.key?(:create_time)
1930
+ @end_time = args[:end_time] if args.key?(:end_time)
1931
+ @pipeline_run_id = args[:pipeline_run_id] if args.key?(:pipeline_run_id)
1932
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1933
+ @target = args[:target] if args.key?(:target)
1934
+ @verb = args[:verb] if args.key?(:verb)
1935
+ end
1936
+ end
1937
+
1879
1938
  # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
1880
1939
  class SmtpDelivery
1881
1940
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha2
18
18
  # Version of the google-apis-cloudbuild_v1alpha2 gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211230"
25
+ REVISION = "20220218"
26
26
  end
27
27
  end
28
28
  end
@@ -292,6 +292,12 @@ module Google
292
292
  include Google::Apis::Core::JsonObjectSupport
293
293
  end
294
294
 
295
+ class RunWorkflowCustomOperationMetadata
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
295
301
  class SmtpDelivery
296
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
303
 
@@ -888,6 +894,19 @@ module Google
888
894
  end
889
895
  end
890
896
 
897
+ class RunWorkflowCustomOperationMetadata
898
+ # @private
899
+ class Representation < Google::Apis::Core::JsonRepresentation
900
+ property :api_version, as: 'apiVersion'
901
+ property :create_time, as: 'createTime'
902
+ property :end_time, as: 'endTime'
903
+ property :pipeline_run_id, as: 'pipelineRunId'
904
+ property :requested_cancellation, as: 'requestedCancellation'
905
+ property :target, as: 'target'
906
+ property :verb, as: 'verb'
907
+ end
908
+ end
909
+
891
910
  class SmtpDelivery
892
911
  # @private
893
912
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.19.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: 2022-01-17 00:00:00.000000000 Z
11
+ date: 2022-03-07 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-cloudbuild_v1alpha2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1alpha2
63
63
  post_install_message:
64
64
  rdoc_options: []