aws-sdk-core 2.11.298 → 2.11.299

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74b52c3312943ab5662ad1c60c93ccb09c81fac7
4
- data.tar.gz: 70cb2617dc419eda419736d695d849e01b8abbeb
3
+ metadata.gz: c593c986338ed08ddb0e500033c2eb2c95b1f51a
4
+ data.tar.gz: a5ed5982a54b940fb8c0a2455aafe37607ab4301
5
5
  SHA512:
6
- metadata.gz: 81b9dbf3887c72d875d4c10c22b19ccc009d7968c01c573a63016e04e46984f3ba666b7a26410208d22a4d79af9a31a598247ea494544ca4298a9bc1d5b9cb36
7
- data.tar.gz: fcaba568c1dc09aedeec0ef8f6ade27b9f81b8bfee6b8fb6182c0c72fc2f6c1f065345b84acc1e91698794cc8eebf0c07dcbe62950792434198dbe464809ca07
6
+ metadata.gz: '0385a1d2ab77c3c9adc0639fcb030374a4c5d817c404675504ec2db50465db14c48a1a54c16d3f993f4e8619e8c38e08e23751ae20aa00301fe2d154b91cbfd3'
7
+ data.tar.gz: 1f95a89bec49c50a1c3faf86864ac5f88ca48cc6ee0ee0aaa3c9f84271b280052900e7bae1acc2ce7637abedd60a77d52cf83797332a7676dabd0714a61d6fff
@@ -177,6 +177,7 @@
177
177
  {"shape":"RequestFailedException"},
178
178
  {"shape":"ResourceNotFoundException"},
179
179
  {"shape":"InvalidArnException"},
180
+ {"shape":"InvalidRequestException"},
180
181
  {"shape":"InvalidStateException"},
181
182
  {"shape":"MalformedCertificateException"},
182
183
  {"shape":"CertificateMismatchException"}
@@ -238,7 +239,8 @@
238
239
  "output":{"shape":"ListTagsResponse"},
239
240
  "errors":[
240
241
  {"shape":"ResourceNotFoundException"},
241
- {"shape":"InvalidArnException"}
242
+ {"shape":"InvalidArnException"},
243
+ {"shape":"InvalidStateException"}
242
244
  ]
243
245
  },
244
246
  "RestoreCertificateAuthority":{
@@ -264,6 +266,7 @@
264
266
  "errors":[
265
267
  {"shape":"ConcurrentModificationException"},
266
268
  {"shape":"InvalidArnException"},
269
+ {"shape":"InvalidRequestException"},
267
270
  {"shape":"InvalidStateException"},
268
271
  {"shape":"LimitExceededException"},
269
272
  {"shape":"ResourceNotFoundException"},
@@ -362,7 +365,7 @@
362
365
  "type":"string",
363
366
  "max":200,
364
367
  "min":5,
365
- "pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]+:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*"
368
+ "pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]*:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*"
366
369
  },
367
370
  "AuditReportId":{
368
371
  "type":"string",
@@ -434,7 +437,10 @@
434
437
  },
435
438
  "CertificateAuthorityType":{
436
439
  "type":"string",
437
- "enum":["SUBORDINATE"]
440
+ "enum":[
441
+ "ROOT",
442
+ "SUBORDINATE"
443
+ ]
438
444
  },
439
445
  "CertificateBody":{"type":"string"},
440
446
  "CertificateBodyBlob":{
@@ -664,8 +670,7 @@
664
670
  "type":"structure",
665
671
  "required":[
666
672
  "CertificateAuthorityArn",
667
- "Certificate",
668
- "CertificateChain"
673
+ "Certificate"
669
674
  ],
670
675
  "members":{
671
676
  "CertificateAuthorityArn":{"shape":"Arn"},
@@ -706,6 +711,13 @@
706
711
  },
707
712
  "exception":true
708
713
  },
714
+ "InvalidRequestException":{
715
+ "type":"structure",
716
+ "members":{
717
+ "message":{"shape":"String"}
718
+ },
719
+ "exception":true
720
+ },
709
721
  "InvalidStateException":{
710
722
  "type":"structure",
711
723
  "members":{
@@ -732,6 +744,7 @@
732
744
  "CertificateAuthorityArn":{"shape":"Arn"},
733
745
  "Csr":{"shape":"CsrBlob"},
734
746
  "SigningAlgorithm":{"shape":"SigningAlgorithm"},
747
+ "TemplateArn":{"shape":"Arn"},
735
748
  "Validity":{"shape":"Validity"},
736
749
  "IdempotencyToken":{"shape":"IdempotencyToken"}
737
750
  }
@@ -160,6 +160,20 @@
160
160
  {"shape":"InvalidInputException"}
161
161
  ]
162
162
  },
163
+ "BatchGetWorkflows":{
164
+ "name":"BatchGetWorkflows",
165
+ "http":{
166
+ "method":"POST",
167
+ "requestUri":"/"
168
+ },
169
+ "input":{"shape":"BatchGetWorkflowsRequest"},
170
+ "output":{"shape":"BatchGetWorkflowsResponse"},
171
+ "errors":[
172
+ {"shape":"InternalServiceException"},
173
+ {"shape":"OperationTimeoutException"},
174
+ {"shape":"InvalidInputException"}
175
+ ]
176
+ },
163
177
  "BatchStopJobRun":{
164
178
  "name":"BatchStopJobRun",
165
179
  "http":{
@@ -349,6 +363,7 @@
349
363
  "output":{"shape":"CreateTriggerResponse"},
350
364
  "errors":[
351
365
  {"shape":"AlreadyExistsException"},
366
+ {"shape":"EntityNotFoundException"},
352
367
  {"shape":"InvalidInputException"},
353
368
  {"shape":"IdempotentParameterMismatchException"},
354
369
  {"shape":"InternalServiceException"},
@@ -375,6 +390,23 @@
375
390
  {"shape":"GlueEncryptionException"}
376
391
  ]
377
392
  },
393
+ "CreateWorkflow":{
394
+ "name":"CreateWorkflow",
395
+ "http":{
396
+ "method":"POST",
397
+ "requestUri":"/"
398
+ },
399
+ "input":{"shape":"CreateWorkflowRequest"},
400
+ "output":{"shape":"CreateWorkflowResponse"},
401
+ "errors":[
402
+ {"shape":"AlreadyExistsException"},
403
+ {"shape":"InvalidInputException"},
404
+ {"shape":"InternalServiceException"},
405
+ {"shape":"OperationTimeoutException"},
406
+ {"shape":"ResourceNumberLimitExceededException"},
407
+ {"shape":"ConcurrentModificationException"}
408
+ ]
409
+ },
378
410
  "DeleteClassifier":{
379
411
  "name":"DeleteClassifier",
380
412
  "http":{
@@ -566,6 +598,21 @@
566
598
  {"shape":"OperationTimeoutException"}
567
599
  ]
568
600
  },
601
+ "DeleteWorkflow":{
602
+ "name":"DeleteWorkflow",
603
+ "http":{
604
+ "method":"POST",
605
+ "requestUri":"/"
606
+ },
607
+ "input":{"shape":"DeleteWorkflowRequest"},
608
+ "output":{"shape":"DeleteWorkflowResponse"},
609
+ "errors":[
610
+ {"shape":"InvalidInputException"},
611
+ {"shape":"InternalServiceException"},
612
+ {"shape":"OperationTimeoutException"},
613
+ {"shape":"ConcurrentModificationException"}
614
+ ]
615
+ },
569
616
  "GetCatalogImportStatus":{
570
617
  "name":"GetCatalogImportStatus",
571
618
  "http":{
@@ -1067,6 +1114,66 @@
1067
1114
  {"shape":"GlueEncryptionException"}
1068
1115
  ]
1069
1116
  },
1117
+ "GetWorkflow":{
1118
+ "name":"GetWorkflow",
1119
+ "http":{
1120
+ "method":"POST",
1121
+ "requestUri":"/"
1122
+ },
1123
+ "input":{"shape":"GetWorkflowRequest"},
1124
+ "output":{"shape":"GetWorkflowResponse"},
1125
+ "errors":[
1126
+ {"shape":"InvalidInputException"},
1127
+ {"shape":"EntityNotFoundException"},
1128
+ {"shape":"InternalServiceException"},
1129
+ {"shape":"OperationTimeoutException"}
1130
+ ]
1131
+ },
1132
+ "GetWorkflowRun":{
1133
+ "name":"GetWorkflowRun",
1134
+ "http":{
1135
+ "method":"POST",
1136
+ "requestUri":"/"
1137
+ },
1138
+ "input":{"shape":"GetWorkflowRunRequest"},
1139
+ "output":{"shape":"GetWorkflowRunResponse"},
1140
+ "errors":[
1141
+ {"shape":"InvalidInputException"},
1142
+ {"shape":"EntityNotFoundException"},
1143
+ {"shape":"InternalServiceException"},
1144
+ {"shape":"OperationTimeoutException"}
1145
+ ]
1146
+ },
1147
+ "GetWorkflowRunProperties":{
1148
+ "name":"GetWorkflowRunProperties",
1149
+ "http":{
1150
+ "method":"POST",
1151
+ "requestUri":"/"
1152
+ },
1153
+ "input":{"shape":"GetWorkflowRunPropertiesRequest"},
1154
+ "output":{"shape":"GetWorkflowRunPropertiesResponse"},
1155
+ "errors":[
1156
+ {"shape":"InvalidInputException"},
1157
+ {"shape":"EntityNotFoundException"},
1158
+ {"shape":"InternalServiceException"},
1159
+ {"shape":"OperationTimeoutException"}
1160
+ ]
1161
+ },
1162
+ "GetWorkflowRuns":{
1163
+ "name":"GetWorkflowRuns",
1164
+ "http":{
1165
+ "method":"POST",
1166
+ "requestUri":"/"
1167
+ },
1168
+ "input":{"shape":"GetWorkflowRunsRequest"},
1169
+ "output":{"shape":"GetWorkflowRunsResponse"},
1170
+ "errors":[
1171
+ {"shape":"InvalidInputException"},
1172
+ {"shape":"EntityNotFoundException"},
1173
+ {"shape":"InternalServiceException"},
1174
+ {"shape":"OperationTimeoutException"}
1175
+ ]
1176
+ },
1070
1177
  "ImportCatalogToGlue":{
1071
1178
  "name":"ImportCatalogToGlue",
1072
1179
  "http":{
@@ -1137,6 +1244,20 @@
1137
1244
  {"shape":"OperationTimeoutException"}
1138
1245
  ]
1139
1246
  },
1247
+ "ListWorkflows":{
1248
+ "name":"ListWorkflows",
1249
+ "http":{
1250
+ "method":"POST",
1251
+ "requestUri":"/"
1252
+ },
1253
+ "input":{"shape":"ListWorkflowsRequest"},
1254
+ "output":{"shape":"ListWorkflowsResponse"},
1255
+ "errors":[
1256
+ {"shape":"InvalidInputException"},
1257
+ {"shape":"InternalServiceException"},
1258
+ {"shape":"OperationTimeoutException"}
1259
+ ]
1260
+ },
1140
1261
  "PutDataCatalogEncryptionSettings":{
1141
1262
  "name":"PutDataCatalogEncryptionSettings",
1142
1263
  "http":{
@@ -1167,6 +1288,24 @@
1167
1288
  {"shape":"ConditionCheckFailureException"}
1168
1289
  ]
1169
1290
  },
1291
+ "PutWorkflowRunProperties":{
1292
+ "name":"PutWorkflowRunProperties",
1293
+ "http":{
1294
+ "method":"POST",
1295
+ "requestUri":"/"
1296
+ },
1297
+ "input":{"shape":"PutWorkflowRunPropertiesRequest"},
1298
+ "output":{"shape":"PutWorkflowRunPropertiesResponse"},
1299
+ "errors":[
1300
+ {"shape":"AlreadyExistsException"},
1301
+ {"shape":"EntityNotFoundException"},
1302
+ {"shape":"InvalidInputException"},
1303
+ {"shape":"InternalServiceException"},
1304
+ {"shape":"OperationTimeoutException"},
1305
+ {"shape":"ResourceNumberLimitExceededException"},
1306
+ {"shape":"ConcurrentModificationException"}
1307
+ ]
1308
+ },
1170
1309
  "ResetJobBookmark":{
1171
1310
  "name":"ResetJobBookmark",
1172
1311
  "http":{
@@ -1246,6 +1385,23 @@
1246
1385
  {"shape":"ConcurrentRunsExceededException"}
1247
1386
  ]
1248
1387
  },
1388
+ "StartWorkflowRun":{
1389
+ "name":"StartWorkflowRun",
1390
+ "http":{
1391
+ "method":"POST",
1392
+ "requestUri":"/"
1393
+ },
1394
+ "input":{"shape":"StartWorkflowRunRequest"},
1395
+ "output":{"shape":"StartWorkflowRunResponse"},
1396
+ "errors":[
1397
+ {"shape":"InvalidInputException"},
1398
+ {"shape":"EntityNotFoundException"},
1399
+ {"shape":"InternalServiceException"},
1400
+ {"shape":"OperationTimeoutException"},
1401
+ {"shape":"ResourceNumberLimitExceededException"},
1402
+ {"shape":"ConcurrentRunsExceededException"}
1403
+ ]
1404
+ },
1249
1405
  "StopCrawler":{
1250
1406
  "name":"StopCrawler",
1251
1407
  "http":{
@@ -1498,6 +1654,22 @@
1498
1654
  {"shape":"OperationTimeoutException"},
1499
1655
  {"shape":"GlueEncryptionException"}
1500
1656
  ]
1657
+ },
1658
+ "UpdateWorkflow":{
1659
+ "name":"UpdateWorkflow",
1660
+ "http":{
1661
+ "method":"POST",
1662
+ "requestUri":"/"
1663
+ },
1664
+ "input":{"shape":"UpdateWorkflowRequest"},
1665
+ "output":{"shape":"UpdateWorkflowResponse"},
1666
+ "errors":[
1667
+ {"shape":"InvalidInputException"},
1668
+ {"shape":"EntityNotFoundException"},
1669
+ {"shape":"InternalServiceException"},
1670
+ {"shape":"OperationTimeoutException"},
1671
+ {"shape":"ConcurrentModificationException"}
1672
+ ]
1501
1673
  }
1502
1674
  },
1503
1675
  "shapes":{
@@ -1514,8 +1686,9 @@
1514
1686
  "JobName":{"shape":"NameString"},
1515
1687
  "Arguments":{"shape":"GenericMap"},
1516
1688
  "Timeout":{"shape":"Timeout"},
1689
+ "SecurityConfiguration":{"shape":"NameString"},
1517
1690
  "NotificationProperty":{"shape":"NotificationProperty"},
1518
- "SecurityConfiguration":{"shape":"NameString"}
1691
+ "CrawlerName":{"shape":"NameString"}
1519
1692
  }
1520
1693
  },
1521
1694
  "ActionList":{
@@ -1724,6 +1897,21 @@
1724
1897
  "TriggersNotFound":{"shape":"TriggerNameList"}
1725
1898
  }
1726
1899
  },
1900
+ "BatchGetWorkflowsRequest":{
1901
+ "type":"structure",
1902
+ "required":["Names"],
1903
+ "members":{
1904
+ "Names":{"shape":"WorkflowNames"},
1905
+ "IncludeGraph":{"shape":"NullableBoolean"}
1906
+ }
1907
+ },
1908
+ "BatchGetWorkflowsResponse":{
1909
+ "type":"structure",
1910
+ "members":{
1911
+ "Workflows":{"shape":"Workflows"},
1912
+ "MissingWorkflows":{"shape":"WorkflowNames"}
1913
+ }
1914
+ },
1727
1915
  "BatchStopJobRunError":{
1728
1916
  "type":"structure",
1729
1917
  "members":{
@@ -1970,7 +2158,9 @@
1970
2158
  "members":{
1971
2159
  "LogicalOperator":{"shape":"LogicalOperator"},
1972
2160
  "JobName":{"shape":"NameString"},
1973
- "State":{"shape":"JobRunState"}
2161
+ "State":{"shape":"JobRunState"},
2162
+ "CrawlerName":{"shape":"NameString"},
2163
+ "CrawlState":{"shape":"CrawlState"}
1974
2164
  }
1975
2165
  },
1976
2166
  "ConditionCheckFailureException":{
@@ -2062,9 +2252,33 @@
2062
2252
  "ConnectionsList":{
2063
2253
  "type":"structure",
2064
2254
  "members":{
2065
- "Connections":{"shape":"StringList"}
2255
+ "Connections":{"shape":"OrchestrationStringList"}
2256
+ }
2257
+ },
2258
+ "Crawl":{
2259
+ "type":"structure",
2260
+ "members":{
2261
+ "State":{"shape":"CrawlState"},
2262
+ "StartedOn":{"shape":"TimestampValue"},
2263
+ "CompletedOn":{"shape":"TimestampValue"},
2264
+ "ErrorMessage":{"shape":"DescriptionString"},
2265
+ "LogGroup":{"shape":"LogGroup"},
2266
+ "LogStream":{"shape":"LogStream"}
2066
2267
  }
2067
2268
  },
2269
+ "CrawlList":{
2270
+ "type":"list",
2271
+ "member":{"shape":"Crawl"}
2272
+ },
2273
+ "CrawlState":{
2274
+ "type":"string",
2275
+ "enum":[
2276
+ "RUNNING",
2277
+ "SUCCEEDED",
2278
+ "CANCELLED",
2279
+ "FAILED"
2280
+ ]
2281
+ },
2068
2282
  "Crawler":{
2069
2283
  "type":"structure",
2070
2284
  "members":{
@@ -2115,6 +2329,12 @@
2115
2329
  "max":100,
2116
2330
  "min":0
2117
2331
  },
2332
+ "CrawlerNodeDetails":{
2333
+ "type":"structure",
2334
+ "members":{
2335
+ "Crawls":{"shape":"CrawlList"}
2336
+ }
2337
+ },
2118
2338
  "CrawlerNotRunningException":{
2119
2339
  "type":"structure",
2120
2340
  "members":{
@@ -2318,11 +2538,11 @@
2318
2538
  },
2319
2539
  "Timeout":{"shape":"Timeout"},
2320
2540
  "MaxCapacity":{"shape":"NullableDouble"},
2541
+ "SecurityConfiguration":{"shape":"NameString"},
2542
+ "Tags":{"shape":"TagsMap"},
2321
2543
  "NotificationProperty":{"shape":"NotificationProperty"},
2322
- "WorkerType":{"shape":"WorkerType"},
2323
2544
  "NumberOfWorkers":{"shape":"NullableInteger"},
2324
- "SecurityConfiguration":{"shape":"NameString"},
2325
- "Tags":{"shape":"TagsMap"}
2545
+ "WorkerType":{"shape":"NameString"}
2326
2546
  }
2327
2547
  },
2328
2548
  "CreateJobResponse":{
@@ -2420,6 +2640,7 @@
2420
2640
  ],
2421
2641
  "members":{
2422
2642
  "Name":{"shape":"NameString"},
2643
+ "WorkflowName":{"shape":"NameString"},
2423
2644
  "Type":{"shape":"TriggerType"},
2424
2645
  "Schedule":{"shape":"GenericString"},
2425
2646
  "Predicate":{"shape":"Predicate"},
@@ -2452,6 +2673,22 @@
2452
2673
  "members":{
2453
2674
  }
2454
2675
  },
2676
+ "CreateWorkflowRequest":{
2677
+ "type":"structure",
2678
+ "required":["Name"],
2679
+ "members":{
2680
+ "Name":{"shape":"NameString"},
2681
+ "Description":{"shape":"GenericString"},
2682
+ "DefaultRunProperties":{"shape":"WorkflowRunProperties"},
2683
+ "Tags":{"shape":"TagsMap"}
2684
+ }
2685
+ },
2686
+ "CreateWorkflowResponse":{
2687
+ "type":"structure",
2688
+ "members":{
2689
+ "Name":{"shape":"NameString"}
2690
+ }
2691
+ },
2455
2692
  "CreateXMLClassifierRequest":{
2456
2693
  "type":"structure",
2457
2694
  "required":[
@@ -2749,6 +2986,19 @@
2749
2986
  "members":{
2750
2987
  }
2751
2988
  },
2989
+ "DeleteWorkflowRequest":{
2990
+ "type":"structure",
2991
+ "required":["Name"],
2992
+ "members":{
2993
+ "Name":{"shape":"NameString"}
2994
+ }
2995
+ },
2996
+ "DeleteWorkflowResponse":{
2997
+ "type":"structure",
2998
+ "members":{
2999
+ "Name":{"shape":"NameString"}
3000
+ }
3001
+ },
2752
3002
  "DescriptionString":{
2753
3003
  "type":"string",
2754
3004
  "max":2048,
@@ -2819,6 +3069,17 @@
2819
3069
  "type":"list",
2820
3070
  "member":{"shape":"DynamoDBTarget"}
2821
3071
  },
3072
+ "Edge":{
3073
+ "type":"structure",
3074
+ "members":{
3075
+ "SourceId":{"shape":"NameString"},
3076
+ "DestinationId":{"shape":"NameString"}
3077
+ }
3078
+ },
3079
+ "EdgeList":{
3080
+ "type":"list",
3081
+ "member":{"shape":"Edge"}
3082
+ },
2822
3083
  "EncryptionAtRest":{
2823
3084
  "type":"structure",
2824
3085
  "required":["CatalogEncryptionMode"],
@@ -3432,6 +3693,72 @@
3432
3693
  "NextToken":{"shape":"Token"}
3433
3694
  }
3434
3695
  },
3696
+ "GetWorkflowRequest":{
3697
+ "type":"structure",
3698
+ "required":["Name"],
3699
+ "members":{
3700
+ "Name":{"shape":"NameString"},
3701
+ "IncludeGraph":{"shape":"NullableBoolean"}
3702
+ }
3703
+ },
3704
+ "GetWorkflowResponse":{
3705
+ "type":"structure",
3706
+ "members":{
3707
+ "Workflow":{"shape":"Workflow"}
3708
+ }
3709
+ },
3710
+ "GetWorkflowRunPropertiesRequest":{
3711
+ "type":"structure",
3712
+ "required":[
3713
+ "Name",
3714
+ "RunId"
3715
+ ],
3716
+ "members":{
3717
+ "Name":{"shape":"NameString"},
3718
+ "RunId":{"shape":"IdString"}
3719
+ }
3720
+ },
3721
+ "GetWorkflowRunPropertiesResponse":{
3722
+ "type":"structure",
3723
+ "members":{
3724
+ "RunProperties":{"shape":"WorkflowRunProperties"}
3725
+ }
3726
+ },
3727
+ "GetWorkflowRunRequest":{
3728
+ "type":"structure",
3729
+ "required":[
3730
+ "Name",
3731
+ "RunId"
3732
+ ],
3733
+ "members":{
3734
+ "Name":{"shape":"NameString"},
3735
+ "RunId":{"shape":"IdString"},
3736
+ "IncludeGraph":{"shape":"NullableBoolean"}
3737
+ }
3738
+ },
3739
+ "GetWorkflowRunResponse":{
3740
+ "type":"structure",
3741
+ "members":{
3742
+ "Run":{"shape":"WorkflowRun"}
3743
+ }
3744
+ },
3745
+ "GetWorkflowRunsRequest":{
3746
+ "type":"structure",
3747
+ "required":["Name"],
3748
+ "members":{
3749
+ "Name":{"shape":"NameString"},
3750
+ "IncludeGraph":{"shape":"NullableBoolean"},
3751
+ "NextToken":{"shape":"GenericString"},
3752
+ "MaxResults":{"shape":"PageSize"}
3753
+ }
3754
+ },
3755
+ "GetWorkflowRunsResponse":{
3756
+ "type":"structure",
3757
+ "members":{
3758
+ "Runs":{"shape":"WorkflowRuns"},
3759
+ "NextToken":{"shape":"GenericString"}
3760
+ }
3761
+ },
3435
3762
  "GlueEncryptionException":{
3436
3763
  "type":"structure",
3437
3764
  "members":{
@@ -3600,6 +3927,12 @@
3600
3927
  "type":"list",
3601
3928
  "member":{"shape":"NameString"}
3602
3929
  },
3930
+ "JobNodeDetails":{
3931
+ "type":"structure",
3932
+ "members":{
3933
+ "JobRuns":{"shape":"JobRunList"}
3934
+ }
3935
+ },
3603
3936
  "JobRun":{
3604
3937
  "type":"structure",
3605
3938
  "members":{
@@ -3623,11 +3956,11 @@
3623
3956
  "ExecutionTime":{"shape":"ExecutionTime"},
3624
3957
  "Timeout":{"shape":"Timeout"},
3625
3958
  "MaxCapacity":{"shape":"NullableDouble"},
3626
- "NotificationProperty":{"shape":"NotificationProperty"},
3627
3959
  "WorkerType":{"shape":"WorkerType"},
3628
3960
  "NumberOfWorkers":{"shape":"NullableInteger"},
3629
3961
  "SecurityConfiguration":{"shape":"NameString"},
3630
- "LogGroupName":{"shape":"GenericString"}
3962
+ "LogGroupName":{"shape":"GenericString"},
3963
+ "NotificationProperty":{"shape":"NotificationProperty"}
3631
3964
  }
3632
3965
  },
3633
3966
  "JobRunList":{
@@ -3783,6 +4116,20 @@
3783
4116
  "NextToken":{"shape":"GenericString"}
3784
4117
  }
3785
4118
  },
4119
+ "ListWorkflowsRequest":{
4120
+ "type":"structure",
4121
+ "members":{
4122
+ "NextToken":{"shape":"GenericString"},
4123
+ "MaxResults":{"shape":"PageSize"}
4124
+ }
4125
+ },
4126
+ "ListWorkflowsResponse":{
4127
+ "type":"structure",
4128
+ "members":{
4129
+ "Workflows":{"shape":"WorkflowNames"},
4130
+ "NextToken":{"shape":"GenericString"}
4131
+ }
4132
+ },
3786
4133
  "Location":{
3787
4134
  "type":"structure",
3788
4135
  "members":{
@@ -3879,6 +4226,29 @@
3879
4226
  },
3880
4227
  "exception":true
3881
4228
  },
4229
+ "Node":{
4230
+ "type":"structure",
4231
+ "members":{
4232
+ "Type":{"shape":"NodeType"},
4233
+ "Name":{"shape":"NameString"},
4234
+ "UniqueId":{"shape":"NameString"},
4235
+ "TriggerDetails":{"shape":"TriggerNodeDetails"},
4236
+ "JobDetails":{"shape":"JobNodeDetails"},
4237
+ "CrawlerDetails":{"shape":"CrawlerNodeDetails"}
4238
+ }
4239
+ },
4240
+ "NodeList":{
4241
+ "type":"list",
4242
+ "member":{"shape":"Node"}
4243
+ },
4244
+ "NodeType":{
4245
+ "type":"string",
4246
+ "enum":[
4247
+ "CRAWLER",
4248
+ "JOB",
4249
+ "TRIGGER"
4250
+ ]
4251
+ },
3882
4252
  "NonNegativeDouble":{
3883
4253
  "type":"double",
3884
4254
  "min":0.0
@@ -3917,6 +4287,10 @@
3917
4287
  },
3918
4288
  "exception":true
3919
4289
  },
4290
+ "OrchestrationStringList":{
4291
+ "type":"list",
4292
+ "member":{"shape":"GenericString"}
4293
+ },
3920
4294
  "Order":{
3921
4295
  "type":"structure",
3922
4296
  "required":[
@@ -4081,6 +4455,24 @@
4081
4455
  "PolicyHash":{"shape":"HashString"}
4082
4456
  }
4083
4457
  },
4458
+ "PutWorkflowRunPropertiesRequest":{
4459
+ "type":"structure",
4460
+ "required":[
4461
+ "Name",
4462
+ "RunId",
4463
+ "RunProperties"
4464
+ ],
4465
+ "members":{
4466
+ "Name":{"shape":"NameString"},
4467
+ "RunId":{"shape":"IdString"},
4468
+ "RunProperties":{"shape":"WorkflowRunProperties"}
4469
+ }
4470
+ },
4471
+ "PutWorkflowRunPropertiesResponse":{
4472
+ "type":"structure",
4473
+ "members":{
4474
+ }
4475
+ },
4084
4476
  "PythonScript":{"type":"string"},
4085
4477
  "PythonVersionString":{
4086
4478
  "type":"string",
@@ -4293,10 +4685,10 @@
4293
4685
  },
4294
4686
  "Timeout":{"shape":"Timeout"},
4295
4687
  "MaxCapacity":{"shape":"NullableDouble"},
4296
- "WorkerType":{"shape":"WorkerType"},
4297
- "NumberOfWorkers":{"shape":"NullableInteger"},
4298
4688
  "SecurityConfiguration":{"shape":"NameString"},
4299
- "NotificationProperty":{"shape":"NotificationProperty"}
4689
+ "NotificationProperty":{"shape":"NotificationProperty"},
4690
+ "WorkerType":{"shape":"NameString"},
4691
+ "NumberOfWorkers":{"shape":"NullableInteger"}
4300
4692
  }
4301
4693
  },
4302
4694
  "StartJobRunResponse":{
@@ -4318,6 +4710,19 @@
4318
4710
  "Name":{"shape":"NameString"}
4319
4711
  }
4320
4712
  },
4713
+ "StartWorkflowRunRequest":{
4714
+ "type":"structure",
4715
+ "required":["Name"],
4716
+ "members":{
4717
+ "Name":{"shape":"NameString"}
4718
+ }
4719
+ },
4720
+ "StartWorkflowRunResponse":{
4721
+ "type":"structure",
4722
+ "members":{
4723
+ "RunId":{"shape":"IdString"}
4724
+ }
4725
+ },
4321
4726
  "StopCrawlerRequest":{
4322
4727
  "type":"structure",
4323
4728
  "required":["Name"],
@@ -4516,6 +4921,7 @@
4516
4921
  "type":"structure",
4517
4922
  "members":{
4518
4923
  "Name":{"shape":"NameString"},
4924
+ "WorkflowName":{"shape":"NameString"},
4519
4925
  "Id":{"shape":"IdString"},
4520
4926
  "Type":{"shape":"TriggerType"},
4521
4927
  "State":{"shape":"TriggerState"},
@@ -4533,6 +4939,12 @@
4533
4939
  "type":"list",
4534
4940
  "member":{"shape":"NameString"}
4535
4941
  },
4942
+ "TriggerNodeDetails":{
4943
+ "type":"structure",
4944
+ "members":{
4945
+ "Trigger":{"shape":"Trigger"}
4946
+ }
4947
+ },
4536
4948
  "TriggerState":{
4537
4949
  "type":"string",
4538
4950
  "enum":[
@@ -4818,6 +5230,21 @@
4818
5230
  "members":{
4819
5231
  }
4820
5232
  },
5233
+ "UpdateWorkflowRequest":{
5234
+ "type":"structure",
5235
+ "required":["Name"],
5236
+ "members":{
5237
+ "Name":{"shape":"NameString"},
5238
+ "Description":{"shape":"GenericString"},
5239
+ "DefaultRunProperties":{"shape":"WorkflowRunProperties"}
5240
+ }
5241
+ },
5242
+ "UpdateWorkflowResponse":{
5243
+ "type":"structure",
5244
+ "members":{
5245
+ "Name":{"shape":"NameString"}
5246
+ }
5247
+ },
4821
5248
  "UpdateXMLClassifierRequest":{
4822
5249
  "type":"structure",
4823
5250
  "required":["Name"],
@@ -4894,6 +5321,79 @@
4894
5321
  "G.2X"
4895
5322
  ]
4896
5323
  },
5324
+ "Workflow":{
5325
+ "type":"structure",
5326
+ "members":{
5327
+ "Name":{"shape":"NameString"},
5328
+ "Description":{"shape":"GenericString"},
5329
+ "DefaultRunProperties":{"shape":"WorkflowRunProperties"},
5330
+ "CreatedOn":{"shape":"TimestampValue"},
5331
+ "LastModifiedOn":{"shape":"TimestampValue"},
5332
+ "LastRun":{"shape":"WorkflowRun"},
5333
+ "Graph":{"shape":"WorkflowGraph"}
5334
+ }
5335
+ },
5336
+ "WorkflowGraph":{
5337
+ "type":"structure",
5338
+ "members":{
5339
+ "Nodes":{"shape":"NodeList"},
5340
+ "Edges":{"shape":"EdgeList"}
5341
+ }
5342
+ },
5343
+ "WorkflowNames":{
5344
+ "type":"list",
5345
+ "member":{"shape":"NameString"},
5346
+ "max":25,
5347
+ "min":1
5348
+ },
5349
+ "WorkflowRun":{
5350
+ "type":"structure",
5351
+ "members":{
5352
+ "Name":{"shape":"NameString"},
5353
+ "WorkflowRunId":{"shape":"IdString"},
5354
+ "WorkflowRunProperties":{"shape":"WorkflowRunProperties"},
5355
+ "StartedOn":{"shape":"TimestampValue"},
5356
+ "CompletedOn":{"shape":"TimestampValue"},
5357
+ "Status":{"shape":"WorkflowRunStatus"},
5358
+ "Statistics":{"shape":"WorkflowRunStatistics"},
5359
+ "Graph":{"shape":"WorkflowGraph"}
5360
+ }
5361
+ },
5362
+ "WorkflowRunProperties":{
5363
+ "type":"map",
5364
+ "key":{"shape":"IdString"},
5365
+ "value":{"shape":"GenericString"}
5366
+ },
5367
+ "WorkflowRunStatistics":{
5368
+ "type":"structure",
5369
+ "members":{
5370
+ "TotalActions":{"shape":"IntegerValue"},
5371
+ "TimeoutActions":{"shape":"IntegerValue"},
5372
+ "FailedActions":{"shape":"IntegerValue"},
5373
+ "StoppedActions":{"shape":"IntegerValue"},
5374
+ "SucceededActions":{"shape":"IntegerValue"},
5375
+ "RunningActions":{"shape":"IntegerValue"}
5376
+ }
5377
+ },
5378
+ "WorkflowRunStatus":{
5379
+ "type":"string",
5380
+ "enum":[
5381
+ "RUNNING",
5382
+ "COMPLETED"
5383
+ ]
5384
+ },
5385
+ "WorkflowRuns":{
5386
+ "type":"list",
5387
+ "member":{"shape":"WorkflowRun"},
5388
+ "max":1000,
5389
+ "min":1
5390
+ },
5391
+ "Workflows":{
5392
+ "type":"list",
5393
+ "member":{"shape":"Workflow"},
5394
+ "max":25,
5395
+ "min":1
5396
+ },
4897
5397
  "XMLClassifier":{
4898
5398
  "type":"structure",
4899
5399
  "required":[
@@ -71,6 +71,11 @@
71
71
  "limit_key": "MaxResults",
72
72
  "output_token": "NextToken"
73
73
  },
74
+ "GetWorkflowRuns": {
75
+ "input_token": "NextToken",
76
+ "limit_key": "MaxResults",
77
+ "output_token": "NextToken"
78
+ },
74
79
  "ListCrawlers": {
75
80
  "input_token": "NextToken",
76
81
  "limit_key": "MaxResults",
@@ -90,6 +95,11 @@
90
95
  "input_token": "NextToken",
91
96
  "limit_key": "MaxResults",
92
97
  "output_token": "NextToken"
98
+ },
99
+ "ListWorkflows": {
100
+ "input_token": "NextToken",
101
+ "limit_key": "MaxResults",
102
+ "output_token": "NextToken"
93
103
  }
94
104
  }
95
105
  }
@@ -428,7 +428,7 @@
428
428
  "eventArn":{
429
429
  "type":"string",
430
430
  "max":1600,
431
- "pattern":"arn:aws:health:[^:]*:[^:]*:event(?:/[\\w-]+){3}"
431
+ "pattern":"arn:aws(-[a-z]+(-[a-z]+)?)?:health:[^:]*:[^:]*:event(?:/[\\w-]+){3}"
432
432
  },
433
433
  "eventArnList":{
434
434
  "type":"list",
@@ -466,7 +466,8 @@
466
466
  "enum":[
467
467
  "issue",
468
468
  "accountNotification",
469
- "scheduledChange"
469
+ "scheduledChange",
470
+ "investigation"
470
471
  ],
471
472
  "max":255,
472
473
  "min":3
@@ -256,7 +256,7 @@
256
256
  "type":"string",
257
257
  "max":128,
258
258
  "min":1,
259
- "pattern":"^[a-zA-Z0-9\\-_]+$"
259
+ "pattern":"^[a-zA-Z0-9\\-_:]+$"
260
260
  },
261
261
  "ListDetectorsRequest":{
262
262
  "type":"structure",
@@ -2484,7 +2484,8 @@
2484
2484
  "PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"},
2485
2485
  "EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
2486
2486
  "ProcessorFeatures":{"shape":"ProcessorFeatureList"},
2487
- "DeletionProtection":{"shape":"BooleanOptional"}
2487
+ "DeletionProtection":{"shape":"BooleanOptional"},
2488
+ "MaxAllocatedStorage":{"shape":"IntegerOptional"}
2488
2489
  }
2489
2490
  },
2490
2491
  "CreateDBInstanceReadReplicaMessage":{
@@ -3188,7 +3189,8 @@
3188
3189
  "ProcessorFeatures":{"shape":"ProcessorFeatureList"},
3189
3190
  "DeletionProtection":{"shape":"Boolean"},
3190
3191
  "AssociatedRoles":{"shape":"DBInstanceRoles"},
3191
- "ListenerEndpoint":{"shape":"Endpoint"}
3192
+ "ListenerEndpoint":{"shape":"Endpoint"},
3193
+ "MaxAllocatedStorage":{"shape":"IntegerOptional"}
3192
3194
  },
3193
3195
  "wrapper":true
3194
3196
  },
@@ -5022,7 +5024,8 @@
5022
5024
  "CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"},
5023
5025
  "ProcessorFeatures":{"shape":"ProcessorFeatureList"},
5024
5026
  "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"},
5025
- "DeletionProtection":{"shape":"BooleanOptional"}
5027
+ "DeletionProtection":{"shape":"BooleanOptional"},
5028
+ "MaxAllocatedStorage":{"shape":"IntegerOptional"}
5026
5029
  }
5027
5030
  },
5028
5031
  "ModifyDBInstanceResult":{
@@ -5395,7 +5398,8 @@
5395
5398
  "MinIopsPerGib":{"shape":"DoubleOptional"},
5396
5399
  "MaxIopsPerGib":{"shape":"DoubleOptional"},
5397
5400
  "AvailableProcessorFeatures":{"shape":"AvailableProcessorFeatureList"},
5398
- "SupportedEngineModes":{"shape":"EngineModeList"}
5401
+ "SupportedEngineModes":{"shape":"EngineModeList"},
5402
+ "SupportsStorageAutoscaling":{"shape":"BooleanOptional"}
5399
5403
  },
5400
5404
  "wrapper":true
5401
5405
  },
@@ -6524,7 +6528,8 @@
6524
6528
  "StorageType":{"shape":"String"},
6525
6529
  "StorageSize":{"shape":"RangeList"},
6526
6530
  "ProvisionedIops":{"shape":"RangeList"},
6527
- "IopsToStorageRatio":{"shape":"DoubleRangeList"}
6531
+ "IopsToStorageRatio":{"shape":"DoubleRangeList"},
6532
+ "SupportsStorageAutoscaling":{"shape":"Boolean"}
6528
6533
  }
6529
6534
  },
6530
6535
  "ValidStorageOptionsList":{
@@ -1077,6 +1077,7 @@
1077
1077
  "ap-southeast-2" : { },
1078
1078
  "ca-central-1" : { },
1079
1079
  "eu-central-1" : { },
1080
+ "eu-north-1" : { },
1080
1081
  "eu-west-1" : { },
1081
1082
  "eu-west-2" : { },
1082
1083
  "sa-east-1" : { },
@@ -1433,6 +1434,7 @@
1433
1434
  "endpoints" : {
1434
1435
  "ap-northeast-1" : { },
1435
1436
  "ap-southeast-2" : { },
1437
+ "eu-central-1" : { },
1436
1438
  "eu-west-1" : { },
1437
1439
  "us-east-1" : { },
1438
1440
  "us-east-2" : { },
@@ -1855,6 +1857,7 @@
1855
1857
  "ap-southeast-1" : { },
1856
1858
  "ap-southeast-2" : { },
1857
1859
  "eu-central-1" : { },
1860
+ "eu-north-1" : { },
1858
1861
  "eu-west-1" : { },
1859
1862
  "sa-east-1" : { },
1860
1863
  "us-east-1" : { },
@@ -1965,12 +1968,14 @@
1965
1968
  "endpoints" : {
1966
1969
  "ap-northeast-1" : { },
1967
1970
  "ap-northeast-2" : { },
1971
+ "ap-south-1" : { },
1968
1972
  "ap-southeast-1" : { },
1969
1973
  "ap-southeast-2" : { },
1970
1974
  "ca-central-1" : { },
1971
1975
  "eu-central-1" : { },
1972
1976
  "eu-west-1" : { },
1973
1977
  "eu-west-2" : { },
1978
+ "eu-west-3" : { },
1974
1979
  "us-east-1" : { },
1975
1980
  "us-east-2" : { },
1976
1981
  "us-west-1" : { },
@@ -3226,6 +3231,7 @@
3226
3231
  },
3227
3232
  "xray" : {
3228
3233
  "endpoints" : {
3234
+ "ap-east-1" : { },
3229
3235
  "ap-northeast-1" : { },
3230
3236
  "ap-northeast-2" : { },
3231
3237
  "ap-south-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.298'
2
+ VERSION = '2.11.299'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.298
4
+ version: 2.11.299
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-19 00:00:00.000000000 Z
11
+ date: 2019-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath