google-apis-cloudbuild_v1beta1 0.17.0 → 0.18.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac45652c27192c30c895b7656b40d51bddb1ccb5aef767ee9ae29a1b5e0289fd
|
4
|
+
data.tar.gz: 88fbeaaafc790026c42fd1bf0eac380fd32aa7f78ec9501b7d86410371e80018
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 898da7cb057e661dde3f90f6051018f48be8ec2cc6e9649c3726ea677d5024eaa4d5e9f4578a28bc5516b27f5489414b01d8b64e66d9d561d5b405803a7f9248
|
7
|
+
data.tar.gz: 348a385790d9eba203eef78d0836740424fe51418660b7a76b6c01f84971c5dd0dcaf859810f0ec4fea97689eac308529bdad7dc35d6baf8a64a10574b07640d
|
data/CHANGELOG.md
CHANGED
@@ -1879,6 +1879,65 @@ module Google
|
|
1879
1879
|
end
|
1880
1880
|
end
|
1881
1881
|
|
1882
|
+
# Represents the custom metadata of the RunWorkflow long-running operation.
|
1883
|
+
class RunWorkflowCustomOperationMetadata
|
1884
|
+
include Google::Apis::Core::Hashable
|
1885
|
+
|
1886
|
+
# Output only. API version used to start the operation.
|
1887
|
+
# Corresponds to the JSON property `apiVersion`
|
1888
|
+
# @return [String]
|
1889
|
+
attr_accessor :api_version
|
1890
|
+
|
1891
|
+
# Output only. The time the operation was created.
|
1892
|
+
# Corresponds to the JSON property `createTime`
|
1893
|
+
# @return [String]
|
1894
|
+
attr_accessor :create_time
|
1895
|
+
|
1896
|
+
# Output only. The time the operation finished running.
|
1897
|
+
# Corresponds to the JSON property `endTime`
|
1898
|
+
# @return [String]
|
1899
|
+
attr_accessor :end_time
|
1900
|
+
|
1901
|
+
# Output only. ID of the pipeline run created by RunWorkflow.
|
1902
|
+
# Corresponds to the JSON property `pipelineRunId`
|
1903
|
+
# @return [String]
|
1904
|
+
attr_accessor :pipeline_run_id
|
1905
|
+
|
1906
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
1907
|
+
# operation. Operations that have successfully been cancelled have Operation.
|
1908
|
+
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
1909
|
+
# CANCELLED`.
|
1910
|
+
# Corresponds to the JSON property `requestedCancellation`
|
1911
|
+
# @return [Boolean]
|
1912
|
+
attr_accessor :requested_cancellation
|
1913
|
+
alias_method :requested_cancellation?, :requested_cancellation
|
1914
|
+
|
1915
|
+
# Output only. Server-defined resource path for the target of the operation.
|
1916
|
+
# Corresponds to the JSON property `target`
|
1917
|
+
# @return [String]
|
1918
|
+
attr_accessor :target
|
1919
|
+
|
1920
|
+
# Output only. Name of the verb executed by the operation.
|
1921
|
+
# Corresponds to the JSON property `verb`
|
1922
|
+
# @return [String]
|
1923
|
+
attr_accessor :verb
|
1924
|
+
|
1925
|
+
def initialize(**args)
|
1926
|
+
update!(**args)
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
# Update properties of this object
|
1930
|
+
def update!(**args)
|
1931
|
+
@api_version = args[:api_version] if args.key?(:api_version)
|
1932
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1933
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1934
|
+
@pipeline_run_id = args[:pipeline_run_id] if args.key?(:pipeline_run_id)
|
1935
|
+
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
1936
|
+
@target = args[:target] if args.key?(:target)
|
1937
|
+
@verb = args[:verb] if args.key?(:verb)
|
1938
|
+
end
|
1939
|
+
end
|
1940
|
+
|
1882
1941
|
# SMTPDelivery is the delivery configuration for an SMTP (email) notification.
|
1883
1942
|
class SmtpDelivery
|
1884
1943
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudbuildV1beta1
|
18
18
|
# Version of the google-apis-cloudbuild_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.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
|
|
@@ -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_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|