google-apis-cloudbuild_v1alpha1 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab3ba9ded43b9f05468db3096fbe13b3412f3b5619694d9272950ff611b5adbc
|
4
|
+
data.tar.gz: 4ae8c97d656daacdd9ea8052fc371abe6da79c5e69a34094881a9707ca58f0d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35289deb369c4fe7a278093c92183e98c3c1e9d5921da5fba6562423a76a508463f13939175f9d0dbae01fbd22ee4dcd12620a3c827b18b8cc1b0e5c5b4a5a1e
|
7
|
+
data.tar.gz: 53c1ac2b31fd01a1300e2d3f2284a5c100def139478fa6e0562ae7f9e73bbb8cd4b610daf36105480fa2b044cbb173cf56d21f8a578f06c4c2733f52fcd11a0d
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|