google-apis-workflowexecutions_v1beta 0.2.0 → 0.7.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: f59e7fba9a40aed3049cb5846e1d7d68641a601d10dc6a931478c81eab6d79ea
4
+ data.tar.gz: eac6aef04d8a0bf3c8d9e8eabc0e96937df2888648a07a048271b15ce7559fb8
5
5
  SHA512:
6
- metadata.gz: f57788a259b83db0f57dcb206bfaf51eaaa958f12afba349c0c71dbdb15f6cf9a00ff38618b91463b9ea3b5b1526fbd01c2e8167e136dc40845e1986562b486d
7
- data.tar.gz: 393201a6c022abdf3aa81d6d62590bd1c1a162d89f3af03b92708d14274b8fa9b95acb0b0a48f94d923b3ca1701cd03b0b3c0eba4f39b04fe9e106e327c4ea9b
6
+ metadata.gz: c13e9d29f7341d826e3d0329fa2784ca131832387386520b6899429ab6cea083ed03716e83dc7630e2b10324dbfd1f371413f8213003cae7b82caf8f7d8133e2
7
+ data.tar.gz: a767729de80281c9143dc3cb92f484d5808753bbe29c5df2666740b8f1ee239d052a9ea9d33897864ce2372000efbf63dc4b69e099049dcf1e530a956c9773f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-workflowexecutions_v1beta
2
2
 
3
+ ### v0.7.0 (2021-05-20)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.6.0 (2021-03-18)
8
+
9
+ * Regenerated from discovery document revision 20210309
10
+
11
+ ### v0.5.0 (2021-03-11)
12
+
13
+ * Regenerated from discovery document revision 20210302
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.4.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.3.0 (2021-02-18)
21
+
22
+ * Regenerated from discovery document revision 20210209
23
+
3
24
  ### v0.2.0 (2021-01-20)
4
25
 
5
26
  * Regenerated from discovery document revision 20210105
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
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
@@ -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
@@ -182,16 +216,11 @@ module Google
182
216
  class StackTraceElement
183
217
  include Google::Apis::Core::Hashable
184
218
 
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
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
195
224
 
196
225
  # The routine where the error occurred.
197
226
  # Corresponds to the JSON property `routine`
@@ -209,8 +238,7 @@ module Google
209
238
 
210
239
  # Update properties of this object
211
240
  def update!(**args)
212
- @column = args[:column] if args.key?(:column)
213
- @line = args[:line] if args.key?(:line)
241
+ @position = args[:position] if args.key?(:position)
214
242
  @routine = args[:routine] if args.key?(:routine)
215
243
  @step = args[:step] if args.key?(:step)
216
244
  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.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210105"
25
+ REVISION = "20210309"
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.7.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-05-24 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.7.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.4'
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.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Workflow Executions API V1beta