google-apis-workflowexecutions_v1beta 0.1.0 → 0.2.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: 1a987482d21061f824c1ca8c1825f70d4914a3065ae98ef1b4f96db41b6f4fc3
4
- data.tar.gz: dfdd2066c60ffb2919f62767da6364ab051306c69507bbc092ca5f1b5060abae
3
+ metadata.gz: 3aa5e24d8452b2c75fedcad65c3bbe0bd9d9f05edb86a19a1d2ae3ef9645c22f
4
+ data.tar.gz: '09684726ac10d53a7ce3c496a53737450d9ddda0aba3dea9ca94d23802e68e2a'
5
5
  SHA512:
6
- metadata.gz: 31d0ad35ced8aff0ca1526d33367265a8e9c863fad076bb2c55a6837d33597977b2ec7af166b9daa4e4f854953101edb02d277e5761445e125d51676d3538613
7
- data.tar.gz: 491145e83e829cb9ee65cea682e2925de26c508851c4ca1b8832bd9a3e3ae24eeef4e3c2f96f3ae1be30dfc2540a74ff9f741dc4759b2b7df28e5c0ab17a78ee
6
+ metadata.gz: f57788a259b83db0f57dcb206bfaf51eaaa958f12afba349c0c71dbdb15f6cf9a00ff38618b91463b9ea3b5b1526fbd01c2e8167e136dc40845e1986562b486d
7
+ data.tar.gz: 393201a6c022abdf3aa81d6d62590bd1c1a162d89f3af03b92708d14274b8fa9b95acb0b0a48f94d923b3ca1701cd03b0b3c0eba4f39b04fe9e106e327c4ea9b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-workflowexecutions_v1beta
2
2
 
3
+ ### v0.2.0 (2021-01-20)
4
+
5
+ * Regenerated from discovery document revision 20210105
6
+ * Regenerated using generator version 0.1.2
7
+
3
8
  ### v0.1.0 (2021-01-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20201208
@@ -39,16 +39,21 @@ module Google
39
39
  class Error
40
40
  include Google::Apis::Core::Hashable
41
41
 
42
- # Human readable error context, helpful for debugging purposes.
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 payload returned by the execution, represented as a JSON string.
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,63 @@ 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
+ # A collection of stack elements (frames) where an error occurred.
163
+ class StackTrace
164
+ include Google::Apis::Core::Hashable
165
+
166
+ # An array of Stack elements.
167
+ # Corresponds to the JSON property `elements`
168
+ # @return [Array<Google::Apis::WorkflowexecutionsV1beta::StackTraceElement>]
169
+ attr_accessor :elements
170
+
171
+ def initialize(**args)
172
+ update!(**args)
173
+ end
174
+
175
+ # Update properties of this object
176
+ def update!(**args)
177
+ @elements = args[:elements] if args.key?(:elements)
178
+ end
179
+ end
180
+
181
+ # A single stack element (frame) where an error occurred.
182
+ class StackTraceElement
183
+ include Google::Apis::Core::Hashable
184
+
185
+ # The source code column position (of the line) the current instruction was
186
+ # generated from.
187
+ # Corresponds to the JSON property `column`
188
+ # @return [Fixnum]
189
+ attr_accessor :column
190
+
191
+ # The source code line number the current instruction was generated from.
192
+ # Corresponds to the JSON property `line`
193
+ # @return [Fixnum]
194
+ attr_accessor :line
195
+
196
+ # The routine where the error occurred.
197
+ # Corresponds to the JSON property `routine`
198
+ # @return [String]
199
+ attr_accessor :routine
200
+
201
+ # The step the error occurred at.
202
+ # Corresponds to the JSON property `step`
203
+ # @return [String]
204
+ attr_accessor :step
205
+
206
+ def initialize(**args)
207
+ update!(**args)
208
+ end
209
+
210
+ # Update properties of this object
211
+ def update!(**args)
212
+ @column = args[:column] if args.key?(:column)
213
+ @line = args[:line] if args.key?(:line)
214
+ @routine = args[:routine] if args.key?(:routine)
215
+ @step = args[:step] if args.key?(:step)
216
+ end
217
+ end
155
218
  end
156
219
  end
157
220
  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.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201208"
25
+ REVISION = "20210105"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,18 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class StackTrace
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class StackTraceElement
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
49
61
  class CancelExecutionRequest
50
62
  # @private
51
63
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -57,6 +69,8 @@ module Google
57
69
  class Representation < Google::Apis::Core::JsonRepresentation
58
70
  property :context, as: 'context'
59
71
  property :payload, as: 'payload'
72
+ property :stack_trace, as: 'stackTrace', class: Google::Apis::WorkflowexecutionsV1beta::StackTrace, decorator: Google::Apis::WorkflowexecutionsV1beta::StackTrace::Representation
73
+
60
74
  end
61
75
  end
62
76
 
@@ -83,6 +97,24 @@ module Google
83
97
  property :next_page_token, as: 'nextPageToken'
84
98
  end
85
99
  end
100
+
101
+ class StackTrace
102
+ # @private
103
+ class Representation < Google::Apis::Core::JsonRepresentation
104
+ collection :elements, as: 'elements', class: Google::Apis::WorkflowexecutionsV1beta::StackTraceElement, decorator: Google::Apis::WorkflowexecutionsV1beta::StackTraceElement::Representation
105
+
106
+ end
107
+ end
108
+
109
+ class StackTraceElement
110
+ # @private
111
+ class Representation < Google::Apis::Core::JsonRepresentation
112
+ property :column, :numeric_string => true, as: 'column'
113
+ property :line, :numeric_string => true, as: 'line'
114
+ property :routine, as: 'routine'
115
+ property :step, as: 'step'
116
+ end
117
+ end
86
118
  end
87
119
  end
88
120
  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.1.0
4
+ version: 0.2.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-02-08 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.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1beta/v0.2.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: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.6
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Workflow Executions API V1beta