google-apis-workflowexecutions_v1beta 0.1.0 → 0.6.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/workflowexecutions_v1beta.rb +1 -1
- data/lib/google/apis/workflowexecutions_v1beta/classes.rb +93 -2
- data/lib/google/apis/workflowexecutions_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/workflowexecutions_v1beta/representations.rb +47 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcb0e88b662c5abd6e76c47d59116d4015a27f9c99a9b2a31be06117a1f081f7
|
4
|
+
data.tar.gz: 6144f1c1a721fe486b663a31622503980df2bb1df3116c4e45bffd3c91478a8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cfd17ff776611693dbe9ae72201c40c60a8f043881583dd66f2149b3edc2510630ce657a811be6390cd4a1e36cdb8c738eba56ce86c5aee964fb73282d8f980
|
7
|
+
data.tar.gz: 59f1167c39f05cdf06541be4f3410ccde0df3ce6a9c4a50df2f55806fe997b89b6bb10e1e2b7a2b81153ca018a1fa564bbb8472b10c6c6eb7917568a2d2e07e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-workflowexecutions_v1beta
|
2
2
|
|
3
|
+
### v0.6.0 (2021-03-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210309
|
6
|
+
|
7
|
+
### v0.5.0 (2021-03-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210302
|
10
|
+
* Regenerated using generator version 0.2.0
|
11
|
+
|
12
|
+
### v0.4.0 (2021-03-04)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.3.0 (2021-02-18)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210209
|
19
|
+
|
20
|
+
### v0.2.0 (2021-01-20)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210105
|
23
|
+
* Regenerated using generator version 0.1.2
|
24
|
+
|
3
25
|
### v0.1.0 (2021-01-07)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20201208
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1beta'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
@@ -39,16 +39,21 @@ module Google
|
|
39
39
|
class Error
|
40
40
|
include Google::Apis::Core::Hashable
|
41
41
|
|
42
|
-
# Human readable
|
42
|
+
# Human readable stack trace string.
|
43
43
|
# Corresponds to the JSON property `context`
|
44
44
|
# @return [String]
|
45
45
|
attr_accessor :context
|
46
46
|
|
47
|
-
# Error
|
47
|
+
# Error message and data returned represented as a JSON string.
|
48
48
|
# Corresponds to the JSON property `payload`
|
49
49
|
# @return [String]
|
50
50
|
attr_accessor :payload
|
51
51
|
|
52
|
+
# A collection of stack elements (frames) where an error occurred.
|
53
|
+
# Corresponds to the JSON property `stackTrace`
|
54
|
+
# @return [Google::Apis::WorkflowexecutionsV1beta::StackTrace]
|
55
|
+
attr_accessor :stack_trace
|
56
|
+
|
52
57
|
def initialize(**args)
|
53
58
|
update!(**args)
|
54
59
|
end
|
@@ -57,6 +62,7 @@ module Google
|
|
57
62
|
def update!(**args)
|
58
63
|
@context = args[:context] if args.key?(:context)
|
59
64
|
@payload = args[:payload] if args.key?(:payload)
|
65
|
+
@stack_trace = args[:stack_trace] if args.key?(:stack_trace)
|
60
66
|
end
|
61
67
|
end
|
62
68
|
|
@@ -152,6 +158,91 @@ module Google
|
|
152
158
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
153
159
|
end
|
154
160
|
end
|
161
|
+
|
162
|
+
# Position contains source position information about the stack trace element
|
163
|
+
# such as line number, column number and length of the code block in bytes.
|
164
|
+
class Position
|
165
|
+
include Google::Apis::Core::Hashable
|
166
|
+
|
167
|
+
# The source code column position (of the line) the current instruction was
|
168
|
+
# generated from.
|
169
|
+
# Corresponds to the JSON property `column`
|
170
|
+
# @return [Fixnum]
|
171
|
+
attr_accessor :column
|
172
|
+
|
173
|
+
# The length in bytes of text in this character group, e.g. digits of a number,
|
174
|
+
# string length, or AST (abstract syntax tree) node.
|
175
|
+
# Corresponds to the JSON property `length`
|
176
|
+
# @return [Fixnum]
|
177
|
+
attr_accessor :length
|
178
|
+
|
179
|
+
# The source code line number the current instruction was generated from.
|
180
|
+
# Corresponds to the JSON property `line`
|
181
|
+
# @return [Fixnum]
|
182
|
+
attr_accessor :line
|
183
|
+
|
184
|
+
def initialize(**args)
|
185
|
+
update!(**args)
|
186
|
+
end
|
187
|
+
|
188
|
+
# Update properties of this object
|
189
|
+
def update!(**args)
|
190
|
+
@column = args[:column] if args.key?(:column)
|
191
|
+
@length = args[:length] if args.key?(:length)
|
192
|
+
@line = args[:line] if args.key?(:line)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
# A collection of stack elements (frames) where an error occurred.
|
197
|
+
class StackTrace
|
198
|
+
include Google::Apis::Core::Hashable
|
199
|
+
|
200
|
+
# An array of Stack elements.
|
201
|
+
# Corresponds to the JSON property `elements`
|
202
|
+
# @return [Array<Google::Apis::WorkflowexecutionsV1beta::StackTraceElement>]
|
203
|
+
attr_accessor :elements
|
204
|
+
|
205
|
+
def initialize(**args)
|
206
|
+
update!(**args)
|
207
|
+
end
|
208
|
+
|
209
|
+
# Update properties of this object
|
210
|
+
def update!(**args)
|
211
|
+
@elements = args[:elements] if args.key?(:elements)
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
# A single stack element (frame) where an error occurred.
|
216
|
+
class StackTraceElement
|
217
|
+
include Google::Apis::Core::Hashable
|
218
|
+
|
219
|
+
# Position contains source position information about the stack trace element
|
220
|
+
# such as line number, column number and length of the code block in bytes.
|
221
|
+
# Corresponds to the JSON property `position`
|
222
|
+
# @return [Google::Apis::WorkflowexecutionsV1beta::Position]
|
223
|
+
attr_accessor :position
|
224
|
+
|
225
|
+
# The routine where the error occurred.
|
226
|
+
# Corresponds to the JSON property `routine`
|
227
|
+
# @return [String]
|
228
|
+
attr_accessor :routine
|
229
|
+
|
230
|
+
# The step the error occurred at.
|
231
|
+
# Corresponds to the JSON property `step`
|
232
|
+
# @return [String]
|
233
|
+
attr_accessor :step
|
234
|
+
|
235
|
+
def initialize(**args)
|
236
|
+
update!(**args)
|
237
|
+
end
|
238
|
+
|
239
|
+
# Update properties of this object
|
240
|
+
def update!(**args)
|
241
|
+
@position = args[:position] if args.key?(:position)
|
242
|
+
@routine = args[:routine] if args.key?(:routine)
|
243
|
+
@step = args[:step] if args.key?(:step)
|
244
|
+
end
|
245
|
+
end
|
155
246
|
end
|
156
247
|
end
|
157
248
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WorkflowexecutionsV1beta
|
18
18
|
# Version of the google-apis-workflowexecutions_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210309"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,24 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class Position
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
55
|
+
class StackTrace
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
61
|
+
class StackTraceElement
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
49
67
|
class CancelExecutionRequest
|
50
68
|
# @private
|
51
69
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -57,6 +75,8 @@ module Google
|
|
57
75
|
class Representation < Google::Apis::Core::JsonRepresentation
|
58
76
|
property :context, as: 'context'
|
59
77
|
property :payload, as: 'payload'
|
78
|
+
property :stack_trace, as: 'stackTrace', class: Google::Apis::WorkflowexecutionsV1beta::StackTrace, decorator: Google::Apis::WorkflowexecutionsV1beta::StackTrace::Representation
|
79
|
+
|
60
80
|
end
|
61
81
|
end
|
62
82
|
|
@@ -83,6 +103,33 @@ module Google
|
|
83
103
|
property :next_page_token, as: 'nextPageToken'
|
84
104
|
end
|
85
105
|
end
|
106
|
+
|
107
|
+
class Position
|
108
|
+
# @private
|
109
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
110
|
+
property :column, :numeric_string => true, as: 'column'
|
111
|
+
property :length, :numeric_string => true, as: 'length'
|
112
|
+
property :line, :numeric_string => true, as: 'line'
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
class StackTrace
|
117
|
+
# @private
|
118
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
119
|
+
collection :elements, as: 'elements', class: Google::Apis::WorkflowexecutionsV1beta::StackTraceElement, decorator: Google::Apis::WorkflowexecutionsV1beta::StackTraceElement::Representation
|
120
|
+
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
class StackTraceElement
|
125
|
+
# @private
|
126
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
127
|
+
property :position, as: 'position', class: Google::Apis::WorkflowexecutionsV1beta::Position, decorator: Google::Apis::WorkflowexecutionsV1beta::Position::Representation
|
128
|
+
|
129
|
+
property :routine, as: 'routine'
|
130
|
+
property :step, as: 'step'
|
131
|
+
end
|
132
|
+
end
|
86
133
|
end
|
87
134
|
end
|
88
135
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-workflowexecutions_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.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: 2021-
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-workflowexecutions_v1beta/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1beta/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1beta/v0.6.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-workflowexecutions_v1beta
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.13
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Workflow Executions API V1beta
|