dapr-ruby 0.4.4 → 1.13.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/Rakefile +5 -1
- data/dapr/proto/common/v1/common.proto +1 -1
- data/dapr/proto/runtime/v1/dapr.proto +105 -39
- data/lib/dapr/proto/common/v1/common_pb.rb +35 -72
- data/lib/dapr/proto/runtime/v1/appcallback_pb.rb +43 -119
- data/lib/dapr/proto/runtime/v1/appcallback_services_pb.rb +7 -12
- data/lib/dapr/proto/runtime/v1/dapr_pb.rb +117 -505
- data/lib/dapr/proto/runtime/v1/dapr_services_pb.rb +49 -70
- data/lib/dapr/version.rb +1 -1
- metadata +2 -3
- data/Gemfile.lock +0 -69
@@ -1,5 +1,4 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
4
3
|
# source: dapr/proto/runtime/v1/dapr.proto
|
5
4
|
|
@@ -10,518 +9,131 @@ require 'google/protobuf/empty_pb'
|
|
10
9
|
require 'google/protobuf/timestamp_pb'
|
11
10
|
require 'dapr/proto/common/v1/common_pb'
|
12
11
|
|
13
|
-
|
14
|
-
add_file('dapr/proto/runtime/v1/dapr.proto', syntax: :proto3) do
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
optional :etag, :string, 3
|
38
|
-
optional :error, :string, 4
|
39
|
-
map :metadata, :string, :string, 5
|
40
|
-
end
|
41
|
-
add_message 'dapr.proto.runtime.v1.GetStateResponse' do
|
42
|
-
optional :data, :bytes, 1
|
43
|
-
optional :etag, :string, 2
|
44
|
-
map :metadata, :string, :string, 3
|
45
|
-
end
|
46
|
-
add_message 'dapr.proto.runtime.v1.DeleteStateRequest' do
|
47
|
-
optional :store_name, :string, 1
|
48
|
-
optional :key, :string, 2
|
49
|
-
optional :etag, :message, 3, 'dapr.proto.common.v1.Etag'
|
50
|
-
optional :options, :message, 4, 'dapr.proto.common.v1.StateOptions'
|
51
|
-
map :metadata, :string, :string, 5
|
52
|
-
end
|
53
|
-
add_message 'dapr.proto.runtime.v1.DeleteBulkStateRequest' do
|
54
|
-
optional :store_name, :string, 1
|
55
|
-
repeated :states, :message, 2, 'dapr.proto.common.v1.StateItem'
|
56
|
-
end
|
57
|
-
add_message 'dapr.proto.runtime.v1.SaveStateRequest' do
|
58
|
-
optional :store_name, :string, 1
|
59
|
-
repeated :states, :message, 2, 'dapr.proto.common.v1.StateItem'
|
60
|
-
end
|
61
|
-
add_message 'dapr.proto.runtime.v1.QueryStateRequest' do
|
62
|
-
optional :store_name, :string, 1, json_name: 'storeName'
|
63
|
-
optional :query, :string, 2
|
64
|
-
map :metadata, :string, :string, 3
|
65
|
-
end
|
66
|
-
add_message 'dapr.proto.runtime.v1.QueryStateItem' do
|
67
|
-
optional :key, :string, 1
|
68
|
-
optional :data, :bytes, 2
|
69
|
-
optional :etag, :string, 3
|
70
|
-
optional :error, :string, 4
|
71
|
-
end
|
72
|
-
add_message 'dapr.proto.runtime.v1.QueryStateResponse' do
|
73
|
-
repeated :results, :message, 1, 'dapr.proto.runtime.v1.QueryStateItem'
|
74
|
-
optional :token, :string, 2
|
75
|
-
map :metadata, :string, :string, 3
|
76
|
-
end
|
77
|
-
add_message 'dapr.proto.runtime.v1.PublishEventRequest' do
|
78
|
-
optional :pubsub_name, :string, 1
|
79
|
-
optional :topic, :string, 2
|
80
|
-
optional :data, :bytes, 3
|
81
|
-
optional :data_content_type, :string, 4
|
82
|
-
map :metadata, :string, :string, 5
|
83
|
-
end
|
84
|
-
add_message 'dapr.proto.runtime.v1.BulkPublishRequest' do
|
85
|
-
optional :pubsub_name, :string, 1
|
86
|
-
optional :topic, :string, 2
|
87
|
-
repeated :entries, :message, 3, 'dapr.proto.runtime.v1.BulkPublishRequestEntry'
|
88
|
-
map :metadata, :string, :string, 4
|
89
|
-
end
|
90
|
-
add_message 'dapr.proto.runtime.v1.BulkPublishRequestEntry' do
|
91
|
-
optional :entry_id, :string, 1
|
92
|
-
optional :event, :bytes, 2
|
93
|
-
optional :content_type, :string, 3
|
94
|
-
map :metadata, :string, :string, 4
|
95
|
-
end
|
96
|
-
add_message 'dapr.proto.runtime.v1.BulkPublishResponse' do
|
97
|
-
repeated :failedEntries, :message, 1, 'dapr.proto.runtime.v1.BulkPublishResponseFailedEntry'
|
98
|
-
end
|
99
|
-
add_message 'dapr.proto.runtime.v1.BulkPublishResponseFailedEntry' do
|
100
|
-
optional :entry_id, :string, 1
|
101
|
-
optional :error, :string, 2
|
102
|
-
end
|
103
|
-
add_message 'dapr.proto.runtime.v1.InvokeBindingRequest' do
|
104
|
-
optional :name, :string, 1
|
105
|
-
optional :data, :bytes, 2
|
106
|
-
map :metadata, :string, :string, 3
|
107
|
-
optional :operation, :string, 4
|
108
|
-
end
|
109
|
-
add_message 'dapr.proto.runtime.v1.InvokeBindingResponse' do
|
110
|
-
optional :data, :bytes, 1
|
111
|
-
map :metadata, :string, :string, 2
|
112
|
-
end
|
113
|
-
add_message 'dapr.proto.runtime.v1.GetSecretRequest' do
|
114
|
-
optional :store_name, :string, 1, json_name: 'storeName'
|
115
|
-
optional :key, :string, 2
|
116
|
-
map :metadata, :string, :string, 3
|
117
|
-
end
|
118
|
-
add_message 'dapr.proto.runtime.v1.GetSecretResponse' do
|
119
|
-
map :data, :string, :string, 1
|
120
|
-
end
|
121
|
-
add_message 'dapr.proto.runtime.v1.GetBulkSecretRequest' do
|
122
|
-
optional :store_name, :string, 1, json_name: 'storeName'
|
123
|
-
map :metadata, :string, :string, 2
|
124
|
-
end
|
125
|
-
add_message 'dapr.proto.runtime.v1.SecretResponse' do
|
126
|
-
map :secrets, :string, :string, 1
|
127
|
-
end
|
128
|
-
add_message 'dapr.proto.runtime.v1.GetBulkSecretResponse' do
|
129
|
-
map :data, :string, :message, 1, 'dapr.proto.runtime.v1.SecretResponse'
|
130
|
-
end
|
131
|
-
add_message 'dapr.proto.runtime.v1.TransactionalStateOperation' do
|
132
|
-
optional :operationType, :string, 1
|
133
|
-
optional :request, :message, 2, 'dapr.proto.common.v1.StateItem'
|
134
|
-
end
|
135
|
-
add_message 'dapr.proto.runtime.v1.ExecuteStateTransactionRequest' do
|
136
|
-
optional :storeName, :string, 1
|
137
|
-
repeated :operations, :message, 2, 'dapr.proto.runtime.v1.TransactionalStateOperation'
|
138
|
-
map :metadata, :string, :string, 3
|
139
|
-
end
|
140
|
-
add_message 'dapr.proto.runtime.v1.RegisterActorTimerRequest' do
|
141
|
-
optional :actor_type, :string, 1
|
142
|
-
optional :actor_id, :string, 2
|
143
|
-
optional :name, :string, 3
|
144
|
-
optional :due_time, :string, 4
|
145
|
-
optional :period, :string, 5
|
146
|
-
optional :callback, :string, 6
|
147
|
-
optional :data, :bytes, 7
|
148
|
-
optional :ttl, :string, 8
|
149
|
-
end
|
150
|
-
add_message 'dapr.proto.runtime.v1.UnregisterActorTimerRequest' do
|
151
|
-
optional :actor_type, :string, 1
|
152
|
-
optional :actor_id, :string, 2
|
153
|
-
optional :name, :string, 3
|
154
|
-
end
|
155
|
-
add_message 'dapr.proto.runtime.v1.RegisterActorReminderRequest' do
|
156
|
-
optional :actor_type, :string, 1
|
157
|
-
optional :actor_id, :string, 2
|
158
|
-
optional :name, :string, 3
|
159
|
-
optional :due_time, :string, 4
|
160
|
-
optional :period, :string, 5
|
161
|
-
optional :data, :bytes, 6
|
162
|
-
optional :ttl, :string, 7
|
163
|
-
end
|
164
|
-
add_message 'dapr.proto.runtime.v1.UnregisterActorReminderRequest' do
|
165
|
-
optional :actor_type, :string, 1
|
166
|
-
optional :actor_id, :string, 2
|
167
|
-
optional :name, :string, 3
|
168
|
-
end
|
169
|
-
add_message 'dapr.proto.runtime.v1.RenameActorReminderRequest' do
|
170
|
-
optional :actor_type, :string, 1
|
171
|
-
optional :actor_id, :string, 2
|
172
|
-
optional :old_name, :string, 3
|
173
|
-
optional :new_name, :string, 4
|
174
|
-
end
|
175
|
-
add_message 'dapr.proto.runtime.v1.GetActorStateRequest' do
|
176
|
-
optional :actor_type, :string, 1
|
177
|
-
optional :actor_id, :string, 2
|
178
|
-
optional :key, :string, 3
|
179
|
-
end
|
180
|
-
add_message 'dapr.proto.runtime.v1.GetActorStateResponse' do
|
181
|
-
optional :data, :bytes, 1
|
182
|
-
end
|
183
|
-
add_message 'dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest' do
|
184
|
-
optional :actor_type, :string, 1
|
185
|
-
optional :actor_id, :string, 2
|
186
|
-
repeated :operations, :message, 3, 'dapr.proto.runtime.v1.TransactionalActorStateOperation'
|
187
|
-
end
|
188
|
-
add_message 'dapr.proto.runtime.v1.TransactionalActorStateOperation' do
|
189
|
-
optional :operationType, :string, 1
|
190
|
-
optional :key, :string, 2
|
191
|
-
optional :value, :message, 3, 'google.protobuf.Any'
|
192
|
-
map :metadata, :string, :string, 4
|
193
|
-
end
|
194
|
-
add_message 'dapr.proto.runtime.v1.InvokeActorRequest' do
|
195
|
-
optional :actor_type, :string, 1
|
196
|
-
optional :actor_id, :string, 2
|
197
|
-
optional :method, :string, 3
|
198
|
-
optional :data, :bytes, 4
|
199
|
-
map :metadata, :string, :string, 5
|
200
|
-
end
|
201
|
-
add_message 'dapr.proto.runtime.v1.InvokeActorResponse' do
|
202
|
-
optional :data, :bytes, 1
|
203
|
-
end
|
204
|
-
add_message 'dapr.proto.runtime.v1.GetMetadataResponse' do
|
205
|
-
optional :id, :string, 1
|
206
|
-
repeated :active_actors_count, :message, 2, 'dapr.proto.runtime.v1.ActiveActorsCount'
|
207
|
-
repeated :registered_components, :message, 3, 'dapr.proto.runtime.v1.RegisteredComponents'
|
208
|
-
map :extended_metadata, :string, :string, 4
|
209
|
-
repeated :subscriptions, :message, 5, 'dapr.proto.runtime.v1.PubsubSubscription'
|
210
|
-
end
|
211
|
-
add_message 'dapr.proto.runtime.v1.ActiveActorsCount' do
|
212
|
-
optional :type, :string, 1
|
213
|
-
optional :count, :int32, 2
|
214
|
-
end
|
215
|
-
add_message 'dapr.proto.runtime.v1.RegisteredComponents' do
|
216
|
-
optional :name, :string, 1
|
217
|
-
optional :type, :string, 2
|
218
|
-
optional :version, :string, 3
|
219
|
-
repeated :capabilities, :string, 4
|
220
|
-
end
|
221
|
-
add_message 'dapr.proto.runtime.v1.PubsubSubscription' do
|
222
|
-
optional :pubsub_name, :string, 1
|
223
|
-
optional :topic, :string, 2
|
224
|
-
map :metadata, :string, :string, 3
|
225
|
-
optional :rules, :message, 4, 'dapr.proto.runtime.v1.PubsubSubscriptionRules'
|
226
|
-
optional :dead_letter_topic, :string, 5
|
227
|
-
end
|
228
|
-
add_message 'dapr.proto.runtime.v1.PubsubSubscriptionRules' do
|
229
|
-
repeated :rules, :message, 1, 'dapr.proto.runtime.v1.PubsubSubscriptionRule'
|
230
|
-
end
|
231
|
-
add_message 'dapr.proto.runtime.v1.PubsubSubscriptionRule' do
|
232
|
-
optional :match, :string, 1
|
233
|
-
optional :path, :string, 2
|
234
|
-
end
|
235
|
-
add_message 'dapr.proto.runtime.v1.SetMetadataRequest' do
|
236
|
-
optional :key, :string, 1
|
237
|
-
optional :value, :string, 2
|
238
|
-
end
|
239
|
-
add_message 'dapr.proto.runtime.v1.GetConfigurationRequest' do
|
240
|
-
optional :store_name, :string, 1
|
241
|
-
repeated :keys, :string, 2
|
242
|
-
map :metadata, :string, :string, 3
|
243
|
-
end
|
244
|
-
add_message 'dapr.proto.runtime.v1.GetConfigurationResponse' do
|
245
|
-
map :items, :string, :message, 1, 'dapr.proto.common.v1.ConfigurationItem'
|
246
|
-
end
|
247
|
-
add_message 'dapr.proto.runtime.v1.SubscribeConfigurationRequest' do
|
248
|
-
optional :store_name, :string, 1
|
249
|
-
repeated :keys, :string, 2
|
250
|
-
map :metadata, :string, :string, 3
|
251
|
-
end
|
252
|
-
add_message 'dapr.proto.runtime.v1.UnsubscribeConfigurationRequest' do
|
253
|
-
optional :store_name, :string, 1
|
254
|
-
optional :id, :string, 2
|
255
|
-
end
|
256
|
-
add_message 'dapr.proto.runtime.v1.SubscribeConfigurationResponse' do
|
257
|
-
optional :id, :string, 1
|
258
|
-
map :items, :string, :message, 2, 'dapr.proto.common.v1.ConfigurationItem'
|
259
|
-
end
|
260
|
-
add_message 'dapr.proto.runtime.v1.UnsubscribeConfigurationResponse' do
|
261
|
-
optional :ok, :bool, 1
|
262
|
-
optional :message, :string, 2
|
263
|
-
end
|
264
|
-
add_message 'dapr.proto.runtime.v1.TryLockRequest' do
|
265
|
-
optional :store_name, :string, 1, json_name: 'storeName'
|
266
|
-
optional :resource_id, :string, 2, json_name: 'resourceId'
|
267
|
-
optional :lock_owner, :string, 3, json_name: 'lockOwner'
|
268
|
-
optional :expiry_in_seconds, :int32, 4, json_name: 'expiryInSeconds'
|
269
|
-
end
|
270
|
-
add_message 'dapr.proto.runtime.v1.TryLockResponse' do
|
271
|
-
optional :success, :bool, 1
|
272
|
-
end
|
273
|
-
add_message 'dapr.proto.runtime.v1.UnlockRequest' do
|
274
|
-
optional :store_name, :string, 1, json_name: 'storeName'
|
275
|
-
optional :resource_id, :string, 2, json_name: 'resourceId'
|
276
|
-
optional :lock_owner, :string, 3, json_name: 'lockOwner'
|
277
|
-
end
|
278
|
-
add_message 'dapr.proto.runtime.v1.UnlockResponse' do
|
279
|
-
optional :status, :enum, 1, 'dapr.proto.runtime.v1.UnlockResponse.Status'
|
280
|
-
end
|
281
|
-
add_enum 'dapr.proto.runtime.v1.UnlockResponse.Status' do
|
282
|
-
value :SUCCESS, 0
|
283
|
-
value :LOCK_DOES_NOT_EXIST, 1
|
284
|
-
value :LOCK_BELONGS_TO_OTHERS, 2
|
285
|
-
value :INTERNAL_ERROR, 3
|
286
|
-
end
|
287
|
-
add_message 'dapr.proto.runtime.v1.SubtleGetKeyRequest' do
|
288
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
289
|
-
optional :name, :string, 2
|
290
|
-
optional :format, :enum, 3, 'dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat'
|
291
|
-
end
|
292
|
-
add_enum 'dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat' do
|
293
|
-
value :PEM, 0
|
294
|
-
value :JSON, 1
|
295
|
-
end
|
296
|
-
add_message 'dapr.proto.runtime.v1.SubtleGetKeyResponse' do
|
297
|
-
optional :name, :string, 1
|
298
|
-
optional :public_key, :string, 2, json_name: 'publicKey'
|
299
|
-
end
|
300
|
-
add_message 'dapr.proto.runtime.v1.SubtleEncryptRequest' do
|
301
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
302
|
-
optional :plaintext, :bytes, 2
|
303
|
-
optional :algorithm, :string, 3
|
304
|
-
optional :key_name, :string, 4, json_name: 'keyName'
|
305
|
-
optional :nonce, :bytes, 5
|
306
|
-
optional :associated_data, :bytes, 6, json_name: 'associatedData'
|
307
|
-
end
|
308
|
-
add_message 'dapr.proto.runtime.v1.SubtleEncryptResponse' do
|
309
|
-
optional :ciphertext, :bytes, 1
|
310
|
-
optional :tag, :bytes, 2
|
311
|
-
end
|
312
|
-
add_message 'dapr.proto.runtime.v1.SubtleDecryptRequest' do
|
313
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
314
|
-
optional :ciphertext, :bytes, 2
|
315
|
-
optional :algorithm, :string, 3
|
316
|
-
optional :key_name, :string, 4, json_name: 'keyName'
|
317
|
-
optional :nonce, :bytes, 5
|
318
|
-
optional :tag, :bytes, 6
|
319
|
-
optional :associated_data, :bytes, 7, json_name: 'associatedData'
|
320
|
-
end
|
321
|
-
add_message 'dapr.proto.runtime.v1.SubtleDecryptResponse' do
|
322
|
-
optional :plaintext, :bytes, 1
|
323
|
-
end
|
324
|
-
add_message 'dapr.proto.runtime.v1.SubtleWrapKeyRequest' do
|
325
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
326
|
-
optional :plaintext_key, :bytes, 2, json_name: 'plaintextKey'
|
327
|
-
optional :algorithm, :string, 3
|
328
|
-
optional :key_name, :string, 4, json_name: 'keyName'
|
329
|
-
optional :nonce, :bytes, 5
|
330
|
-
optional :associated_data, :bytes, 6, json_name: 'associatedData'
|
331
|
-
end
|
332
|
-
add_message 'dapr.proto.runtime.v1.SubtleWrapKeyResponse' do
|
333
|
-
optional :wrapped_key, :bytes, 1, json_name: 'wrappedKey'
|
334
|
-
optional :tag, :bytes, 2
|
335
|
-
end
|
336
|
-
add_message 'dapr.proto.runtime.v1.SubtleUnwrapKeyRequest' do
|
337
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
338
|
-
optional :wrapped_key, :bytes, 2, json_name: 'wrappedKey'
|
339
|
-
optional :algorithm, :string, 3
|
340
|
-
optional :key_name, :string, 4, json_name: 'keyName'
|
341
|
-
optional :nonce, :bytes, 5
|
342
|
-
optional :tag, :bytes, 6
|
343
|
-
optional :associated_data, :bytes, 7, json_name: 'associatedData'
|
344
|
-
end
|
345
|
-
add_message 'dapr.proto.runtime.v1.SubtleUnwrapKeyResponse' do
|
346
|
-
optional :plaintext_key, :bytes, 1, json_name: 'plaintextKey'
|
347
|
-
end
|
348
|
-
add_message 'dapr.proto.runtime.v1.SubtleSignRequest' do
|
349
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
350
|
-
optional :digest, :bytes, 2
|
351
|
-
optional :algorithm, :string, 3
|
352
|
-
optional :key_name, :string, 4, json_name: 'keyName'
|
353
|
-
end
|
354
|
-
add_message 'dapr.proto.runtime.v1.SubtleSignResponse' do
|
355
|
-
optional :signature, :bytes, 1
|
356
|
-
end
|
357
|
-
add_message 'dapr.proto.runtime.v1.SubtleVerifyRequest' do
|
358
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
359
|
-
optional :digest, :bytes, 2
|
360
|
-
optional :algorithm, :string, 3
|
361
|
-
optional :key_name, :string, 4, json_name: 'keyName'
|
362
|
-
optional :signature, :bytes, 5
|
363
|
-
end
|
364
|
-
add_message 'dapr.proto.runtime.v1.SubtleVerifyResponse' do
|
365
|
-
optional :valid, :bool, 1
|
366
|
-
end
|
367
|
-
add_message 'dapr.proto.runtime.v1.EncryptRequest' do
|
368
|
-
optional :options, :message, 1, 'dapr.proto.runtime.v1.EncryptRequestOptions'
|
369
|
-
end
|
370
|
-
add_message 'dapr.proto.runtime.v1.EncryptRequestOptions' do
|
371
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
372
|
-
optional :key_name, :string, 2, json_name: 'keyName'
|
373
|
-
optional :key_wrap_algorithm, :string, 3
|
374
|
-
optional :data_encryption_cipher, :string, 10
|
375
|
-
optional :omit_decryption_key_name, :bool, 11, json_name: 'omitDecryptionKeyName'
|
376
|
-
optional :decryption_key_name, :string, 12, json_name: 'decryptionKeyName'
|
377
|
-
end
|
378
|
-
add_message 'dapr.proto.runtime.v1.EncryptResponse' do
|
379
|
-
end
|
380
|
-
add_message 'dapr.proto.runtime.v1.DecryptRequest' do
|
381
|
-
optional :options, :message, 1, 'dapr.proto.runtime.v1.DecryptRequestOptions'
|
382
|
-
end
|
383
|
-
add_message 'dapr.proto.runtime.v1.DecryptRequestOptions' do
|
384
|
-
optional :component_name, :string, 1, json_name: 'componentName'
|
385
|
-
optional :key_name, :string, 12, json_name: 'keyName'
|
386
|
-
end
|
387
|
-
add_message 'dapr.proto.runtime.v1.DecryptResponse' do
|
388
|
-
end
|
389
|
-
add_message 'dapr.proto.runtime.v1.GetWorkflowRequest' do
|
390
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
391
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
392
|
-
end
|
393
|
-
add_message 'dapr.proto.runtime.v1.GetWorkflowResponse' do
|
394
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
395
|
-
optional :workflow_name, :string, 2, json_name: 'workflowName'
|
396
|
-
optional :created_at, :message, 3, 'google.protobuf.Timestamp', json_name: 'createdAt'
|
397
|
-
optional :last_updated_at, :message, 4, 'google.protobuf.Timestamp', json_name: 'lastUpdatedAt'
|
398
|
-
optional :runtime_status, :string, 5, json_name: 'runtimeStatus'
|
399
|
-
map :properties, :string, :string, 6
|
400
|
-
end
|
401
|
-
add_message 'dapr.proto.runtime.v1.StartWorkflowRequest' do
|
402
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
403
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
404
|
-
optional :workflow_name, :string, 3, json_name: 'workflowName'
|
405
|
-
map :options, :string, :string, 4
|
406
|
-
optional :input, :bytes, 5
|
407
|
-
end
|
408
|
-
add_message 'dapr.proto.runtime.v1.StartWorkflowResponse' do
|
409
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
410
|
-
end
|
411
|
-
add_message 'dapr.proto.runtime.v1.TerminateWorkflowRequest' do
|
412
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
413
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
414
|
-
end
|
415
|
-
add_message 'dapr.proto.runtime.v1.PauseWorkflowRequest' do
|
416
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
417
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
418
|
-
end
|
419
|
-
add_message 'dapr.proto.runtime.v1.ResumeWorkflowRequest' do
|
420
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
421
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
422
|
-
end
|
423
|
-
add_message 'dapr.proto.runtime.v1.RaiseEventWorkflowRequest' do
|
424
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
425
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
426
|
-
optional :event_name, :string, 3, json_name: 'eventName'
|
427
|
-
optional :event_data, :bytes, 4
|
428
|
-
end
|
429
|
-
add_message 'dapr.proto.runtime.v1.PurgeWorkflowRequest' do
|
430
|
-
optional :instance_id, :string, 1, json_name: 'instanceID'
|
431
|
-
optional :workflow_component, :string, 2, json_name: 'workflowComponent'
|
12
|
+
|
13
|
+
descriptor_data = "\n dapr/proto/runtime/v1/dapr.proto\x12\x15\x64\x61pr.proto.runtime.v1\x1a\x19google/protobuf/any.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a!dapr/proto/common/v1/common.proto\"X\n\x14InvokeServiceRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x34\n\x07message\x18\x03 \x01(\x0b\x32#.dapr.proto.common.v1.InvokeRequest\"\xf5\x01\n\x0fGetStateRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12\x0b\n\x03key\x18\x02 \x01(\t\x12H\n\x0b\x63onsistency\x18\x03 \x01(\x0e\x32\x33.dapr.proto.common.v1.StateOptions.StateConsistency\x12\x46\n\x08metadata\x18\x04 \x03(\x0b\x32\x34.dapr.proto.runtime.v1.GetStateRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc9\x01\n\x13GetBulkStateRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12\x0c\n\x04keys\x18\x02 \x03(\t\x12\x13\n\x0bparallelism\x18\x03 \x01(\x05\x12J\n\x08metadata\x18\x04 \x03(\x0b\x32\x38.dapr.proto.runtime.v1.GetBulkStateRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"K\n\x14GetBulkStateResponse\x12\x33\n\x05items\x18\x01 \x03(\x0b\x32$.dapr.proto.runtime.v1.BulkStateItem\"\xbe\x01\n\rBulkStateItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12\x0c\n\x04\x65tag\x18\x03 \x01(\t\x12\r\n\x05\x65rror\x18\x04 \x01(\t\x12\x44\n\x08metadata\x18\x05 \x03(\x0b\x32\x32.dapr.proto.runtime.v1.BulkStateItem.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa8\x01\n\x10GetStateResponse\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\x0c\n\x04\x65tag\x18\x02 \x01(\t\x12G\n\x08metadata\x18\x03 \x03(\x0b\x32\x35.dapr.proto.runtime.v1.GetStateResponse.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x90\x02\n\x12\x44\x65leteStateRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12\x0b\n\x03key\x18\x02 \x01(\t\x12(\n\x04\x65tag\x18\x03 \x01(\x0b\x32\x1a.dapr.proto.common.v1.Etag\x12\x33\n\x07options\x18\x04 \x01(\x0b\x32\".dapr.proto.common.v1.StateOptions\x12I\n\x08metadata\x18\x05 \x03(\x0b\x32\x37.dapr.proto.runtime.v1.DeleteStateRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"]\n\x16\x44\x65leteBulkStateRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12/\n\x06states\x18\x02 \x03(\x0b\x32\x1f.dapr.proto.common.v1.StateItem\"W\n\x10SaveStateRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12/\n\x06states\x18\x02 \x03(\x0b\x32\x1f.dapr.proto.common.v1.StateItem\"\xbc\x01\n\x11QueryStateRequest\x12\x1d\n\nstore_name\x18\x01 \x01(\tR\tstoreName\x12\r\n\x05query\x18\x02 \x01(\t\x12H\n\x08metadata\x18\x03 \x03(\x0b\x32\x36.dapr.proto.runtime.v1.QueryStateRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"H\n\x0eQueryStateItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12\x0c\n\x04\x65tag\x18\x03 \x01(\t\x12\r\n\x05\x65rror\x18\x04 \x01(\t\"\xd7\x01\n\x12QueryStateResponse\x12\x36\n\x07results\x18\x01 \x03(\x0b\x32%.dapr.proto.runtime.v1.QueryStateItem\x12\r\n\x05token\x18\x02 \x01(\t\x12I\n\x08metadata\x18\x03 \x03(\x0b\x32\x37.dapr.proto.runtime.v1.QueryStateResponse.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xdf\x01\n\x13PublishEventRequest\x12\x13\n\x0bpubsub_name\x18\x01 \x01(\t\x12\r\n\x05topic\x18\x02 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x03 \x01(\x0c\x12\x19\n\x11\x64\x61ta_content_type\x18\x04 \x01(\t\x12J\n\x08metadata\x18\x05 \x03(\x0b\x32\x38.dapr.proto.runtime.v1.PublishEventRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf5\x01\n\x12\x42ulkPublishRequest\x12\x13\n\x0bpubsub_name\x18\x01 \x01(\t\x12\r\n\x05topic\x18\x02 \x01(\t\x12?\n\x07\x65ntries\x18\x03 \x03(\x0b\x32..dapr.proto.runtime.v1.BulkPublishRequestEntry\x12I\n\x08metadata\x18\x04 \x03(\x0b\x32\x37.dapr.proto.runtime.v1.BulkPublishRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xd1\x01\n\x17\x42ulkPublishRequestEntry\x12\x10\n\x08\x65ntry_id\x18\x01 \x01(\t\x12\r\n\x05\x65vent\x18\x02 \x01(\x0c\x12\x14\n\x0c\x63ontent_type\x18\x03 \x01(\t\x12N\n\x08metadata\x18\x04 \x03(\x0b\x32<.dapr.proto.runtime.v1.BulkPublishRequestEntry.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"c\n\x13\x42ulkPublishResponse\x12L\n\rfailedEntries\x18\x01 \x03(\x0b\x32\x35.dapr.proto.runtime.v1.BulkPublishResponseFailedEntry\"A\n\x1e\x42ulkPublishResponseFailedEntry\x12\x10\n\x08\x65ntry_id\x18\x01 \x01(\t\x12\r\n\x05\x65rror\x18\x02 \x01(\t\"\xc3\x01\n\x14InvokeBindingRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\x0c\x12K\n\x08metadata\x18\x03 \x03(\x0b\x32\x39.dapr.proto.runtime.v1.InvokeBindingRequest.MetadataEntry\x12\x11\n\toperation\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa4\x01\n\x15InvokeBindingResponse\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12L\n\x08metadata\x18\x02 \x03(\x0b\x32:.dapr.proto.runtime.v1.InvokeBindingResponse.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb8\x01\n\x10GetSecretRequest\x12\x1d\n\nstore_name\x18\x01 \x01(\tR\tstoreName\x12\x0b\n\x03key\x18\x02 \x01(\t\x12G\n\x08metadata\x18\x03 \x03(\x0b\x32\x35.dapr.proto.runtime.v1.GetSecretRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x82\x01\n\x11GetSecretResponse\x12@\n\x04\x64\x61ta\x18\x01 \x03(\x0b\x32\x32.dapr.proto.runtime.v1.GetSecretResponse.DataEntry\x1a+\n\tDataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb3\x01\n\x14GetBulkSecretRequest\x12\x1d\n\nstore_name\x18\x01 \x01(\tR\tstoreName\x12K\n\x08metadata\x18\x02 \x03(\x0b\x32\x39.dapr.proto.runtime.v1.GetBulkSecretRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x85\x01\n\x0eSecretResponse\x12\x43\n\x07secrets\x18\x01 \x03(\x0b\x32\x32.dapr.proto.runtime.v1.SecretResponse.SecretsEntry\x1a.\n\x0cSecretsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb1\x01\n\x15GetBulkSecretResponse\x12\x44\n\x04\x64\x61ta\x18\x01 \x03(\x0b\x32\x36.dapr.proto.runtime.v1.GetBulkSecretResponse.DataEntry\x1aR\n\tDataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x34\n\x05value\x18\x02 \x01(\x0b\x32%.dapr.proto.runtime.v1.SecretResponse:\x02\x38\x01\"f\n\x1bTransactionalStateOperation\x12\x15\n\roperationType\x18\x01 \x01(\t\x12\x30\n\x07request\x18\x02 \x01(\x0b\x32\x1f.dapr.proto.common.v1.StateItem\"\x83\x02\n\x1e\x45xecuteStateTransactionRequest\x12\x11\n\tstoreName\x18\x01 \x01(\t\x12\x46\n\noperations\x18\x02 \x03(\x0b\x32\x32.dapr.proto.runtime.v1.TransactionalStateOperation\x12U\n\x08metadata\x18\x03 \x03(\x0b\x32\x43.dapr.proto.runtime.v1.ExecuteStateTransactionRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xbb\x01\n\x19RegisterActorTimerRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x19\n\x08\x64ue_time\x18\x04 \x01(\tR\x07\x64ueTime\x12\x0e\n\x06period\x18\x05 \x01(\t\x12\x10\n\x08\x63\x61llback\x18\x06 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x07 \x01(\x0c\x12\x0b\n\x03ttl\x18\x08 \x01(\t\"e\n\x1bUnregisterActorTimerRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12\x0c\n\x04name\x18\x03 \x01(\t\"\xac\x01\n\x1cRegisterActorReminderRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x19\n\x08\x64ue_time\x18\x04 \x01(\tR\x07\x64ueTime\x12\x0e\n\x06period\x18\x05 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x06 \x01(\x0c\x12\x0b\n\x03ttl\x18\x07 \x01(\t\"h\n\x1eUnregisterActorReminderRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12\x0c\n\x04name\x18\x03 \x01(\t\"]\n\x14GetActorStateRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12\x0b\n\x03key\x18\x03 \x01(\t\"\xa4\x01\n\x15GetActorStateResponse\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12L\n\x08metadata\x18\x02 \x03(\x0b\x32:.dapr.proto.runtime.v1.GetActorStateResponse.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xac\x01\n#ExecuteActorStateTransactionRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12K\n\noperations\x18\x03 \x03(\x0b\x32\x37.dapr.proto.runtime.v1.TransactionalActorStateOperation\"\xf5\x01\n TransactionalActorStateOperation\x12\x15\n\roperationType\x18\x01 \x01(\t\x12\x0b\n\x03key\x18\x02 \x01(\t\x12#\n\x05value\x18\x03 \x01(\x0b\x32\x14.google.protobuf.Any\x12W\n\x08metadata\x18\x04 \x03(\x0b\x32\x45.dapr.proto.runtime.v1.TransactionalActorStateOperation.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xe8\x01\n\x12InvokeActorRequest\x12\x1d\n\nactor_type\x18\x01 \x01(\tR\tactorType\x12\x19\n\x08\x61\x63tor_id\x18\x02 \x01(\tR\x07\x61\x63torId\x12\x0e\n\x06method\x18\x03 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x04 \x01(\x0c\x12I\n\x08metadata\x18\x05 \x03(\x0b\x32\x37.dapr.proto.runtime.v1.InvokeActorRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"#\n\x13InvokeActorResponse\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\"\x14\n\x12GetMetadataRequest\"\x9b\x06\n\x13GetMetadataResponse\x12\n\n\x02id\x18\x01 \x01(\t\x12Q\n\x13\x61\x63tive_actors_count\x18\x02 \x03(\x0b\x32(.dapr.proto.runtime.v1.ActiveActorsCountB\x02\x18\x01R\x06\x61\x63tors\x12V\n\x15registered_components\x18\x03 \x03(\x0b\x32+.dapr.proto.runtime.v1.RegisteredComponentsR\ncomponents\x12\x65\n\x11\x65xtended_metadata\x18\x04 \x03(\x0b\x32@.dapr.proto.runtime.v1.GetMetadataResponse.ExtendedMetadataEntryR\x08\x65xtended\x12O\n\rsubscriptions\x18\x05 \x03(\x0b\x32).dapr.proto.runtime.v1.PubsubSubscriptionR\rsubscriptions\x12R\n\x0ehttp_endpoints\x18\x06 \x03(\x0b\x32+.dapr.proto.runtime.v1.MetadataHTTPEndpointR\rhttpEndpoints\x12j\n\x19\x61pp_connection_properties\x18\x07 \x01(\x0b\x32..dapr.proto.runtime.v1.AppConnectionPropertiesR\x17\x61ppConnectionProperties\x12\'\n\x0fruntime_version\x18\x08 \x01(\tR\x0eruntimeVersion\x12)\n\x10\x65nabled_features\x18\t \x03(\tR\x0f\x65nabledFeatures\x12H\n\ractor_runtime\x18\n \x01(\x0b\x32#.dapr.proto.runtime.v1.ActorRuntimeR\x0c\x61\x63torRuntime\x1a\x37\n\x15\x45xtendedMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xbc\x02\n\x0c\x41\x63torRuntime\x12]\n\x0eruntime_status\x18\x01 \x01(\x0e\x32\x36.dapr.proto.runtime.v1.ActorRuntime.ActorRuntimeStatusR\rruntimeStatus\x12M\n\ractive_actors\x18\x02 \x03(\x0b\x32(.dapr.proto.runtime.v1.ActiveActorsCountR\x0c\x61\x63tiveActors\x12\x1d\n\nhost_ready\x18\x03 \x01(\x08R\thostReady\x12\x1c\n\tplacement\x18\x04 \x01(\tR\tplacement\"A\n\x12\x41\x63torRuntimeStatus\x12\x10\n\x0cINITIALIZING\x10\x00\x12\x0c\n\x08\x44ISABLED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\"0\n\x11\x41\x63tiveActorsCount\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\r\n\x05\x63ount\x18\x02 \x01(\x05\"Y\n\x14RegisteredComponents\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\t\x12\x14\n\x0c\x63\x61pabilities\x18\x04 \x03(\t\"*\n\x14MetadataHTTPEndpoint\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\xd1\x01\n\x17\x41ppConnectionProperties\x12\x0c\n\x04port\x18\x01 \x01(\x05\x12\x10\n\x08protocol\x18\x02 \x01(\t\x12\'\n\x0f\x63hannel_address\x18\x03 \x01(\tR\x0e\x63hannelAddress\x12\'\n\x0fmax_concurrency\x18\x04 \x01(\x05R\x0emaxConcurrency\x12\x44\n\x06health\x18\x05 \x01(\x0b\x32\x34.dapr.proto.runtime.v1.AppConnectionHealthProperties\"\xdc\x01\n\x1d\x41ppConnectionHealthProperties\x12*\n\x11health_check_path\x18\x01 \x01(\tR\x0fhealthCheckPath\x12\x32\n\x15health_probe_interval\x18\x02 \x01(\tR\x13healthProbeInterval\x12\x30\n\x14health_probe_timeout\x18\x03 \x01(\tR\x12healthProbeTimeout\x12)\n\x10health_threshold\x18\x04 \x01(\x05R\x0fhealthThreshold\"\xc3\x02\n\x12PubsubSubscription\x12\x1f\n\x0bpubsub_name\x18\x01 \x01(\tR\npubsubname\x12\x14\n\x05topic\x18\x02 \x01(\tR\x05topic\x12S\n\x08metadata\x18\x03 \x03(\x0b\x32\x37.dapr.proto.runtime.v1.PubsubSubscription.MetadataEntryR\x08metadata\x12\x44\n\x05rules\x18\x04 \x01(\x0b\x32..dapr.proto.runtime.v1.PubsubSubscriptionRulesR\x05rules\x12*\n\x11\x64\x65\x61\x64_letter_topic\x18\x05 \x01(\tR\x0f\x64\x65\x61\x64LetterTopic\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"W\n\x17PubsubSubscriptionRules\x12<\n\x05rules\x18\x01 \x03(\x0b\x32-.dapr.proto.runtime.v1.PubsubSubscriptionRule\"5\n\x16PubsubSubscriptionRule\x12\r\n\x05match\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"0\n\x12SetMetadataRequest\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\"\xbc\x01\n\x17GetConfigurationRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12\x0c\n\x04keys\x18\x02 \x03(\t\x12N\n\x08metadata\x18\x03 \x03(\x0b\x32<.dapr.proto.runtime.v1.GetConfigurationRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xbc\x01\n\x18GetConfigurationResponse\x12I\n\x05items\x18\x01 \x03(\x0b\x32:.dapr.proto.runtime.v1.GetConfigurationResponse.ItemsEntry\x1aU\n\nItemsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x36\n\x05value\x18\x02 \x01(\x0b\x32\'.dapr.proto.common.v1.ConfigurationItem:\x02\x38\x01\"\xc8\x01\n\x1dSubscribeConfigurationRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12\x0c\n\x04keys\x18\x02 \x03(\t\x12T\n\x08metadata\x18\x03 \x03(\x0b\x32\x42.dapr.proto.runtime.v1.SubscribeConfigurationRequest.MetadataEntry\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"A\n\x1fUnsubscribeConfigurationRequest\x12\x12\n\nstore_name\x18\x01 \x01(\t\x12\n\n\x02id\x18\x02 \x01(\t\"\xd4\x01\n\x1eSubscribeConfigurationResponse\x12\n\n\x02id\x18\x01 \x01(\t\x12O\n\x05items\x18\x02 \x03(\x0b\x32@.dapr.proto.runtime.v1.SubscribeConfigurationResponse.ItemsEntry\x1aU\n\nItemsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x36\n\x05value\x18\x02 \x01(\x0b\x32\'.dapr.proto.common.v1.ConfigurationItem:\x02\x38\x01\"?\n UnsubscribeConfigurationResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t\"\x9b\x01\n\x0eTryLockRequest\x12\x1d\n\nstore_name\x18\x01 \x01(\tR\tstoreName\x12\x1f\n\x0bresource_id\x18\x02 \x01(\tR\nresourceId\x12\x1d\n\nlock_owner\x18\x03 \x01(\tR\tlockOwner\x12*\n\x11\x65xpiry_in_seconds\x18\x04 \x01(\x05R\x0f\x65xpiryInSeconds\"\"\n\x0fTryLockResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"n\n\rUnlockRequest\x12\x1d\n\nstore_name\x18\x01 \x01(\tR\tstoreName\x12\x1f\n\x0bresource_id\x18\x02 \x01(\tR\nresourceId\x12\x1d\n\nlock_owner\x18\x03 \x01(\tR\tlockOwner\"\xae\x01\n\x0eUnlockResponse\x12<\n\x06status\x18\x01 \x01(\x0e\x32,.dapr.proto.runtime.v1.UnlockResponse.Status\"^\n\x06Status\x12\x0b\n\x07SUCCESS\x10\x00\x12\x17\n\x13LOCK_DOES_NOT_EXIST\x10\x01\x12\x1a\n\x16LOCK_BELONGS_TO_OTHERS\x10\x02\x12\x12\n\x0eINTERNAL_ERROR\x10\x03\"\xb0\x01\n\x13SubtleGetKeyRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x44\n\x06\x66ormat\x18\x03 \x01(\x0e\x32\x34.dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat\"\x1e\n\tKeyFormat\x12\x07\n\x03PEM\x10\x00\x12\x08\n\x04JSON\x10\x01\"C\n\x14SubtleGetKeyResponse\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1d\n\npublic_key\x18\x02 \x01(\tR\tpublicKey\"\xb6\x01\n\x14SubtleEncryptRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x11\n\tplaintext\x18\x02 \x01(\x0c\x12\x11\n\talgorithm\x18\x03 \x01(\t\x12\x19\n\x08key_name\x18\x04 \x01(\tR\x07keyName\x12\r\n\x05nonce\x18\x05 \x01(\x0c\x12\'\n\x0f\x61ssociated_data\x18\x06 \x01(\x0cR\x0e\x61ssociatedData\"8\n\x15SubtleEncryptResponse\x12\x12\n\nciphertext\x18\x01 \x01(\x0c\x12\x0b\n\x03tag\x18\x02 \x01(\x0c\"\xc4\x01\n\x14SubtleDecryptRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x12\n\nciphertext\x18\x02 \x01(\x0c\x12\x11\n\talgorithm\x18\x03 \x01(\t\x12\x19\n\x08key_name\x18\x04 \x01(\tR\x07keyName\x12\r\n\x05nonce\x18\x05 \x01(\x0c\x12\x0b\n\x03tag\x18\x06 \x01(\x0c\x12\'\n\x0f\x61ssociated_data\x18\x07 \x01(\x0cR\x0e\x61ssociatedData\"*\n\x15SubtleDecryptResponse\x12\x11\n\tplaintext\x18\x01 \x01(\x0c\"\xc8\x01\n\x14SubtleWrapKeyRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12#\n\rplaintext_key\x18\x02 \x01(\x0cR\x0cplaintextKey\x12\x11\n\talgorithm\x18\x03 \x01(\t\x12\x19\n\x08key_name\x18\x04 \x01(\tR\x07keyName\x12\r\n\x05nonce\x18\x05 \x01(\x0c\x12\'\n\x0f\x61ssociated_data\x18\x06 \x01(\x0cR\x0e\x61ssociatedData\"E\n\x15SubtleWrapKeyResponse\x12\x1f\n\x0bwrapped_key\x18\x01 \x01(\x0cR\nwrappedKey\x12\x0b\n\x03tag\x18\x02 \x01(\x0c\"\xd3\x01\n\x16SubtleUnwrapKeyRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x1f\n\x0bwrapped_key\x18\x02 \x01(\x0cR\nwrappedKey\x12\x11\n\talgorithm\x18\x03 \x01(\t\x12\x19\n\x08key_name\x18\x04 \x01(\tR\x07keyName\x12\r\n\x05nonce\x18\x05 \x01(\x0c\x12\x0b\n\x03tag\x18\x06 \x01(\x0c\x12\'\n\x0f\x61ssociated_data\x18\x07 \x01(\x0cR\x0e\x61ssociatedData\">\n\x17SubtleUnwrapKeyResponse\x12#\n\rplaintext_key\x18\x01 \x01(\x0cR\x0cplaintextKey\"x\n\x11SubtleSignRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x0e\n\x06\x64igest\x18\x02 \x01(\x0c\x12\x11\n\talgorithm\x18\x03 \x01(\t\x12\x19\n\x08key_name\x18\x04 \x01(\tR\x07keyName\"\'\n\x12SubtleSignResponse\x12\x11\n\tsignature\x18\x01 \x01(\x0c\"\x8d\x01\n\x13SubtleVerifyRequest\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x0e\n\x06\x64igest\x18\x02 \x01(\x0c\x12\x11\n\talgorithm\x18\x03 \x01(\t\x12\x19\n\x08key_name\x18\x04 \x01(\tR\x07keyName\x12\x11\n\tsignature\x18\x05 \x01(\x0c\"%\n\x14SubtleVerifyResponse\x12\r\n\x05valid\x18\x01 \x01(\x08\"\x85\x01\n\x0e\x45ncryptRequest\x12=\n\x07options\x18\x01 \x01(\x0b\x32,.dapr.proto.runtime.v1.EncryptRequestOptions\x12\x34\n\x07payload\x18\x02 \x01(\x0b\x32#.dapr.proto.common.v1.StreamPayload\"\xfe\x01\n\x15\x45ncryptRequestOptions\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x19\n\x08key_name\x18\x02 \x01(\tR\x07keyName\x12\x1a\n\x12key_wrap_algorithm\x18\x03 \x01(\t\x12\x1e\n\x16\x64\x61ta_encryption_cipher\x18\n \x01(\t\x12\x37\n\x18omit_decryption_key_name\x18\x0b \x01(\x08R\x15omitDecryptionKeyName\x12.\n\x13\x64\x65\x63ryption_key_name\x18\x0c \x01(\tR\x11\x64\x65\x63ryptionKeyName\"G\n\x0f\x45ncryptResponse\x12\x34\n\x07payload\x18\x01 \x01(\x0b\x32#.dapr.proto.common.v1.StreamPayload\"\x85\x01\n\x0e\x44\x65\x63ryptRequest\x12=\n\x07options\x18\x01 \x01(\x0b\x32,.dapr.proto.runtime.v1.DecryptRequestOptions\x12\x34\n\x07payload\x18\x02 \x01(\x0b\x32#.dapr.proto.common.v1.StreamPayload\"Y\n\x15\x44\x65\x63ryptRequestOptions\x12%\n\x0e\x63omponent_name\x18\x01 \x01(\tR\rcomponentName\x12\x19\n\x08key_name\x18\x0c \x01(\tR\x07keyName\"G\n\x0f\x44\x65\x63ryptResponse\x12\x34\n\x07payload\x18\x01 \x01(\x0b\x32#.dapr.proto.common.v1.StreamPayload\"d\n\x12GetWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\"\x84\x03\n\x13GetWorkflowResponse\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12#\n\rworkflow_name\x18\x02 \x01(\tR\x0cworkflowName\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x42\n\x0flast_updated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rlastUpdatedAt\x12%\n\x0eruntime_status\x18\x05 \x01(\tR\rruntimeStatus\x12N\n\nproperties\x18\x06 \x03(\x0b\x32:.dapr.proto.runtime.v1.GetWorkflowResponse.PropertiesEntry\x1a\x31\n\x0fPropertiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x95\x02\n\x14StartWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\x12#\n\rworkflow_name\x18\x03 \x01(\tR\x0cworkflowName\x12I\n\x07options\x18\x04 \x03(\x0b\x32\x38.dapr.proto.runtime.v1.StartWorkflowRequest.OptionsEntry\x12\r\n\x05input\x18\x05 \x01(\x0c\x1a.\n\x0cOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"8\n\x15StartWorkflowResponse\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\"j\n\x18TerminateWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\"f\n\x14PauseWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\"g\n\x15ResumeWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\"\x9e\x01\n\x19RaiseEventWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\x12\x1d\n\nevent_name\x18\x03 \x01(\tR\teventName\x12\x12\n\nevent_data\x18\x04 \x01(\x0c\"f\n\x14PurgeWorkflowRequest\x12\x1f\n\x0binstance_id\x18\x01 \x01(\tR\ninstanceID\x12-\n\x12workflow_component\x18\x02 \x01(\tR\x11workflowComponent\"\x11\n\x0fShutdownRequest2\xed,\n\x04\x44\x61pr\x12\x64\n\rInvokeService\x12+.dapr.proto.runtime.v1.InvokeServiceRequest\x1a$.dapr.proto.common.v1.InvokeResponse\"\x00\x12]\n\x08GetState\x12&.dapr.proto.runtime.v1.GetStateRequest\x1a\'.dapr.proto.runtime.v1.GetStateResponse\"\x00\x12i\n\x0cGetBulkState\x12*.dapr.proto.runtime.v1.GetBulkStateRequest\x1a+.dapr.proto.runtime.v1.GetBulkStateResponse\"\x00\x12N\n\tSaveState\x12\'.dapr.proto.runtime.v1.SaveStateRequest\x1a\x16.google.protobuf.Empty\"\x00\x12i\n\x10QueryStateAlpha1\x12(.dapr.proto.runtime.v1.QueryStateRequest\x1a).dapr.proto.runtime.v1.QueryStateResponse\"\x00\x12R\n\x0b\x44\x65leteState\x12).dapr.proto.runtime.v1.DeleteStateRequest\x1a\x16.google.protobuf.Empty\"\x00\x12Z\n\x0f\x44\x65leteBulkState\x12-.dapr.proto.runtime.v1.DeleteBulkStateRequest\x1a\x16.google.protobuf.Empty\"\x00\x12j\n\x17\x45xecuteStateTransaction\x12\x35.dapr.proto.runtime.v1.ExecuteStateTransactionRequest\x1a\x16.google.protobuf.Empty\"\x00\x12T\n\x0cPublishEvent\x12*.dapr.proto.runtime.v1.PublishEventRequest\x1a\x16.google.protobuf.Empty\"\x00\x12q\n\x16\x42ulkPublishEventAlpha1\x12).dapr.proto.runtime.v1.BulkPublishRequest\x1a*.dapr.proto.runtime.v1.BulkPublishResponse\"\x00\x12l\n\rInvokeBinding\x12+.dapr.proto.runtime.v1.InvokeBindingRequest\x1a,.dapr.proto.runtime.v1.InvokeBindingResponse\"\x00\x12`\n\tGetSecret\x12\'.dapr.proto.runtime.v1.GetSecretRequest\x1a(.dapr.proto.runtime.v1.GetSecretResponse\"\x00\x12l\n\rGetBulkSecret\x12+.dapr.proto.runtime.v1.GetBulkSecretRequest\x1a,.dapr.proto.runtime.v1.GetBulkSecretResponse\"\x00\x12`\n\x12RegisterActorTimer\x12\x30.dapr.proto.runtime.v1.RegisterActorTimerRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x64\n\x14UnregisterActorTimer\x12\x32.dapr.proto.runtime.v1.UnregisterActorTimerRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x66\n\x15RegisterActorReminder\x12\x33.dapr.proto.runtime.v1.RegisterActorReminderRequest\x1a\x16.google.protobuf.Empty\"\x00\x12j\n\x17UnregisterActorReminder\x12\x35.dapr.proto.runtime.v1.UnregisterActorReminderRequest\x1a\x16.google.protobuf.Empty\"\x00\x12l\n\rGetActorState\x12+.dapr.proto.runtime.v1.GetActorStateRequest\x1a,.dapr.proto.runtime.v1.GetActorStateResponse\"\x00\x12t\n\x1c\x45xecuteActorStateTransaction\x12:.dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x66\n\x0bInvokeActor\x12).dapr.proto.runtime.v1.InvokeActorRequest\x1a*.dapr.proto.runtime.v1.InvokeActorResponse\"\x00\x12{\n\x16GetConfigurationAlpha1\x12..dapr.proto.runtime.v1.GetConfigurationRequest\x1a/.dapr.proto.runtime.v1.GetConfigurationResponse\"\x00\x12u\n\x10GetConfiguration\x12..dapr.proto.runtime.v1.GetConfigurationRequest\x1a/.dapr.proto.runtime.v1.GetConfigurationResponse\"\x00\x12\x8f\x01\n\x1cSubscribeConfigurationAlpha1\x12\x34.dapr.proto.runtime.v1.SubscribeConfigurationRequest\x1a\x35.dapr.proto.runtime.v1.SubscribeConfigurationResponse\"\x00\x30\x01\x12\x89\x01\n\x16SubscribeConfiguration\x12\x34.dapr.proto.runtime.v1.SubscribeConfigurationRequest\x1a\x35.dapr.proto.runtime.v1.SubscribeConfigurationResponse\"\x00\x30\x01\x12\x93\x01\n\x1eUnsubscribeConfigurationAlpha1\x12\x36.dapr.proto.runtime.v1.UnsubscribeConfigurationRequest\x1a\x37.dapr.proto.runtime.v1.UnsubscribeConfigurationResponse\"\x00\x12\x8d\x01\n\x18UnsubscribeConfiguration\x12\x36.dapr.proto.runtime.v1.UnsubscribeConfigurationRequest\x1a\x37.dapr.proto.runtime.v1.UnsubscribeConfigurationResponse\"\x00\x12`\n\rTryLockAlpha1\x12%.dapr.proto.runtime.v1.TryLockRequest\x1a&.dapr.proto.runtime.v1.TryLockResponse\"\x00\x12]\n\x0cUnlockAlpha1\x12$.dapr.proto.runtime.v1.UnlockRequest\x1a%.dapr.proto.runtime.v1.UnlockResponse\"\x00\x12\x62\n\rEncryptAlpha1\x12%.dapr.proto.runtime.v1.EncryptRequest\x1a&.dapr.proto.runtime.v1.EncryptResponse(\x01\x30\x01\x12\x62\n\rDecryptAlpha1\x12%.dapr.proto.runtime.v1.DecryptRequest\x1a&.dapr.proto.runtime.v1.DecryptResponse(\x01\x30\x01\x12\x66\n\x0bGetMetadata\x12).dapr.proto.runtime.v1.GetMetadataRequest\x1a*.dapr.proto.runtime.v1.GetMetadataResponse\"\x00\x12R\n\x0bSetMetadata\x12).dapr.proto.runtime.v1.SetMetadataRequest\x1a\x16.google.protobuf.Empty\"\x00\x12m\n\x12SubtleGetKeyAlpha1\x12*.dapr.proto.runtime.v1.SubtleGetKeyRequest\x1a+.dapr.proto.runtime.v1.SubtleGetKeyResponse\x12p\n\x13SubtleEncryptAlpha1\x12+.dapr.proto.runtime.v1.SubtleEncryptRequest\x1a,.dapr.proto.runtime.v1.SubtleEncryptResponse\x12p\n\x13SubtleDecryptAlpha1\x12+.dapr.proto.runtime.v1.SubtleDecryptRequest\x1a,.dapr.proto.runtime.v1.SubtleDecryptResponse\x12p\n\x13SubtleWrapKeyAlpha1\x12+.dapr.proto.runtime.v1.SubtleWrapKeyRequest\x1a,.dapr.proto.runtime.v1.SubtleWrapKeyResponse\x12v\n\x15SubtleUnwrapKeyAlpha1\x12-.dapr.proto.runtime.v1.SubtleUnwrapKeyRequest\x1a..dapr.proto.runtime.v1.SubtleUnwrapKeyResponse\x12g\n\x10SubtleSignAlpha1\x12(.dapr.proto.runtime.v1.SubtleSignRequest\x1a).dapr.proto.runtime.v1.SubtleSignResponse\x12m\n\x12SubtleVerifyAlpha1\x12*.dapr.proto.runtime.v1.SubtleVerifyRequest\x1a+.dapr.proto.runtime.v1.SubtleVerifyResponse\x12r\n\x13StartWorkflowAlpha1\x12+.dapr.proto.runtime.v1.StartWorkflowRequest\x1a,.dapr.proto.runtime.v1.StartWorkflowResponse\"\x00\x12l\n\x11GetWorkflowAlpha1\x12).dapr.proto.runtime.v1.GetWorkflowRequest\x1a*.dapr.proto.runtime.v1.GetWorkflowResponse\"\x00\x12\\\n\x13PurgeWorkflowAlpha1\x12+.dapr.proto.runtime.v1.PurgeWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x64\n\x17TerminateWorkflowAlpha1\x12/.dapr.proto.runtime.v1.TerminateWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\\\n\x13PauseWorkflowAlpha1\x12+.dapr.proto.runtime.v1.PauseWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12^\n\x14ResumeWorkflowAlpha1\x12,.dapr.proto.runtime.v1.ResumeWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x66\n\x18RaiseEventWorkflowAlpha1\x12\x30.dapr.proto.runtime.v1.RaiseEventWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12q\n\x12StartWorkflowBeta1\x12+.dapr.proto.runtime.v1.StartWorkflowRequest\x1a,.dapr.proto.runtime.v1.StartWorkflowResponse\"\x00\x12k\n\x10GetWorkflowBeta1\x12).dapr.proto.runtime.v1.GetWorkflowRequest\x1a*.dapr.proto.runtime.v1.GetWorkflowResponse\"\x00\x12[\n\x12PurgeWorkflowBeta1\x12+.dapr.proto.runtime.v1.PurgeWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x63\n\x16TerminateWorkflowBeta1\x12/.dapr.proto.runtime.v1.TerminateWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12[\n\x12PauseWorkflowBeta1\x12+.dapr.proto.runtime.v1.PauseWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12]\n\x13ResumeWorkflowBeta1\x12,.dapr.proto.runtime.v1.ResumeWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\x65\n\x17RaiseEventWorkflowBeta1\x12\x30.dapr.proto.runtime.v1.RaiseEventWorkflowRequest\x1a\x16.google.protobuf.Empty\"\x00\x12L\n\x08Shutdown\x12&.dapr.proto.runtime.v1.ShutdownRequest\x1a\x16.google.protobuf.Empty\"\x00\x42i\n\nio.dapr.v1B\nDaprProtosZ1github.com/dapr/dapr/pkg/proto/runtime/v1;runtime\xaa\x02\x1b\x44\x61pr.Client.Autogen.Grpc.v1b\x06proto3"
|
14
|
+
|
15
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
16
|
+
|
17
|
+
begin
|
18
|
+
pool.add_serialized_file(descriptor_data)
|
19
|
+
rescue TypeError
|
20
|
+
# Compatibility code: will be removed in the next major version.
|
21
|
+
require 'google/protobuf/descriptor_pb'
|
22
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
23
|
+
parsed.clear_dependency
|
24
|
+
serialized = parsed.class.encode(parsed)
|
25
|
+
file = pool.add_serialized_file(serialized)
|
26
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
27
|
+
imports = [
|
28
|
+
["dapr.proto.common.v1.InvokeRequest", "dapr/proto/common/v1/common.proto"],
|
29
|
+
["google.protobuf.Any", "google/protobuf/any.proto"],
|
30
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
31
|
+
]
|
32
|
+
imports.each do |type_name, expected_filename|
|
33
|
+
import_file = pool.lookup(type_name).file_descriptor
|
34
|
+
if import_file.name != expected_filename
|
35
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
432
36
|
end
|
433
37
|
end
|
38
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
39
|
+
warn "This will become an error in the next major version."
|
434
40
|
end
|
435
41
|
|
436
42
|
module Dapr
|
437
43
|
module Proto
|
438
44
|
module Runtime
|
439
45
|
module V1
|
440
|
-
InvokeServiceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
441
|
-
GetStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
442
|
-
GetBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
443
|
-
GetBulkStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
444
|
-
BulkStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
445
|
-
GetStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
446
|
-
DeleteStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
447
|
-
DeleteBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
448
|
-
SaveStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
449
|
-
QueryStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
450
|
-
QueryStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
451
|
-
QueryStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
452
|
-
PublishEventRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
453
|
-
BulkPublishRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
454
|
-
BulkPublishRequestEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
455
|
-
BulkPublishResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
456
|
-
BulkPublishResponseFailedEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
457
|
-
InvokeBindingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
458
|
-
InvokeBindingResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
459
|
-
GetSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
460
|
-
GetSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
461
|
-
GetBulkSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
462
|
-
SecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
463
|
-
GetBulkSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
464
|
-
TransactionalStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
465
|
-
ExecuteStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
466
|
-
RegisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
467
|
-
UnregisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
468
|
-
RegisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
469
|
-
UnregisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
GetMetadataResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup(
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
46
|
+
InvokeServiceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeServiceRequest").msgclass
|
47
|
+
GetStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetStateRequest").msgclass
|
48
|
+
GetBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkStateRequest").msgclass
|
49
|
+
GetBulkStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkStateResponse").msgclass
|
50
|
+
BulkStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkStateItem").msgclass
|
51
|
+
GetStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetStateResponse").msgclass
|
52
|
+
DeleteStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DeleteStateRequest").msgclass
|
53
|
+
DeleteBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DeleteBulkStateRequest").msgclass
|
54
|
+
SaveStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SaveStateRequest").msgclass
|
55
|
+
QueryStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.QueryStateRequest").msgclass
|
56
|
+
QueryStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.QueryStateItem").msgclass
|
57
|
+
QueryStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.QueryStateResponse").msgclass
|
58
|
+
PublishEventRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PublishEventRequest").msgclass
|
59
|
+
BulkPublishRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishRequest").msgclass
|
60
|
+
BulkPublishRequestEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishRequestEntry").msgclass
|
61
|
+
BulkPublishResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishResponse").msgclass
|
62
|
+
BulkPublishResponseFailedEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishResponseFailedEntry").msgclass
|
63
|
+
InvokeBindingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeBindingRequest").msgclass
|
64
|
+
InvokeBindingResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeBindingResponse").msgclass
|
65
|
+
GetSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetSecretRequest").msgclass
|
66
|
+
GetSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetSecretResponse").msgclass
|
67
|
+
GetBulkSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkSecretRequest").msgclass
|
68
|
+
SecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SecretResponse").msgclass
|
69
|
+
GetBulkSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkSecretResponse").msgclass
|
70
|
+
TransactionalStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TransactionalStateOperation").msgclass
|
71
|
+
ExecuteStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ExecuteStateTransactionRequest").msgclass
|
72
|
+
RegisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RegisterActorTimerRequest").msgclass
|
73
|
+
UnregisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnregisterActorTimerRequest").msgclass
|
74
|
+
RegisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RegisterActorReminderRequest").msgclass
|
75
|
+
UnregisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnregisterActorReminderRequest").msgclass
|
76
|
+
GetActorStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetActorStateRequest").msgclass
|
77
|
+
GetActorStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetActorStateResponse").msgclass
|
78
|
+
ExecuteActorStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest").msgclass
|
79
|
+
TransactionalActorStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TransactionalActorStateOperation").msgclass
|
80
|
+
InvokeActorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeActorRequest").msgclass
|
81
|
+
InvokeActorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeActorResponse").msgclass
|
82
|
+
GetMetadataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetMetadataRequest").msgclass
|
83
|
+
GetMetadataResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetMetadataResponse").msgclass
|
84
|
+
ActorRuntime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ActorRuntime").msgclass
|
85
|
+
ActorRuntime::ActorRuntimeStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ActorRuntime.ActorRuntimeStatus").enummodule
|
86
|
+
ActiveActorsCount = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ActiveActorsCount").msgclass
|
87
|
+
RegisteredComponents = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RegisteredComponents").msgclass
|
88
|
+
MetadataHTTPEndpoint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.MetadataHTTPEndpoint").msgclass
|
89
|
+
AppConnectionProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.AppConnectionProperties").msgclass
|
90
|
+
AppConnectionHealthProperties = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.AppConnectionHealthProperties").msgclass
|
91
|
+
PubsubSubscription = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PubsubSubscription").msgclass
|
92
|
+
PubsubSubscriptionRules = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PubsubSubscriptionRules").msgclass
|
93
|
+
PubsubSubscriptionRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PubsubSubscriptionRule").msgclass
|
94
|
+
SetMetadataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SetMetadataRequest").msgclass
|
95
|
+
GetConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetConfigurationRequest").msgclass
|
96
|
+
GetConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetConfigurationResponse").msgclass
|
97
|
+
SubscribeConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubscribeConfigurationRequest").msgclass
|
98
|
+
UnsubscribeConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnsubscribeConfigurationRequest").msgclass
|
99
|
+
SubscribeConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubscribeConfigurationResponse").msgclass
|
100
|
+
UnsubscribeConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnsubscribeConfigurationResponse").msgclass
|
101
|
+
TryLockRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TryLockRequest").msgclass
|
102
|
+
TryLockResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TryLockResponse").msgclass
|
103
|
+
UnlockRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnlockRequest").msgclass
|
104
|
+
UnlockResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnlockResponse").msgclass
|
105
|
+
UnlockResponse::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnlockResponse.Status").enummodule
|
106
|
+
SubtleGetKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleGetKeyRequest").msgclass
|
107
|
+
SubtleGetKeyRequest::KeyFormat = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat").enummodule
|
108
|
+
SubtleGetKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleGetKeyResponse").msgclass
|
109
|
+
SubtleEncryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleEncryptRequest").msgclass
|
110
|
+
SubtleEncryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleEncryptResponse").msgclass
|
111
|
+
SubtleDecryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleDecryptRequest").msgclass
|
112
|
+
SubtleDecryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleDecryptResponse").msgclass
|
113
|
+
SubtleWrapKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleWrapKeyRequest").msgclass
|
114
|
+
SubtleWrapKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleWrapKeyResponse").msgclass
|
115
|
+
SubtleUnwrapKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleUnwrapKeyRequest").msgclass
|
116
|
+
SubtleUnwrapKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleUnwrapKeyResponse").msgclass
|
117
|
+
SubtleSignRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleSignRequest").msgclass
|
118
|
+
SubtleSignResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleSignResponse").msgclass
|
119
|
+
SubtleVerifyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleVerifyRequest").msgclass
|
120
|
+
SubtleVerifyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleVerifyResponse").msgclass
|
121
|
+
EncryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.EncryptRequest").msgclass
|
122
|
+
EncryptRequestOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.EncryptRequestOptions").msgclass
|
123
|
+
EncryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.EncryptResponse").msgclass
|
124
|
+
DecryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DecryptRequest").msgclass
|
125
|
+
DecryptRequestOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DecryptRequestOptions").msgclass
|
126
|
+
DecryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DecryptResponse").msgclass
|
127
|
+
GetWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetWorkflowRequest").msgclass
|
128
|
+
GetWorkflowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetWorkflowResponse").msgclass
|
129
|
+
StartWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.StartWorkflowRequest").msgclass
|
130
|
+
StartWorkflowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.StartWorkflowResponse").msgclass
|
131
|
+
TerminateWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TerminateWorkflowRequest").msgclass
|
132
|
+
PauseWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PauseWorkflowRequest").msgclass
|
133
|
+
ResumeWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ResumeWorkflowRequest").msgclass
|
134
|
+
RaiseEventWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RaiseEventWorkflowRequest").msgclass
|
135
|
+
PurgeWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PurgeWorkflowRequest").msgclass
|
136
|
+
ShutdownRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ShutdownRequest").msgclass
|
525
137
|
end
|
526
138
|
end
|
527
139
|
end
|