dapr-ruby 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
4
  # source: dapr/proto/runtime/v1/dapr.proto
3
5
 
@@ -9,133 +11,133 @@ require 'google/protobuf/timestamp_pb'
9
11
  require 'dapr/proto/common/v1/common_pb'
10
12
 
11
13
  Google::Protobuf::DescriptorPool.generated_pool.build do
12
- add_file("dapr/proto/runtime/v1/dapr.proto", :syntax => :proto3) do
13
- add_message "dapr.proto.runtime.v1.InvokeServiceRequest" do
14
+ add_file('dapr/proto/runtime/v1/dapr.proto', syntax: :proto3) do
15
+ add_message 'dapr.proto.runtime.v1.InvokeServiceRequest' do
14
16
  optional :id, :string, 1
15
- optional :message, :message, 3, "dapr.proto.common.v1.InvokeRequest"
17
+ optional :message, :message, 3, 'dapr.proto.common.v1.InvokeRequest'
16
18
  end
17
- add_message "dapr.proto.runtime.v1.GetStateRequest" do
19
+ add_message 'dapr.proto.runtime.v1.GetStateRequest' do
18
20
  optional :store_name, :string, 1
19
21
  optional :key, :string, 2
20
- optional :consistency, :enum, 3, "dapr.proto.common.v1.StateOptions.StateConsistency"
22
+ optional :consistency, :enum, 3, 'dapr.proto.common.v1.StateOptions.StateConsistency'
21
23
  map :metadata, :string, :string, 4
22
24
  end
23
- add_message "dapr.proto.runtime.v1.GetBulkStateRequest" do
25
+ add_message 'dapr.proto.runtime.v1.GetBulkStateRequest' do
24
26
  optional :store_name, :string, 1
25
27
  repeated :keys, :string, 2
26
28
  optional :parallelism, :int32, 3
27
29
  map :metadata, :string, :string, 4
28
30
  end
29
- add_message "dapr.proto.runtime.v1.GetBulkStateResponse" do
30
- repeated :items, :message, 1, "dapr.proto.runtime.v1.BulkStateItem"
31
+ add_message 'dapr.proto.runtime.v1.GetBulkStateResponse' do
32
+ repeated :items, :message, 1, 'dapr.proto.runtime.v1.BulkStateItem'
31
33
  end
32
- add_message "dapr.proto.runtime.v1.BulkStateItem" do
34
+ add_message 'dapr.proto.runtime.v1.BulkStateItem' do
33
35
  optional :key, :string, 1
34
36
  optional :data, :bytes, 2
35
37
  optional :etag, :string, 3
36
38
  optional :error, :string, 4
37
39
  map :metadata, :string, :string, 5
38
40
  end
39
- add_message "dapr.proto.runtime.v1.GetStateResponse" do
41
+ add_message 'dapr.proto.runtime.v1.GetStateResponse' do
40
42
  optional :data, :bytes, 1
41
43
  optional :etag, :string, 2
42
44
  map :metadata, :string, :string, 3
43
45
  end
44
- add_message "dapr.proto.runtime.v1.DeleteStateRequest" do
46
+ add_message 'dapr.proto.runtime.v1.DeleteStateRequest' do
45
47
  optional :store_name, :string, 1
46
48
  optional :key, :string, 2
47
- optional :etag, :message, 3, "dapr.proto.common.v1.Etag"
48
- optional :options, :message, 4, "dapr.proto.common.v1.StateOptions"
49
+ optional :etag, :message, 3, 'dapr.proto.common.v1.Etag'
50
+ optional :options, :message, 4, 'dapr.proto.common.v1.StateOptions'
49
51
  map :metadata, :string, :string, 5
50
52
  end
51
- add_message "dapr.proto.runtime.v1.DeleteBulkStateRequest" do
53
+ add_message 'dapr.proto.runtime.v1.DeleteBulkStateRequest' do
52
54
  optional :store_name, :string, 1
53
- repeated :states, :message, 2, "dapr.proto.common.v1.StateItem"
55
+ repeated :states, :message, 2, 'dapr.proto.common.v1.StateItem'
54
56
  end
55
- add_message "dapr.proto.runtime.v1.SaveStateRequest" do
57
+ add_message 'dapr.proto.runtime.v1.SaveStateRequest' do
56
58
  optional :store_name, :string, 1
57
- repeated :states, :message, 2, "dapr.proto.common.v1.StateItem"
59
+ repeated :states, :message, 2, 'dapr.proto.common.v1.StateItem'
58
60
  end
59
- add_message "dapr.proto.runtime.v1.QueryStateRequest" do
60
- optional :store_name, :string, 1, json_name: "storeName"
61
+ add_message 'dapr.proto.runtime.v1.QueryStateRequest' do
62
+ optional :store_name, :string, 1, json_name: 'storeName'
61
63
  optional :query, :string, 2
62
64
  map :metadata, :string, :string, 3
63
65
  end
64
- add_message "dapr.proto.runtime.v1.QueryStateItem" do
66
+ add_message 'dapr.proto.runtime.v1.QueryStateItem' do
65
67
  optional :key, :string, 1
66
68
  optional :data, :bytes, 2
67
69
  optional :etag, :string, 3
68
70
  optional :error, :string, 4
69
71
  end
70
- add_message "dapr.proto.runtime.v1.QueryStateResponse" do
71
- repeated :results, :message, 1, "dapr.proto.runtime.v1.QueryStateItem"
72
+ add_message 'dapr.proto.runtime.v1.QueryStateResponse' do
73
+ repeated :results, :message, 1, 'dapr.proto.runtime.v1.QueryStateItem'
72
74
  optional :token, :string, 2
73
75
  map :metadata, :string, :string, 3
74
76
  end
75
- add_message "dapr.proto.runtime.v1.PublishEventRequest" do
77
+ add_message 'dapr.proto.runtime.v1.PublishEventRequest' do
76
78
  optional :pubsub_name, :string, 1
77
79
  optional :topic, :string, 2
78
80
  optional :data, :bytes, 3
79
81
  optional :data_content_type, :string, 4
80
82
  map :metadata, :string, :string, 5
81
83
  end
82
- add_message "dapr.proto.runtime.v1.BulkPublishRequest" do
84
+ add_message 'dapr.proto.runtime.v1.BulkPublishRequest' do
83
85
  optional :pubsub_name, :string, 1
84
86
  optional :topic, :string, 2
85
- repeated :entries, :message, 3, "dapr.proto.runtime.v1.BulkPublishRequestEntry"
87
+ repeated :entries, :message, 3, 'dapr.proto.runtime.v1.BulkPublishRequestEntry'
86
88
  map :metadata, :string, :string, 4
87
89
  end
88
- add_message "dapr.proto.runtime.v1.BulkPublishRequestEntry" do
90
+ add_message 'dapr.proto.runtime.v1.BulkPublishRequestEntry' do
89
91
  optional :entry_id, :string, 1
90
92
  optional :event, :bytes, 2
91
93
  optional :content_type, :string, 3
92
94
  map :metadata, :string, :string, 4
93
95
  end
94
- add_message "dapr.proto.runtime.v1.BulkPublishResponse" do
95
- repeated :failedEntries, :message, 1, "dapr.proto.runtime.v1.BulkPublishResponseFailedEntry"
96
+ add_message 'dapr.proto.runtime.v1.BulkPublishResponse' do
97
+ repeated :failedEntries, :message, 1, 'dapr.proto.runtime.v1.BulkPublishResponseFailedEntry'
96
98
  end
97
- add_message "dapr.proto.runtime.v1.BulkPublishResponseFailedEntry" do
99
+ add_message 'dapr.proto.runtime.v1.BulkPublishResponseFailedEntry' do
98
100
  optional :entry_id, :string, 1
99
101
  optional :error, :string, 2
100
102
  end
101
- add_message "dapr.proto.runtime.v1.InvokeBindingRequest" do
103
+ add_message 'dapr.proto.runtime.v1.InvokeBindingRequest' do
102
104
  optional :name, :string, 1
103
105
  optional :data, :bytes, 2
104
106
  map :metadata, :string, :string, 3
105
107
  optional :operation, :string, 4
106
108
  end
107
- add_message "dapr.proto.runtime.v1.InvokeBindingResponse" do
109
+ add_message 'dapr.proto.runtime.v1.InvokeBindingResponse' do
108
110
  optional :data, :bytes, 1
109
111
  map :metadata, :string, :string, 2
110
112
  end
111
- add_message "dapr.proto.runtime.v1.GetSecretRequest" do
112
- optional :store_name, :string, 1, json_name: "storeName"
113
+ add_message 'dapr.proto.runtime.v1.GetSecretRequest' do
114
+ optional :store_name, :string, 1, json_name: 'storeName'
113
115
  optional :key, :string, 2
114
116
  map :metadata, :string, :string, 3
115
117
  end
116
- add_message "dapr.proto.runtime.v1.GetSecretResponse" do
118
+ add_message 'dapr.proto.runtime.v1.GetSecretResponse' do
117
119
  map :data, :string, :string, 1
118
120
  end
119
- add_message "dapr.proto.runtime.v1.GetBulkSecretRequest" do
120
- optional :store_name, :string, 1, json_name: "storeName"
121
+ add_message 'dapr.proto.runtime.v1.GetBulkSecretRequest' do
122
+ optional :store_name, :string, 1, json_name: 'storeName'
121
123
  map :metadata, :string, :string, 2
122
124
  end
123
- add_message "dapr.proto.runtime.v1.SecretResponse" do
125
+ add_message 'dapr.proto.runtime.v1.SecretResponse' do
124
126
  map :secrets, :string, :string, 1
125
127
  end
126
- add_message "dapr.proto.runtime.v1.GetBulkSecretResponse" do
127
- map :data, :string, :message, 1, "dapr.proto.runtime.v1.SecretResponse"
128
+ add_message 'dapr.proto.runtime.v1.GetBulkSecretResponse' do
129
+ map :data, :string, :message, 1, 'dapr.proto.runtime.v1.SecretResponse'
128
130
  end
129
- add_message "dapr.proto.runtime.v1.TransactionalStateOperation" do
131
+ add_message 'dapr.proto.runtime.v1.TransactionalStateOperation' do
130
132
  optional :operationType, :string, 1
131
- optional :request, :message, 2, "dapr.proto.common.v1.StateItem"
133
+ optional :request, :message, 2, 'dapr.proto.common.v1.StateItem'
132
134
  end
133
- add_message "dapr.proto.runtime.v1.ExecuteStateTransactionRequest" do
135
+ add_message 'dapr.proto.runtime.v1.ExecuteStateTransactionRequest' do
134
136
  optional :storeName, :string, 1
135
- repeated :operations, :message, 2, "dapr.proto.runtime.v1.TransactionalStateOperation"
137
+ repeated :operations, :message, 2, 'dapr.proto.runtime.v1.TransactionalStateOperation'
136
138
  map :metadata, :string, :string, 3
137
139
  end
138
- add_message "dapr.proto.runtime.v1.RegisterActorTimerRequest" do
140
+ add_message 'dapr.proto.runtime.v1.RegisterActorTimerRequest' do
139
141
  optional :actor_type, :string, 1
140
142
  optional :actor_id, :string, 2
141
143
  optional :name, :string, 3
@@ -145,12 +147,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
145
147
  optional :data, :bytes, 7
146
148
  optional :ttl, :string, 8
147
149
  end
148
- add_message "dapr.proto.runtime.v1.UnregisterActorTimerRequest" do
150
+ add_message 'dapr.proto.runtime.v1.UnregisterActorTimerRequest' do
149
151
  optional :actor_type, :string, 1
150
152
  optional :actor_id, :string, 2
151
153
  optional :name, :string, 3
152
154
  end
153
- add_message "dapr.proto.runtime.v1.RegisterActorReminderRequest" do
155
+ add_message 'dapr.proto.runtime.v1.RegisterActorReminderRequest' do
154
156
  optional :actor_type, :string, 1
155
157
  optional :actor_id, :string, 2
156
158
  optional :name, :string, 3
@@ -159,274 +161,274 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
159
161
  optional :data, :bytes, 6
160
162
  optional :ttl, :string, 7
161
163
  end
162
- add_message "dapr.proto.runtime.v1.UnregisterActorReminderRequest" do
164
+ add_message 'dapr.proto.runtime.v1.UnregisterActorReminderRequest' do
163
165
  optional :actor_type, :string, 1
164
166
  optional :actor_id, :string, 2
165
167
  optional :name, :string, 3
166
168
  end
167
- add_message "dapr.proto.runtime.v1.RenameActorReminderRequest" do
169
+ add_message 'dapr.proto.runtime.v1.RenameActorReminderRequest' do
168
170
  optional :actor_type, :string, 1
169
171
  optional :actor_id, :string, 2
170
172
  optional :old_name, :string, 3
171
173
  optional :new_name, :string, 4
172
174
  end
173
- add_message "dapr.proto.runtime.v1.GetActorStateRequest" do
175
+ add_message 'dapr.proto.runtime.v1.GetActorStateRequest' do
174
176
  optional :actor_type, :string, 1
175
177
  optional :actor_id, :string, 2
176
178
  optional :key, :string, 3
177
179
  end
178
- add_message "dapr.proto.runtime.v1.GetActorStateResponse" do
180
+ add_message 'dapr.proto.runtime.v1.GetActorStateResponse' do
179
181
  optional :data, :bytes, 1
180
182
  end
181
- add_message "dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest" do
183
+ add_message 'dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest' do
182
184
  optional :actor_type, :string, 1
183
185
  optional :actor_id, :string, 2
184
- repeated :operations, :message, 3, "dapr.proto.runtime.v1.TransactionalActorStateOperation"
186
+ repeated :operations, :message, 3, 'dapr.proto.runtime.v1.TransactionalActorStateOperation'
185
187
  end
186
- add_message "dapr.proto.runtime.v1.TransactionalActorStateOperation" do
188
+ add_message 'dapr.proto.runtime.v1.TransactionalActorStateOperation' do
187
189
  optional :operationType, :string, 1
188
190
  optional :key, :string, 2
189
- optional :value, :message, 3, "google.protobuf.Any"
191
+ optional :value, :message, 3, 'google.protobuf.Any'
190
192
  map :metadata, :string, :string, 4
191
193
  end
192
- add_message "dapr.proto.runtime.v1.InvokeActorRequest" do
194
+ add_message 'dapr.proto.runtime.v1.InvokeActorRequest' do
193
195
  optional :actor_type, :string, 1
194
196
  optional :actor_id, :string, 2
195
197
  optional :method, :string, 3
196
198
  optional :data, :bytes, 4
197
199
  map :metadata, :string, :string, 5
198
200
  end
199
- add_message "dapr.proto.runtime.v1.InvokeActorResponse" do
201
+ add_message 'dapr.proto.runtime.v1.InvokeActorResponse' do
200
202
  optional :data, :bytes, 1
201
203
  end
202
- add_message "dapr.proto.runtime.v1.GetMetadataResponse" do
204
+ add_message 'dapr.proto.runtime.v1.GetMetadataResponse' do
203
205
  optional :id, :string, 1
204
- repeated :active_actors_count, :message, 2, "dapr.proto.runtime.v1.ActiveActorsCount"
205
- repeated :registered_components, :message, 3, "dapr.proto.runtime.v1.RegisteredComponents"
206
+ repeated :active_actors_count, :message, 2, 'dapr.proto.runtime.v1.ActiveActorsCount'
207
+ repeated :registered_components, :message, 3, 'dapr.proto.runtime.v1.RegisteredComponents'
206
208
  map :extended_metadata, :string, :string, 4
207
- repeated :subscriptions, :message, 5, "dapr.proto.runtime.v1.PubsubSubscription"
209
+ repeated :subscriptions, :message, 5, 'dapr.proto.runtime.v1.PubsubSubscription'
208
210
  end
209
- add_message "dapr.proto.runtime.v1.ActiveActorsCount" do
211
+ add_message 'dapr.proto.runtime.v1.ActiveActorsCount' do
210
212
  optional :type, :string, 1
211
213
  optional :count, :int32, 2
212
214
  end
213
- add_message "dapr.proto.runtime.v1.RegisteredComponents" do
215
+ add_message 'dapr.proto.runtime.v1.RegisteredComponents' do
214
216
  optional :name, :string, 1
215
217
  optional :type, :string, 2
216
218
  optional :version, :string, 3
217
219
  repeated :capabilities, :string, 4
218
220
  end
219
- add_message "dapr.proto.runtime.v1.PubsubSubscription" do
221
+ add_message 'dapr.proto.runtime.v1.PubsubSubscription' do
220
222
  optional :pubsub_name, :string, 1
221
223
  optional :topic, :string, 2
222
224
  map :metadata, :string, :string, 3
223
- optional :rules, :message, 4, "dapr.proto.runtime.v1.PubsubSubscriptionRules"
225
+ optional :rules, :message, 4, 'dapr.proto.runtime.v1.PubsubSubscriptionRules'
224
226
  optional :dead_letter_topic, :string, 5
225
227
  end
226
- add_message "dapr.proto.runtime.v1.PubsubSubscriptionRules" do
227
- repeated :rules, :message, 1, "dapr.proto.runtime.v1.PubsubSubscriptionRule"
228
+ add_message 'dapr.proto.runtime.v1.PubsubSubscriptionRules' do
229
+ repeated :rules, :message, 1, 'dapr.proto.runtime.v1.PubsubSubscriptionRule'
228
230
  end
229
- add_message "dapr.proto.runtime.v1.PubsubSubscriptionRule" do
231
+ add_message 'dapr.proto.runtime.v1.PubsubSubscriptionRule' do
230
232
  optional :match, :string, 1
231
233
  optional :path, :string, 2
232
234
  end
233
- add_message "dapr.proto.runtime.v1.SetMetadataRequest" do
235
+ add_message 'dapr.proto.runtime.v1.SetMetadataRequest' do
234
236
  optional :key, :string, 1
235
237
  optional :value, :string, 2
236
238
  end
237
- add_message "dapr.proto.runtime.v1.GetConfigurationRequest" do
239
+ add_message 'dapr.proto.runtime.v1.GetConfigurationRequest' do
238
240
  optional :store_name, :string, 1
239
241
  repeated :keys, :string, 2
240
242
  map :metadata, :string, :string, 3
241
243
  end
242
- add_message "dapr.proto.runtime.v1.GetConfigurationResponse" do
243
- map :items, :string, :message, 1, "dapr.proto.common.v1.ConfigurationItem"
244
+ add_message 'dapr.proto.runtime.v1.GetConfigurationResponse' do
245
+ map :items, :string, :message, 1, 'dapr.proto.common.v1.ConfigurationItem'
244
246
  end
245
- add_message "dapr.proto.runtime.v1.SubscribeConfigurationRequest" do
247
+ add_message 'dapr.proto.runtime.v1.SubscribeConfigurationRequest' do
246
248
  optional :store_name, :string, 1
247
249
  repeated :keys, :string, 2
248
250
  map :metadata, :string, :string, 3
249
251
  end
250
- add_message "dapr.proto.runtime.v1.UnsubscribeConfigurationRequest" do
252
+ add_message 'dapr.proto.runtime.v1.UnsubscribeConfigurationRequest' do
251
253
  optional :store_name, :string, 1
252
254
  optional :id, :string, 2
253
255
  end
254
- add_message "dapr.proto.runtime.v1.SubscribeConfigurationResponse" do
256
+ add_message 'dapr.proto.runtime.v1.SubscribeConfigurationResponse' do
255
257
  optional :id, :string, 1
256
- map :items, :string, :message, 2, "dapr.proto.common.v1.ConfigurationItem"
258
+ map :items, :string, :message, 2, 'dapr.proto.common.v1.ConfigurationItem'
257
259
  end
258
- add_message "dapr.proto.runtime.v1.UnsubscribeConfigurationResponse" do
260
+ add_message 'dapr.proto.runtime.v1.UnsubscribeConfigurationResponse' do
259
261
  optional :ok, :bool, 1
260
262
  optional :message, :string, 2
261
263
  end
262
- add_message "dapr.proto.runtime.v1.TryLockRequest" do
263
- optional :store_name, :string, 1, json_name: "storeName"
264
- optional :resource_id, :string, 2, json_name: "resourceId"
265
- optional :lock_owner, :string, 3, json_name: "lockOwner"
266
- optional :expiry_in_seconds, :int32, 4, json_name: "expiryInSeconds"
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'
267
269
  end
268
- add_message "dapr.proto.runtime.v1.TryLockResponse" do
270
+ add_message 'dapr.proto.runtime.v1.TryLockResponse' do
269
271
  optional :success, :bool, 1
270
272
  end
271
- add_message "dapr.proto.runtime.v1.UnlockRequest" do
272
- optional :store_name, :string, 1, json_name: "storeName"
273
- optional :resource_id, :string, 2, json_name: "resourceId"
274
- optional :lock_owner, :string, 3, json_name: "lockOwner"
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'
275
277
  end
276
- add_message "dapr.proto.runtime.v1.UnlockResponse" do
277
- optional :status, :enum, 1, "dapr.proto.runtime.v1.UnlockResponse.Status"
278
+ add_message 'dapr.proto.runtime.v1.UnlockResponse' do
279
+ optional :status, :enum, 1, 'dapr.proto.runtime.v1.UnlockResponse.Status'
278
280
  end
279
- add_enum "dapr.proto.runtime.v1.UnlockResponse.Status" do
281
+ add_enum 'dapr.proto.runtime.v1.UnlockResponse.Status' do
280
282
  value :SUCCESS, 0
281
283
  value :LOCK_DOES_NOT_EXIST, 1
282
284
  value :LOCK_BELONGS_TO_OTHERS, 2
283
285
  value :INTERNAL_ERROR, 3
284
286
  end
285
- add_message "dapr.proto.runtime.v1.SubtleGetKeyRequest" do
286
- optional :component_name, :string, 1, json_name: "componentName"
287
+ add_message 'dapr.proto.runtime.v1.SubtleGetKeyRequest' do
288
+ optional :component_name, :string, 1, json_name: 'componentName'
287
289
  optional :name, :string, 2
288
- optional :format, :enum, 3, "dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat"
290
+ optional :format, :enum, 3, 'dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat'
289
291
  end
290
- add_enum "dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat" do
292
+ add_enum 'dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat' do
291
293
  value :PEM, 0
292
294
  value :JSON, 1
293
295
  end
294
- add_message "dapr.proto.runtime.v1.SubtleGetKeyResponse" do
296
+ add_message 'dapr.proto.runtime.v1.SubtleGetKeyResponse' do
295
297
  optional :name, :string, 1
296
- optional :public_key, :string, 2, json_name: "publicKey"
298
+ optional :public_key, :string, 2, json_name: 'publicKey'
297
299
  end
298
- add_message "dapr.proto.runtime.v1.SubtleEncryptRequest" do
299
- optional :component_name, :string, 1, json_name: "componentName"
300
+ add_message 'dapr.proto.runtime.v1.SubtleEncryptRequest' do
301
+ optional :component_name, :string, 1, json_name: 'componentName'
300
302
  optional :plaintext, :bytes, 2
301
303
  optional :algorithm, :string, 3
302
- optional :key_name, :string, 4, json_name: "keyName"
304
+ optional :key_name, :string, 4, json_name: 'keyName'
303
305
  optional :nonce, :bytes, 5
304
- optional :associated_data, :bytes, 6, json_name: "associatedData"
306
+ optional :associated_data, :bytes, 6, json_name: 'associatedData'
305
307
  end
306
- add_message "dapr.proto.runtime.v1.SubtleEncryptResponse" do
308
+ add_message 'dapr.proto.runtime.v1.SubtleEncryptResponse' do
307
309
  optional :ciphertext, :bytes, 1
308
310
  optional :tag, :bytes, 2
309
311
  end
310
- add_message "dapr.proto.runtime.v1.SubtleDecryptRequest" do
311
- optional :component_name, :string, 1, json_name: "componentName"
312
+ add_message 'dapr.proto.runtime.v1.SubtleDecryptRequest' do
313
+ optional :component_name, :string, 1, json_name: 'componentName'
312
314
  optional :ciphertext, :bytes, 2
313
315
  optional :algorithm, :string, 3
314
- optional :key_name, :string, 4, json_name: "keyName"
316
+ optional :key_name, :string, 4, json_name: 'keyName'
315
317
  optional :nonce, :bytes, 5
316
318
  optional :tag, :bytes, 6
317
- optional :associated_data, :bytes, 7, json_name: "associatedData"
319
+ optional :associated_data, :bytes, 7, json_name: 'associatedData'
318
320
  end
319
- add_message "dapr.proto.runtime.v1.SubtleDecryptResponse" do
321
+ add_message 'dapr.proto.runtime.v1.SubtleDecryptResponse' do
320
322
  optional :plaintext, :bytes, 1
321
323
  end
322
- add_message "dapr.proto.runtime.v1.SubtleWrapKeyRequest" do
323
- optional :component_name, :string, 1, json_name: "componentName"
324
- optional :plaintext_key, :bytes, 2, json_name: "plaintextKey"
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'
325
327
  optional :algorithm, :string, 3
326
- optional :key_name, :string, 4, json_name: "keyName"
328
+ optional :key_name, :string, 4, json_name: 'keyName'
327
329
  optional :nonce, :bytes, 5
328
- optional :associated_data, :bytes, 6, json_name: "associatedData"
330
+ optional :associated_data, :bytes, 6, json_name: 'associatedData'
329
331
  end
330
- add_message "dapr.proto.runtime.v1.SubtleWrapKeyResponse" do
331
- optional :wrapped_key, :bytes, 1, json_name: "wrappedKey"
332
+ add_message 'dapr.proto.runtime.v1.SubtleWrapKeyResponse' do
333
+ optional :wrapped_key, :bytes, 1, json_name: 'wrappedKey'
332
334
  optional :tag, :bytes, 2
333
335
  end
334
- add_message "dapr.proto.runtime.v1.SubtleUnwrapKeyRequest" do
335
- optional :component_name, :string, 1, json_name: "componentName"
336
- optional :wrapped_key, :bytes, 2, json_name: "wrappedKey"
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'
337
339
  optional :algorithm, :string, 3
338
- optional :key_name, :string, 4, json_name: "keyName"
340
+ optional :key_name, :string, 4, json_name: 'keyName'
339
341
  optional :nonce, :bytes, 5
340
342
  optional :tag, :bytes, 6
341
- optional :associated_data, :bytes, 7, json_name: "associatedData"
343
+ optional :associated_data, :bytes, 7, json_name: 'associatedData'
342
344
  end
343
- add_message "dapr.proto.runtime.v1.SubtleUnwrapKeyResponse" do
344
- optional :plaintext_key, :bytes, 1, json_name: "plaintextKey"
345
+ add_message 'dapr.proto.runtime.v1.SubtleUnwrapKeyResponse' do
346
+ optional :plaintext_key, :bytes, 1, json_name: 'plaintextKey'
345
347
  end
346
- add_message "dapr.proto.runtime.v1.SubtleSignRequest" do
347
- optional :component_name, :string, 1, json_name: "componentName"
348
+ add_message 'dapr.proto.runtime.v1.SubtleSignRequest' do
349
+ optional :component_name, :string, 1, json_name: 'componentName'
348
350
  optional :digest, :bytes, 2
349
351
  optional :algorithm, :string, 3
350
- optional :key_name, :string, 4, json_name: "keyName"
352
+ optional :key_name, :string, 4, json_name: 'keyName'
351
353
  end
352
- add_message "dapr.proto.runtime.v1.SubtleSignResponse" do
354
+ add_message 'dapr.proto.runtime.v1.SubtleSignResponse' do
353
355
  optional :signature, :bytes, 1
354
356
  end
355
- add_message "dapr.proto.runtime.v1.SubtleVerifyRequest" do
356
- optional :component_name, :string, 1, json_name: "componentName"
357
+ add_message 'dapr.proto.runtime.v1.SubtleVerifyRequest' do
358
+ optional :component_name, :string, 1, json_name: 'componentName'
357
359
  optional :digest, :bytes, 2
358
360
  optional :algorithm, :string, 3
359
- optional :key_name, :string, 4, json_name: "keyName"
361
+ optional :key_name, :string, 4, json_name: 'keyName'
360
362
  optional :signature, :bytes, 5
361
363
  end
362
- add_message "dapr.proto.runtime.v1.SubtleVerifyResponse" do
364
+ add_message 'dapr.proto.runtime.v1.SubtleVerifyResponse' do
363
365
  optional :valid, :bool, 1
364
366
  end
365
- add_message "dapr.proto.runtime.v1.EncryptRequest" do
366
- optional :options, :message, 1, "dapr.proto.runtime.v1.EncryptRequestOptions"
367
+ add_message 'dapr.proto.runtime.v1.EncryptRequest' do
368
+ optional :options, :message, 1, 'dapr.proto.runtime.v1.EncryptRequestOptions'
367
369
  end
368
- add_message "dapr.proto.runtime.v1.EncryptRequestOptions" do
369
- optional :component_name, :string, 1, json_name: "componentName"
370
- optional :key_name, :string, 2, json_name: "keyName"
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'
371
373
  optional :key_wrap_algorithm, :string, 3
372
374
  optional :data_encryption_cipher, :string, 10
373
- optional :omit_decryption_key_name, :bool, 11, json_name: "omitDecryptionKeyName"
374
- optional :decryption_key_name, :string, 12, json_name: "decryptionKeyName"
375
+ optional :omit_decryption_key_name, :bool, 11, json_name: 'omitDecryptionKeyName'
376
+ optional :decryption_key_name, :string, 12, json_name: 'decryptionKeyName'
375
377
  end
376
- add_message "dapr.proto.runtime.v1.EncryptResponse" do
378
+ add_message 'dapr.proto.runtime.v1.EncryptResponse' do
377
379
  end
378
- add_message "dapr.proto.runtime.v1.DecryptRequest" do
379
- optional :options, :message, 1, "dapr.proto.runtime.v1.DecryptRequestOptions"
380
+ add_message 'dapr.proto.runtime.v1.DecryptRequest' do
381
+ optional :options, :message, 1, 'dapr.proto.runtime.v1.DecryptRequestOptions'
380
382
  end
381
- add_message "dapr.proto.runtime.v1.DecryptRequestOptions" do
382
- optional :component_name, :string, 1, json_name: "componentName"
383
- optional :key_name, :string, 12, json_name: "keyName"
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'
384
386
  end
385
- add_message "dapr.proto.runtime.v1.DecryptResponse" do
387
+ add_message 'dapr.proto.runtime.v1.DecryptResponse' do
386
388
  end
387
- add_message "dapr.proto.runtime.v1.GetWorkflowRequest" do
388
- optional :instance_id, :string, 1, json_name: "instanceID"
389
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
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'
390
392
  end
391
- add_message "dapr.proto.runtime.v1.GetWorkflowResponse" do
392
- optional :instance_id, :string, 1, json_name: "instanceID"
393
- optional :workflow_name, :string, 2, json_name: "workflowName"
394
- optional :created_at, :message, 3, "google.protobuf.Timestamp", json_name: "createdAt"
395
- optional :last_updated_at, :message, 4, "google.protobuf.Timestamp", json_name: "lastUpdatedAt"
396
- optional :runtime_status, :string, 5, json_name: "runtimeStatus"
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'
397
399
  map :properties, :string, :string, 6
398
400
  end
399
- add_message "dapr.proto.runtime.v1.StartWorkflowRequest" do
400
- optional :instance_id, :string, 1, json_name: "instanceID"
401
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
402
- optional :workflow_name, :string, 3, json_name: "workflowName"
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'
403
405
  map :options, :string, :string, 4
404
406
  optional :input, :bytes, 5
405
407
  end
406
- add_message "dapr.proto.runtime.v1.StartWorkflowResponse" do
407
- optional :instance_id, :string, 1, json_name: "instanceID"
408
+ add_message 'dapr.proto.runtime.v1.StartWorkflowResponse' do
409
+ optional :instance_id, :string, 1, json_name: 'instanceID'
408
410
  end
409
- add_message "dapr.proto.runtime.v1.TerminateWorkflowRequest" do
410
- optional :instance_id, :string, 1, json_name: "instanceID"
411
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
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'
412
414
  end
413
- add_message "dapr.proto.runtime.v1.PauseWorkflowRequest" do
414
- optional :instance_id, :string, 1, json_name: "instanceID"
415
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
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'
416
418
  end
417
- add_message "dapr.proto.runtime.v1.ResumeWorkflowRequest" do
418
- optional :instance_id, :string, 1, json_name: "instanceID"
419
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
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'
420
422
  end
421
- add_message "dapr.proto.runtime.v1.RaiseEventWorkflowRequest" do
422
- optional :instance_id, :string, 1, json_name: "instanceID"
423
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
424
- optional :event_name, :string, 3, json_name: "eventName"
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'
425
427
  optional :event_data, :bytes, 4
426
428
  end
427
- add_message "dapr.proto.runtime.v1.PurgeWorkflowRequest" do
428
- optional :instance_id, :string, 1, json_name: "instanceID"
429
- optional :workflow_component, :string, 2, json_name: "workflowComponent"
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'
430
432
  end
431
433
  end
432
434
  end
@@ -435,91 +437,91 @@ module Dapr
435
437
  module Proto
436
438
  module Runtime
437
439
  module V1
438
- InvokeServiceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeServiceRequest").msgclass
439
- GetStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetStateRequest").msgclass
440
- GetBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkStateRequest").msgclass
441
- GetBulkStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkStateResponse").msgclass
442
- BulkStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkStateItem").msgclass
443
- GetStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetStateResponse").msgclass
444
- DeleteStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DeleteStateRequest").msgclass
445
- DeleteBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DeleteBulkStateRequest").msgclass
446
- SaveStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SaveStateRequest").msgclass
447
- QueryStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.QueryStateRequest").msgclass
448
- QueryStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.QueryStateItem").msgclass
449
- QueryStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.QueryStateResponse").msgclass
450
- PublishEventRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PublishEventRequest").msgclass
451
- BulkPublishRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishRequest").msgclass
452
- BulkPublishRequestEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishRequestEntry").msgclass
453
- BulkPublishResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishResponse").msgclass
454
- BulkPublishResponseFailedEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.BulkPublishResponseFailedEntry").msgclass
455
- InvokeBindingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeBindingRequest").msgclass
456
- InvokeBindingResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeBindingResponse").msgclass
457
- GetSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetSecretRequest").msgclass
458
- GetSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetSecretResponse").msgclass
459
- GetBulkSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkSecretRequest").msgclass
460
- SecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SecretResponse").msgclass
461
- GetBulkSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetBulkSecretResponse").msgclass
462
- TransactionalStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TransactionalStateOperation").msgclass
463
- ExecuteStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ExecuteStateTransactionRequest").msgclass
464
- RegisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RegisterActorTimerRequest").msgclass
465
- UnregisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnregisterActorTimerRequest").msgclass
466
- RegisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RegisterActorReminderRequest").msgclass
467
- UnregisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnregisterActorReminderRequest").msgclass
468
- RenameActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RenameActorReminderRequest").msgclass
469
- GetActorStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetActorStateRequest").msgclass
470
- GetActorStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetActorStateResponse").msgclass
471
- ExecuteActorStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest").msgclass
472
- TransactionalActorStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TransactionalActorStateOperation").msgclass
473
- InvokeActorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeActorRequest").msgclass
474
- InvokeActorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.InvokeActorResponse").msgclass
475
- GetMetadataResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetMetadataResponse").msgclass
476
- ActiveActorsCount = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ActiveActorsCount").msgclass
477
- RegisteredComponents = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RegisteredComponents").msgclass
478
- PubsubSubscription = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PubsubSubscription").msgclass
479
- PubsubSubscriptionRules = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PubsubSubscriptionRules").msgclass
480
- PubsubSubscriptionRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PubsubSubscriptionRule").msgclass
481
- SetMetadataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SetMetadataRequest").msgclass
482
- GetConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetConfigurationRequest").msgclass
483
- GetConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetConfigurationResponse").msgclass
484
- SubscribeConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubscribeConfigurationRequest").msgclass
485
- UnsubscribeConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnsubscribeConfigurationRequest").msgclass
486
- SubscribeConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubscribeConfigurationResponse").msgclass
487
- UnsubscribeConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnsubscribeConfigurationResponse").msgclass
488
- TryLockRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TryLockRequest").msgclass
489
- TryLockResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TryLockResponse").msgclass
490
- UnlockRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnlockRequest").msgclass
491
- UnlockResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnlockResponse").msgclass
492
- UnlockResponse::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.UnlockResponse.Status").enummodule
493
- SubtleGetKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleGetKeyRequest").msgclass
494
- SubtleGetKeyRequest::KeyFormat = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat").enummodule
495
- SubtleGetKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleGetKeyResponse").msgclass
496
- SubtleEncryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleEncryptRequest").msgclass
497
- SubtleEncryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleEncryptResponse").msgclass
498
- SubtleDecryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleDecryptRequest").msgclass
499
- SubtleDecryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleDecryptResponse").msgclass
500
- SubtleWrapKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleWrapKeyRequest").msgclass
501
- SubtleWrapKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleWrapKeyResponse").msgclass
502
- SubtleUnwrapKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleUnwrapKeyRequest").msgclass
503
- SubtleUnwrapKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleUnwrapKeyResponse").msgclass
504
- SubtleSignRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleSignRequest").msgclass
505
- SubtleSignResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleSignResponse").msgclass
506
- SubtleVerifyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleVerifyRequest").msgclass
507
- SubtleVerifyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.SubtleVerifyResponse").msgclass
508
- EncryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.EncryptRequest").msgclass
509
- EncryptRequestOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.EncryptRequestOptions").msgclass
510
- EncryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.EncryptResponse").msgclass
511
- DecryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DecryptRequest").msgclass
512
- DecryptRequestOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DecryptRequestOptions").msgclass
513
- DecryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.DecryptResponse").msgclass
514
- GetWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetWorkflowRequest").msgclass
515
- GetWorkflowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.GetWorkflowResponse").msgclass
516
- StartWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.StartWorkflowRequest").msgclass
517
- StartWorkflowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.StartWorkflowResponse").msgclass
518
- TerminateWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.TerminateWorkflowRequest").msgclass
519
- PauseWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PauseWorkflowRequest").msgclass
520
- ResumeWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.ResumeWorkflowRequest").msgclass
521
- RaiseEventWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.RaiseEventWorkflowRequest").msgclass
522
- PurgeWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("dapr.proto.runtime.v1.PurgeWorkflowRequest").msgclass
440
+ InvokeServiceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.InvokeServiceRequest').msgclass
441
+ GetStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetStateRequest').msgclass
442
+ GetBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetBulkStateRequest').msgclass
443
+ GetBulkStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetBulkStateResponse').msgclass
444
+ BulkStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.BulkStateItem').msgclass
445
+ GetStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetStateResponse').msgclass
446
+ DeleteStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.DeleteStateRequest').msgclass
447
+ DeleteBulkStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.DeleteBulkStateRequest').msgclass
448
+ SaveStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SaveStateRequest').msgclass
449
+ QueryStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.QueryStateRequest').msgclass
450
+ QueryStateItem = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.QueryStateItem').msgclass
451
+ QueryStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.QueryStateResponse').msgclass
452
+ PublishEventRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.PublishEventRequest').msgclass
453
+ BulkPublishRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.BulkPublishRequest').msgclass
454
+ BulkPublishRequestEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.BulkPublishRequestEntry').msgclass
455
+ BulkPublishResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.BulkPublishResponse').msgclass
456
+ BulkPublishResponseFailedEntry = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.BulkPublishResponseFailedEntry').msgclass
457
+ InvokeBindingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.InvokeBindingRequest').msgclass
458
+ InvokeBindingResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.InvokeBindingResponse').msgclass
459
+ GetSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetSecretRequest').msgclass
460
+ GetSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetSecretResponse').msgclass
461
+ GetBulkSecretRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetBulkSecretRequest').msgclass
462
+ SecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SecretResponse').msgclass
463
+ GetBulkSecretResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetBulkSecretResponse').msgclass
464
+ TransactionalStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.TransactionalStateOperation').msgclass
465
+ ExecuteStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.ExecuteStateTransactionRequest').msgclass
466
+ RegisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.RegisterActorTimerRequest').msgclass
467
+ UnregisterActorTimerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnregisterActorTimerRequest').msgclass
468
+ RegisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.RegisterActorReminderRequest').msgclass
469
+ UnregisterActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnregisterActorReminderRequest').msgclass
470
+ RenameActorReminderRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.RenameActorReminderRequest').msgclass
471
+ GetActorStateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetActorStateRequest').msgclass
472
+ GetActorStateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetActorStateResponse').msgclass
473
+ ExecuteActorStateTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.ExecuteActorStateTransactionRequest').msgclass
474
+ TransactionalActorStateOperation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.TransactionalActorStateOperation').msgclass
475
+ InvokeActorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.InvokeActorRequest').msgclass
476
+ InvokeActorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.InvokeActorResponse').msgclass
477
+ GetMetadataResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetMetadataResponse').msgclass
478
+ ActiveActorsCount = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.ActiveActorsCount').msgclass
479
+ RegisteredComponents = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.RegisteredComponents').msgclass
480
+ PubsubSubscription = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.PubsubSubscription').msgclass
481
+ PubsubSubscriptionRules = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.PubsubSubscriptionRules').msgclass
482
+ PubsubSubscriptionRule = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.PubsubSubscriptionRule').msgclass
483
+ SetMetadataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SetMetadataRequest').msgclass
484
+ GetConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetConfigurationRequest').msgclass
485
+ GetConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetConfigurationResponse').msgclass
486
+ SubscribeConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubscribeConfigurationRequest').msgclass
487
+ UnsubscribeConfigurationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnsubscribeConfigurationRequest').msgclass
488
+ SubscribeConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubscribeConfigurationResponse').msgclass
489
+ UnsubscribeConfigurationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnsubscribeConfigurationResponse').msgclass
490
+ TryLockRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.TryLockRequest').msgclass
491
+ TryLockResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.TryLockResponse').msgclass
492
+ UnlockRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnlockRequest').msgclass
493
+ UnlockResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnlockResponse').msgclass
494
+ UnlockResponse::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.UnlockResponse.Status').enummodule
495
+ SubtleGetKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleGetKeyRequest').msgclass
496
+ SubtleGetKeyRequest::KeyFormat = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat').enummodule
497
+ SubtleGetKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleGetKeyResponse').msgclass
498
+ SubtleEncryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleEncryptRequest').msgclass
499
+ SubtleEncryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleEncryptResponse').msgclass
500
+ SubtleDecryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleDecryptRequest').msgclass
501
+ SubtleDecryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleDecryptResponse').msgclass
502
+ SubtleWrapKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleWrapKeyRequest').msgclass
503
+ SubtleWrapKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleWrapKeyResponse').msgclass
504
+ SubtleUnwrapKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleUnwrapKeyRequest').msgclass
505
+ SubtleUnwrapKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleUnwrapKeyResponse').msgclass
506
+ SubtleSignRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleSignRequest').msgclass
507
+ SubtleSignResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleSignResponse').msgclass
508
+ SubtleVerifyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleVerifyRequest').msgclass
509
+ SubtleVerifyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.SubtleVerifyResponse').msgclass
510
+ EncryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.EncryptRequest').msgclass
511
+ EncryptRequestOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.EncryptRequestOptions').msgclass
512
+ EncryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.EncryptResponse').msgclass
513
+ DecryptRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.DecryptRequest').msgclass
514
+ DecryptRequestOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.DecryptRequestOptions').msgclass
515
+ DecryptResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.DecryptResponse').msgclass
516
+ GetWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetWorkflowRequest').msgclass
517
+ GetWorkflowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.GetWorkflowResponse').msgclass
518
+ StartWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.StartWorkflowRequest').msgclass
519
+ StartWorkflowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.StartWorkflowResponse').msgclass
520
+ TerminateWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.TerminateWorkflowRequest').msgclass
521
+ PauseWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.PauseWorkflowRequest').msgclass
522
+ ResumeWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.ResumeWorkflowRequest').msgclass
523
+ RaiseEventWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.RaiseEventWorkflowRequest').msgclass
524
+ PurgeWorkflowRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup('dapr.proto.runtime.v1.PurgeWorkflowRequest').msgclass
523
525
  end
524
526
  end
525
527
  end