google-apis-cloudbuild_v1alpha2 0.18.0 → 0.19.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: 4d2295fb218646871527faa7a41558cdf1e19c01c935e61a537be13c056139c2
4
- data.tar.gz: cc36dd20ecedef62f3aa295bc511ed62bf1413a32bafb7b71bcc9e6c5a87283f
3
+ metadata.gz: 89173f488d19b950d78c7bed43ae3b744646b9f483a590f580339c991546486e
4
+ data.tar.gz: b519cb80052b579f2331f03796c43a4413894ef63f03b924bd155be56c3c3a6a
5
5
  SHA512:
6
- metadata.gz: 6e372598d582167ecf3fa6f6e35fed28b8aa059178f980db6fa6e1b659aebf5783d8b26465e5dc43561a067d3b6de0fbbd34963cf3af122c827a85ba0bea8375
7
- data.tar.gz: 8cb050a0666f14c3dd3639b397bc84e25d040bf6e522f7c3185cb92ea9e0fd71181576c1fd24bb1ab596fd02487c1d56af32bda666b54cf6eed388745003253a
6
+ metadata.gz: 507ffe36364ddb54edd9cab76eb1510c2b0abc5ffc20f15cb62a543f61cc2dc775b9c3a268cc0af8719daac6379c1c09d86a87204a16c564fd2234c8611982aa
7
+ data.tar.gz: dd6648fde9274f3ff0b85f80c88215dc90bbb93cd15a6daca60d24bc800d83f05ed938001ad506f0f309011aa68446f5cfeb8711b2113342b92262d4bfa98232
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.18.0 (2022-02-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20220131
@@ -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.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220131"
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.18.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-02-14 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.18.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: []