google-apis-workflowexecutions_v1beta 0.2.0 → 0.3.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: 3aa5e24d8452b2c75fedcad65c3bbe0bd9d9f05edb86a19a1d2ae3ef9645c22f
4
- data.tar.gz: '09684726ac10d53a7ce3c496a53737450d9ddda0aba3dea9ca94d23802e68e2a'
3
+ metadata.gz: 6089965a6e17e0f44bda7b59d7241e6d98dadebf79a1945bfdfe018ca6f58e8f
4
+ data.tar.gz: 5b12a24fe7958688126255004554f4baa16ec549d2c56474d1ea59496534a59f
5
5
  SHA512:
6
- metadata.gz: f57788a259b83db0f57dcb206bfaf51eaaa958f12afba349c0c71dbdb15f6cf9a00ff38618b91463b9ea3b5b1526fbd01c2e8167e136dc40845e1986562b486d
7
- data.tar.gz: 393201a6c022abdf3aa81d6d62590bd1c1a162d89f3af03b92708d14274b8fa9b95acb0b0a48f94d923b3ca1701cd03b0b3c0eba4f39b04fe9e106e327c4ea9b
6
+ metadata.gz: 53b93a2958812d39da880acb5de9f39bc2ab00cb5f67fcbb3fdc8c18dc77438a35cc61b3866425fe63ee2579c2df7eb4b25e2f29566e81cbdacd101e4d7721a4
7
+ data.tar.gz: 7dae0632690ce331e92ce4f10a73098fe290dc0245ba36d9b1b8a4bfdbcc675f0ae1090f1fdbe1200e441689ad6f6ab400a310f5a8a509d5586ef80cccb07465
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workflowexecutions_v1beta
2
2
 
3
+ ### v0.3.0 (2021-02-18)
4
+
5
+ * Regenerated from discovery document revision 20210209
6
+
3
7
  ### v0.2.0 (2021-01-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20210105
@@ -159,6 +159,40 @@ module Google
159
159
  end
160
160
  end
161
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
+
162
196
  # A collection of stack elements (frames) where an error occurred.
163
197
  class StackTrace
164
198
  include Google::Apis::Core::Hashable
@@ -178,20 +212,17 @@ module Google
178
212
  end
179
213
  end
180
214
 
181
- # A single stack element (frame) where an error occurred.
215
+ # A single stack element (frame) where an error occurred. This field currently
216
+ # only exists in v1Beta. We will need to roll this change out to V1 after the
217
+ # feature is thoroughly tested. TODO(b/178540475)
182
218
  class StackTraceElement
183
219
  include Google::Apis::Core::Hashable
184
220
 
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
221
+ # Position contains source position information about the stack trace element
222
+ # such as line number, column number and length of the code block in bytes.
223
+ # Corresponds to the JSON property `position`
224
+ # @return [Google::Apis::WorkflowexecutionsV1beta::Position]
225
+ attr_accessor :position
195
226
 
196
227
  # The routine where the error occurred.
197
228
  # Corresponds to the JSON property `routine`
@@ -209,8 +240,7 @@ module Google
209
240
 
210
241
  # Update properties of this object
211
242
  def update!(**args)
212
- @column = args[:column] if args.key?(:column)
213
- @line = args[:line] if args.key?(:line)
243
+ @position = args[:position] if args.key?(:position)
214
244
  @routine = args[:routine] if args.key?(:routine)
215
245
  @step = args[:step] if args.key?(:step)
216
246
  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.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210105"
25
+ REVISION = "20210209"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ 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
+
49
55
  class StackTrace
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -98,6 +104,15 @@ module Google
98
104
  end
99
105
  end
100
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
+
101
116
  class StackTrace
102
117
  # @private
103
118
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -109,8 +124,8 @@ module Google
109
124
  class StackTraceElement
110
125
  # @private
111
126
  class Representation < Google::Apis::Core::JsonRepresentation
112
- property :column, :numeric_string => true, as: 'column'
113
- property :line, :numeric_string => true, as: 'line'
127
+ property :position, as: 'position', class: Google::Apis::WorkflowexecutionsV1beta::Position, decorator: Google::Apis::WorkflowexecutionsV1beta::Position::Representation
128
+
114
129
  property :routine, as: 'routine'
115
130
  property :step, as: 'step'
116
131
  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.2.0
4
+ version: 0.3.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-02-08 00:00:00.000000000 Z
11
+ date: 2021-02-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.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workflowexecutions_v1beta/v0.3.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: []