aws-sdk-core 2.11.168 → 2.11.169

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: b9f48d964c745ce3f0f515c2e5f1fc44fa7207d1
4
- data.tar.gz: 29b6114319ed6a2be00eef057a7a8d70c9dd22df
3
+ metadata.gz: 47f2978eb678c8207de7e491b9df5c24c3b04d5d
4
+ data.tar.gz: 3e24ad43b5b9ebcc83914aa8c5505f4c090a71f5
5
5
  SHA512:
6
- metadata.gz: 8a97c2d8b5728361882e1c20c0d6d75df678c30d4eeef62cb1e83ad8995979389f34ca1031a6b1a1b49564a1223b9264dd041bd76d52c7a43604158a44aaa3ef
7
- data.tar.gz: e89442461a9fbf558cf85a9e9af1029bbea57a9872da103c90b7825ef273098deb6d307782d8edf0600d78eca2b949cd3bd7b2114774c905243b6da82789512c
6
+ metadata.gz: 71a1ce7e3d7a0f84e6b4767239d421438e91488498e92099ef9e4cbae340639a6a1af3942c216dd7917173afca8146f8151c93c7d8c5e232d9e56ce5f59ea4c8
7
+ data.tar.gz: 85eb49f38d5f963ec571898453c2a5a485c661526a0c3cb9902091848a9b45e39603da6ef4f9228953d15ed8436271cb90d5c1021a47360e516e89ab83afca3f
@@ -381,7 +381,6 @@
381
381
  "maxvCpus",
382
382
  "instanceTypes",
383
383
  "subnets",
384
- "securityGroupIds",
385
384
  "instanceRole"
386
385
  ],
387
386
  "members":{
@@ -397,7 +396,8 @@
397
396
  "instanceRole":{"shape":"String"},
398
397
  "tags":{"shape":"TagsMap"},
399
398
  "bidPercentage":{"shape":"Integer"},
400
- "spotIamFleetRole":{"shape":"String"}
399
+ "spotIamFleetRole":{"shape":"String"},
400
+ "launchTemplate":{"shape":"LaunchTemplateSpecification"}
401
401
  }
402
402
  },
403
403
  "ComputeResourceUpdate":{
@@ -782,6 +782,14 @@
782
782
  "value":{"shape":"String"}
783
783
  }
784
784
  },
785
+ "LaunchTemplateSpecification":{
786
+ "type":"structure",
787
+ "members":{
788
+ "launchTemplateId":{"shape":"String"},
789
+ "launchTemplateName":{"shape":"String"},
790
+ "version":{"shape":"String"}
791
+ }
792
+ },
785
793
  "ListJobsRequest":{
786
794
  "type":"structure",
787
795
  "members":{
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "DescribeComputeEnvironments",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ }
10
+ ]
11
+ }
@@ -116,6 +116,22 @@
116
116
  {"shape":"NotFoundException"}
117
117
  ]
118
118
  },
119
+ "DescribeBudgetPerformanceHistory":{
120
+ "name":"DescribeBudgetPerformanceHistory",
121
+ "http":{
122
+ "method":"POST",
123
+ "requestUri":"/"
124
+ },
125
+ "input":{"shape":"DescribeBudgetPerformanceHistoryRequest"},
126
+ "output":{"shape":"DescribeBudgetPerformanceHistoryResponse"},
127
+ "errors":[
128
+ {"shape":"InternalErrorException"},
129
+ {"shape":"InvalidParameterException"},
130
+ {"shape":"NotFoundException"},
131
+ {"shape":"InvalidNextTokenException"},
132
+ {"shape":"ExpiredNextTokenException"}
133
+ ]
134
+ },
119
135
  "DescribeBudgets":{
120
136
  "name":"DescribeBudgets",
121
137
  "http":{
@@ -213,7 +229,8 @@
213
229
  "AccountId":{
214
230
  "type":"string",
215
231
  "max":12,
216
- "min":12
232
+ "min":12,
233
+ "pattern":"\\d{12}"
217
234
  },
218
235
  "Budget":{
219
236
  "type":"structure",
@@ -230,14 +247,27 @@
230
247
  "TimeUnit":{"shape":"TimeUnit"},
231
248
  "TimePeriod":{"shape":"TimePeriod"},
232
249
  "CalculatedSpend":{"shape":"CalculatedSpend"},
233
- "BudgetType":{"shape":"BudgetType"}
250
+ "BudgetType":{"shape":"BudgetType"},
251
+ "LastUpdatedTime":{"shape":"GenericTimestamp"}
234
252
  }
235
253
  },
236
254
  "BudgetName":{
237
255
  "type":"string",
238
256
  "max":100,
257
+ "min":1,
239
258
  "pattern":"[^:\\\\]+"
240
259
  },
260
+ "BudgetPerformanceHistory":{
261
+ "type":"structure",
262
+ "members":{
263
+ "BudgetName":{"shape":"BudgetName"},
264
+ "BudgetType":{"shape":"BudgetType"},
265
+ "CostFilters":{"shape":"CostFilters"},
266
+ "CostTypes":{"shape":"CostTypes"},
267
+ "TimeUnit":{"shape":"TimeUnit"},
268
+ "BudgetedAndActualAmountsList":{"shape":"BudgetedAndActualAmountsList"}
269
+ }
270
+ },
241
271
  "BudgetType":{
242
272
  "type":"string",
243
273
  "enum":[
@@ -247,6 +277,18 @@
247
277
  "RI_COVERAGE"
248
278
  ]
249
279
  },
280
+ "BudgetedAndActualAmounts":{
281
+ "type":"structure",
282
+ "members":{
283
+ "BudgetedAmount":{"shape":"Spend"},
284
+ "ActualAmount":{"shape":"Spend"},
285
+ "TimePeriod":{"shape":"TimePeriod"}
286
+ }
287
+ },
288
+ "BudgetedAndActualAmountsList":{
289
+ "type":"list",
290
+ "member":{"shape":"BudgetedAndActualAmounts"}
291
+ },
250
292
  "Budgets":{
251
293
  "type":"list",
252
294
  "member":{"shape":"Budget"}
@@ -406,6 +448,27 @@
406
448
  "members":{
407
449
  }
408
450
  },
451
+ "DescribeBudgetPerformanceHistoryRequest":{
452
+ "type":"structure",
453
+ "required":[
454
+ "AccountId",
455
+ "BudgetName"
456
+ ],
457
+ "members":{
458
+ "AccountId":{"shape":"AccountId"},
459
+ "BudgetName":{"shape":"BudgetName"},
460
+ "TimePeriod":{"shape":"TimePeriod"},
461
+ "MaxResults":{"shape":"MaxResults"},
462
+ "NextToken":{"shape":"GenericString"}
463
+ }
464
+ },
465
+ "DescribeBudgetPerformanceHistoryResponse":{
466
+ "type":"structure",
467
+ "members":{
468
+ "BudgetPerformanceHistory":{"shape":"BudgetPerformanceHistory"},
469
+ "NextToken":{"shape":"GenericString"}
470
+ }
471
+ },
409
472
  "DescribeBudgetRequest":{
410
473
  "type":"structure",
411
474
  "required":[
@@ -499,7 +562,12 @@
499
562
  },
500
563
  "exception":true
501
564
  },
502
- "GenericString":{"type":"string"},
565
+ "GenericString":{
566
+ "type":"string",
567
+ "max":2147483647,
568
+ "min":0,
569
+ "pattern":".*"
570
+ },
503
571
  "GenericTimestamp":{"type":"timestamp"},
504
572
  "InternalErrorException":{
505
573
  "type":"structure",
@@ -546,13 +614,21 @@
546
614
  "NotificationType":{"shape":"NotificationType"},
547
615
  "ComparisonOperator":{"shape":"ComparisonOperator"},
548
616
  "Threshold":{"shape":"NotificationThreshold"},
549
- "ThresholdType":{"shape":"ThresholdType"}
617
+ "ThresholdType":{"shape":"ThresholdType"},
618
+ "NotificationState":{"shape":"NotificationState"}
550
619
  }
551
620
  },
621
+ "NotificationState":{
622
+ "type":"string",
623
+ "enum":[
624
+ "OK",
625
+ "ALARM"
626
+ ]
627
+ },
552
628
  "NotificationThreshold":{
553
629
  "type":"double",
554
630
  "max":1000000000,
555
- "min":0.1
631
+ "min":0
556
632
  },
557
633
  "NotificationType":{
558
634
  "type":"string",
@@ -587,6 +663,8 @@
587
663
  },
588
664
  "NumericValue":{
589
665
  "type":"string",
666
+ "max":2147483647,
667
+ "min":1,
590
668
  "pattern":"([0-9]*\\.)?[0-9]+"
591
669
  },
592
670
  "Spend":{
@@ -613,7 +691,10 @@
613
691
  },
614
692
  "SubscriberAddress":{
615
693
  "type":"string",
616
- "min":1
694
+ "max":2147483647,
695
+ "min":1,
696
+ "pattern":".*",
697
+ "sensitive":true
617
698
  },
618
699
  "Subscribers":{
619
700
  "type":"list",
@@ -653,7 +734,9 @@
653
734
  },
654
735
  "UnitValue":{
655
736
  "type":"string",
656
- "min":1
737
+ "max":2147483647,
738
+ "min":1,
739
+ "pattern":".*"
657
740
  },
658
741
  "UpdateBudgetRequest":{
659
742
  "type":"structure",
@@ -197,6 +197,18 @@
197
197
  {"shape":"ChangeSetNotFoundException"}
198
198
  ]
199
199
  },
200
+ "DescribeStackDriftDetectionStatus":{
201
+ "name":"DescribeStackDriftDetectionStatus",
202
+ "http":{
203
+ "method":"POST",
204
+ "requestUri":"/"
205
+ },
206
+ "input":{"shape":"DescribeStackDriftDetectionStatusInput"},
207
+ "output":{
208
+ "shape":"DescribeStackDriftDetectionStatusOutput",
209
+ "resultWrapper":"DescribeStackDriftDetectionStatusResult"
210
+ }
211
+ },
200
212
  "DescribeStackEvents":{
201
213
  "name":"DescribeStackEvents",
202
214
  "http":{
@@ -237,6 +249,18 @@
237
249
  "resultWrapper":"DescribeStackResourceResult"
238
250
  }
239
251
  },
252
+ "DescribeStackResourceDrifts":{
253
+ "name":"DescribeStackResourceDrifts",
254
+ "http":{
255
+ "method":"POST",
256
+ "requestUri":"/"
257
+ },
258
+ "input":{"shape":"DescribeStackResourceDriftsInput"},
259
+ "output":{
260
+ "shape":"DescribeStackResourceDriftsOutput",
261
+ "resultWrapper":"DescribeStackResourceDriftsResult"
262
+ }
263
+ },
240
264
  "DescribeStackResources":{
241
265
  "name":"DescribeStackResources",
242
266
  "http":{
@@ -292,6 +316,30 @@
292
316
  "resultWrapper":"DescribeStacksResult"
293
317
  }
294
318
  },
319
+ "DetectStackDrift":{
320
+ "name":"DetectStackDrift",
321
+ "http":{
322
+ "method":"POST",
323
+ "requestUri":"/"
324
+ },
325
+ "input":{"shape":"DetectStackDriftInput"},
326
+ "output":{
327
+ "shape":"DetectStackDriftOutput",
328
+ "resultWrapper":"DetectStackDriftResult"
329
+ }
330
+ },
331
+ "DetectStackResourceDrift":{
332
+ "name":"DetectStackResourceDrift",
333
+ "http":{
334
+ "method":"POST",
335
+ "requestUri":"/"
336
+ },
337
+ "input":{"shape":"DetectStackResourceDriftInput"},
338
+ "output":{
339
+ "shape":"DetectStackResourceDriftOutput",
340
+ "resultWrapper":"DetectStackResourceDriftResult"
341
+ }
342
+ },
295
343
  "EstimateTemplateCost":{
296
344
  "name":"EstimateTemplateCost",
297
345
  "http":{
@@ -649,6 +697,16 @@
649
697
  "exception":true
650
698
  },
651
699
  "Arn":{"type":"string"},
700
+ "BoxedInteger":{
701
+ "type":"integer",
702
+ "box":true
703
+ },
704
+ "BoxedMaxResults":{
705
+ "type":"integer",
706
+ "box":true,
707
+ "max":100,
708
+ "min":1
709
+ },
652
710
  "CancelUpdateStackInput":{
653
711
  "type":"structure",
654
712
  "required":["StackName"],
@@ -1020,6 +1078,31 @@
1020
1078
  "NextToken":{"shape":"NextToken"}
1021
1079
  }
1022
1080
  },
1081
+ "DescribeStackDriftDetectionStatusInput":{
1082
+ "type":"structure",
1083
+ "required":["StackDriftDetectionId"],
1084
+ "members":{
1085
+ "StackDriftDetectionId":{"shape":"StackDriftDetectionId"}
1086
+ }
1087
+ },
1088
+ "DescribeStackDriftDetectionStatusOutput":{
1089
+ "type":"structure",
1090
+ "required":[
1091
+ "StackId",
1092
+ "StackDriftDetectionId",
1093
+ "DetectionStatus",
1094
+ "Timestamp"
1095
+ ],
1096
+ "members":{
1097
+ "StackId":{"shape":"StackId"},
1098
+ "StackDriftDetectionId":{"shape":"StackDriftDetectionId"},
1099
+ "StackDriftStatus":{"shape":"StackDriftStatus"},
1100
+ "DetectionStatus":{"shape":"StackDriftDetectionStatus"},
1101
+ "DetectionStatusReason":{"shape":"StackDriftDetectionStatusReason"},
1102
+ "DriftedStackResourceCount":{"shape":"BoxedInteger"},
1103
+ "Timestamp":{"shape":"Timestamp"}
1104
+ }
1105
+ },
1023
1106
  "DescribeStackEventsInput":{
1024
1107
  "type":"structure",
1025
1108
  "members":{
@@ -1053,6 +1136,24 @@
1053
1136
  "StackInstance":{"shape":"StackInstance"}
1054
1137
  }
1055
1138
  },
1139
+ "DescribeStackResourceDriftsInput":{
1140
+ "type":"structure",
1141
+ "required":["StackName"],
1142
+ "members":{
1143
+ "StackName":{"shape":"StackNameOrId"},
1144
+ "StackResourceDriftStatusFilters":{"shape":"StackResourceDriftStatusFilters"},
1145
+ "NextToken":{"shape":"NextToken"},
1146
+ "MaxResults":{"shape":"BoxedMaxResults"}
1147
+ }
1148
+ },
1149
+ "DescribeStackResourceDriftsOutput":{
1150
+ "type":"structure",
1151
+ "required":["StackResourceDrifts"],
1152
+ "members":{
1153
+ "StackResourceDrifts":{"shape":"StackResourceDrifts"},
1154
+ "NextToken":{"shape":"NextToken"}
1155
+ }
1156
+ },
1056
1157
  "DescribeStackResourceInput":{
1057
1158
  "type":"structure",
1058
1159
  "required":[
@@ -1133,6 +1234,47 @@
1133
1234
  "max":1024,
1134
1235
  "min":1
1135
1236
  },
1237
+ "DetectStackDriftInput":{
1238
+ "type":"structure",
1239
+ "required":["StackName"],
1240
+ "members":{
1241
+ "StackName":{"shape":"StackNameOrId"},
1242
+ "LogicalResourceIds":{"shape":"LogicalResourceIds"}
1243
+ }
1244
+ },
1245
+ "DetectStackDriftOutput":{
1246
+ "type":"structure",
1247
+ "required":["StackDriftDetectionId"],
1248
+ "members":{
1249
+ "StackDriftDetectionId":{"shape":"StackDriftDetectionId"}
1250
+ }
1251
+ },
1252
+ "DetectStackResourceDriftInput":{
1253
+ "type":"structure",
1254
+ "required":[
1255
+ "StackName",
1256
+ "LogicalResourceId"
1257
+ ],
1258
+ "members":{
1259
+ "StackName":{"shape":"StackNameOrId"},
1260
+ "LogicalResourceId":{"shape":"LogicalResourceId"}
1261
+ }
1262
+ },
1263
+ "DetectStackResourceDriftOutput":{
1264
+ "type":"structure",
1265
+ "required":["StackResourceDrift"],
1266
+ "members":{
1267
+ "StackResourceDrift":{"shape":"StackResourceDrift"}
1268
+ }
1269
+ },
1270
+ "DifferenceType":{
1271
+ "type":"string",
1272
+ "enum":[
1273
+ "ADD",
1274
+ "REMOVE",
1275
+ "NOT_EQUAL"
1276
+ ]
1277
+ },
1136
1278
  "DisableRollback":{"type":"boolean"},
1137
1279
  "EnableTerminationProtection":{"type":"boolean"},
1138
1280
  "EstimateTemplateCostInput":{
@@ -1298,6 +1440,7 @@
1298
1440
  },
1299
1441
  "exception":true
1300
1442
  },
1443
+ "Key":{"type":"string"},
1301
1444
  "LastUpdatedTime":{"type":"timestamp"},
1302
1445
  "LimitExceededException":{
1303
1446
  "type":"structure",
@@ -1454,6 +1597,12 @@
1454
1597
  }
1455
1598
  },
1456
1599
  "LogicalResourceId":{"type":"string"},
1600
+ "LogicalResourceIds":{
1601
+ "type":"list",
1602
+ "member":{"shape":"LogicalResourceId"},
1603
+ "max":200,
1604
+ "min":1
1605
+ },
1457
1606
  "MaxConcurrentCount":{
1458
1607
  "type":"integer",
1459
1608
  "min":1
@@ -1591,7 +1740,45 @@
1591
1740
  "member":{"shape":"Parameter"}
1592
1741
  },
1593
1742
  "PhysicalResourceId":{"type":"string"},
1743
+ "PhysicalResourceIdContext":{
1744
+ "type":"list",
1745
+ "member":{"shape":"PhysicalResourceIdContextKeyValuePair"},
1746
+ "max":5
1747
+ },
1748
+ "PhysicalResourceIdContextKeyValuePair":{
1749
+ "type":"structure",
1750
+ "required":[
1751
+ "Key",
1752
+ "Value"
1753
+ ],
1754
+ "members":{
1755
+ "Key":{"shape":"Key"},
1756
+ "Value":{"shape":"Value"}
1757
+ }
1758
+ },
1759
+ "Properties":{"type":"string"},
1760
+ "PropertyDifference":{
1761
+ "type":"structure",
1762
+ "required":[
1763
+ "PropertyPath",
1764
+ "ExpectedValue",
1765
+ "ActualValue",
1766
+ "DifferenceType"
1767
+ ],
1768
+ "members":{
1769
+ "PropertyPath":{"shape":"PropertyPath"},
1770
+ "ExpectedValue":{"shape":"PropertyValue"},
1771
+ "ActualValue":{"shape":"PropertyValue"},
1772
+ "DifferenceType":{"shape":"DifferenceType"}
1773
+ }
1774
+ },
1775
+ "PropertyDifferences":{
1776
+ "type":"list",
1777
+ "member":{"shape":"PropertyDifference"}
1778
+ },
1594
1779
  "PropertyName":{"type":"string"},
1780
+ "PropertyPath":{"type":"string"},
1781
+ "PropertyValue":{"type":"string"},
1595
1782
  "Reason":{"type":"string"},
1596
1783
  "Region":{"type":"string"},
1597
1784
  "RegionList":{
@@ -1794,9 +1981,49 @@
1794
1981
  "Tags":{"shape":"Tags"},
1795
1982
  "EnableTerminationProtection":{"shape":"EnableTerminationProtection"},
1796
1983
  "ParentId":{"shape":"StackId"},
1797
- "RootId":{"shape":"StackId"}
1984
+ "RootId":{"shape":"StackId"},
1985
+ "DriftInformation":{"shape":"StackDriftInformation"}
1986
+ }
1987
+ },
1988
+ "StackDriftDetectionId":{
1989
+ "type":"string",
1990
+ "max":36,
1991
+ "min":1
1992
+ },
1993
+ "StackDriftDetectionStatus":{
1994
+ "type":"string",
1995
+ "enum":[
1996
+ "DETECTION_IN_PROGRESS",
1997
+ "DETECTION_FAILED",
1998
+ "DETECTION_COMPLETE"
1999
+ ]
2000
+ },
2001
+ "StackDriftDetectionStatusReason":{"type":"string"},
2002
+ "StackDriftInformation":{
2003
+ "type":"structure",
2004
+ "required":["StackDriftStatus"],
2005
+ "members":{
2006
+ "StackDriftStatus":{"shape":"StackDriftStatus"},
2007
+ "LastCheckTimestamp":{"shape":"Timestamp"}
1798
2008
  }
1799
2009
  },
2010
+ "StackDriftInformationSummary":{
2011
+ "type":"structure",
2012
+ "required":["StackDriftStatus"],
2013
+ "members":{
2014
+ "StackDriftStatus":{"shape":"StackDriftStatus"},
2015
+ "LastCheckTimestamp":{"shape":"Timestamp"}
2016
+ }
2017
+ },
2018
+ "StackDriftStatus":{
2019
+ "type":"string",
2020
+ "enum":[
2021
+ "DRIFTED",
2022
+ "IN_SYNC",
2023
+ "UNKNOWN",
2024
+ "NOT_CHECKED"
2025
+ ]
2026
+ },
1800
2027
  "StackEvent":{
1801
2028
  "type":"structure",
1802
2029
  "required":[
@@ -1913,7 +2140,8 @@
1913
2140
  "Timestamp":{"shape":"Timestamp"},
1914
2141
  "ResourceStatus":{"shape":"ResourceStatus"},
1915
2142
  "ResourceStatusReason":{"shape":"ResourceStatusReason"},
1916
- "Description":{"shape":"Description"}
2143
+ "Description":{"shape":"Description"},
2144
+ "DriftInformation":{"shape":"StackResourceDriftInformation"}
1917
2145
  }
1918
2146
  },
1919
2147
  "StackResourceDetail":{
@@ -1934,9 +2162,67 @@
1934
2162
  "ResourceStatus":{"shape":"ResourceStatus"},
1935
2163
  "ResourceStatusReason":{"shape":"ResourceStatusReason"},
1936
2164
  "Description":{"shape":"Description"},
1937
- "Metadata":{"shape":"Metadata"}
2165
+ "Metadata":{"shape":"Metadata"},
2166
+ "DriftInformation":{"shape":"StackResourceDriftInformation"}
2167
+ }
2168
+ },
2169
+ "StackResourceDrift":{
2170
+ "type":"structure",
2171
+ "required":[
2172
+ "StackId",
2173
+ "LogicalResourceId",
2174
+ "ResourceType",
2175
+ "StackResourceDriftStatus",
2176
+ "Timestamp"
2177
+ ],
2178
+ "members":{
2179
+ "StackId":{"shape":"StackId"},
2180
+ "LogicalResourceId":{"shape":"LogicalResourceId"},
2181
+ "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2182
+ "PhysicalResourceIdContext":{"shape":"PhysicalResourceIdContext"},
2183
+ "ResourceType":{"shape":"ResourceType"},
2184
+ "ExpectedProperties":{"shape":"Properties"},
2185
+ "ActualProperties":{"shape":"Properties"},
2186
+ "PropertyDifferences":{"shape":"PropertyDifferences"},
2187
+ "StackResourceDriftStatus":{"shape":"StackResourceDriftStatus"},
2188
+ "Timestamp":{"shape":"Timestamp"}
2189
+ }
2190
+ },
2191
+ "StackResourceDriftInformation":{
2192
+ "type":"structure",
2193
+ "required":["StackResourceDriftStatus"],
2194
+ "members":{
2195
+ "StackResourceDriftStatus":{"shape":"StackResourceDriftStatus"},
2196
+ "LastCheckTimestamp":{"shape":"Timestamp"}
2197
+ }
2198
+ },
2199
+ "StackResourceDriftInformationSummary":{
2200
+ "type":"structure",
2201
+ "required":["StackResourceDriftStatus"],
2202
+ "members":{
2203
+ "StackResourceDriftStatus":{"shape":"StackResourceDriftStatus"},
2204
+ "LastCheckTimestamp":{"shape":"Timestamp"}
1938
2205
  }
1939
2206
  },
2207
+ "StackResourceDriftStatus":{
2208
+ "type":"string",
2209
+ "enum":[
2210
+ "IN_SYNC",
2211
+ "MODIFIED",
2212
+ "DELETED",
2213
+ "NOT_CHECKED"
2214
+ ]
2215
+ },
2216
+ "StackResourceDriftStatusFilters":{
2217
+ "type":"list",
2218
+ "member":{"shape":"StackResourceDriftStatus"},
2219
+ "max":4,
2220
+ "min":1
2221
+ },
2222
+ "StackResourceDrifts":{
2223
+ "type":"list",
2224
+ "member":{"shape":"StackResourceDrift"}
2225
+ },
1940
2226
  "StackResourceSummaries":{
1941
2227
  "type":"list",
1942
2228
  "member":{"shape":"StackResourceSummary"}
@@ -1955,7 +2241,8 @@
1955
2241
  "ResourceType":{"shape":"ResourceType"},
1956
2242
  "LastUpdatedTimestamp":{"shape":"Timestamp"},
1957
2243
  "ResourceStatus":{"shape":"ResourceStatus"},
1958
- "ResourceStatusReason":{"shape":"ResourceStatusReason"}
2244
+ "ResourceStatusReason":{"shape":"ResourceStatusReason"},
2245
+ "DriftInformation":{"shape":"StackResourceDriftInformationSummary"}
1959
2246
  }
1960
2247
  },
1961
2248
  "StackResources":{
@@ -2156,7 +2443,8 @@
2156
2443
  "StackStatus":{"shape":"StackStatus"},
2157
2444
  "StackStatusReason":{"shape":"StackStatusReason"},
2158
2445
  "ParentId":{"shape":"StackId"},
2159
- "RootId":{"shape":"StackId"}
2446
+ "RootId":{"shape":"StackId"},
2447
+ "DriftInformation":{"shape":"StackDriftInformationSummary"}
2160
2448
  }
2161
2449
  },
2162
2450
  "Stacks":{
@@ -2391,6 +2679,7 @@
2391
2679
  "DeclaredTransforms":{"shape":"TransformsList"}
2392
2680
  }
2393
2681
  },
2682
+ "Value":{"type":"string"},
2394
2683
  "Version":{"type":"string"}
2395
2684
  }
2396
2685
  }
@@ -5,6 +5,11 @@
5
5
  "output_token": "NextToken",
6
6
  "result_key": "StackEvents"
7
7
  },
8
+ "DescribeStackResourceDrifts": {
9
+ "input_token": "NextToken",
10
+ "limit_key": "MaxResults",
11
+ "output_token": "NextToken"
12
+ },
8
13
  "DescribeStackResources": {
9
14
  "result_key": "StackResources"
10
15
  },
@@ -7,6 +7,7 @@
7
7
  "protocol":"json",
8
8
  "serviceAbbreviation":"CodePipeline",
9
9
  "serviceFullName":"AWS CodePipeline",
10
+ "serviceId":"CodePipeline",
10
11
  "signatureVersion":"v4",
11
12
  "targetPrefix":"CodePipeline_20150709",
12
13
  "uid":"codepipeline-2015-07-09"
@@ -456,6 +457,11 @@
456
457
  }
457
458
  },
458
459
  "shapes":{
460
+ "AWSRegionName":{
461
+ "type":"string",
462
+ "max":30,
463
+ "min":4
464
+ },
459
465
  "AWSSessionCredentials":{
460
466
  "type":"structure",
461
467
  "required":[
@@ -599,7 +605,8 @@
599
605
  "configuration":{"shape":"ActionConfigurationMap"},
600
606
  "outputArtifacts":{"shape":"OutputArtifactList"},
601
607
  "inputArtifacts":{"shape":"InputArtifactList"},
602
- "roleArn":{"shape":"RoleArn"}
608
+ "roleArn":{"shape":"RoleArn"},
609
+ "region":{"shape":"AWSRegionName"}
603
610
  }
604
611
  },
605
612
  "ActionExecution":{
@@ -838,6 +845,11 @@
838
845
  "min":3,
839
846
  "pattern":"[a-zA-Z0-9\\-\\.]+"
840
847
  },
848
+ "ArtifactStoreMap":{
849
+ "type":"map",
850
+ "key":{"shape":"AWSRegionName"},
851
+ "value":{"shape":"ArtifactStore"}
852
+ },
841
853
  "ArtifactStoreType":{
842
854
  "type":"string",
843
855
  "enum":["S3"]
@@ -867,6 +879,12 @@
867
879
  "type":"string",
868
880
  "pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
869
881
  },
882
+ "ClientRequestToken":{
883
+ "type":"string",
884
+ "max":128,
885
+ "min":1,
886
+ "pattern":"^[a-zA-Z0-9-]+$"
887
+ },
870
888
  "ClientToken":{
871
889
  "type":"string",
872
890
  "max":256,
@@ -1464,13 +1482,13 @@
1464
1482
  "required":[
1465
1483
  "name",
1466
1484
  "roleArn",
1467
- "artifactStore",
1468
1485
  "stages"
1469
1486
  ],
1470
1487
  "members":{
1471
1488
  "name":{"shape":"PipelineName"},
1472
1489
  "roleArn":{"shape":"RoleArn"},
1473
1490
  "artifactStore":{"shape":"ArtifactStore"},
1491
+ "artifactStores":{"shape":"ArtifactStoreMap"},
1474
1492
  "stages":{"shape":"PipelineStageDeclarationList"},
1475
1493
  "version":{"shape":"PipelineVersion"}
1476
1494
  }
@@ -1885,7 +1903,11 @@
1885
1903
  "type":"structure",
1886
1904
  "required":["name"],
1887
1905
  "members":{
1888
- "name":{"shape":"PipelineName"}
1906
+ "name":{"shape":"PipelineName"},
1907
+ "clientRequestToken":{
1908
+ "shape":"ClientRequestToken",
1909
+ "idempotencyToken":true
1910
+ }
1889
1911
  }
1890
1912
  },
1891
1913
  "StartPipelineExecutionOutput":{
@@ -0,0 +1,18 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListPipelines",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "GetPipeline",
12
+ "input": {
13
+ "name": "fake-pipeline"
14
+ },
15
+ "errorExpectedFromService": true
16
+ }
17
+ ]
18
+ }
@@ -103,6 +103,36 @@
103
103
  {"shape":"ServiceUnavailableException"}
104
104
  ]
105
105
  },
106
+ "StartDeliveryStreamEncryption":{
107
+ "name":"StartDeliveryStreamEncryption",
108
+ "http":{
109
+ "method":"POST",
110
+ "requestUri":"/"
111
+ },
112
+ "input":{"shape":"StartDeliveryStreamEncryptionInput"},
113
+ "output":{"shape":"StartDeliveryStreamEncryptionOutput"},
114
+ "errors":[
115
+ {"shape":"ResourceNotFoundException"},
116
+ {"shape":"ResourceInUseException"},
117
+ {"shape":"InvalidArgumentException"},
118
+ {"shape":"LimitExceededException"}
119
+ ]
120
+ },
121
+ "StopDeliveryStreamEncryption":{
122
+ "name":"StopDeliveryStreamEncryption",
123
+ "http":{
124
+ "method":"POST",
125
+ "requestUri":"/"
126
+ },
127
+ "input":{"shape":"StopDeliveryStreamEncryptionInput"},
128
+ "output":{"shape":"StopDeliveryStreamEncryptionOutput"},
129
+ "errors":[
130
+ {"shape":"ResourceNotFoundException"},
131
+ {"shape":"ResourceInUseException"},
132
+ {"shape":"InvalidArgumentException"},
133
+ {"shape":"LimitExceededException"}
134
+ ]
135
+ },
106
136
  "TagDeliveryStream":{
107
137
  "name":"TagDeliveryStream",
108
138
  "http":{
@@ -232,7 +262,8 @@
232
262
  "ExtendedS3DestinationConfiguration":{"shape":"ExtendedS3DestinationConfiguration"},
233
263
  "RedshiftDestinationConfiguration":{"shape":"RedshiftDestinationConfiguration"},
234
264
  "ElasticsearchDestinationConfiguration":{"shape":"ElasticsearchDestinationConfiguration"},
235
- "SplunkDestinationConfiguration":{"shape":"SplunkDestinationConfiguration"}
265
+ "SplunkDestinationConfiguration":{"shape":"SplunkDestinationConfiguration"},
266
+ "Tags":{"shape":"TagDeliveryStreamInputTagList"}
236
267
  }
237
268
  },
238
269
  "CreateDeliveryStreamOutput":{
@@ -294,6 +325,7 @@
294
325
  "DeliveryStreamName":{"shape":"DeliveryStreamName"},
295
326
  "DeliveryStreamARN":{"shape":"DeliveryStreamARN"},
296
327
  "DeliveryStreamStatus":{"shape":"DeliveryStreamStatus"},
328
+ "DeliveryStreamEncryptionConfiguration":{"shape":"DeliveryStreamEncryptionConfiguration"},
297
329
  "DeliveryStreamType":{"shape":"DeliveryStreamType"},
298
330
  "VersionId":{"shape":"DeliveryStreamVersionId"},
299
331
  "CreateTimestamp":{"shape":"Timestamp"},
@@ -303,6 +335,21 @@
303
335
  "HasMoreDestinations":{"shape":"BooleanObject"}
304
336
  }
305
337
  },
338
+ "DeliveryStreamEncryptionConfiguration":{
339
+ "type":"structure",
340
+ "members":{
341
+ "Status":{"shape":"DeliveryStreamEncryptionStatus"}
342
+ }
343
+ },
344
+ "DeliveryStreamEncryptionStatus":{
345
+ "type":"string",
346
+ "enum":[
347
+ "ENABLED",
348
+ "ENABLING",
349
+ "DISABLED",
350
+ "DISABLING"
351
+ ]
352
+ },
306
353
  "DeliveryStreamName":{
307
354
  "type":"string",
308
355
  "max":64,
@@ -889,6 +936,7 @@
889
936
  ],
890
937
  "members":{
891
938
  "FailedPutCount":{"shape":"NonNegativeIntegerObject"},
939
+ "Encrypted":{"shape":"BooleanObject"},
892
940
  "RequestResponses":{"shape":"PutRecordBatchResponseEntryList"}
893
941
  }
894
942
  },
@@ -927,7 +975,8 @@
927
975
  "type":"structure",
928
976
  "required":["RecordId"],
929
977
  "members":{
930
- "RecordId":{"shape":"PutResponseRecordId"}
978
+ "RecordId":{"shape":"PutResponseRecordId"},
979
+ "Encrypted":{"shape":"BooleanObject"}
931
980
  }
932
981
  },
933
982
  "PutResponseRecordId":{
@@ -1198,6 +1247,30 @@
1198
1247
  "AllEvents"
1199
1248
  ]
1200
1249
  },
1250
+ "StartDeliveryStreamEncryptionInput":{
1251
+ "type":"structure",
1252
+ "required":["DeliveryStreamName"],
1253
+ "members":{
1254
+ "DeliveryStreamName":{"shape":"DeliveryStreamName"}
1255
+ }
1256
+ },
1257
+ "StartDeliveryStreamEncryptionOutput":{
1258
+ "type":"structure",
1259
+ "members":{
1260
+ }
1261
+ },
1262
+ "StopDeliveryStreamEncryptionInput":{
1263
+ "type":"structure",
1264
+ "required":["DeliveryStreamName"],
1265
+ "members":{
1266
+ "DeliveryStreamName":{"shape":"DeliveryStreamName"}
1267
+ }
1268
+ },
1269
+ "StopDeliveryStreamEncryptionOutput":{
1270
+ "type":"structure",
1271
+ "members":{
1272
+ }
1273
+ },
1201
1274
  "Tag":{
1202
1275
  "type":"structure",
1203
1276
  "required":["Key"],
@@ -0,0 +1,18 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListDeliveryStreams",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "DescribeDeliveryStream",
12
+ "input": {
13
+ "DeliveryStreamName": "bogus-stream-name"
14
+ },
15
+ "errorExpectedFromService": true
16
+ }
17
+ ]
18
+ }
@@ -330,6 +330,7 @@
330
330
  "en-IN",
331
331
  "en-US",
332
332
  "es-ES",
333
+ "es-MX",
333
334
  "es-US",
334
335
  "fr-CA",
335
336
  "fr-FR",
@@ -779,7 +780,10 @@
779
780
  "Takumi",
780
781
  "Seoyeon",
781
782
  "Aditi",
782
- "Zhiyu"
783
+ "Zhiyu",
784
+ "Bianca",
785
+ "Lucia",
786
+ "Mia"
783
787
  ]
784
788
  },
785
789
  "VoiceList":{
@@ -225,6 +225,26 @@
225
225
  {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"}
226
226
  ]
227
227
  },
228
+ "CreateDBClusterEndpoint":{
229
+ "name":"CreateDBClusterEndpoint",
230
+ "http":{
231
+ "method":"POST",
232
+ "requestUri":"/"
233
+ },
234
+ "input":{"shape":"CreateDBClusterEndpointMessage"},
235
+ "output":{
236
+ "shape":"DBClusterEndpoint",
237
+ "resultWrapper":"CreateDBClusterEndpointResult"
238
+ },
239
+ "errors":[
240
+ {"shape":"DBClusterEndpointQuotaExceededFault"},
241
+ {"shape":"DBClusterEndpointAlreadyExistsFault"},
242
+ {"shape":"DBClusterNotFoundFault"},
243
+ {"shape":"InvalidDBClusterStateFault"},
244
+ {"shape":"DBInstanceNotFoundFault"},
245
+ {"shape":"InvalidDBInstanceStateFault"}
246
+ ]
247
+ },
228
248
  "CreateDBClusterParameterGroup":{
229
249
  "name":"CreateDBClusterParameterGroup",
230
250
  "http":{
@@ -451,6 +471,23 @@
451
471
  {"shape":"InvalidDBClusterSnapshotStateFault"}
452
472
  ]
453
473
  },
474
+ "DeleteDBClusterEndpoint":{
475
+ "name":"DeleteDBClusterEndpoint",
476
+ "http":{
477
+ "method":"POST",
478
+ "requestUri":"/"
479
+ },
480
+ "input":{"shape":"DeleteDBClusterEndpointMessage"},
481
+ "output":{
482
+ "shape":"DBClusterEndpoint",
483
+ "resultWrapper":"DeleteDBClusterEndpointResult"
484
+ },
485
+ "errors":[
486
+ {"shape":"InvalidDBClusterEndpointStateFault"},
487
+ {"shape":"DBClusterEndpointNotFoundFault"},
488
+ {"shape":"InvalidDBClusterStateFault"}
489
+ ]
490
+ },
454
491
  "DeleteDBClusterParameterGroup":{
455
492
  "name":"DeleteDBClusterParameterGroup",
456
493
  "http":{
@@ -622,6 +659,21 @@
622
659
  {"shape":"DBClusterBacktrackNotFoundFault"}
623
660
  ]
624
661
  },
662
+ "DescribeDBClusterEndpoints":{
663
+ "name":"DescribeDBClusterEndpoints",
664
+ "http":{
665
+ "method":"POST",
666
+ "requestUri":"/"
667
+ },
668
+ "input":{"shape":"DescribeDBClusterEndpointsMessage"},
669
+ "output":{
670
+ "shape":"DBClusterEndpointMessage",
671
+ "resultWrapper":"DescribeDBClusterEndpointsResult"
672
+ },
673
+ "errors":[
674
+ {"shape":"DBClusterNotFoundFault"}
675
+ ]
676
+ },
625
677
  "DescribeDBClusterParameterGroups":{
626
678
  "name":"DescribeDBClusterParameterGroups",
627
679
  "http":{
@@ -1096,6 +1148,25 @@
1096
1148
  {"shape":"DBClusterAlreadyExistsFault"}
1097
1149
  ]
1098
1150
  },
1151
+ "ModifyDBClusterEndpoint":{
1152
+ "name":"ModifyDBClusterEndpoint",
1153
+ "http":{
1154
+ "method":"POST",
1155
+ "requestUri":"/"
1156
+ },
1157
+ "input":{"shape":"ModifyDBClusterEndpointMessage"},
1158
+ "output":{
1159
+ "shape":"DBClusterEndpoint",
1160
+ "resultWrapper":"ModifyDBClusterEndpointResult"
1161
+ },
1162
+ "errors":[
1163
+ {"shape":"InvalidDBClusterStateFault"},
1164
+ {"shape":"InvalidDBClusterEndpointStateFault"},
1165
+ {"shape":"DBClusterEndpointNotFoundFault"},
1166
+ {"shape":"DBInstanceNotFoundFault"},
1167
+ {"shape":"InvalidDBInstanceStateFault"}
1168
+ ]
1169
+ },
1099
1170
  "ModifyDBClusterParameterGroup":{
1100
1171
  "name":"ModifyDBClusterParameterGroup",
1101
1172
  "http":{
@@ -2049,6 +2120,21 @@
2049
2120
  "OptionGroup":{"shape":"OptionGroup"}
2050
2121
  }
2051
2122
  },
2123
+ "CreateDBClusterEndpointMessage":{
2124
+ "type":"structure",
2125
+ "required":[
2126
+ "DBClusterIdentifier",
2127
+ "DBClusterEndpointIdentifier",
2128
+ "EndpointType"
2129
+ ],
2130
+ "members":{
2131
+ "DBClusterIdentifier":{"shape":"String"},
2132
+ "DBClusterEndpointIdentifier":{"shape":"String"},
2133
+ "EndpointType":{"shape":"String"},
2134
+ "StaticMembers":{"shape":"StringList"},
2135
+ "ExcludedMembers":{"shape":"StringList"}
2136
+ }
2137
+ },
2052
2138
  "CreateDBClusterMessage":{
2053
2139
  "type":"structure",
2054
2140
  "required":[
@@ -2367,6 +2453,7 @@
2367
2453
  "EarliestRestorableTime":{"shape":"TStamp"},
2368
2454
  "Endpoint":{"shape":"String"},
2369
2455
  "ReaderEndpoint":{"shape":"String"},
2456
+ "CustomEndpoints":{"shape":"StringList"},
2370
2457
  "MultiAZ":{"shape":"Boolean"},
2371
2458
  "Engine":{"shape":"String"},
2372
2459
  "EngineVersion":{"shape":"String"},
@@ -2457,6 +2544,68 @@
2457
2544
  "TimeoutAction":{"shape":"String"}
2458
2545
  }
2459
2546
  },
2547
+ "DBClusterEndpoint":{
2548
+ "type":"structure",
2549
+ "members":{
2550
+ "DBClusterEndpointIdentifier":{"shape":"String"},
2551
+ "DBClusterIdentifier":{"shape":"String"},
2552
+ "DBClusterEndpointResourceIdentifier":{"shape":"String"},
2553
+ "Endpoint":{"shape":"String"},
2554
+ "Status":{"shape":"String"},
2555
+ "EndpointType":{"shape":"String"},
2556
+ "CustomEndpointType":{"shape":"String"},
2557
+ "StaticMembers":{"shape":"StringList"},
2558
+ "ExcludedMembers":{"shape":"StringList"},
2559
+ "DBClusterEndpointArn":{"shape":"String"}
2560
+ }
2561
+ },
2562
+ "DBClusterEndpointAlreadyExistsFault":{
2563
+ "type":"structure",
2564
+ "members":{
2565
+ },
2566
+ "error":{
2567
+ "code":"DBClusterEndpointAlreadyExistsFault",
2568
+ "httpStatusCode":400,
2569
+ "senderFault":true
2570
+ },
2571
+ "exception":true
2572
+ },
2573
+ "DBClusterEndpointList":{
2574
+ "type":"list",
2575
+ "member":{
2576
+ "shape":"DBClusterEndpoint",
2577
+ "locationName":"DBClusterEndpointList"
2578
+ }
2579
+ },
2580
+ "DBClusterEndpointMessage":{
2581
+ "type":"structure",
2582
+ "members":{
2583
+ "Marker":{"shape":"String"},
2584
+ "DBClusterEndpoints":{"shape":"DBClusterEndpointList"}
2585
+ }
2586
+ },
2587
+ "DBClusterEndpointNotFoundFault":{
2588
+ "type":"structure",
2589
+ "members":{
2590
+ },
2591
+ "error":{
2592
+ "code":"DBClusterEndpointNotFoundFault",
2593
+ "httpStatusCode":400,
2594
+ "senderFault":true
2595
+ },
2596
+ "exception":true
2597
+ },
2598
+ "DBClusterEndpointQuotaExceededFault":{
2599
+ "type":"structure",
2600
+ "members":{
2601
+ },
2602
+ "error":{
2603
+ "code":"DBClusterEndpointQuotaExceededFault",
2604
+ "httpStatusCode":403,
2605
+ "senderFault":true
2606
+ },
2607
+ "exception":true
2608
+ },
2460
2609
  "DBClusterList":{
2461
2610
  "type":"list",
2462
2611
  "member":{
@@ -3232,6 +3381,13 @@
3232
3381
  },
3233
3382
  "exception":true
3234
3383
  },
3384
+ "DeleteDBClusterEndpointMessage":{
3385
+ "type":"structure",
3386
+ "required":["DBClusterEndpointIdentifier"],
3387
+ "members":{
3388
+ "DBClusterEndpointIdentifier":{"shape":"String"}
3389
+ }
3390
+ },
3235
3391
  "DeleteDBClusterMessage":{
3236
3392
  "type":"structure",
3237
3393
  "required":["DBClusterIdentifier"],
@@ -3361,6 +3517,16 @@
3361
3517
  "Marker":{"shape":"String"}
3362
3518
  }
3363
3519
  },
3520
+ "DescribeDBClusterEndpointsMessage":{
3521
+ "type":"structure",
3522
+ "members":{
3523
+ "DBClusterIdentifier":{"shape":"String"},
3524
+ "DBClusterEndpointIdentifier":{"shape":"String"},
3525
+ "Filters":{"shape":"FilterList"},
3526
+ "MaxRecords":{"shape":"IntegerOptional"},
3527
+ "Marker":{"shape":"String"}
3528
+ }
3529
+ },
3364
3530
  "DescribeDBClusterParameterGroupsMessage":{
3365
3531
  "type":"structure",
3366
3532
  "members":{
@@ -4000,6 +4166,17 @@
4000
4166
  },
4001
4167
  "exception":true
4002
4168
  },
4169
+ "InvalidDBClusterEndpointStateFault":{
4170
+ "type":"structure",
4171
+ "members":{
4172
+ },
4173
+ "error":{
4174
+ "code":"InvalidDBClusterEndpointStateFault",
4175
+ "httpStatusCode":400,
4176
+ "senderFault":true
4177
+ },
4178
+ "exception":true
4179
+ },
4003
4180
  "InvalidDBClusterSnapshotStateFault":{
4004
4181
  "type":"structure",
4005
4182
  "members":{
@@ -4218,6 +4395,16 @@
4218
4395
  "TimeoutAction":{"shape":"String"}
4219
4396
  }
4220
4397
  },
4398
+ "ModifyDBClusterEndpointMessage":{
4399
+ "type":"structure",
4400
+ "required":["DBClusterEndpointIdentifier"],
4401
+ "members":{
4402
+ "DBClusterEndpointIdentifier":{"shape":"String"},
4403
+ "EndpointType":{"shape":"String"},
4404
+ "StaticMembers":{"shape":"StringList"},
4405
+ "ExcludedMembers":{"shape":"StringList"}
4406
+ }
4407
+ },
4221
4408
  "ModifyDBClusterMessage":{
4222
4409
  "type":"structure",
4223
4410
  "required":["DBClusterIdentifier"],
@@ -5590,6 +5777,10 @@
5590
5777
  "exception":true
5591
5778
  },
5592
5779
  "String":{"type":"string"},
5780
+ "StringList":{
5781
+ "type":"list",
5782
+ "member":{"shape":"String"}
5783
+ },
5593
5784
  "Subnet":{
5594
5785
  "type":"structure",
5595
5786
  "members":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.168'
2
+ VERSION = '2.11.169'
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.168
4
+ version: 2.11.169
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-11-09 00:00:00.000000000 Z
11
+ date: 2018-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -93,6 +93,7 @@ files:
93
93
  - apis/batch/2016-08-10/api-2.json
94
94
  - apis/batch/2016-08-10/examples-1.json
95
95
  - apis/batch/2016-08-10/paginators-1.json
96
+ - apis/batch/2016-08-10/smoke.json
96
97
  - apis/budgets/2016-10-20/api-2.json
97
98
  - apis/budgets/2016-10-20/examples-1.json
98
99
  - apis/budgets/2016-10-20/paginators-1.json
@@ -183,6 +184,7 @@ files:
183
184
  - apis/codepipeline/2015-07-09/api-2.json
184
185
  - apis/codepipeline/2015-07-09/examples-1.json
185
186
  - apis/codepipeline/2015-07-09/paginators-1.json
187
+ - apis/codepipeline/2015-07-09/smoke.json
186
188
  - apis/codestar/2017-04-19/api-2.json
187
189
  - apis/codestar/2017-04-19/examples-1.json
188
190
  - apis/codestar/2017-04-19/paginators-1.json
@@ -332,6 +334,7 @@ files:
332
334
  - apis/firehose/2015-08-04/api-2.json
333
335
  - apis/firehose/2015-08-04/examples-1.json
334
336
  - apis/firehose/2015-08-04/paginators-1.json
337
+ - apis/firehose/2015-08-04/smoke.json
335
338
  - apis/fms/2018-01-01/api-2.json
336
339
  - apis/fms/2018-01-01/examples-1.json
337
340
  - apis/fms/2018-01-01/paginators-1.json