google-apis-cloudbuild_v1alpha1 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: 2cf279481196b551ab5f33cb9e1e9c04f953b97459a5120e9485f8bc2b55e45c
4
- data.tar.gz: e0cbed37d7fa0ea48e979043d01b34936b2633ee0efc3dc4455db753eff452ab
3
+ metadata.gz: ab3ba9ded43b9f05468db3096fbe13b3412f3b5619694d9272950ff611b5adbc
4
+ data.tar.gz: 4ae8c97d656daacdd9ea8052fc371abe6da79c5e69a34094881a9707ca58f0d5
5
5
  SHA512:
6
- metadata.gz: 5911c33d5e863c1ca8928da229ce72c6983dc60145b7a8b37dcb164c41fd5b93cbd417a66103b2fb34e802a13a4eeee6750a80b39a96841845619366c2f55acf
7
- data.tar.gz: 7bf4e6adf7a23f5ad22269ae1b91e80e528be8bcff0b092eec2d6661bb5f4e622bda2a0a76af7f0b1862b503a9cd348df1bb3c3cd542c5501068c6950298e481
6
+ metadata.gz: 35289deb369c4fe7a278093c92183e98c3c1e9d5921da5fba6562423a76a508463f13939175f9d0dbae01fbd22ee4dcd12620a3c827b18b8cc1b0e5c5b4a5a1e
7
+ data.tar.gz: 53c1ac2b31fd01a1300e2d3f2284a5c100def139478fa6e0562ae7f9e73bbb8cd4b610daf36105480fa2b044cbb173cf56d21f8a578f06c4c2733f52fcd11a0d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha1
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
@@ -1889,6 +1889,65 @@ module Google
1889
1889
  end
1890
1890
  end
1891
1891
 
1892
+ # Represents the custom metadata of the RunWorkflow long-running operation.
1893
+ class RunWorkflowCustomOperationMetadata
1894
+ include Google::Apis::Core::Hashable
1895
+
1896
+ # Output only. API version used to start the operation.
1897
+ # Corresponds to the JSON property `apiVersion`
1898
+ # @return [String]
1899
+ attr_accessor :api_version
1900
+
1901
+ # Output only. The time the operation was created.
1902
+ # Corresponds to the JSON property `createTime`
1903
+ # @return [String]
1904
+ attr_accessor :create_time
1905
+
1906
+ # Output only. The time the operation finished running.
1907
+ # Corresponds to the JSON property `endTime`
1908
+ # @return [String]
1909
+ attr_accessor :end_time
1910
+
1911
+ # Output only. ID of the pipeline run created by RunWorkflow.
1912
+ # Corresponds to the JSON property `pipelineRunId`
1913
+ # @return [String]
1914
+ attr_accessor :pipeline_run_id
1915
+
1916
+ # Output only. Identifies whether the user has requested cancellation of the
1917
+ # operation. Operations that have successfully been cancelled have Operation.
1918
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1919
+ # CANCELLED`.
1920
+ # Corresponds to the JSON property `requestedCancellation`
1921
+ # @return [Boolean]
1922
+ attr_accessor :requested_cancellation
1923
+ alias_method :requested_cancellation?, :requested_cancellation
1924
+
1925
+ # Output only. Server-defined resource path for the target of the operation.
1926
+ # Corresponds to the JSON property `target`
1927
+ # @return [String]
1928
+ attr_accessor :target
1929
+
1930
+ # Output only. Name of the verb executed by the operation.
1931
+ # Corresponds to the JSON property `verb`
1932
+ # @return [String]
1933
+ attr_accessor :verb
1934
+
1935
+ def initialize(**args)
1936
+ update!(**args)
1937
+ end
1938
+
1939
+ # Update properties of this object
1940
+ def update!(**args)
1941
+ @api_version = args[:api_version] if args.key?(:api_version)
1942
+ @create_time = args[:create_time] if args.key?(:create_time)
1943
+ @end_time = args[:end_time] if args.key?(:end_time)
1944
+ @pipeline_run_id = args[:pipeline_run_id] if args.key?(:pipeline_run_id)
1945
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1946
+ @target = args[:target] if args.key?(:target)
1947
+ @verb = args[:verb] if args.key?(:verb)
1948
+ end
1949
+ end
1950
+
1892
1951
  # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
1893
1952
  class SmtpDelivery
1894
1953
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha1
18
18
  # Version of the google-apis-cloudbuild_v1alpha1 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
 
@@ -890,6 +896,19 @@ module Google
890
896
  end
891
897
  end
892
898
 
899
+ class RunWorkflowCustomOperationMetadata
900
+ # @private
901
+ class Representation < Google::Apis::Core::JsonRepresentation
902
+ property :api_version, as: 'apiVersion'
903
+ property :create_time, as: 'createTime'
904
+ property :end_time, as: 'endTime'
905
+ property :pipeline_run_id, as: 'pipelineRunId'
906
+ property :requested_cancellation, as: 'requestedCancellation'
907
+ property :target, as: 'target'
908
+ property :verb, as: 'verb'
909
+ end
910
+ end
911
+
893
912
  class SmtpDelivery
894
913
  # @private
895
914
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha1
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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []