aws-sdk 1.6.3 → 1.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +1 -0
  2. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +1 -0
  3. data/lib/aws/api_config/CloudFront-2012-05-05.yml +2137 -0
  4. data/lib/aws/api_config/CloudWatch-2010-08-01.yml +9 -0
  5. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +616 -0
  6. data/lib/aws/api_config/EC2-2012-07-20.yml +1 -0
  7. data/lib/aws/api_config/ELB-2012-06-01.yml +1 -0
  8. data/lib/aws/api_config/EMR-2009-03-31.yml +1 -0
  9. data/lib/aws/api_config/IAM-2010-05-08.yml +1 -0
  10. data/lib/aws/api_config/Route53-2012-02-29.yml +350 -349
  11. data/lib/aws/api_config/SNS-2010-03-31.yml +1 -0
  12. data/lib/aws/api_config/SQS-2011-10-01.yml +1 -0
  13. data/lib/aws/api_config/STS-2011-06-15.yml +1 -0
  14. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +1 -0
  15. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +62 -0
  16. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +1637 -0
  17. data/lib/aws/auto_scaling/client.rb +2 -37
  18. data/lib/aws/cloud_formation/client.rb +2 -17
  19. data/lib/aws/cloud_watch/client.rb +2 -15
  20. data/lib/aws/core.rb +24 -4
  21. data/lib/aws/core/client.rb +115 -46
  22. data/lib/aws/core/configuration.rb +6 -0
  23. data/lib/aws/core/credential_providers.rb +1 -0
  24. data/lib/aws/core/http/curb_handler.rb +3 -3
  25. data/lib/aws/core/http/httparty_handler.rb +15 -15
  26. data/lib/aws/core/json_client.rb +19 -77
  27. data/lib/aws/core/json_error_parser.rb +25 -0
  28. data/lib/aws/core/json_request_builder.rb +34 -0
  29. data/lib/aws/core/json_response_parser.rb +81 -0
  30. data/lib/aws/core/log_formatter.rb +25 -25
  31. data/lib/aws/core/option_grammar.rb +123 -115
  32. data/lib/aws/core/options/xml_serializer.rb +13 -9
  33. data/lib/aws/core/query_client.rb +13 -104
  34. data/lib/aws/core/query_error_parser.rb +24 -0
  35. data/lib/aws/core/query_request_builder.rb +47 -0
  36. data/lib/aws/core/query_response_parser.rb +35 -0
  37. data/lib/aws/core/rest_client.rb +13 -62
  38. data/lib/aws/core/rest_error_parser.rb +24 -0
  39. data/lib/aws/core/rest_request_builder.rb +124 -0
  40. data/lib/aws/core/rest_response_parser.rb +48 -0
  41. data/lib/aws/core/xml/parser.rb +2 -2
  42. data/lib/aws/core/xml/root_frame.rb +1 -1
  43. data/lib/aws/dynamo_db.rb +10 -9
  44. data/lib/aws/dynamo_db/binary.rb +35 -0
  45. data/lib/aws/dynamo_db/client.rb +103 -20
  46. data/lib/aws/dynamo_db/config.rb +2 -0
  47. data/lib/aws/dynamo_db/item.rb +3 -0
  48. data/lib/aws/dynamo_db/primary_key_element.rb +2 -1
  49. data/lib/aws/dynamo_db/table.rb +32 -36
  50. data/lib/aws/dynamo_db/table_collection.rb +13 -13
  51. data/lib/aws/dynamo_db/types.rb +34 -9
  52. data/lib/aws/ec2/client.rb +884 -344
  53. data/lib/aws/ec2/filtered_collection.rb +2 -3
  54. data/lib/aws/elb/client.rb +59 -45
  55. data/lib/aws/emr/client.rb +2 -11
  56. data/lib/aws/iam/client.rb +9 -80
  57. data/lib/aws/record/hash_model/attributes.rb +28 -13
  58. data/lib/aws/route_53/client.rb +6 -16
  59. data/lib/aws/s3/client.rb +2 -1
  60. data/lib/aws/s3/encryption_utils.rb +2 -7
  61. data/lib/aws/s3/s3_object.rb +5 -0
  62. data/lib/aws/simple_db/client.rb +2 -14
  63. data/lib/aws/simple_email_service/client.rb +35 -19
  64. data/lib/aws/simple_email_service/identity.rb +49 -10
  65. data/lib/aws/simple_email_service/identity_collection.rb +4 -4
  66. data/lib/aws/simple_workflow/client.rb +2 -38
  67. data/lib/aws/sns/client.rb +2 -19
  68. data/lib/aws/sqs/client.rb +2 -19
  69. data/lib/aws/sqs/errors.rb +5 -5
  70. data/lib/aws/sts/client.rb +2 -6
  71. metadata +14 -5
  72. data/lib/aws/core/rest_client/input_handler.rb +0 -145
  73. data/lib/aws/core/rest_client/output_handler.rb +0 -53
@@ -12,6 +12,7 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
+ :api_version: '2010-03-31'
15
16
  :operations:
16
17
  - :name: AddPermission
17
18
  :method: :add_permission
@@ -12,6 +12,7 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
+ :api_version: '2011-10-01'
15
16
  :operations:
16
17
  - :name: AddPermission
17
18
  :method: :add_permission
@@ -12,6 +12,7 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
+ :api_version: '2011-06-15'
15
16
  :operations:
16
17
  - :name: GetFederationToken
17
18
  :method: :get_federation_token
@@ -12,6 +12,7 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
+ :api_version: '2009-04-15'
15
16
  :operations:
16
17
  - :name: BatchDeleteAttributes
17
18
  :method: :batch_delete_attributes
@@ -12,6 +12,7 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
+ :api_version: '2010-12-01'
15
16
  :operations:
16
17
  - :name: DeleteIdentity
17
18
  :method: :delete_identity
@@ -33,6 +34,37 @@
33
34
  :children:
34
35
  DeleteVerifiedEmailAddressResult:
35
36
  :ignore: true
37
+ - :name: GetIdentityDkimAttributes
38
+ :method: :get_identity_dkim_attributes
39
+ :inputs:
40
+ Identities:
41
+ - :membered_list:
42
+ - :string
43
+ - :required
44
+ :outputs:
45
+ :children:
46
+ GetIdentityDkimAttributesResult:
47
+ :ignore: true
48
+ :children:
49
+ DkimAttributes:
50
+ :ignore: true
51
+ :children:
52
+ entry:
53
+ :rename: :dkim_attributes
54
+ :map:
55
+ - key
56
+ - value
57
+ :children:
58
+ value:
59
+ :children:
60
+ DkimEnabled:
61
+ :type: :boolean
62
+ DkimTokens:
63
+ :ignore: true
64
+ :children:
65
+ member:
66
+ :rename: :dkim_tokens
67
+ :list: true
36
68
  - :name: GetIdentityNotificationAttributes
37
69
  :method: :get_identity_notification_attributes
38
70
  :inputs:
@@ -224,6 +256,19 @@
224
256
  :children:
225
257
  SendRawEmailResult:
226
258
  :ignore: true
259
+ - :name: SetIdentityDkimEnabled
260
+ :method: :set_identity_dkim_enabled
261
+ :inputs:
262
+ Identity:
263
+ - :string
264
+ - :required
265
+ DkimEnabled:
266
+ - :boolean
267
+ - :required
268
+ :outputs:
269
+ :children:
270
+ SetIdentityDkimEnabledResult:
271
+ :ignore: true
227
272
  - :name: SetIdentityFeedbackForwardingEnabled
228
273
  :method: :set_identity_feedback_forwarding_enabled
229
274
  :inputs:
@@ -252,6 +297,23 @@
252
297
  :children:
253
298
  SetIdentityNotificationTopicResult:
254
299
  :ignore: true
300
+ - :name: VerifyDomainDkim
301
+ :method: :verify_domain_dkim
302
+ :inputs:
303
+ Domain:
304
+ - :string
305
+ - :required
306
+ :outputs:
307
+ :children:
308
+ VerifyDomainDkimResult:
309
+ :ignore: true
310
+ :children:
311
+ DkimTokens:
312
+ :ignore: true
313
+ :children:
314
+ member:
315
+ :rename: :dkim_tokens
316
+ :list: true
255
317
  - :name: VerifyDomainIdentity
256
318
  :method: :verify_domain_identity
257
319
  :inputs:
@@ -12,6 +12,8 @@
12
12
  # language governing permissions and limitations under the License.
13
13
 
14
14
  ---
15
+ :target_prefix: SimpleWorkflowService.
16
+ :api_version: '2012-01-25'
15
17
  :operations:
16
18
  - :name: CountClosedWorkflowExecutions
17
19
  :method: :count_closed_workflow_executions
@@ -55,6 +57,11 @@
55
57
  status:
56
58
  - :string
57
59
  - :required
60
+ :outputs:
61
+ count:
62
+ :type: :integer
63
+ truncated:
64
+ :type: :boolean
58
65
  - :name: CountOpenWorkflowExecutions
59
66
  :method: :count_open_workflow_executions
60
67
  :inputs:
@@ -86,6 +93,11 @@
86
93
  workflowId:
87
94
  - :string
88
95
  - :required
96
+ :outputs:
97
+ count:
98
+ :type: :integer
99
+ truncated:
100
+ :type: :boolean
89
101
  - :name: CountPendingActivityTasks
90
102
  :method: :count_pending_activity_tasks
91
103
  :inputs:
@@ -98,6 +110,11 @@
98
110
  - :string
99
111
  - :required
100
112
  - :required
113
+ :outputs:
114
+ count:
115
+ :type: :integer
116
+ truncated:
117
+ :type: :boolean
101
118
  - :name: CountPendingDecisionTasks
102
119
  :method: :count_pending_decision_tasks
103
120
  :inputs:
@@ -110,6 +127,11 @@
110
127
  - :string
111
128
  - :required
112
129
  - :required
130
+ :outputs:
131
+ count:
132
+ :type: :integer
133
+ truncated:
134
+ :type: :boolean
113
135
  - :name: DeprecateActivityType
114
136
  :method: :deprecate_activity_type
115
137
  :inputs:
@@ -125,12 +147,14 @@
125
147
  - :string
126
148
  - :required
127
149
  - :required
150
+ :outputs: {}
128
151
  - :name: DeprecateDomain
129
152
  :method: :deprecate_domain
130
153
  :inputs:
131
154
  name:
132
155
  - :string
133
156
  - :required
157
+ :outputs: {}
134
158
  - :name: DeprecateWorkflowType
135
159
  :method: :deprecate_workflow_type
136
160
  :inputs:
@@ -146,6 +170,7 @@
146
170
  - :string
147
171
  - :required
148
172
  - :required
173
+ :outputs: {}
149
174
  - :name: DescribeActivityType
150
175
  :method: :describe_activity_type
151
176
  :inputs:
@@ -161,12 +186,62 @@
161
186
  - :string
162
187
  - :required
163
188
  - :required
189
+ :outputs:
190
+ typeInfo:
191
+ :type: :hash
192
+ :members:
193
+ activityType:
194
+ :type: :hash
195
+ :members:
196
+ name:
197
+ :type: :string
198
+ version:
199
+ :type: :string
200
+ status:
201
+ :type: :string
202
+ description:
203
+ :type: :string
204
+ creationDate:
205
+ :type: :time
206
+ deprecationDate:
207
+ :type: :time
208
+ configuration:
209
+ :type: :hash
210
+ :members:
211
+ defaultTaskStartToCloseTimeout:
212
+ :type: :string
213
+ defaultTaskHeartbeatTimeout:
214
+ :type: :string
215
+ defaultTaskList:
216
+ :type: :hash
217
+ :members:
218
+ name:
219
+ :type: :string
220
+ defaultTaskScheduleToStartTimeout:
221
+ :type: :string
222
+ defaultTaskScheduleToCloseTimeout:
223
+ :type: :string
164
224
  - :name: DescribeDomain
165
225
  :method: :describe_domain
166
226
  :inputs:
167
227
  name:
168
228
  - :string
169
229
  - :required
230
+ :outputs:
231
+ domainInfo:
232
+ :type: :hash
233
+ :members:
234
+ name:
235
+ :type: :string
236
+ status:
237
+ :type: :string
238
+ description:
239
+ :type: :string
240
+ configuration:
241
+ :type: :hash
242
+ :members:
243
+ workflowExecutionRetentionPeriodInDays:
244
+ :type: :string
170
245
  - :name: DescribeWorkflowExecution
171
246
  :method: :describe_workflow_execution
172
247
  :inputs:
@@ -182,6 +257,72 @@
182
257
  - :string
183
258
  - :required
184
259
  - :required
260
+ :outputs:
261
+ executionInfo:
262
+ :type: :hash
263
+ :members:
264
+ execution:
265
+ :type: :hash
266
+ :members:
267
+ workflowId:
268
+ :type: :string
269
+ runId:
270
+ :type: :string
271
+ workflowType:
272
+ :type: :hash
273
+ :members:
274
+ name:
275
+ :type: :string
276
+ version:
277
+ :type: :string
278
+ startTimestamp:
279
+ :type: :time
280
+ closeTimestamp:
281
+ :type: :time
282
+ executionStatus:
283
+ :type: :string
284
+ closeStatus:
285
+ :type: :string
286
+ parent:
287
+ :type: :hash
288
+ :members:
289
+ workflowId:
290
+ :type: :string
291
+ runId:
292
+ :type: :string
293
+ tagList:
294
+ :type: :string
295
+ cancelRequested:
296
+ :type: :boolean
297
+ executionConfiguration:
298
+ :type: :hash
299
+ :members:
300
+ taskStartToCloseTimeout:
301
+ :type: :string
302
+ executionStartToCloseTimeout:
303
+ :type: :string
304
+ taskList:
305
+ :type: :hash
306
+ :members:
307
+ name:
308
+ :type: :string
309
+ childPolicy:
310
+ :type: :string
311
+ openCounts:
312
+ :type: :hash
313
+ :members:
314
+ openActivityTasks:
315
+ :type: :integer
316
+ openDecisionTasks:
317
+ :type: :integer
318
+ openTimers:
319
+ :type: :integer
320
+ openChildWorkflowExecutions:
321
+ :type: :integer
322
+ latestActivityTaskTimestamp:
323
+ :type: :time
324
+ latestExecutionContext:
325
+ :type: :string
185
326
  - :name: DescribeWorkflowType
186
327
  :method: :describe_workflow_type
187
328
  :inputs:
@@ -197,6 +338,39 @@
197
338
  - :string
198
339
  - :required
199
340
  - :required
341
+ :outputs:
342
+ typeInfo:
343
+ :type: :hash
344
+ :members:
345
+ workflowType:
346
+ :type: :hash
347
+ :members:
348
+ name:
349
+ :type: :string
350
+ version:
351
+ :type: :string
352
+ status:
353
+ :type: :string
354
+ description:
355
+ :type: :string
356
+ creationDate:
357
+ :type: :time
358
+ deprecationDate:
359
+ :type: :time
360
+ configuration:
361
+ :type: :hash
362
+ :members:
363
+ defaultTaskStartToCloseTimeout:
364
+ :type: :string
365
+ defaultExecutionStartToCloseTimeout:
366
+ :type: :string
367
+ defaultTaskList:
368
+ :type: :hash
369
+ :members:
370
+ name:
371
+ :type: :string
372
+ defaultChildPolicy:
373
+ :type: :string
200
374
  - :name: GetWorkflowExecutionHistory
201
375
  :method: :get_workflow_execution_history
202
376
  :inputs:
@@ -218,6 +392,642 @@
218
392
  - :integer
219
393
  reverseOrder:
220
394
  - :boolean
395
+ :outputs:
396
+ events:
397
+ :type: :hash
398
+ :members:
399
+ eventTimestamp:
400
+ :type: :time
401
+ eventType:
402
+ :type: :string
403
+ eventId:
404
+ :type: :integer
405
+ workflowExecutionStartedEventAttributes:
406
+ :type: :hash
407
+ :members:
408
+ input:
409
+ :type: :string
410
+ executionStartToCloseTimeout:
411
+ :type: :string
412
+ taskStartToCloseTimeout:
413
+ :type: :string
414
+ childPolicy:
415
+ :type: :string
416
+ taskList:
417
+ :type: :hash
418
+ :members:
419
+ name:
420
+ :type: :string
421
+ workflowType:
422
+ :type: :hash
423
+ :members:
424
+ name:
425
+ :type: :string
426
+ version:
427
+ :type: :string
428
+ tagList:
429
+ :type: :string
430
+ continuedExecutionRunId:
431
+ :type: :string
432
+ parentWorkflowExecution:
433
+ :type: :hash
434
+ :members:
435
+ workflowId:
436
+ :type: :string
437
+ runId:
438
+ :type: :string
439
+ parentInitiatedEventId:
440
+ :type: :integer
441
+ workflowExecutionCompletedEventAttributes:
442
+ :type: :hash
443
+ :members:
444
+ result:
445
+ :type: :string
446
+ decisionTaskCompletedEventId:
447
+ :type: :integer
448
+ completeWorkflowExecutionFailedEventAttributes:
449
+ :type: :hash
450
+ :members:
451
+ cause:
452
+ :type: :string
453
+ decisionTaskCompletedEventId:
454
+ :type: :integer
455
+ workflowExecutionFailedEventAttributes:
456
+ :type: :hash
457
+ :members:
458
+ reason:
459
+ :type: :string
460
+ details:
461
+ :type: :string
462
+ decisionTaskCompletedEventId:
463
+ :type: :integer
464
+ failWorkflowExecutionFailedEventAttributes:
465
+ :type: :hash
466
+ :members:
467
+ cause:
468
+ :type: :string
469
+ decisionTaskCompletedEventId:
470
+ :type: :integer
471
+ workflowExecutionTimedOutEventAttributes:
472
+ :type: :hash
473
+ :members:
474
+ timeoutType:
475
+ :type: :string
476
+ childPolicy:
477
+ :type: :string
478
+ workflowExecutionCanceledEventAttributes:
479
+ :type: :hash
480
+ :members:
481
+ details:
482
+ :type: :string
483
+ decisionTaskCompletedEventId:
484
+ :type: :integer
485
+ cancelWorkflowExecutionFailedEventAttributes:
486
+ :type: :hash
487
+ :members:
488
+ cause:
489
+ :type: :string
490
+ decisionTaskCompletedEventId:
491
+ :type: :integer
492
+ workflowExecutionContinuedAsNewEventAttributes:
493
+ :type: :hash
494
+ :members:
495
+ input:
496
+ :type: :string
497
+ decisionTaskCompletedEventId:
498
+ :type: :integer
499
+ newExecutionRunId:
500
+ :type: :string
501
+ executionStartToCloseTimeout:
502
+ :type: :string
503
+ taskList:
504
+ :type: :hash
505
+ :members:
506
+ name:
507
+ :type: :string
508
+ taskStartToCloseTimeout:
509
+ :type: :string
510
+ childPolicy:
511
+ :type: :string
512
+ tagList:
513
+ :type: :string
514
+ workflowType:
515
+ :type: :hash
516
+ :members:
517
+ name:
518
+ :type: :string
519
+ version:
520
+ :type: :string
521
+ continueAsNewWorkflowExecutionFailedEventAttributes:
522
+ :type: :hash
523
+ :members:
524
+ cause:
525
+ :type: :string
526
+ decisionTaskCompletedEventId:
527
+ :type: :integer
528
+ workflowExecutionTerminatedEventAttributes:
529
+ :type: :hash
530
+ :members:
531
+ reason:
532
+ :type: :string
533
+ details:
534
+ :type: :string
535
+ childPolicy:
536
+ :type: :string
537
+ cause:
538
+ :type: :string
539
+ workflowExecutionCancelRequestedEventAttributes:
540
+ :type: :hash
541
+ :members:
542
+ externalWorkflowExecution:
543
+ :type: :hash
544
+ :members:
545
+ workflowId:
546
+ :type: :string
547
+ runId:
548
+ :type: :string
549
+ externalInitiatedEventId:
550
+ :type: :integer
551
+ cause:
552
+ :type: :string
553
+ decisionTaskScheduledEventAttributes:
554
+ :type: :hash
555
+ :members:
556
+ taskList:
557
+ :type: :hash
558
+ :members:
559
+ name:
560
+ :type: :string
561
+ startToCloseTimeout:
562
+ :type: :string
563
+ decisionTaskStartedEventAttributes:
564
+ :type: :hash
565
+ :members:
566
+ identity:
567
+ :type: :string
568
+ scheduledEventId:
569
+ :type: :integer
570
+ decisionTaskCompletedEventAttributes:
571
+ :type: :hash
572
+ :members:
573
+ executionContext:
574
+ :type: :string
575
+ scheduledEventId:
576
+ :type: :integer
577
+ startedEventId:
578
+ :type: :integer
579
+ decisionTaskTimedOutEventAttributes:
580
+ :type: :hash
581
+ :members:
582
+ timeoutType:
583
+ :type: :string
584
+ scheduledEventId:
585
+ :type: :integer
586
+ startedEventId:
587
+ :type: :integer
588
+ activityTaskScheduledEventAttributes:
589
+ :type: :hash
590
+ :members:
591
+ activityType:
592
+ :type: :hash
593
+ :members:
594
+ name:
595
+ :type: :string
596
+ version:
597
+ :type: :string
598
+ activityId:
599
+ :type: :string
600
+ input:
601
+ :type: :string
602
+ control:
603
+ :type: :string
604
+ scheduleToStartTimeout:
605
+ :type: :string
606
+ scheduleToCloseTimeout:
607
+ :type: :string
608
+ startToCloseTimeout:
609
+ :type: :string
610
+ taskList:
611
+ :type: :hash
612
+ :members:
613
+ name:
614
+ :type: :string
615
+ decisionTaskCompletedEventId:
616
+ :type: :integer
617
+ heartbeatTimeout:
618
+ :type: :string
619
+ activityTaskStartedEventAttributes:
620
+ :type: :hash
621
+ :members:
622
+ identity:
623
+ :type: :string
624
+ scheduledEventId:
625
+ :type: :integer
626
+ activityTaskCompletedEventAttributes:
627
+ :type: :hash
628
+ :members:
629
+ result:
630
+ :type: :string
631
+ scheduledEventId:
632
+ :type: :integer
633
+ startedEventId:
634
+ :type: :integer
635
+ activityTaskFailedEventAttributes:
636
+ :type: :hash
637
+ :members:
638
+ reason:
639
+ :type: :string
640
+ details:
641
+ :type: :string
642
+ scheduledEventId:
643
+ :type: :integer
644
+ startedEventId:
645
+ :type: :integer
646
+ activityTaskTimedOutEventAttributes:
647
+ :type: :hash
648
+ :members:
649
+ timeoutType:
650
+ :type: :string
651
+ scheduledEventId:
652
+ :type: :integer
653
+ startedEventId:
654
+ :type: :integer
655
+ details:
656
+ :type: :string
657
+ activityTaskCanceledEventAttributes:
658
+ :type: :hash
659
+ :members:
660
+ details:
661
+ :type: :string
662
+ scheduledEventId:
663
+ :type: :integer
664
+ startedEventId:
665
+ :type: :integer
666
+ latestCancelRequestedEventId:
667
+ :type: :integer
668
+ activityTaskCancelRequestedEventAttributes:
669
+ :type: :hash
670
+ :members:
671
+ decisionTaskCompletedEventId:
672
+ :type: :integer
673
+ activityId:
674
+ :type: :string
675
+ workflowExecutionSignaledEventAttributes:
676
+ :type: :hash
677
+ :members:
678
+ signalName:
679
+ :type: :string
680
+ input:
681
+ :type: :string
682
+ externalWorkflowExecution:
683
+ :type: :hash
684
+ :members:
685
+ workflowId:
686
+ :type: :string
687
+ runId:
688
+ :type: :string
689
+ externalInitiatedEventId:
690
+ :type: :integer
691
+ markerRecordedEventAttributes:
692
+ :type: :hash
693
+ :members:
694
+ markerName:
695
+ :type: :string
696
+ details:
697
+ :type: :string
698
+ decisionTaskCompletedEventId:
699
+ :type: :integer
700
+ timerStartedEventAttributes:
701
+ :type: :hash
702
+ :members:
703
+ timerId:
704
+ :type: :string
705
+ control:
706
+ :type: :string
707
+ startToFireTimeout:
708
+ :type: :string
709
+ decisionTaskCompletedEventId:
710
+ :type: :integer
711
+ timerFiredEventAttributes:
712
+ :type: :hash
713
+ :members:
714
+ timerId:
715
+ :type: :string
716
+ startedEventId:
717
+ :type: :integer
718
+ timerCanceledEventAttributes:
719
+ :type: :hash
720
+ :members:
721
+ timerId:
722
+ :type: :string
723
+ startedEventId:
724
+ :type: :integer
725
+ decisionTaskCompletedEventId:
726
+ :type: :integer
727
+ startChildWorkflowExecutionInitiatedEventAttributes:
728
+ :type: :hash
729
+ :members:
730
+ workflowId:
731
+ :type: :string
732
+ workflowType:
733
+ :type: :hash
734
+ :members:
735
+ name:
736
+ :type: :string
737
+ version:
738
+ :type: :string
739
+ control:
740
+ :type: :string
741
+ input:
742
+ :type: :string
743
+ executionStartToCloseTimeout:
744
+ :type: :string
745
+ taskList:
746
+ :type: :hash
747
+ :members:
748
+ name:
749
+ :type: :string
750
+ decisionTaskCompletedEventId:
751
+ :type: :integer
752
+ childPolicy:
753
+ :type: :string
754
+ taskStartToCloseTimeout:
755
+ :type: :string
756
+ tagList:
757
+ :type: :string
758
+ childWorkflowExecutionStartedEventAttributes:
759
+ :type: :hash
760
+ :members:
761
+ workflowExecution:
762
+ :type: :hash
763
+ :members:
764
+ workflowId:
765
+ :type: :string
766
+ runId:
767
+ :type: :string
768
+ workflowType:
769
+ :type: :hash
770
+ :members:
771
+ name:
772
+ :type: :string
773
+ version:
774
+ :type: :string
775
+ initiatedEventId:
776
+ :type: :integer
777
+ childWorkflowExecutionCompletedEventAttributes:
778
+ :type: :hash
779
+ :members:
780
+ workflowExecution:
781
+ :type: :hash
782
+ :members:
783
+ workflowId:
784
+ :type: :string
785
+ runId:
786
+ :type: :string
787
+ workflowType:
788
+ :type: :hash
789
+ :members:
790
+ name:
791
+ :type: :string
792
+ version:
793
+ :type: :string
794
+ result:
795
+ :type: :string
796
+ initiatedEventId:
797
+ :type: :integer
798
+ startedEventId:
799
+ :type: :integer
800
+ childWorkflowExecutionFailedEventAttributes:
801
+ :type: :hash
802
+ :members:
803
+ workflowExecution:
804
+ :type: :hash
805
+ :members:
806
+ workflowId:
807
+ :type: :string
808
+ runId:
809
+ :type: :string
810
+ workflowType:
811
+ :type: :hash
812
+ :members:
813
+ name:
814
+ :type: :string
815
+ version:
816
+ :type: :string
817
+ reason:
818
+ :type: :string
819
+ details:
820
+ :type: :string
821
+ initiatedEventId:
822
+ :type: :integer
823
+ startedEventId:
824
+ :type: :integer
825
+ childWorkflowExecutionTimedOutEventAttributes:
826
+ :type: :hash
827
+ :members:
828
+ workflowExecution:
829
+ :type: :hash
830
+ :members:
831
+ workflowId:
832
+ :type: :string
833
+ runId:
834
+ :type: :string
835
+ workflowType:
836
+ :type: :hash
837
+ :members:
838
+ name:
839
+ :type: :string
840
+ version:
841
+ :type: :string
842
+ timeoutType:
843
+ :type: :string
844
+ initiatedEventId:
845
+ :type: :integer
846
+ startedEventId:
847
+ :type: :integer
848
+ childWorkflowExecutionCanceledEventAttributes:
849
+ :type: :hash
850
+ :members:
851
+ workflowExecution:
852
+ :type: :hash
853
+ :members:
854
+ workflowId:
855
+ :type: :string
856
+ runId:
857
+ :type: :string
858
+ workflowType:
859
+ :type: :hash
860
+ :members:
861
+ name:
862
+ :type: :string
863
+ version:
864
+ :type: :string
865
+ details:
866
+ :type: :string
867
+ initiatedEventId:
868
+ :type: :integer
869
+ startedEventId:
870
+ :type: :integer
871
+ childWorkflowExecutionTerminatedEventAttributes:
872
+ :type: :hash
873
+ :members:
874
+ workflowExecution:
875
+ :type: :hash
876
+ :members:
877
+ workflowId:
878
+ :type: :string
879
+ runId:
880
+ :type: :string
881
+ workflowType:
882
+ :type: :hash
883
+ :members:
884
+ name:
885
+ :type: :string
886
+ version:
887
+ :type: :string
888
+ initiatedEventId:
889
+ :type: :integer
890
+ startedEventId:
891
+ :type: :integer
892
+ signalExternalWorkflowExecutionInitiatedEventAttributes:
893
+ :type: :hash
894
+ :members:
895
+ workflowId:
896
+ :type: :string
897
+ runId:
898
+ :type: :string
899
+ signalName:
900
+ :type: :string
901
+ input:
902
+ :type: :string
903
+ decisionTaskCompletedEventId:
904
+ :type: :integer
905
+ control:
906
+ :type: :string
907
+ externalWorkflowExecutionSignaledEventAttributes:
908
+ :type: :hash
909
+ :members:
910
+ workflowExecution:
911
+ :type: :hash
912
+ :members:
913
+ workflowId:
914
+ :type: :string
915
+ runId:
916
+ :type: :string
917
+ initiatedEventId:
918
+ :type: :integer
919
+ signalExternalWorkflowExecutionFailedEventAttributes:
920
+ :type: :hash
921
+ :members:
922
+ workflowId:
923
+ :type: :string
924
+ runId:
925
+ :type: :string
926
+ cause:
927
+ :type: :string
928
+ initiatedEventId:
929
+ :type: :integer
930
+ decisionTaskCompletedEventId:
931
+ :type: :integer
932
+ externalWorkflowExecutionCancelRequestedEventAttributes:
933
+ :type: :hash
934
+ :members:
935
+ workflowExecution:
936
+ :type: :hash
937
+ :members:
938
+ workflowId:
939
+ :type: :string
940
+ runId:
941
+ :type: :string
942
+ initiatedEventId:
943
+ :type: :integer
944
+ requestCancelExternalWorkflowExecutionInitiatedEventAttributes:
945
+ :type: :hash
946
+ :members:
947
+ workflowId:
948
+ :type: :string
949
+ runId:
950
+ :type: :string
951
+ decisionTaskCompletedEventId:
952
+ :type: :integer
953
+ control:
954
+ :type: :string
955
+ requestCancelExternalWorkflowExecutionFailedEventAttributes:
956
+ :type: :hash
957
+ :members:
958
+ workflowId:
959
+ :type: :string
960
+ runId:
961
+ :type: :string
962
+ cause:
963
+ :type: :string
964
+ initiatedEventId:
965
+ :type: :integer
966
+ decisionTaskCompletedEventId:
967
+ :type: :integer
968
+ scheduleActivityTaskFailedEventAttributes:
969
+ :type: :hash
970
+ :members:
971
+ activityType:
972
+ :type: :hash
973
+ :members:
974
+ name:
975
+ :type: :string
976
+ version:
977
+ :type: :string
978
+ activityId:
979
+ :type: :string
980
+ cause:
981
+ :type: :string
982
+ decisionTaskCompletedEventId:
983
+ :type: :integer
984
+ requestCancelActivityTaskFailedEventAttributes:
985
+ :type: :hash
986
+ :members:
987
+ activityId:
988
+ :type: :string
989
+ cause:
990
+ :type: :string
991
+ decisionTaskCompletedEventId:
992
+ :type: :integer
993
+ startTimerFailedEventAttributes:
994
+ :type: :hash
995
+ :members:
996
+ timerId:
997
+ :type: :string
998
+ cause:
999
+ :type: :string
1000
+ decisionTaskCompletedEventId:
1001
+ :type: :integer
1002
+ cancelTimerFailedEventAttributes:
1003
+ :type: :hash
1004
+ :members:
1005
+ timerId:
1006
+ :type: :string
1007
+ cause:
1008
+ :type: :string
1009
+ decisionTaskCompletedEventId:
1010
+ :type: :integer
1011
+ startChildWorkflowExecutionFailedEventAttributes:
1012
+ :type: :hash
1013
+ :members:
1014
+ workflowType:
1015
+ :type: :hash
1016
+ :members:
1017
+ name:
1018
+ :type: :string
1019
+ version:
1020
+ :type: :string
1021
+ cause:
1022
+ :type: :string
1023
+ workflowId:
1024
+ :type: :string
1025
+ initiatedEventId:
1026
+ :type: :integer
1027
+ decisionTaskCompletedEventId:
1028
+ :type: :integer
1029
+ nextPageToken:
1030
+ :type: :string
221
1031
  - :name: ListActivityTypes
222
1032
  :method: :list_activity_types
223
1033
  :inputs:
@@ -235,6 +1045,27 @@
235
1045
  - :integer
236
1046
  reverseOrder:
237
1047
  - :boolean
1048
+ :outputs:
1049
+ typeInfos:
1050
+ :type: :hash
1051
+ :members:
1052
+ activityType:
1053
+ :type: :hash
1054
+ :members:
1055
+ name:
1056
+ :type: :string
1057
+ version:
1058
+ :type: :string
1059
+ status:
1060
+ :type: :string
1061
+ description:
1062
+ :type: :string
1063
+ creationDate:
1064
+ :type: :time
1065
+ deprecationDate:
1066
+ :type: :time
1067
+ nextPageToken:
1068
+ :type: :string
238
1069
  - :name: ListClosedWorkflowExecutions
239
1070
  :method: :list_closed_workflow_executions
240
1071
  :inputs:
@@ -283,6 +1114,45 @@
283
1114
  - :integer
284
1115
  reverseOrder:
285
1116
  - :boolean
1117
+ :outputs:
1118
+ executionInfos:
1119
+ :type: :hash
1120
+ :members:
1121
+ execution:
1122
+ :type: :hash
1123
+ :members:
1124
+ workflowId:
1125
+ :type: :string
1126
+ runId:
1127
+ :type: :string
1128
+ workflowType:
1129
+ :type: :hash
1130
+ :members:
1131
+ name:
1132
+ :type: :string
1133
+ version:
1134
+ :type: :string
1135
+ startTimestamp:
1136
+ :type: :time
1137
+ closeTimestamp:
1138
+ :type: :time
1139
+ executionStatus:
1140
+ :type: :string
1141
+ closeStatus:
1142
+ :type: :string
1143
+ parent:
1144
+ :type: :hash
1145
+ :members:
1146
+ workflowId:
1147
+ :type: :string
1148
+ runId:
1149
+ :type: :string
1150
+ tagList:
1151
+ :type: :string
1152
+ cancelRequested:
1153
+ :type: :boolean
1154
+ nextPageToken:
1155
+ :type: :string
286
1156
  - :name: ListDomains
287
1157
  :method: :list_domains
288
1158
  :inputs:
@@ -295,6 +1165,18 @@
295
1165
  - :integer
296
1166
  reverseOrder:
297
1167
  - :boolean
1168
+ :outputs:
1169
+ domainInfos:
1170
+ :type: :hash
1171
+ :members:
1172
+ name:
1173
+ :type: :string
1174
+ status:
1175
+ :type: :string
1176
+ description:
1177
+ :type: :string
1178
+ nextPageToken:
1179
+ :type: :string
298
1180
  - :name: ListOpenWorkflowExecutions
299
1181
  :method: :list_open_workflow_executions
300
1182
  :inputs:
@@ -332,6 +1214,45 @@
332
1214
  workflowId:
333
1215
  - :string
334
1216
  - :required
1217
+ :outputs:
1218
+ executionInfos:
1219
+ :type: :hash
1220
+ :members:
1221
+ execution:
1222
+ :type: :hash
1223
+ :members:
1224
+ workflowId:
1225
+ :type: :string
1226
+ runId:
1227
+ :type: :string
1228
+ workflowType:
1229
+ :type: :hash
1230
+ :members:
1231
+ name:
1232
+ :type: :string
1233
+ version:
1234
+ :type: :string
1235
+ startTimestamp:
1236
+ :type: :time
1237
+ closeTimestamp:
1238
+ :type: :time
1239
+ executionStatus:
1240
+ :type: :string
1241
+ closeStatus:
1242
+ :type: :string
1243
+ parent:
1244
+ :type: :hash
1245
+ :members:
1246
+ workflowId:
1247
+ :type: :string
1248
+ runId:
1249
+ :type: :string
1250
+ tagList:
1251
+ :type: :string
1252
+ cancelRequested:
1253
+ :type: :boolean
1254
+ nextPageToken:
1255
+ :type: :string
335
1256
  - :name: ListWorkflowTypes
336
1257
  :method: :list_workflow_types
337
1258
  :inputs:
@@ -349,6 +1270,27 @@
349
1270
  - :integer
350
1271
  reverseOrder:
351
1272
  - :boolean
1273
+ :outputs:
1274
+ typeInfos:
1275
+ :type: :hash
1276
+ :members:
1277
+ workflowType:
1278
+ :type: :hash
1279
+ :members:
1280
+ name:
1281
+ :type: :string
1282
+ version:
1283
+ :type: :string
1284
+ status:
1285
+ :type: :string
1286
+ description:
1287
+ :type: :string
1288
+ creationDate:
1289
+ :type: :time
1290
+ deprecationDate:
1291
+ :type: :time
1292
+ nextPageToken:
1293
+ :type: :string
352
1294
  - :name: PollForActivityTask
353
1295
  :method: :poll_for_activity_task
354
1296
  :inputs:
@@ -363,6 +1305,29 @@
363
1305
  - :required
364
1306
  identity:
365
1307
  - :string
1308
+ :outputs:
1309
+ taskToken:
1310
+ :type: :string
1311
+ activityId:
1312
+ :type: :string
1313
+ startedEventId:
1314
+ :type: :integer
1315
+ workflowExecution:
1316
+ :type: :hash
1317
+ :members:
1318
+ workflowId:
1319
+ :type: :string
1320
+ runId:
1321
+ :type: :string
1322
+ activityType:
1323
+ :type: :hash
1324
+ :members:
1325
+ name:
1326
+ :type: :string
1327
+ version:
1328
+ :type: :string
1329
+ input:
1330
+ :type: :string
366
1331
  - :name: PollForDecisionTask
367
1332
  :method: :poll_for_decision_task
368
1333
  :inputs:
@@ -383,6 +1348,662 @@
383
1348
  - :integer
384
1349
  reverseOrder:
385
1350
  - :boolean
1351
+ :outputs:
1352
+ taskToken:
1353
+ :type: :string
1354
+ startedEventId:
1355
+ :type: :integer
1356
+ workflowExecution:
1357
+ :type: :hash
1358
+ :members:
1359
+ workflowId:
1360
+ :type: :string
1361
+ runId:
1362
+ :type: :string
1363
+ workflowType:
1364
+ :type: :hash
1365
+ :members:
1366
+ name:
1367
+ :type: :string
1368
+ version:
1369
+ :type: :string
1370
+ events:
1371
+ :type: :hash
1372
+ :members:
1373
+ eventTimestamp:
1374
+ :type: :time
1375
+ eventType:
1376
+ :type: :string
1377
+ eventId:
1378
+ :type: :integer
1379
+ workflowExecutionStartedEventAttributes:
1380
+ :type: :hash
1381
+ :members:
1382
+ input:
1383
+ :type: :string
1384
+ executionStartToCloseTimeout:
1385
+ :type: :string
1386
+ taskStartToCloseTimeout:
1387
+ :type: :string
1388
+ childPolicy:
1389
+ :type: :string
1390
+ taskList:
1391
+ :type: :hash
1392
+ :members:
1393
+ name:
1394
+ :type: :string
1395
+ workflowType:
1396
+ :type: :hash
1397
+ :members:
1398
+ name:
1399
+ :type: :string
1400
+ version:
1401
+ :type: :string
1402
+ tagList:
1403
+ :type: :string
1404
+ continuedExecutionRunId:
1405
+ :type: :string
1406
+ parentWorkflowExecution:
1407
+ :type: :hash
1408
+ :members:
1409
+ workflowId:
1410
+ :type: :string
1411
+ runId:
1412
+ :type: :string
1413
+ parentInitiatedEventId:
1414
+ :type: :integer
1415
+ workflowExecutionCompletedEventAttributes:
1416
+ :type: :hash
1417
+ :members:
1418
+ result:
1419
+ :type: :string
1420
+ decisionTaskCompletedEventId:
1421
+ :type: :integer
1422
+ completeWorkflowExecutionFailedEventAttributes:
1423
+ :type: :hash
1424
+ :members:
1425
+ cause:
1426
+ :type: :string
1427
+ decisionTaskCompletedEventId:
1428
+ :type: :integer
1429
+ workflowExecutionFailedEventAttributes:
1430
+ :type: :hash
1431
+ :members:
1432
+ reason:
1433
+ :type: :string
1434
+ details:
1435
+ :type: :string
1436
+ decisionTaskCompletedEventId:
1437
+ :type: :integer
1438
+ failWorkflowExecutionFailedEventAttributes:
1439
+ :type: :hash
1440
+ :members:
1441
+ cause:
1442
+ :type: :string
1443
+ decisionTaskCompletedEventId:
1444
+ :type: :integer
1445
+ workflowExecutionTimedOutEventAttributes:
1446
+ :type: :hash
1447
+ :members:
1448
+ timeoutType:
1449
+ :type: :string
1450
+ childPolicy:
1451
+ :type: :string
1452
+ workflowExecutionCanceledEventAttributes:
1453
+ :type: :hash
1454
+ :members:
1455
+ details:
1456
+ :type: :string
1457
+ decisionTaskCompletedEventId:
1458
+ :type: :integer
1459
+ cancelWorkflowExecutionFailedEventAttributes:
1460
+ :type: :hash
1461
+ :members:
1462
+ cause:
1463
+ :type: :string
1464
+ decisionTaskCompletedEventId:
1465
+ :type: :integer
1466
+ workflowExecutionContinuedAsNewEventAttributes:
1467
+ :type: :hash
1468
+ :members:
1469
+ input:
1470
+ :type: :string
1471
+ decisionTaskCompletedEventId:
1472
+ :type: :integer
1473
+ newExecutionRunId:
1474
+ :type: :string
1475
+ executionStartToCloseTimeout:
1476
+ :type: :string
1477
+ taskList:
1478
+ :type: :hash
1479
+ :members:
1480
+ name:
1481
+ :type: :string
1482
+ taskStartToCloseTimeout:
1483
+ :type: :string
1484
+ childPolicy:
1485
+ :type: :string
1486
+ tagList:
1487
+ :type: :string
1488
+ workflowType:
1489
+ :type: :hash
1490
+ :members:
1491
+ name:
1492
+ :type: :string
1493
+ version:
1494
+ :type: :string
1495
+ continueAsNewWorkflowExecutionFailedEventAttributes:
1496
+ :type: :hash
1497
+ :members:
1498
+ cause:
1499
+ :type: :string
1500
+ decisionTaskCompletedEventId:
1501
+ :type: :integer
1502
+ workflowExecutionTerminatedEventAttributes:
1503
+ :type: :hash
1504
+ :members:
1505
+ reason:
1506
+ :type: :string
1507
+ details:
1508
+ :type: :string
1509
+ childPolicy:
1510
+ :type: :string
1511
+ cause:
1512
+ :type: :string
1513
+ workflowExecutionCancelRequestedEventAttributes:
1514
+ :type: :hash
1515
+ :members:
1516
+ externalWorkflowExecution:
1517
+ :type: :hash
1518
+ :members:
1519
+ workflowId:
1520
+ :type: :string
1521
+ runId:
1522
+ :type: :string
1523
+ externalInitiatedEventId:
1524
+ :type: :integer
1525
+ cause:
1526
+ :type: :string
1527
+ decisionTaskScheduledEventAttributes:
1528
+ :type: :hash
1529
+ :members:
1530
+ taskList:
1531
+ :type: :hash
1532
+ :members:
1533
+ name:
1534
+ :type: :string
1535
+ startToCloseTimeout:
1536
+ :type: :string
1537
+ decisionTaskStartedEventAttributes:
1538
+ :type: :hash
1539
+ :members:
1540
+ identity:
1541
+ :type: :string
1542
+ scheduledEventId:
1543
+ :type: :integer
1544
+ decisionTaskCompletedEventAttributes:
1545
+ :type: :hash
1546
+ :members:
1547
+ executionContext:
1548
+ :type: :string
1549
+ scheduledEventId:
1550
+ :type: :integer
1551
+ startedEventId:
1552
+ :type: :integer
1553
+ decisionTaskTimedOutEventAttributes:
1554
+ :type: :hash
1555
+ :members:
1556
+ timeoutType:
1557
+ :type: :string
1558
+ scheduledEventId:
1559
+ :type: :integer
1560
+ startedEventId:
1561
+ :type: :integer
1562
+ activityTaskScheduledEventAttributes:
1563
+ :type: :hash
1564
+ :members:
1565
+ activityType:
1566
+ :type: :hash
1567
+ :members:
1568
+ name:
1569
+ :type: :string
1570
+ version:
1571
+ :type: :string
1572
+ activityId:
1573
+ :type: :string
1574
+ input:
1575
+ :type: :string
1576
+ control:
1577
+ :type: :string
1578
+ scheduleToStartTimeout:
1579
+ :type: :string
1580
+ scheduleToCloseTimeout:
1581
+ :type: :string
1582
+ startToCloseTimeout:
1583
+ :type: :string
1584
+ taskList:
1585
+ :type: :hash
1586
+ :members:
1587
+ name:
1588
+ :type: :string
1589
+ decisionTaskCompletedEventId:
1590
+ :type: :integer
1591
+ heartbeatTimeout:
1592
+ :type: :string
1593
+ activityTaskStartedEventAttributes:
1594
+ :type: :hash
1595
+ :members:
1596
+ identity:
1597
+ :type: :string
1598
+ scheduledEventId:
1599
+ :type: :integer
1600
+ activityTaskCompletedEventAttributes:
1601
+ :type: :hash
1602
+ :members:
1603
+ result:
1604
+ :type: :string
1605
+ scheduledEventId:
1606
+ :type: :integer
1607
+ startedEventId:
1608
+ :type: :integer
1609
+ activityTaskFailedEventAttributes:
1610
+ :type: :hash
1611
+ :members:
1612
+ reason:
1613
+ :type: :string
1614
+ details:
1615
+ :type: :string
1616
+ scheduledEventId:
1617
+ :type: :integer
1618
+ startedEventId:
1619
+ :type: :integer
1620
+ activityTaskTimedOutEventAttributes:
1621
+ :type: :hash
1622
+ :members:
1623
+ timeoutType:
1624
+ :type: :string
1625
+ scheduledEventId:
1626
+ :type: :integer
1627
+ startedEventId:
1628
+ :type: :integer
1629
+ details:
1630
+ :type: :string
1631
+ activityTaskCanceledEventAttributes:
1632
+ :type: :hash
1633
+ :members:
1634
+ details:
1635
+ :type: :string
1636
+ scheduledEventId:
1637
+ :type: :integer
1638
+ startedEventId:
1639
+ :type: :integer
1640
+ latestCancelRequestedEventId:
1641
+ :type: :integer
1642
+ activityTaskCancelRequestedEventAttributes:
1643
+ :type: :hash
1644
+ :members:
1645
+ decisionTaskCompletedEventId:
1646
+ :type: :integer
1647
+ activityId:
1648
+ :type: :string
1649
+ workflowExecutionSignaledEventAttributes:
1650
+ :type: :hash
1651
+ :members:
1652
+ signalName:
1653
+ :type: :string
1654
+ input:
1655
+ :type: :string
1656
+ externalWorkflowExecution:
1657
+ :type: :hash
1658
+ :members:
1659
+ workflowId:
1660
+ :type: :string
1661
+ runId:
1662
+ :type: :string
1663
+ externalInitiatedEventId:
1664
+ :type: :integer
1665
+ markerRecordedEventAttributes:
1666
+ :type: :hash
1667
+ :members:
1668
+ markerName:
1669
+ :type: :string
1670
+ details:
1671
+ :type: :string
1672
+ decisionTaskCompletedEventId:
1673
+ :type: :integer
1674
+ timerStartedEventAttributes:
1675
+ :type: :hash
1676
+ :members:
1677
+ timerId:
1678
+ :type: :string
1679
+ control:
1680
+ :type: :string
1681
+ startToFireTimeout:
1682
+ :type: :string
1683
+ decisionTaskCompletedEventId:
1684
+ :type: :integer
1685
+ timerFiredEventAttributes:
1686
+ :type: :hash
1687
+ :members:
1688
+ timerId:
1689
+ :type: :string
1690
+ startedEventId:
1691
+ :type: :integer
1692
+ timerCanceledEventAttributes:
1693
+ :type: :hash
1694
+ :members:
1695
+ timerId:
1696
+ :type: :string
1697
+ startedEventId:
1698
+ :type: :integer
1699
+ decisionTaskCompletedEventId:
1700
+ :type: :integer
1701
+ startChildWorkflowExecutionInitiatedEventAttributes:
1702
+ :type: :hash
1703
+ :members:
1704
+ workflowId:
1705
+ :type: :string
1706
+ workflowType:
1707
+ :type: :hash
1708
+ :members:
1709
+ name:
1710
+ :type: :string
1711
+ version:
1712
+ :type: :string
1713
+ control:
1714
+ :type: :string
1715
+ input:
1716
+ :type: :string
1717
+ executionStartToCloseTimeout:
1718
+ :type: :string
1719
+ taskList:
1720
+ :type: :hash
1721
+ :members:
1722
+ name:
1723
+ :type: :string
1724
+ decisionTaskCompletedEventId:
1725
+ :type: :integer
1726
+ childPolicy:
1727
+ :type: :string
1728
+ taskStartToCloseTimeout:
1729
+ :type: :string
1730
+ tagList:
1731
+ :type: :string
1732
+ childWorkflowExecutionStartedEventAttributes:
1733
+ :type: :hash
1734
+ :members:
1735
+ workflowExecution:
1736
+ :type: :hash
1737
+ :members:
1738
+ workflowId:
1739
+ :type: :string
1740
+ runId:
1741
+ :type: :string
1742
+ workflowType:
1743
+ :type: :hash
1744
+ :members:
1745
+ name:
1746
+ :type: :string
1747
+ version:
1748
+ :type: :string
1749
+ initiatedEventId:
1750
+ :type: :integer
1751
+ childWorkflowExecutionCompletedEventAttributes:
1752
+ :type: :hash
1753
+ :members:
1754
+ workflowExecution:
1755
+ :type: :hash
1756
+ :members:
1757
+ workflowId:
1758
+ :type: :string
1759
+ runId:
1760
+ :type: :string
1761
+ workflowType:
1762
+ :type: :hash
1763
+ :members:
1764
+ name:
1765
+ :type: :string
1766
+ version:
1767
+ :type: :string
1768
+ result:
1769
+ :type: :string
1770
+ initiatedEventId:
1771
+ :type: :integer
1772
+ startedEventId:
1773
+ :type: :integer
1774
+ childWorkflowExecutionFailedEventAttributes:
1775
+ :type: :hash
1776
+ :members:
1777
+ workflowExecution:
1778
+ :type: :hash
1779
+ :members:
1780
+ workflowId:
1781
+ :type: :string
1782
+ runId:
1783
+ :type: :string
1784
+ workflowType:
1785
+ :type: :hash
1786
+ :members:
1787
+ name:
1788
+ :type: :string
1789
+ version:
1790
+ :type: :string
1791
+ reason:
1792
+ :type: :string
1793
+ details:
1794
+ :type: :string
1795
+ initiatedEventId:
1796
+ :type: :integer
1797
+ startedEventId:
1798
+ :type: :integer
1799
+ childWorkflowExecutionTimedOutEventAttributes:
1800
+ :type: :hash
1801
+ :members:
1802
+ workflowExecution:
1803
+ :type: :hash
1804
+ :members:
1805
+ workflowId:
1806
+ :type: :string
1807
+ runId:
1808
+ :type: :string
1809
+ workflowType:
1810
+ :type: :hash
1811
+ :members:
1812
+ name:
1813
+ :type: :string
1814
+ version:
1815
+ :type: :string
1816
+ timeoutType:
1817
+ :type: :string
1818
+ initiatedEventId:
1819
+ :type: :integer
1820
+ startedEventId:
1821
+ :type: :integer
1822
+ childWorkflowExecutionCanceledEventAttributes:
1823
+ :type: :hash
1824
+ :members:
1825
+ workflowExecution:
1826
+ :type: :hash
1827
+ :members:
1828
+ workflowId:
1829
+ :type: :string
1830
+ runId:
1831
+ :type: :string
1832
+ workflowType:
1833
+ :type: :hash
1834
+ :members:
1835
+ name:
1836
+ :type: :string
1837
+ version:
1838
+ :type: :string
1839
+ details:
1840
+ :type: :string
1841
+ initiatedEventId:
1842
+ :type: :integer
1843
+ startedEventId:
1844
+ :type: :integer
1845
+ childWorkflowExecutionTerminatedEventAttributes:
1846
+ :type: :hash
1847
+ :members:
1848
+ workflowExecution:
1849
+ :type: :hash
1850
+ :members:
1851
+ workflowId:
1852
+ :type: :string
1853
+ runId:
1854
+ :type: :string
1855
+ workflowType:
1856
+ :type: :hash
1857
+ :members:
1858
+ name:
1859
+ :type: :string
1860
+ version:
1861
+ :type: :string
1862
+ initiatedEventId:
1863
+ :type: :integer
1864
+ startedEventId:
1865
+ :type: :integer
1866
+ signalExternalWorkflowExecutionInitiatedEventAttributes:
1867
+ :type: :hash
1868
+ :members:
1869
+ workflowId:
1870
+ :type: :string
1871
+ runId:
1872
+ :type: :string
1873
+ signalName:
1874
+ :type: :string
1875
+ input:
1876
+ :type: :string
1877
+ decisionTaskCompletedEventId:
1878
+ :type: :integer
1879
+ control:
1880
+ :type: :string
1881
+ externalWorkflowExecutionSignaledEventAttributes:
1882
+ :type: :hash
1883
+ :members:
1884
+ workflowExecution:
1885
+ :type: :hash
1886
+ :members:
1887
+ workflowId:
1888
+ :type: :string
1889
+ runId:
1890
+ :type: :string
1891
+ initiatedEventId:
1892
+ :type: :integer
1893
+ signalExternalWorkflowExecutionFailedEventAttributes:
1894
+ :type: :hash
1895
+ :members:
1896
+ workflowId:
1897
+ :type: :string
1898
+ runId:
1899
+ :type: :string
1900
+ cause:
1901
+ :type: :string
1902
+ initiatedEventId:
1903
+ :type: :integer
1904
+ decisionTaskCompletedEventId:
1905
+ :type: :integer
1906
+ externalWorkflowExecutionCancelRequestedEventAttributes:
1907
+ :type: :hash
1908
+ :members:
1909
+ workflowExecution:
1910
+ :type: :hash
1911
+ :members:
1912
+ workflowId:
1913
+ :type: :string
1914
+ runId:
1915
+ :type: :string
1916
+ initiatedEventId:
1917
+ :type: :integer
1918
+ requestCancelExternalWorkflowExecutionInitiatedEventAttributes:
1919
+ :type: :hash
1920
+ :members:
1921
+ workflowId:
1922
+ :type: :string
1923
+ runId:
1924
+ :type: :string
1925
+ decisionTaskCompletedEventId:
1926
+ :type: :integer
1927
+ control:
1928
+ :type: :string
1929
+ requestCancelExternalWorkflowExecutionFailedEventAttributes:
1930
+ :type: :hash
1931
+ :members:
1932
+ workflowId:
1933
+ :type: :string
1934
+ runId:
1935
+ :type: :string
1936
+ cause:
1937
+ :type: :string
1938
+ initiatedEventId:
1939
+ :type: :integer
1940
+ decisionTaskCompletedEventId:
1941
+ :type: :integer
1942
+ scheduleActivityTaskFailedEventAttributes:
1943
+ :type: :hash
1944
+ :members:
1945
+ activityType:
1946
+ :type: :hash
1947
+ :members:
1948
+ name:
1949
+ :type: :string
1950
+ version:
1951
+ :type: :string
1952
+ activityId:
1953
+ :type: :string
1954
+ cause:
1955
+ :type: :string
1956
+ decisionTaskCompletedEventId:
1957
+ :type: :integer
1958
+ requestCancelActivityTaskFailedEventAttributes:
1959
+ :type: :hash
1960
+ :members:
1961
+ activityId:
1962
+ :type: :string
1963
+ cause:
1964
+ :type: :string
1965
+ decisionTaskCompletedEventId:
1966
+ :type: :integer
1967
+ startTimerFailedEventAttributes:
1968
+ :type: :hash
1969
+ :members:
1970
+ timerId:
1971
+ :type: :string
1972
+ cause:
1973
+ :type: :string
1974
+ decisionTaskCompletedEventId:
1975
+ :type: :integer
1976
+ cancelTimerFailedEventAttributes:
1977
+ :type: :hash
1978
+ :members:
1979
+ timerId:
1980
+ :type: :string
1981
+ cause:
1982
+ :type: :string
1983
+ decisionTaskCompletedEventId:
1984
+ :type: :integer
1985
+ startChildWorkflowExecutionFailedEventAttributes:
1986
+ :type: :hash
1987
+ :members:
1988
+ workflowType:
1989
+ :type: :hash
1990
+ :members:
1991
+ name:
1992
+ :type: :string
1993
+ version:
1994
+ :type: :string
1995
+ cause:
1996
+ :type: :string
1997
+ workflowId:
1998
+ :type: :string
1999
+ initiatedEventId:
2000
+ :type: :integer
2001
+ decisionTaskCompletedEventId:
2002
+ :type: :integer
2003
+ nextPageToken:
2004
+ :type: :string
2005
+ previousStartedEventId:
2006
+ :type: :integer
386
2007
  - :name: RecordActivityTaskHeartbeat
387
2008
  :method: :record_activity_task_heartbeat
388
2009
  :inputs:
@@ -391,6 +2012,9 @@
391
2012
  - :required
392
2013
  details:
393
2014
  - :string
2015
+ :outputs:
2016
+ cancelRequested:
2017
+ :type: :boolean
394
2018
  - :name: RegisterActivityType
395
2019
  :method: :register_activity_type
396
2020
  :inputs:
@@ -418,6 +2042,7 @@
418
2042
  - :string
419
2043
  defaultTaskScheduleToCloseTimeout:
420
2044
  - :string
2045
+ :outputs: {}
421
2046
  - :name: RegisterDomain
422
2047
  :method: :register_domain
423
2048
  :inputs:
@@ -429,6 +2054,7 @@
429
2054
  workflowExecutionRetentionPeriodInDays:
430
2055
  - :string
431
2056
  - :required
2057
+ :outputs: {}
432
2058
  - :name: RegisterWorkflowType
433
2059
  :method: :register_workflow_type
434
2060
  :inputs:
@@ -454,6 +2080,7 @@
454
2080
  - :required
455
2081
  defaultChildPolicy:
456
2082
  - :string
2083
+ :outputs: {}
457
2084
  - :name: RequestCancelWorkflowExecution
458
2085
  :method: :request_cancel_workflow_execution
459
2086
  :inputs:
@@ -465,6 +2092,7 @@
465
2092
  - :required
466
2093
  runId:
467
2094
  - :string
2095
+ :outputs: {}
468
2096
  - :name: RespondActivityTaskCanceled
469
2097
  :method: :respond_activity_task_canceled
470
2098
  :inputs:
@@ -473,6 +2101,7 @@
473
2101
  - :required
474
2102
  details:
475
2103
  - :string
2104
+ :outputs: {}
476
2105
  - :name: RespondActivityTaskCompleted
477
2106
  :method: :respond_activity_task_completed
478
2107
  :inputs:
@@ -481,6 +2110,7 @@
481
2110
  - :required
482
2111
  result:
483
2112
  - :string
2113
+ :outputs: {}
484
2114
  - :name: RespondActivityTaskFailed
485
2115
  :method: :respond_activity_task_failed
486
2116
  :inputs:
@@ -491,6 +2121,7 @@
491
2121
  - :string
492
2122
  details:
493
2123
  - :string
2124
+ :outputs: {}
494
2125
  - :name: RespondDecisionTaskCompleted
495
2126
  :method: :respond_decision_task_completed
496
2127
  :inputs:
@@ -652,6 +2283,7 @@
652
2283
  - :string
653
2284
  executionContext:
654
2285
  - :string
2286
+ :outputs: {}
655
2287
  - :name: SignalWorkflowExecution
656
2288
  :method: :signal_workflow_execution
657
2289
  :inputs:
@@ -668,6 +2300,7 @@
668
2300
  - :required
669
2301
  input:
670
2302
  - :string
2303
+ :outputs: {}
671
2304
  - :name: StartWorkflowExecution
672
2305
  :method: :start_workflow_execution
673
2306
  :inputs:
@@ -702,6 +2335,9 @@
702
2335
  - :string
703
2336
  childPolicy:
704
2337
  - :string
2338
+ :outputs:
2339
+ runId:
2340
+ :type: :string
705
2341
  - :name: TerminateWorkflowExecution
706
2342
  :method: :terminate_workflow_execution
707
2343
  :inputs:
@@ -719,3 +2355,4 @@
719
2355
  - :string
720
2356
  childPolicy:
721
2357
  - :string
2358
+ :outputs: {}