aws-sdk-core 2.11.1 → 2.11.2

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: 12d0504dcbd101169c96d0930bbd054eae14d21c
4
- data.tar.gz: 43b0f27fa69a781cc84c6aeb7badec978ed4cfdf
3
+ metadata.gz: 8769f44de867b0e32811e5b9cfd40474f26d8892
4
+ data.tar.gz: 56774b0b1c09a4c1f92680678704f4592969799f
5
5
  SHA512:
6
- metadata.gz: 4092841e5caa995e7f97d91c1442b33413a4d9b2fc4e2db7ff792da075a296d8562d47811a7144ccf4515c7af4336f3cce3d697bc272d07bf1e79eb92d349b2c
7
- data.tar.gz: 5c47ab4ecb1865db53c758fa89d7b622c71c682f45bda588d5c66342f5bf9419c26220ebde281036982a6b0195eb0f7e67762514be21f2ce9e5a3b78797eaea7
6
+ metadata.gz: a004b6f863a3be515f3995a6462ff0c8b8cabcda72d2e6ed8ee55de111e3c9ec5e7f45c266c499bcfc92aa567970db49b6274a79b0f467552861ea1a3aec2318
7
+ data.tar.gz: 7a76c30566eaaa59970c0a9691e91e2ccf1b97450f80b2f509ee9970217f9dc2fc659745df128e9b6e4fd2bd14afaa50cbdbb4c648d42c1fcc703d70d69ab92b
@@ -7,6 +7,7 @@
7
7
  "protocol":"json",
8
8
  "serviceAbbreviation":"CodeCommit",
9
9
  "serviceFullName":"AWS CodeCommit",
10
+ "serviceId":"CodeCommit",
10
11
  "signatureVersion":"v4",
11
12
  "targetPrefix":"CodeCommit_20150413",
12
13
  "uid":"codecommit-2015-04-13"
@@ -616,6 +617,44 @@
616
617
  ],
617
618
  "idempotent":true
618
619
  },
620
+ "PutFile":{
621
+ "name":"PutFile",
622
+ "http":{
623
+ "method":"POST",
624
+ "requestUri":"/"
625
+ },
626
+ "input":{"shape":"PutFileInput"},
627
+ "output":{"shape":"PutFileOutput"},
628
+ "errors":[
629
+ {"shape":"RepositoryNameRequiredException"},
630
+ {"shape":"InvalidRepositoryNameException"},
631
+ {"shape":"RepositoryDoesNotExistException"},
632
+ {"shape":"ParentCommitIdRequiredException"},
633
+ {"shape":"InvalidParentCommitIdException"},
634
+ {"shape":"ParentCommitDoesNotExistException"},
635
+ {"shape":"ParentCommitIdOutdatedException"},
636
+ {"shape":"FileContentRequiredException"},
637
+ {"shape":"FileContentSizeLimitExceededException"},
638
+ {"shape":"PathRequiredException"},
639
+ {"shape":"InvalidPathException"},
640
+ {"shape":"BranchNameRequiredException"},
641
+ {"shape":"InvalidBranchNameException"},
642
+ {"shape":"BranchDoesNotExistException"},
643
+ {"shape":"BranchNameIsTagNameException"},
644
+ {"shape":"InvalidFileModeException"},
645
+ {"shape":"NameLengthExceededException"},
646
+ {"shape":"InvalidEmailException"},
647
+ {"shape":"CommitMessageLengthExceededException"},
648
+ {"shape":"EncryptionIntegrityChecksFailedException"},
649
+ {"shape":"EncryptionKeyAccessDeniedException"},
650
+ {"shape":"EncryptionKeyDisabledException"},
651
+ {"shape":"EncryptionKeyNotFoundException"},
652
+ {"shape":"EncryptionKeyUnavailableException"},
653
+ {"shape":"SameFileContentException"},
654
+ {"shape":"FileNameConflictsWithDirectoryNameException"},
655
+ {"shape":"DirectoryNameConflictsWithFileNameException"}
656
+ ]
657
+ },
619
658
  "PutRepositoryTriggers":{
620
659
  "name":"PutRepositoryTriggers",
621
660
  "http":{
@@ -888,6 +927,12 @@
888
927
  },
889
928
  "exception":true
890
929
  },
930
+ "BranchNameIsTagNameException":{
931
+ "type":"structure",
932
+ "members":{
933
+ },
934
+ "exception":true
935
+ },
891
936
  "BranchNameList":{
892
937
  "type":"list",
893
938
  "member":{"shape":"BranchName"}
@@ -1033,6 +1078,12 @@
1033
1078
  },
1034
1079
  "exception":true
1035
1080
  },
1081
+ "CommitMessageLengthExceededException":{
1082
+ "type":"structure",
1083
+ "members":{
1084
+ },
1085
+ "exception":true
1086
+ },
1036
1087
  "CommitName":{"type":"string"},
1037
1088
  "CommitRequiredException":{
1038
1089
  "type":"structure",
@@ -1177,6 +1228,12 @@
1177
1228
  "type":"list",
1178
1229
  "member":{"shape":"Difference"}
1179
1230
  },
1231
+ "DirectoryNameConflictsWithFileNameException":{
1232
+ "type":"structure",
1233
+ "members":{
1234
+ },
1235
+ "exception":true
1236
+ },
1180
1237
  "Email":{"type":"string"},
1181
1238
  "EncryptionIntegrityChecksFailedException":{
1182
1239
  "type":"structure",
@@ -1210,6 +1267,36 @@
1210
1267
  "exception":true
1211
1268
  },
1212
1269
  "EventDate":{"type":"timestamp"},
1270
+ "FileContent":{
1271
+ "type":"blob",
1272
+ "max":6291456
1273
+ },
1274
+ "FileContentRequiredException":{
1275
+ "type":"structure",
1276
+ "members":{
1277
+ },
1278
+ "exception":true
1279
+ },
1280
+ "FileContentSizeLimitExceededException":{
1281
+ "type":"structure",
1282
+ "members":{
1283
+ },
1284
+ "exception":true
1285
+ },
1286
+ "FileModeTypeEnum":{
1287
+ "type":"string",
1288
+ "enum":[
1289
+ "EXECUTABLE",
1290
+ "NORMAL",
1291
+ "SYMLINK"
1292
+ ]
1293
+ },
1294
+ "FileNameConflictsWithDirectoryNameException":{
1295
+ "type":"structure",
1296
+ "members":{
1297
+ },
1298
+ "exception":true
1299
+ },
1213
1300
  "FileTooLargeException":{
1214
1301
  "type":"structure",
1215
1302
  "members":{
@@ -1482,12 +1569,24 @@
1482
1569
  },
1483
1570
  "exception":true
1484
1571
  },
1572
+ "InvalidEmailException":{
1573
+ "type":"structure",
1574
+ "members":{
1575
+ },
1576
+ "exception":true
1577
+ },
1485
1578
  "InvalidFileLocationException":{
1486
1579
  "type":"structure",
1487
1580
  "members":{
1488
1581
  },
1489
1582
  "exception":true
1490
1583
  },
1584
+ "InvalidFileModeException":{
1585
+ "type":"structure",
1586
+ "members":{
1587
+ },
1588
+ "exception":true
1589
+ },
1491
1590
  "InvalidFilePositionException":{
1492
1591
  "type":"structure",
1493
1592
  "members":{
@@ -1512,6 +1611,12 @@
1512
1611
  },
1513
1612
  "exception":true
1514
1613
  },
1614
+ "InvalidParentCommitIdException":{
1615
+ "type":"structure",
1616
+ "members":{
1617
+ },
1618
+ "exception":true
1619
+ },
1515
1620
  "InvalidPathException":{
1516
1621
  "type":"structure",
1517
1622
  "members":{
@@ -1772,6 +1877,12 @@
1772
1877
  "exception":true
1773
1878
  },
1774
1879
  "Name":{"type":"string"},
1880
+ "NameLengthExceededException":{
1881
+ "type":"structure",
1882
+ "members":{
1883
+ },
1884
+ "exception":true
1885
+ },
1775
1886
  "NextToken":{"type":"string"},
1776
1887
  "ObjectId":{"type":"string"},
1777
1888
  "OrderEnum":{
@@ -1781,6 +1892,24 @@
1781
1892
  "descending"
1782
1893
  ]
1783
1894
  },
1895
+ "ParentCommitDoesNotExistException":{
1896
+ "type":"structure",
1897
+ "members":{
1898
+ },
1899
+ "exception":true
1900
+ },
1901
+ "ParentCommitIdOutdatedException":{
1902
+ "type":"structure",
1903
+ "members":{
1904
+ },
1905
+ "exception":true
1906
+ },
1907
+ "ParentCommitIdRequiredException":{
1908
+ "type":"structure",
1909
+ "members":{
1910
+ },
1911
+ "exception":true
1912
+ },
1784
1913
  "ParentList":{
1785
1914
  "type":"list",
1786
1915
  "member":{"shape":"ObjectId"}
@@ -1998,6 +2127,39 @@
1998
2127
  "type":"list",
1999
2128
  "member":{"shape":"PullRequestTarget"}
2000
2129
  },
2130
+ "PutFileInput":{
2131
+ "type":"structure",
2132
+ "required":[
2133
+ "repositoryName",
2134
+ "branchName",
2135
+ "fileContent",
2136
+ "filePath"
2137
+ ],
2138
+ "members":{
2139
+ "repositoryName":{"shape":"RepositoryName"},
2140
+ "branchName":{"shape":"BranchName"},
2141
+ "fileContent":{"shape":"FileContent"},
2142
+ "filePath":{"shape":"Path"},
2143
+ "fileMode":{"shape":"FileModeTypeEnum"},
2144
+ "parentCommitId":{"shape":"CommitId"},
2145
+ "commitMessage":{"shape":"Message"},
2146
+ "name":{"shape":"Name"},
2147
+ "email":{"shape":"Email"}
2148
+ }
2149
+ },
2150
+ "PutFileOutput":{
2151
+ "type":"structure",
2152
+ "required":[
2153
+ "commitId",
2154
+ "blobId",
2155
+ "treeId"
2156
+ ],
2157
+ "members":{
2158
+ "commitId":{"shape":"ObjectId"},
2159
+ "blobId":{"shape":"ObjectId"},
2160
+ "treeId":{"shape":"ObjectId"}
2161
+ }
2162
+ },
2001
2163
  "PutRepositoryTriggersInput":{
2002
2164
  "type":"structure",
2003
2165
  "required":[
@@ -2207,6 +2369,12 @@
2207
2369
  },
2208
2370
  "exception":true
2209
2371
  },
2372
+ "SameFileContentException":{
2373
+ "type":"structure",
2374
+ "members":{
2375
+ },
2376
+ "exception":true
2377
+ },
2210
2378
  "SortByEnum":{
2211
2379
  "type":"string",
2212
2380
  "enum":[
@@ -4635,6 +4635,10 @@
4635
4635
  "members":{
4636
4636
  "Description":{"shape":"String"},
4637
4637
  "VolumeId":{"shape":"String"},
4638
+ "TagSpecifications":{
4639
+ "shape":"TagSpecificationList",
4640
+ "locationName":"TagSpecification"
4641
+ },
4638
4642
  "DryRun":{
4639
4643
  "shape":"Boolean",
4640
4644
  "locationName":"dryRun"
@@ -84,6 +84,30 @@
84
84
  "shape" : "ForbiddenException"
85
85
  } ]
86
86
  },
87
+ "DeleteApplication" : {
88
+ "name" : "DeleteApplication",
89
+ "http" : {
90
+ "method" : "DELETE",
91
+ "requestUri" : "/applications/{applicationId}",
92
+ "responseCode" : 204
93
+ },
94
+ "input" : {
95
+ "shape" : "DeleteApplicationRequest"
96
+ },
97
+ "errors" : [ {
98
+ "shape" : "BadRequestException"
99
+ }, {
100
+ "shape" : "InternalServerErrorException"
101
+ }, {
102
+ "shape" : "ForbiddenException"
103
+ }, {
104
+ "shape" : "NotFoundException"
105
+ }, {
106
+ "shape" : "TooManyRequestsException"
107
+ }, {
108
+ "shape" : "ConflictException"
109
+ } ]
110
+ },
87
111
  "GetApplication" : {
88
112
  "name" : "GetApplication",
89
113
  "http" : {
@@ -255,8 +279,12 @@
255
279
  "shape" : "__string",
256
280
  "locationName" : "description"
257
281
  },
282
+ "HomePageUrl" : {
283
+ "shape" : "__string",
284
+ "locationName" : "homePageUrl"
285
+ },
258
286
  "Labels" : {
259
- "shape" : "ListOf__string",
287
+ "shape" : "__listOf__string",
260
288
  "locationName" : "labels"
261
289
  },
262
290
  "LicenseUrl" : {
@@ -279,46 +307,50 @@
279
307
  "shape" : "Version",
280
308
  "locationName" : "version"
281
309
  }
282
- }
310
+ },
311
+ "required" : [ "Description", "Author", "ApplicationId", "Name" ]
283
312
  },
284
313
  "ApplicationPage" : {
285
314
  "type" : "structure",
286
315
  "members" : {
287
316
  "Applications" : {
288
- "shape" : "ListOfApplicationSummary",
317
+ "shape" : "__listOfApplicationSummary",
289
318
  "locationName" : "applications"
290
319
  },
291
320
  "NextToken" : {
292
321
  "shape" : "__string",
293
322
  "locationName" : "nextToken"
294
323
  }
295
- }
324
+ },
325
+ "required" : [ "Applications" ]
296
326
  },
297
327
  "ApplicationPolicy" : {
298
328
  "type" : "structure",
299
329
  "members" : {
300
330
  "Statements" : {
301
- "shape" : "ListOfApplicationPolicyStatement",
331
+ "shape" : "__listOfApplicationPolicyStatement",
302
332
  "locationName" : "statements"
303
333
  }
304
- }
334
+ },
335
+ "required" : [ "Statements" ]
305
336
  },
306
337
  "ApplicationPolicyStatement" : {
307
338
  "type" : "structure",
308
339
  "members" : {
309
340
  "Actions" : {
310
- "shape" : "ListOf__string",
341
+ "shape" : "__listOf__string",
311
342
  "locationName" : "actions"
312
343
  },
313
344
  "Principals" : {
314
- "shape" : "ListOf__string",
345
+ "shape" : "__listOf__string",
315
346
  "locationName" : "principals"
316
347
  },
317
348
  "StatementId" : {
318
349
  "shape" : "__string",
319
350
  "locationName" : "statementId"
320
351
  }
321
- }
352
+ },
353
+ "required" : [ "Principals", "Actions" ]
322
354
  },
323
355
  "ApplicationSummary" : {
324
356
  "type" : "structure",
@@ -339,8 +371,12 @@
339
371
  "shape" : "__string",
340
372
  "locationName" : "description"
341
373
  },
374
+ "HomePageUrl" : {
375
+ "shape" : "__string",
376
+ "locationName" : "homePageUrl"
377
+ },
342
378
  "Labels" : {
343
- "shape" : "ListOf__string",
379
+ "shape" : "__listOf__string",
344
380
  "locationName" : "labels"
345
381
  },
346
382
  "Name" : {
@@ -351,7 +387,8 @@
351
387
  "shape" : "__string",
352
388
  "locationName" : "spdxLicenseId"
353
389
  }
354
- }
390
+ },
391
+ "required" : [ "Description", "Author", "ApplicationId", "Name" ]
355
392
  },
356
393
  "ApplicationVersionPage" : {
357
394
  "type" : "structure",
@@ -361,10 +398,11 @@
361
398
  "locationName" : "nextToken"
362
399
  },
363
400
  "Versions" : {
364
- "shape" : "ListOfVersionSummary",
401
+ "shape" : "__listOfVersionSummary",
365
402
  "locationName" : "versions"
366
403
  }
367
- }
404
+ },
405
+ "required" : [ "Versions" ]
368
406
  },
369
407
  "BadRequestException" : {
370
408
  "type" : "structure",
@@ -402,7 +440,8 @@
402
440
  "shape" : "__string",
403
441
  "locationName" : "stackId"
404
442
  }
405
- }
443
+ },
444
+ "required" : [ "ChangeSetId", "ApplicationId", "StackId", "SemanticVersion" ]
406
445
  },
407
446
  "ConflictException" : {
408
447
  "type" : "structure",
@@ -432,8 +471,12 @@
432
471
  "shape" : "__string",
433
472
  "locationName" : "description"
434
473
  },
474
+ "HomePageUrl" : {
475
+ "shape" : "__string",
476
+ "locationName" : "homePageUrl"
477
+ },
435
478
  "Labels" : {
436
- "shape" : "ListOf__string",
479
+ "shape" : "__listOf__string",
437
480
  "locationName" : "labels"
438
481
  },
439
482
  "LicenseBody" : {
@@ -476,7 +519,8 @@
476
519
  "shape" : "__string",
477
520
  "locationName" : "templateUrl"
478
521
  }
479
- }
522
+ },
523
+ "required" : [ "Description", "Name", "Author" ]
480
524
  },
481
525
  "CreateApplicationRequest" : {
482
526
  "type" : "structure",
@@ -489,8 +533,12 @@
489
533
  "shape" : "__string",
490
534
  "locationName" : "description"
491
535
  },
536
+ "HomePageUrl" : {
537
+ "shape" : "__string",
538
+ "locationName" : "homePageUrl"
539
+ },
492
540
  "Labels" : {
493
- "shape" : "ListOf__string",
541
+ "shape" : "__listOf__string",
494
542
  "locationName" : "labels"
495
543
  },
496
544
  "LicenseBody" : {
@@ -554,8 +602,12 @@
554
602
  "shape" : "__string",
555
603
  "locationName" : "description"
556
604
  },
605
+ "HomePageUrl" : {
606
+ "shape" : "__string",
607
+ "locationName" : "homePageUrl"
608
+ },
557
609
  "Labels" : {
558
- "shape" : "ListOf__string",
610
+ "shape" : "__listOf__string",
559
611
  "locationName" : "labels"
560
612
  },
561
613
  "LicenseUrl" : {
@@ -637,7 +689,7 @@
637
689
  "locationName" : "creationTime"
638
690
  },
639
691
  "ParameterDefinitions" : {
640
- "shape" : "ListOfParameterDefinition",
692
+ "shape" : "__listOfParameterDefinition",
641
693
  "locationName" : "parameterDefinitions"
642
694
  },
643
695
  "SemanticVersion" : {
@@ -658,7 +710,7 @@
658
710
  "type" : "structure",
659
711
  "members" : {
660
712
  "ParameterOverrides" : {
661
- "shape" : "ListOfParameterValue",
713
+ "shape" : "__listOfParameterValue",
662
714
  "locationName" : "parameterOverrides"
663
715
  },
664
716
  "SemanticVersion" : {
@@ -669,7 +721,8 @@
669
721
  "shape" : "__string",
670
722
  "locationName" : "stackName"
671
723
  }
672
- }
724
+ },
725
+ "required" : [ "StackName" ]
673
726
  },
674
727
  "CreateCloudFormationChangeSetRequest" : {
675
728
  "type" : "structure",
@@ -680,7 +733,7 @@
680
733
  "locationName" : "applicationId"
681
734
  },
682
735
  "ParameterOverrides" : {
683
- "shape" : "ListOfParameterValue",
736
+ "shape" : "__listOfParameterValue",
684
737
  "locationName" : "parameterOverrides"
685
738
  },
686
739
  "SemanticVersion" : {
@@ -715,6 +768,17 @@
715
768
  }
716
769
  }
717
770
  },
771
+ "DeleteApplicationRequest" : {
772
+ "type" : "structure",
773
+ "members" : {
774
+ "ApplicationId" : {
775
+ "shape" : "__string",
776
+ "location" : "uri",
777
+ "locationName" : "applicationId"
778
+ }
779
+ },
780
+ "required" : [ "ApplicationId" ]
781
+ },
718
782
  "ForbiddenException" : {
719
783
  "type" : "structure",
720
784
  "members" : {
@@ -747,7 +811,7 @@
747
811
  "type" : "structure",
748
812
  "members" : {
749
813
  "Statements" : {
750
- "shape" : "ListOfApplicationPolicyStatement",
814
+ "shape" : "__listOfApplicationPolicyStatement",
751
815
  "locationName" : "statements"
752
816
  }
753
817
  }
@@ -787,8 +851,12 @@
787
851
  "shape" : "__string",
788
852
  "locationName" : "description"
789
853
  },
854
+ "HomePageUrl" : {
855
+ "shape" : "__string",
856
+ "locationName" : "homePageUrl"
857
+ },
790
858
  "Labels" : {
791
- "shape" : "ListOf__string",
859
+ "shape" : "__listOf__string",
792
860
  "locationName" : "labels"
793
861
  },
794
862
  "LicenseUrl" : {
@@ -859,7 +927,7 @@
859
927
  "locationName" : "nextToken"
860
928
  },
861
929
  "Versions" : {
862
- "shape" : "ListOfVersionSummary",
930
+ "shape" : "__listOfVersionSummary",
863
931
  "locationName" : "versions"
864
932
  }
865
933
  }
@@ -883,7 +951,7 @@
883
951
  "type" : "structure",
884
952
  "members" : {
885
953
  "Applications" : {
886
- "shape" : "ListOfApplicationSummary",
954
+ "shape" : "__listOfApplicationSummary",
887
955
  "locationName" : "applications"
888
956
  },
889
957
  "NextToken" : {
@@ -892,42 +960,6 @@
892
960
  }
893
961
  }
894
962
  },
895
- "ListOfApplicationPolicyStatement" : {
896
- "type" : "list",
897
- "member" : {
898
- "shape" : "ApplicationPolicyStatement"
899
- }
900
- },
901
- "ListOfApplicationSummary" : {
902
- "type" : "list",
903
- "member" : {
904
- "shape" : "ApplicationSummary"
905
- }
906
- },
907
- "ListOfParameterDefinition" : {
908
- "type" : "list",
909
- "member" : {
910
- "shape" : "ParameterDefinition"
911
- }
912
- },
913
- "ListOfParameterValue" : {
914
- "type" : "list",
915
- "member" : {
916
- "shape" : "ParameterValue"
917
- }
918
- },
919
- "ListOfVersionSummary" : {
920
- "type" : "list",
921
- "member" : {
922
- "shape" : "VersionSummary"
923
- }
924
- },
925
- "ListOf__string" : {
926
- "type" : "list",
927
- "member" : {
928
- "shape" : "__string"
929
- }
930
- },
931
963
  "MaxItems" : {
932
964
  "type" : "integer",
933
965
  "min" : 1,
@@ -958,7 +990,7 @@
958
990
  "locationName" : "allowedPattern"
959
991
  },
960
992
  "AllowedValues" : {
961
- "shape" : "ListOf__string",
993
+ "shape" : "__listOf__string",
962
994
  "locationName" : "allowedValues"
963
995
  },
964
996
  "ConstraintDescription" : {
@@ -998,14 +1030,15 @@
998
1030
  "locationName" : "noEcho"
999
1031
  },
1000
1032
  "ReferencedByResources" : {
1001
- "shape" : "ListOf__string",
1033
+ "shape" : "__listOf__string",
1002
1034
  "locationName" : "referencedByResources"
1003
1035
  },
1004
1036
  "Type" : {
1005
1037
  "shape" : "__string",
1006
1038
  "locationName" : "type"
1007
1039
  }
1008
- }
1040
+ },
1041
+ "required" : [ "ReferencedByResources", "Name" ]
1009
1042
  },
1010
1043
  "ParameterValue" : {
1011
1044
  "type" : "structure",
@@ -1018,7 +1051,8 @@
1018
1051
  "shape" : "__string",
1019
1052
  "locationName" : "value"
1020
1053
  }
1021
- }
1054
+ },
1055
+ "required" : [ "Value", "Name" ]
1022
1056
  },
1023
1057
  "PutApplicationPolicyRequest" : {
1024
1058
  "type" : "structure",
@@ -1029,7 +1063,7 @@
1029
1063
  "locationName" : "applicationId"
1030
1064
  },
1031
1065
  "Statements" : {
1032
- "shape" : "ListOfApplicationPolicyStatement",
1066
+ "shape" : "__listOfApplicationPolicyStatement",
1033
1067
  "locationName" : "statements"
1034
1068
  }
1035
1069
  },
@@ -1039,7 +1073,7 @@
1039
1073
  "type" : "structure",
1040
1074
  "members" : {
1041
1075
  "Statements" : {
1042
- "shape" : "ListOfApplicationPolicyStatement",
1076
+ "shape" : "__listOfApplicationPolicyStatement",
1043
1077
  "locationName" : "statements"
1044
1078
  }
1045
1079
  }
@@ -1072,8 +1106,12 @@
1072
1106
  "shape" : "__string",
1073
1107
  "locationName" : "description"
1074
1108
  },
1109
+ "HomePageUrl" : {
1110
+ "shape" : "__string",
1111
+ "locationName" : "homePageUrl"
1112
+ },
1075
1113
  "Labels" : {
1076
- "shape" : "ListOf__string",
1114
+ "shape" : "__listOf__string",
1077
1115
  "locationName" : "labels"
1078
1116
  },
1079
1117
  "ReadmeBody" : {
@@ -1102,8 +1140,12 @@
1102
1140
  "shape" : "__string",
1103
1141
  "locationName" : "description"
1104
1142
  },
1143
+ "HomePageUrl" : {
1144
+ "shape" : "__string",
1145
+ "locationName" : "homePageUrl"
1146
+ },
1105
1147
  "Labels" : {
1106
- "shape" : "ListOf__string",
1148
+ "shape" : "__listOf__string",
1107
1149
  "locationName" : "labels"
1108
1150
  },
1109
1151
  "ReadmeBody" : {
@@ -1136,8 +1178,12 @@
1136
1178
  "shape" : "__string",
1137
1179
  "locationName" : "description"
1138
1180
  },
1181
+ "HomePageUrl" : {
1182
+ "shape" : "__string",
1183
+ "locationName" : "homePageUrl"
1184
+ },
1139
1185
  "Labels" : {
1140
- "shape" : "ListOf__string",
1186
+ "shape" : "__listOf__string",
1141
1187
  "locationName" : "labels"
1142
1188
  },
1143
1189
  "LicenseUrl" : {
@@ -1174,7 +1220,7 @@
1174
1220
  "locationName" : "creationTime"
1175
1221
  },
1176
1222
  "ParameterDefinitions" : {
1177
- "shape" : "ListOfParameterDefinition",
1223
+ "shape" : "__listOfParameterDefinition",
1178
1224
  "locationName" : "parameterDefinitions"
1179
1225
  },
1180
1226
  "SemanticVersion" : {
@@ -1189,7 +1235,8 @@
1189
1235
  "shape" : "__string",
1190
1236
  "locationName" : "templateUrl"
1191
1237
  }
1192
- }
1238
+ },
1239
+ "required" : [ "TemplateUrl", "ParameterDefinitions", "CreationTime", "ApplicationId", "SemanticVersion" ]
1193
1240
  },
1194
1241
  "VersionSummary" : {
1195
1242
  "type" : "structure",
@@ -1210,7 +1257,8 @@
1210
1257
  "shape" : "__string",
1211
1258
  "locationName" : "sourceCodeUrl"
1212
1259
  }
1213
- }
1260
+ },
1261
+ "required" : [ "CreationTime", "ApplicationId", "SemanticVersion" ]
1214
1262
  },
1215
1263
  "__boolean" : {
1216
1264
  "type" : "boolean"
@@ -1221,21 +1269,47 @@
1221
1269
  "__integer" : {
1222
1270
  "type" : "integer"
1223
1271
  },
1224
- "__string" : {
1225
- "type" : "string"
1272
+ "__listOfApplicationPolicyStatement" : {
1273
+ "type" : "list",
1274
+ "member" : {
1275
+ "shape" : "ApplicationPolicyStatement"
1276
+ }
1226
1277
  },
1227
- "__timestamp" : {
1228
- "type" : "timestamp"
1229
- }
1230
- },
1231
- "authorizers" : {
1232
- "authorization_strategy" : {
1233
- "name" : "authorization_strategy",
1234
- "type" : "provided",
1235
- "placement" : {
1236
- "location" : "header",
1237
- "name" : "Authorization"
1278
+ "__listOfApplicationSummary" : {
1279
+ "type" : "list",
1280
+ "member" : {
1281
+ "shape" : "ApplicationSummary"
1282
+ }
1283
+ },
1284
+ "__listOfParameterDefinition" : {
1285
+ "type" : "list",
1286
+ "member" : {
1287
+ "shape" : "ParameterDefinition"
1288
+ }
1289
+ },
1290
+ "__listOfParameterValue" : {
1291
+ "type" : "list",
1292
+ "member" : {
1293
+ "shape" : "ParameterValue"
1238
1294
  }
1295
+ },
1296
+ "__listOfVersionSummary" : {
1297
+ "type" : "list",
1298
+ "member" : {
1299
+ "shape" : "VersionSummary"
1300
+ }
1301
+ },
1302
+ "__listOf__string" : {
1303
+ "type" : "list",
1304
+ "member" : {
1305
+ "shape" : "__string"
1306
+ }
1307
+ },
1308
+ "__long" : {
1309
+ "type" : "long"
1310
+ },
1311
+ "__string" : {
1312
+ "type" : "string"
1239
1313
  }
1240
1314
  }
1241
- }
1315
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination" : {
3
+ "ListApplicationVersions" : {
4
+ "input_token" : "NextToken",
5
+ "output_token" : "NextToken",
6
+ "limit_key" : "MaxItems"
7
+ },
8
+ "ListApplications" : {
9
+ "input_token" : "NextToken",
10
+ "output_token" : "NextToken",
11
+ "limit_key" : "MaxItems"
12
+ }
13
+ }
14
+ }
@@ -1130,7 +1130,9 @@
1130
1130
  "ap-northeast-1" : { },
1131
1131
  "ap-southeast-1" : { },
1132
1132
  "ap-southeast-2" : { },
1133
+ "eu-central-1" : { },
1133
1134
  "eu-west-1" : { },
1135
+ "eu-west-3" : { },
1134
1136
  "us-east-1" : { },
1135
1137
  "us-west-2" : { }
1136
1138
  }
@@ -1,4 +1,5 @@
1
1
  Aws.add_service(:ServerlessApplicationRepository, {
2
2
  api: "#{Aws::API_DIR}/serverlessrepo/2017-09-08/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/serverlessrepo/2017-09-08/docs-2.json",
4
+ paginators: "#{Aws::API_DIR}/serverlessrepo/2017-09-08/paginators-1.json",
4
5
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.1'
2
+ VERSION = '2.11.2'
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.1
4
+ version: 2.11.2
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: 2018-02-20 00:00:00.000000000 Z
11
+ date: 2018-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -445,6 +445,7 @@ files:
445
445
  - apis/sdb/2009-04-15/api-2.json
446
446
  - apis/sdb/2009-04-15/paginators-1.json
447
447
  - apis/serverlessrepo/2017-09-08/api-2.json
448
+ - apis/serverlessrepo/2017-09-08/paginators-1.json
448
449
  - apis/servicecatalog/2015-12-10/api-2.json
449
450
  - apis/servicecatalog/2015-12-10/examples-1.json
450
451
  - apis/servicecatalog/2015-12-10/paginators-1.json