aws-sdk-core 2.11.243 → 2.11.244

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: 92120fe8e24501a31fb2bd2b68e3f24965e66250
4
- data.tar.gz: 295226f41a6db49a4e7482d32304ccd4524ed474
3
+ metadata.gz: c7b5b666e0112f0fd7324375b9965f848421732c
4
+ data.tar.gz: 306bfbfe738c4146b880960d9e482fffa0406899
5
5
  SHA512:
6
- metadata.gz: 82571c0db089bfbe7e17f649d611d9ad512c9d72f37046abf8f577b4a8b9c46da2a494ab5a735da9b6d056e3eb00989d3b672eaf24618273f2ddb814b07d9e61
7
- data.tar.gz: 4da57892cc303187e2f56a265112d8892b24826d4d6ab99e27b26138928b430ac0a394ba392c420a839f2daa22f3a8b2302ab3d552120c4910557de97e489a1e
6
+ metadata.gz: 7539e775135189a12cf4eac129a4d2665c6fd536f14e58d6eb4ddf19fb70cb5f311ef678619306c86974a3e5f3da3d6d8fe66f7567688db61239544cfa48839f
7
+ data.tar.gz: 5f9fad34c4f1fc6cb15e04dc16fc2c805ff435fe8bec9cbc0dab6470cbd1534032ccdcb6df58efbdba764b063a00a8d03f24d5354e6d823143a7e683c06ab4fc
@@ -215,6 +215,21 @@
215
215
  {"shape":"InvalidJobException"}
216
216
  ]
217
217
  },
218
+ "ListActionExecutions":{
219
+ "name":"ListActionExecutions",
220
+ "http":{
221
+ "method":"POST",
222
+ "requestUri":"/"
223
+ },
224
+ "input":{"shape":"ListActionExecutionsInput"},
225
+ "output":{"shape":"ListActionExecutionsOutput"},
226
+ "errors":[
227
+ {"shape":"ValidationException"},
228
+ {"shape":"PipelineNotFoundException"},
229
+ {"shape":"InvalidNextTokenException"},
230
+ {"shape":"PipelineExecutionNotFoundException"}
231
+ ]
232
+ },
218
233
  "ListActionTypes":{
219
234
  "name":"ListActionTypes",
220
235
  "http":{
@@ -623,6 +638,57 @@
623
638
  "errorDetails":{"shape":"ErrorDetails"}
624
639
  }
625
640
  },
641
+ "ActionExecutionDetail":{
642
+ "type":"structure",
643
+ "members":{
644
+ "pipelineExecutionId":{"shape":"PipelineExecutionId"},
645
+ "actionExecutionId":{"shape":"ActionExecutionId"},
646
+ "pipelineVersion":{"shape":"PipelineVersion"},
647
+ "stageName":{"shape":"StageName"},
648
+ "actionName":{"shape":"ActionName"},
649
+ "startTime":{"shape":"Timestamp"},
650
+ "lastUpdateTime":{"shape":"Timestamp"},
651
+ "status":{"shape":"ActionExecutionStatus"},
652
+ "input":{"shape":"ActionExecutionInput"},
653
+ "output":{"shape":"ActionExecutionOutput"}
654
+ }
655
+ },
656
+ "ActionExecutionDetailList":{
657
+ "type":"list",
658
+ "member":{"shape":"ActionExecutionDetail"}
659
+ },
660
+ "ActionExecutionFilter":{
661
+ "type":"structure",
662
+ "members":{
663
+ "pipelineExecutionId":{"shape":"PipelineExecutionId"}
664
+ }
665
+ },
666
+ "ActionExecutionId":{"type":"string"},
667
+ "ActionExecutionInput":{
668
+ "type":"structure",
669
+ "members":{
670
+ "actionTypeId":{"shape":"ActionTypeId"},
671
+ "configuration":{"shape":"ActionConfigurationMap"},
672
+ "roleArn":{"shape":"RoleArn"},
673
+ "region":{"shape":"AWSRegionName"},
674
+ "inputArtifacts":{"shape":"ArtifactDetailList"}
675
+ }
676
+ },
677
+ "ActionExecutionOutput":{
678
+ "type":"structure",
679
+ "members":{
680
+ "outputArtifacts":{"shape":"ArtifactDetailList"},
681
+ "executionResult":{"shape":"ActionExecutionResult"}
682
+ }
683
+ },
684
+ "ActionExecutionResult":{
685
+ "type":"structure",
686
+ "members":{
687
+ "externalExecutionId":{"shape":"ExternalExecutionId"},
688
+ "externalExecutionSummary":{"shape":"ExternalExecutionSummary"},
689
+ "externalExecutionUrl":{"shape":"Url"}
690
+ }
691
+ },
626
692
  "ActionExecutionStatus":{
627
693
  "type":"string",
628
694
  "enum":[
@@ -780,6 +846,17 @@
780
846
  "location":{"shape":"ArtifactLocation"}
781
847
  }
782
848
  },
849
+ "ArtifactDetail":{
850
+ "type":"structure",
851
+ "members":{
852
+ "name":{"shape":"ArtifactName"},
853
+ "s3location":{"shape":"S3Location"}
854
+ }
855
+ },
856
+ "ArtifactDetailList":{
857
+ "type":"list",
858
+ "member":{"shape":"ArtifactDetail"}
859
+ },
783
860
  "ArtifactDetails":{
784
861
  "type":"structure",
785
862
  "required":[
@@ -1076,6 +1153,8 @@
1076
1153
  "max":2048,
1077
1154
  "min":1
1078
1155
  },
1156
+ "ExternalExecutionId":{"type":"string"},
1157
+ "ExternalExecutionSummary":{"type":"string"},
1079
1158
  "FailureDetails":{
1080
1159
  "type":"structure",
1081
1160
  "required":[
@@ -1331,6 +1410,23 @@
1331
1410
  },
1332
1411
  "exception":true
1333
1412
  },
1413
+ "ListActionExecutionsInput":{
1414
+ "type":"structure",
1415
+ "required":["pipelineName"],
1416
+ "members":{
1417
+ "pipelineName":{"shape":"PipelineName"},
1418
+ "filter":{"shape":"ActionExecutionFilter"},
1419
+ "maxResults":{"shape":"MaxResults"},
1420
+ "nextToken":{"shape":"NextToken"}
1421
+ }
1422
+ },
1423
+ "ListActionExecutionsOutput":{
1424
+ "type":"structure",
1425
+ "members":{
1426
+ "actionExecutionDetails":{"shape":"ActionExecutionDetailList"},
1427
+ "nextToken":{"shape":"NextToken"}
1428
+ }
1429
+ },
1334
1430
  "ListActionTypesInput":{
1335
1431
  "type":"structure",
1336
1432
  "members":{
@@ -1794,7 +1890,24 @@
1794
1890
  "objectKey":{"shape":"S3ObjectKey"}
1795
1891
  }
1796
1892
  },
1893
+ "S3Bucket":{
1894
+ "type":"string",
1895
+ "max":63,
1896
+ "min":3
1897
+ },
1797
1898
  "S3BucketName":{"type":"string"},
1899
+ "S3Key":{
1900
+ "type":"string",
1901
+ "max":100,
1902
+ "min":1
1903
+ },
1904
+ "S3Location":{
1905
+ "type":"structure",
1906
+ "members":{
1907
+ "bucket":{"shape":"S3Bucket"},
1908
+ "key":{"shape":"S3Key"}
1909
+ }
1910
+ },
1798
1911
  "S3ObjectKey":{"type":"string"},
1799
1912
  "SecretAccessKey":{"type":"string"},
1800
1913
  "SessionToken":{"type":"string"},
@@ -6,6 +6,7 @@
6
6
  "jsonVersion":"1.1",
7
7
  "protocol":"json",
8
8
  "serviceFullName":"Amazon Cognito Identity",
9
+ "serviceId":"Cognito Identity",
9
10
  "signatureVersion":"v4",
10
11
  "targetPrefix":"AWSCognitoIdentityService",
11
12
  "uid":"cognito-identity-2014-06-30"
@@ -208,6 +209,23 @@
208
209
  {"shape":"InvalidParameterException"},
209
210
  {"shape":"NotAuthorizedException"},
210
211
  {"shape":"TooManyRequestsException"},
212
+ {"shape":"ResourceNotFoundException"},
213
+ {"shape":"InternalErrorException"}
214
+ ]
215
+ },
216
+ "ListTagsForResource":{
217
+ "name":"ListTagsForResource",
218
+ "http":{
219
+ "method":"POST",
220
+ "requestUri":"/"
221
+ },
222
+ "input":{"shape":"ListTagsForResourceInput"},
223
+ "output":{"shape":"ListTagsForResourceResponse"},
224
+ "errors":[
225
+ {"shape":"InvalidParameterException"},
226
+ {"shape":"ResourceNotFoundException"},
227
+ {"shape":"NotAuthorizedException"},
228
+ {"shape":"TooManyRequestsException"},
211
229
  {"shape":"InternalErrorException"}
212
230
  ]
213
231
  },
@@ -262,6 +280,22 @@
262
280
  {"shape":"ConcurrentModificationException"}
263
281
  ]
264
282
  },
283
+ "TagResource":{
284
+ "name":"TagResource",
285
+ "http":{
286
+ "method":"POST",
287
+ "requestUri":"/"
288
+ },
289
+ "input":{"shape":"TagResourceInput"},
290
+ "output":{"shape":"TagResourceResponse"},
291
+ "errors":[
292
+ {"shape":"InvalidParameterException"},
293
+ {"shape":"ResourceNotFoundException"},
294
+ {"shape":"NotAuthorizedException"},
295
+ {"shape":"TooManyRequestsException"},
296
+ {"shape":"InternalErrorException"}
297
+ ]
298
+ },
265
299
  "UnlinkDeveloperIdentity":{
266
300
  "name":"UnlinkDeveloperIdentity",
267
301
  "http":{
@@ -295,6 +329,22 @@
295
329
  {"shape":"ExternalServiceException"}
296
330
  ]
297
331
  },
332
+ "UntagResource":{
333
+ "name":"UntagResource",
334
+ "http":{
335
+ "method":"POST",
336
+ "requestUri":"/"
337
+ },
338
+ "input":{"shape":"UntagResourceInput"},
339
+ "output":{"shape":"UntagResourceResponse"},
340
+ "errors":[
341
+ {"shape":"InvalidParameterException"},
342
+ {"shape":"ResourceNotFoundException"},
343
+ {"shape":"NotAuthorizedException"},
344
+ {"shape":"TooManyRequestsException"},
345
+ {"shape":"InternalErrorException"}
346
+ ]
347
+ },
298
348
  "UpdateIdentityPool":{
299
349
  "name":"UpdateIdentityPool",
300
350
  "http":{
@@ -394,7 +444,8 @@
394
444
  "DeveloperProviderName":{"shape":"DeveloperProviderName"},
395
445
  "OpenIdConnectProviderARNs":{"shape":"OIDCProviderList"},
396
446
  "CognitoIdentityProviders":{"shape":"CognitoIdentityProviderList"},
397
- "SamlProviderARNs":{"shape":"SAMLProviderList"}
447
+ "SamlProviderARNs":{"shape":"SAMLProviderList"},
448
+ "IdentityPoolTags":{"shape":"IdentityPoolTagsType"}
398
449
  }
399
450
  },
400
451
  "Credentials":{
@@ -599,7 +650,8 @@
599
650
  "DeveloperProviderName":{"shape":"DeveloperProviderName"},
600
651
  "OpenIdConnectProviderARNs":{"shape":"OIDCProviderList"},
601
652
  "CognitoIdentityProviders":{"shape":"CognitoIdentityProviderList"},
602
- "SamlProviderARNs":{"shape":"SAMLProviderList"}
653
+ "SamlProviderARNs":{"shape":"SAMLProviderList"},
654
+ "IdentityPoolTags":{"shape":"IdentityPoolTagsType"}
603
655
  }
604
656
  },
605
657
  "IdentityPoolId":{
@@ -621,6 +673,15 @@
621
673
  "IdentityPoolName":{"shape":"IdentityPoolName"}
622
674
  }
623
675
  },
676
+ "IdentityPoolTagsListType":{
677
+ "type":"list",
678
+ "member":{"shape":"TagKeysType"}
679
+ },
680
+ "IdentityPoolTagsType":{
681
+ "type":"map",
682
+ "key":{"shape":"TagKeysType"},
683
+ "value":{"shape":"TagValueType"}
684
+ },
624
685
  "IdentityPoolUnauthenticated":{"type":"boolean"},
625
686
  "IdentityPoolsList":{
626
687
  "type":"list",
@@ -713,6 +774,19 @@
713
774
  "NextToken":{"shape":"PaginationKey"}
714
775
  }
715
776
  },
777
+ "ListTagsForResourceInput":{
778
+ "type":"structure",
779
+ "required":["ResourceArn"],
780
+ "members":{
781
+ "ResourceArn":{"shape":"ARNString"}
782
+ }
783
+ },
784
+ "ListTagsForResourceResponse":{
785
+ "type":"structure",
786
+ "members":{
787
+ "Tags":{"shape":"IdentityPoolTagsType"}
788
+ }
789
+ },
716
790
  "LoginsList":{
717
791
  "type":"list",
718
792
  "member":{"shape":"IdentityProviderName"}
@@ -887,6 +961,29 @@
887
961
  }
888
962
  },
889
963
  "String":{"type":"string"},
964
+ "TagKeysType":{
965
+ "type":"string",
966
+ "max":128,
967
+ "min":1
968
+ },
969
+ "TagResourceInput":{
970
+ "type":"structure",
971
+ "required":["ResourceArn"],
972
+ "members":{
973
+ "ResourceArn":{"shape":"ARNString"},
974
+ "Tags":{"shape":"IdentityPoolTagsType"}
975
+ }
976
+ },
977
+ "TagResourceResponse":{
978
+ "type":"structure",
979
+ "members":{
980
+ }
981
+ },
982
+ "TagValueType":{
983
+ "type":"string",
984
+ "max":256,
985
+ "min":0
986
+ },
890
987
  "TokenDuration":{
891
988
  "type":"long",
892
989
  "max":86400,
@@ -938,6 +1035,19 @@
938
1035
  "type":"list",
939
1036
  "member":{"shape":"UnprocessedIdentityId"},
940
1037
  "max":60
1038
+ },
1039
+ "UntagResourceInput":{
1040
+ "type":"structure",
1041
+ "required":["ResourceArn"],
1042
+ "members":{
1043
+ "ResourceArn":{"shape":"ARNString"},
1044
+ "TagKeys":{"shape":"IdentityPoolTagsListType"}
1045
+ }
1046
+ },
1047
+ "UntagResourceResponse":{
1048
+ "type":"structure",
1049
+ "members":{
1050
+ }
941
1051
  }
942
1052
  }
943
1053
  }
@@ -200,9 +200,7 @@
200
200
  "required":[
201
201
  "ProductCode",
202
202
  "Timestamp",
203
- "UsageDimension",
204
- "UsageQuantity",
205
- "DryRun"
203
+ "UsageDimension"
206
204
  ],
207
205
  "members":{
208
206
  "ProductCode":{"shape":"ProductCode"},
@@ -294,7 +292,7 @@
294
292
  },
295
293
  "UsageQuantity":{
296
294
  "type":"integer",
297
- "max":1000000,
295
+ "max":2147483647,
298
296
  "min":0
299
297
  },
300
298
  "UsageRecord":{
@@ -302,8 +300,7 @@
302
300
  "required":[
303
301
  "Timestamp",
304
302
  "CustomerIdentifier",
305
- "Dimension",
306
- "Quantity"
303
+ "Dimension"
307
304
  ],
308
305
  "members":{
309
306
  "Timestamp":{"shape":"Timestamp"},
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.243'
2
+ VERSION = '2.11.244'
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.243
4
+ version: 2.11.244
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-03-19 00:00:00.000000000 Z
11
+ date: 2019-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath