aws-sdk-core 2.10.118 → 2.10.119

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: 587297e81e1d644a179aa34c8a74bf112de1ec33
4
- data.tar.gz: 059f5273b121cf5047c2041ce4855f69d8534a23
3
+ metadata.gz: f2deeecb4005097301b6d07b300acbca070b7552
4
+ data.tar.gz: 54b0a626e727fce7a3f56520764fe2a0817711cf
5
5
  SHA512:
6
- metadata.gz: 3f19909a36ea7f0dac5d2bddb959cc18a4891cde6ef41cc9ca46ef981ff236553282e279dab72db93462ebe06f318e2ec79f7399df68f7831b056e1deaa102ce
7
- data.tar.gz: b11365b8ee0dc515cd97a64787ddc7239d49640365f701f52ec8be098688d0e4e29bb111f1e8310c19a5eef2f5bb36e7c2954974e89ae3de5d088322b3a2dae5
6
+ metadata.gz: 6c4494767c244319ec55fed87b234ea60946a83c95b35e9578d6ed040a8c485ab1cd3f608ad0186dd99699d2677affc0f06edb2a5dc44cacf86ccdbde93bdb81
7
+ data.tar.gz: 62610ee1dc46c385fbb381ffa72c63ad178dcee1c598f7c9e4e314301a41184d9e73d2ca1ddebb469dcf532df9b5398307e20417a345c3951ac8fcac007039f9
@@ -425,7 +425,9 @@
425
425
  "RDSReaderAverageDatabaseConnections",
426
426
  "EC2SpotFleetRequestAverageCPUUtilization",
427
427
  "EC2SpotFleetRequestAverageNetworkIn",
428
- "EC2SpotFleetRequestAverageNetworkOut"
428
+ "EC2SpotFleetRequestAverageNetworkOut",
429
+ "ECSServiceAverageCPUUtilization",
430
+ "ECSServiceAverageMemoryUtilization"
429
431
  ]
430
432
  },
431
433
  "MetricUnit":{"type":"string"},
@@ -0,0 +1,465 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-01-06",
5
+ "endpointPrefix":"autoscaling",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceFullName":"AWS Auto Scaling Plans",
9
+ "serviceId":"Auto Scaling Plans",
10
+ "signatureVersion":"v4",
11
+ "signingName":"autoscaling-plans",
12
+ "targetPrefix":"AnyScaleScalingPlannerFrontendService",
13
+ "uid":"autoscaling-plans-2018-01-06"
14
+ },
15
+ "operations":{
16
+ "CreateScalingPlan":{
17
+ "name":"CreateScalingPlan",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CreateScalingPlanRequest"},
23
+ "output":{"shape":"CreateScalingPlanResponse"},
24
+ "errors":[
25
+ {"shape":"ValidationException"},
26
+ {"shape":"LimitExceededException"},
27
+ {"shape":"ConcurrentUpdateException"},
28
+ {"shape":"InternalServiceException"}
29
+ ]
30
+ },
31
+ "DeleteScalingPlan":{
32
+ "name":"DeleteScalingPlan",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/"
36
+ },
37
+ "input":{"shape":"DeleteScalingPlanRequest"},
38
+ "output":{"shape":"DeleteScalingPlanResponse"},
39
+ "errors":[
40
+ {"shape":"ValidationException"},
41
+ {"shape":"ObjectNotFoundException"},
42
+ {"shape":"ConcurrentUpdateException"},
43
+ {"shape":"InternalServiceException"}
44
+ ]
45
+ },
46
+ "DescribeScalingPlanResources":{
47
+ "name":"DescribeScalingPlanResources",
48
+ "http":{
49
+ "method":"POST",
50
+ "requestUri":"/"
51
+ },
52
+ "input":{"shape":"DescribeScalingPlanResourcesRequest"},
53
+ "output":{"shape":"DescribeScalingPlanResourcesResponse"},
54
+ "errors":[
55
+ {"shape":"ValidationException"},
56
+ {"shape":"InvalidNextTokenException"},
57
+ {"shape":"ConcurrentUpdateException"},
58
+ {"shape":"InternalServiceException"}
59
+ ]
60
+ },
61
+ "DescribeScalingPlans":{
62
+ "name":"DescribeScalingPlans",
63
+ "http":{
64
+ "method":"POST",
65
+ "requestUri":"/"
66
+ },
67
+ "input":{"shape":"DescribeScalingPlansRequest"},
68
+ "output":{"shape":"DescribeScalingPlansResponse"},
69
+ "errors":[
70
+ {"shape":"ValidationException"},
71
+ {"shape":"InvalidNextTokenException"},
72
+ {"shape":"ConcurrentUpdateException"},
73
+ {"shape":"InternalServiceException"}
74
+ ]
75
+ }
76
+ },
77
+ "shapes":{
78
+ "ApplicationSource":{
79
+ "type":"structure",
80
+ "members":{
81
+ "CloudFormationStackARN":{"shape":"XmlString"}
82
+ }
83
+ },
84
+ "ApplicationSources":{
85
+ "type":"list",
86
+ "member":{"shape":"ApplicationSource"}
87
+ },
88
+ "ConcurrentUpdateException":{
89
+ "type":"structure",
90
+ "members":{
91
+ "Message":{"shape":"ErrorMessage"}
92
+ },
93
+ "exception":true
94
+ },
95
+ "Cooldown":{"type":"integer"},
96
+ "CreateScalingPlanRequest":{
97
+ "type":"structure",
98
+ "required":[
99
+ "ScalingPlanName",
100
+ "ApplicationSource",
101
+ "ScalingInstructions"
102
+ ],
103
+ "members":{
104
+ "ScalingPlanName":{"shape":"ScalingPlanName"},
105
+ "ApplicationSource":{"shape":"ApplicationSource"},
106
+ "ScalingInstructions":{"shape":"ScalingInstructions"}
107
+ }
108
+ },
109
+ "CreateScalingPlanResponse":{
110
+ "type":"structure",
111
+ "required":["ScalingPlanVersion"],
112
+ "members":{
113
+ "ScalingPlanVersion":{"shape":"ScalingPlanVersion"}
114
+ }
115
+ },
116
+ "CustomizedScalingMetricSpecification":{
117
+ "type":"structure",
118
+ "required":[
119
+ "MetricName",
120
+ "Namespace",
121
+ "Statistic"
122
+ ],
123
+ "members":{
124
+ "MetricName":{"shape":"MetricName"},
125
+ "Namespace":{"shape":"MetricNamespace"},
126
+ "Dimensions":{"shape":"MetricDimensions"},
127
+ "Statistic":{"shape":"MetricStatistic"},
128
+ "Unit":{"shape":"MetricUnit"}
129
+ }
130
+ },
131
+ "DeleteScalingPlanRequest":{
132
+ "type":"structure",
133
+ "required":[
134
+ "ScalingPlanName",
135
+ "ScalingPlanVersion"
136
+ ],
137
+ "members":{
138
+ "ScalingPlanName":{"shape":"ScalingPlanName"},
139
+ "ScalingPlanVersion":{"shape":"ScalingPlanVersion"}
140
+ }
141
+ },
142
+ "DeleteScalingPlanResponse":{
143
+ "type":"structure",
144
+ "members":{
145
+ }
146
+ },
147
+ "DescribeScalingPlanResourcesRequest":{
148
+ "type":"structure",
149
+ "required":[
150
+ "ScalingPlanName",
151
+ "ScalingPlanVersion"
152
+ ],
153
+ "members":{
154
+ "ScalingPlanName":{"shape":"ScalingPlanName"},
155
+ "ScalingPlanVersion":{"shape":"ScalingPlanVersion"},
156
+ "MaxResults":{"shape":"MaxResults"},
157
+ "NextToken":{"shape":"NextToken"}
158
+ }
159
+ },
160
+ "DescribeScalingPlanResourcesResponse":{
161
+ "type":"structure",
162
+ "members":{
163
+ "ScalingPlanResources":{"shape":"ScalingPlanResources"},
164
+ "NextToken":{"shape":"NextToken"}
165
+ }
166
+ },
167
+ "DescribeScalingPlansRequest":{
168
+ "type":"structure",
169
+ "members":{
170
+ "ScalingPlanNames":{"shape":"ScalingPlanNames"},
171
+ "ScalingPlanVersion":{"shape":"ScalingPlanVersion"},
172
+ "ApplicationSources":{"shape":"ApplicationSources"},
173
+ "MaxResults":{"shape":"MaxResults"},
174
+ "NextToken":{"shape":"NextToken"}
175
+ }
176
+ },
177
+ "DescribeScalingPlansResponse":{
178
+ "type":"structure",
179
+ "members":{
180
+ "ScalingPlans":{"shape":"ScalingPlans"},
181
+ "NextToken":{"shape":"NextToken"}
182
+ }
183
+ },
184
+ "DisableScaleIn":{"type":"boolean"},
185
+ "ErrorMessage":{"type":"string"},
186
+ "InternalServiceException":{
187
+ "type":"structure",
188
+ "members":{
189
+ "Message":{"shape":"ErrorMessage"}
190
+ },
191
+ "exception":true
192
+ },
193
+ "InvalidNextTokenException":{
194
+ "type":"structure",
195
+ "members":{
196
+ "Message":{"shape":"ErrorMessage"}
197
+ },
198
+ "exception":true
199
+ },
200
+ "LimitExceededException":{
201
+ "type":"structure",
202
+ "members":{
203
+ "Message":{"shape":"ErrorMessage"}
204
+ },
205
+ "exception":true
206
+ },
207
+ "MaxResults":{"type":"integer"},
208
+ "MetricDimension":{
209
+ "type":"structure",
210
+ "required":[
211
+ "Name",
212
+ "Value"
213
+ ],
214
+ "members":{
215
+ "Name":{"shape":"MetricDimensionName"},
216
+ "Value":{"shape":"MetricDimensionValue"}
217
+ }
218
+ },
219
+ "MetricDimensionName":{"type":"string"},
220
+ "MetricDimensionValue":{"type":"string"},
221
+ "MetricDimensions":{
222
+ "type":"list",
223
+ "member":{"shape":"MetricDimension"}
224
+ },
225
+ "MetricName":{"type":"string"},
226
+ "MetricNamespace":{"type":"string"},
227
+ "MetricScale":{"type":"double"},
228
+ "MetricStatistic":{
229
+ "type":"string",
230
+ "enum":[
231
+ "Average",
232
+ "Minimum",
233
+ "Maximum",
234
+ "SampleCount",
235
+ "Sum"
236
+ ]
237
+ },
238
+ "MetricUnit":{"type":"string"},
239
+ "NextToken":{"type":"string"},
240
+ "ObjectNotFoundException":{
241
+ "type":"structure",
242
+ "members":{
243
+ "Message":{"shape":"ErrorMessage"}
244
+ },
245
+ "exception":true
246
+ },
247
+ "PolicyName":{
248
+ "type":"string",
249
+ "max":256,
250
+ "min":1,
251
+ "pattern":"\\p{Print}+"
252
+ },
253
+ "PolicyType":{
254
+ "type":"string",
255
+ "enum":["TargetTrackingScaling"]
256
+ },
257
+ "PredefinedScalingMetricSpecification":{
258
+ "type":"structure",
259
+ "required":["PredefinedScalingMetricType"],
260
+ "members":{
261
+ "PredefinedScalingMetricType":{"shape":"ScalingMetricType"},
262
+ "ResourceLabel":{"shape":"ResourceLabel"}
263
+ }
264
+ },
265
+ "ResourceCapacity":{"type":"integer"},
266
+ "ResourceIdMaxLen1600":{
267
+ "type":"string",
268
+ "max":1600,
269
+ "min":1,
270
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
271
+ },
272
+ "ResourceLabel":{
273
+ "type":"string",
274
+ "max":1023,
275
+ "min":1
276
+ },
277
+ "ScalableDimension":{
278
+ "type":"string",
279
+ "enum":[
280
+ "autoscaling:autoScalingGroup:DesiredCapacity",
281
+ "ecs:service:DesiredCount",
282
+ "ec2:spot-fleet-request:TargetCapacity",
283
+ "rds:cluster:ReadReplicaCount",
284
+ "dynamodb:table:ReadCapacityUnits",
285
+ "dynamodb:table:WriteCapacityUnits",
286
+ "dynamodb:index:ReadCapacityUnits",
287
+ "dynamodb:index:WriteCapacityUnits"
288
+ ]
289
+ },
290
+ "ScalingInstruction":{
291
+ "type":"structure",
292
+ "required":[
293
+ "ServiceNamespace",
294
+ "ResourceId",
295
+ "ScalableDimension",
296
+ "MinCapacity",
297
+ "MaxCapacity",
298
+ "TargetTrackingConfigurations"
299
+ ],
300
+ "members":{
301
+ "ServiceNamespace":{"shape":"ServiceNamespace"},
302
+ "ResourceId":{"shape":"ResourceIdMaxLen1600"},
303
+ "ScalableDimension":{"shape":"ScalableDimension"},
304
+ "MinCapacity":{"shape":"ResourceCapacity"},
305
+ "MaxCapacity":{"shape":"ResourceCapacity"},
306
+ "TargetTrackingConfigurations":{"shape":"TargetTrackingConfigurations"}
307
+ }
308
+ },
309
+ "ScalingInstructions":{
310
+ "type":"list",
311
+ "member":{"shape":"ScalingInstruction"}
312
+ },
313
+ "ScalingMetricType":{
314
+ "type":"string",
315
+ "enum":[
316
+ "ASGAverageCPUUtilization",
317
+ "ASGAverageNetworkIn",
318
+ "ASGAverageNetworkOut",
319
+ "DynamoDBReadCapacityUtilization",
320
+ "DynamoDBWriteCapacityUtilization",
321
+ "ECSServiceAverageCPUUtilization",
322
+ "ECSServiceAverageMemoryUtilization",
323
+ "ALBRequestCountPerTarget",
324
+ "RDSReaderAverageCPUUtilization",
325
+ "RDSReaderAverageDatabaseConnections",
326
+ "EC2SpotFleetRequestAverageCPUUtilization",
327
+ "EC2SpotFleetRequestAverageNetworkIn",
328
+ "EC2SpotFleetRequestAverageNetworkOut"
329
+ ]
330
+ },
331
+ "ScalingPlan":{
332
+ "type":"structure",
333
+ "required":[
334
+ "ScalingPlanName",
335
+ "ScalingPlanVersion",
336
+ "ApplicationSource",
337
+ "ScalingInstructions",
338
+ "StatusCode"
339
+ ],
340
+ "members":{
341
+ "ScalingPlanName":{"shape":"ScalingPlanName"},
342
+ "ScalingPlanVersion":{"shape":"ScalingPlanVersion"},
343
+ "ApplicationSource":{"shape":"ApplicationSource"},
344
+ "ScalingInstructions":{"shape":"ScalingInstructions"},
345
+ "StatusCode":{"shape":"ScalingPlanStatusCode"},
346
+ "StatusMessage":{"shape":"XmlString"},
347
+ "CreationTime":{"shape":"TimestampType"}
348
+ }
349
+ },
350
+ "ScalingPlanName":{
351
+ "type":"string",
352
+ "max":128,
353
+ "min":1,
354
+ "pattern":"[\\p{Print}&&[^|]]+"
355
+ },
356
+ "ScalingPlanNames":{
357
+ "type":"list",
358
+ "member":{"shape":"ScalingPlanName"}
359
+ },
360
+ "ScalingPlanResource":{
361
+ "type":"structure",
362
+ "required":[
363
+ "ScalingPlanName",
364
+ "ScalingPlanVersion",
365
+ "ServiceNamespace",
366
+ "ResourceId",
367
+ "ScalableDimension",
368
+ "ScalingStatusCode"
369
+ ],
370
+ "members":{
371
+ "ScalingPlanName":{"shape":"ScalingPlanName"},
372
+ "ScalingPlanVersion":{"shape":"ScalingPlanVersion"},
373
+ "ServiceNamespace":{"shape":"ServiceNamespace"},
374
+ "ResourceId":{"shape":"ResourceIdMaxLen1600"},
375
+ "ScalableDimension":{"shape":"ScalableDimension"},
376
+ "ScalingPolicies":{"shape":"ScalingPolicies"},
377
+ "ScalingStatusCode":{"shape":"ScalingStatusCode"},
378
+ "ScalingStatusMessage":{"shape":"XmlString"}
379
+ }
380
+ },
381
+ "ScalingPlanResources":{
382
+ "type":"list",
383
+ "member":{"shape":"ScalingPlanResource"}
384
+ },
385
+ "ScalingPlanStatusCode":{
386
+ "type":"string",
387
+ "enum":[
388
+ "Active",
389
+ "ActiveWithProblems",
390
+ "CreationInProgress",
391
+ "CreationFailed",
392
+ "DeletionInProgress",
393
+ "DeletionFailed"
394
+ ]
395
+ },
396
+ "ScalingPlanVersion":{"type":"long"},
397
+ "ScalingPlans":{
398
+ "type":"list",
399
+ "member":{"shape":"ScalingPlan"}
400
+ },
401
+ "ScalingPolicies":{
402
+ "type":"list",
403
+ "member":{"shape":"ScalingPolicy"}
404
+ },
405
+ "ScalingPolicy":{
406
+ "type":"structure",
407
+ "required":[
408
+ "PolicyName",
409
+ "PolicyType"
410
+ ],
411
+ "members":{
412
+ "PolicyName":{"shape":"PolicyName"},
413
+ "PolicyType":{"shape":"PolicyType"},
414
+ "TargetTrackingConfiguration":{"shape":"TargetTrackingConfiguration"}
415
+ }
416
+ },
417
+ "ScalingStatusCode":{
418
+ "type":"string",
419
+ "enum":[
420
+ "Inactive",
421
+ "PartiallyActive",
422
+ "Active"
423
+ ]
424
+ },
425
+ "ServiceNamespace":{
426
+ "type":"string",
427
+ "enum":[
428
+ "autoscaling",
429
+ "ecs",
430
+ "ec2",
431
+ "rds",
432
+ "dynamodb"
433
+ ]
434
+ },
435
+ "TargetTrackingConfiguration":{
436
+ "type":"structure",
437
+ "required":["TargetValue"],
438
+ "members":{
439
+ "PredefinedScalingMetricSpecification":{"shape":"PredefinedScalingMetricSpecification"},
440
+ "CustomizedScalingMetricSpecification":{"shape":"CustomizedScalingMetricSpecification"},
441
+ "TargetValue":{"shape":"MetricScale"},
442
+ "DisableScaleIn":{"shape":"DisableScaleIn"},
443
+ "ScaleOutCooldown":{"shape":"Cooldown"},
444
+ "ScaleInCooldown":{"shape":"Cooldown"},
445
+ "EstimatedInstanceWarmup":{"shape":"Cooldown"}
446
+ }
447
+ },
448
+ "TargetTrackingConfigurations":{
449
+ "type":"list",
450
+ "member":{"shape":"TargetTrackingConfiguration"}
451
+ },
452
+ "TimestampType":{"type":"timestamp"},
453
+ "ValidationException":{
454
+ "type":"structure",
455
+ "members":{
456
+ "Message":{"shape":"ErrorMessage"}
457
+ },
458
+ "exception":true
459
+ },
460
+ "XmlString":{
461
+ "type":"string",
462
+ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
463
+ }
464
+ }
465
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -1806,6 +1806,13 @@
1806
1806
  "CharacterSetDescription":{"shape":"String"}
1807
1807
  }
1808
1808
  },
1809
+ "CloudwatchLogsExportConfiguration":{
1810
+ "type":"structure",
1811
+ "members":{
1812
+ "EnableLogTypes":{"shape":"LogTypeList"},
1813
+ "DisableLogTypes":{"shape":"LogTypeList"}
1814
+ }
1815
+ },
1809
1816
  "CopyDBClusterParameterGroupMessage":{
1810
1817
  "type":"structure",
1811
1818
  "required":[
@@ -2032,7 +2039,8 @@
2032
2039
  "Timezone":{"shape":"String"},
2033
2040
  "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
2034
2041
  "EnablePerformanceInsights":{"shape":"BooleanOptional"},
2035
- "PerformanceInsightsKMSKeyId":{"shape":"String"}
2042
+ "PerformanceInsightsKMSKeyId":{"shape":"String"},
2043
+ "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
2036
2044
  }
2037
2045
  },
2038
2046
  "CreateDBInstanceReadReplicaMessage":{
@@ -2062,7 +2070,8 @@
2062
2070
  "PreSignedUrl":{"shape":"String"},
2063
2071
  "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
2064
2072
  "EnablePerformanceInsights":{"shape":"BooleanOptional"},
2065
- "PerformanceInsightsKMSKeyId":{"shape":"String"}
2073
+ "PerformanceInsightsKMSKeyId":{"shape":"String"},
2074
+ "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
2066
2075
  }
2067
2076
  },
2068
2077
  "CreateDBInstanceReadReplicaResult":{
@@ -2506,7 +2515,9 @@
2506
2515
  "DefaultCharacterSet":{"shape":"CharacterSet"},
2507
2516
  "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"},
2508
2517
  "ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"},
2509
- "SupportedTimezones":{"shape":"SupportedTimezonesList"}
2518
+ "SupportedTimezones":{"shape":"SupportedTimezonesList"},
2519
+ "ExportableLogTypes":{"shape":"LogTypeList"},
2520
+ "SupportsLogExportsToCloudwatchLogs":{"shape":"Boolean"}
2510
2521
  }
2511
2522
  },
2512
2523
  "DBEngineVersionList":{
@@ -2576,7 +2587,8 @@
2576
2587
  "Timezone":{"shape":"String"},
2577
2588
  "IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"},
2578
2589
  "PerformanceInsightsEnabled":{"shape":"BooleanOptional"},
2579
- "PerformanceInsightsKMSKeyId":{"shape":"String"}
2590
+ "PerformanceInsightsKMSKeyId":{"shape":"String"},
2591
+ "EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}
2580
2592
  },
2581
2593
  "wrapper":true
2582
2594
  },
@@ -3943,6 +3955,10 @@
3943
3955
  "Filters":{"shape":"FilterList"}
3944
3956
  }
3945
3957
  },
3958
+ "LogTypeList":{
3959
+ "type":"list",
3960
+ "member":{"shape":"String"}
3961
+ },
3946
3962
  "Long":{"type":"long"},
3947
3963
  "ModifyDBClusterMessage":{
3948
3964
  "type":"structure",
@@ -4036,7 +4052,8 @@
4036
4052
  "PromotionTier":{"shape":"IntegerOptional"},
4037
4053
  "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
4038
4054
  "EnablePerformanceInsights":{"shape":"BooleanOptional"},
4039
- "PerformanceInsightsKMSKeyId":{"shape":"String"}
4055
+ "PerformanceInsightsKMSKeyId":{"shape":"String"},
4056
+ "CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"}
4040
4057
  }
4041
4058
  },
4042
4059
  "ModifyDBInstanceResult":{
@@ -4431,6 +4448,13 @@
4431
4448
  "locationName":"Parameter"
4432
4449
  }
4433
4450
  },
4451
+ "PendingCloudwatchLogsExports":{
4452
+ "type":"structure",
4453
+ "members":{
4454
+ "LogTypesToEnable":{"shape":"LogTypeList"},
4455
+ "LogTypesToDisable":{"shape":"LogTypeList"}
4456
+ }
4457
+ },
4434
4458
  "PendingMaintenanceAction":{
4435
4459
  "type":"structure",
4436
4460
  "members":{
@@ -4478,7 +4502,8 @@
4478
4502
  "DBInstanceIdentifier":{"shape":"String"},
4479
4503
  "StorageType":{"shape":"String"},
4480
4504
  "CACertificateIdentifier":{"shape":"String"},
4481
- "DBSubnetGroupName":{"shape":"String"}
4505
+ "DBSubnetGroupName":{"shape":"String"},
4506
+ "PendingCloudwatchLogsExports":{"shape":"PendingCloudwatchLogsExports"}
4482
4507
  }
4483
4508
  },
4484
4509
  "PointInTimeRestoreNotEnabledFault":{
@@ -4927,7 +4952,8 @@
4927
4952
  "Domain":{"shape":"String"},
4928
4953
  "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
4929
4954
  "DomainIAMRoleName":{"shape":"String"},
4930
- "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}
4955
+ "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
4956
+ "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
4931
4957
  }
4932
4958
  },
4933
4959
  "RestoreDBInstanceFromDBSnapshotResult":{
@@ -4985,7 +5011,8 @@
4985
5011
  "S3Prefix":{"shape":"String"},
4986
5012
  "S3IngestionRoleArn":{"shape":"String"},
4987
5013
  "EnablePerformanceInsights":{"shape":"BooleanOptional"},
4988
- "PerformanceInsightsKMSKeyId":{"shape":"String"}
5014
+ "PerformanceInsightsKMSKeyId":{"shape":"String"},
5015
+ "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
4989
5016
  }
4990
5017
  },
4991
5018
  "RestoreDBInstanceFromS3Result":{
@@ -5024,7 +5051,8 @@
5024
5051
  "TdeCredentialPassword":{"shape":"String"},
5025
5052
  "Domain":{"shape":"String"},
5026
5053
  "DomainIAMRoleName":{"shape":"String"},
5027
- "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"}
5054
+ "EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
5055
+ "EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
5028
5056
  }
5029
5057
  },
5030
5058
  "RestoreDBInstanceToPointInTimeResult":{
@@ -32,6 +32,7 @@ module Aws
32
32
  ApplicationDiscoveryService
33
33
  Athena
34
34
  AutoScaling
35
+ AutoScalingPlans
35
36
  Batch
36
37
  Budgets
37
38
  Cloud9
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:AutoScalingPlans, {
2
+ api: "#{Aws::API_DIR}/autoscaling-plans/2018-01-06/api-2.json",
3
+ docs: "#{Aws::API_DIR}/autoscaling-plans/2018-01-06/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/autoscaling-plans/2018-01-06/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/autoscaling-plans/2018-01-06/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.118'
2
+ VERSION = '2.10.119'
3
3
  end
@@ -35,6 +35,10 @@
35
35
  "models": "autoscaling/2011-01-01",
36
36
  "endpoint": "autoscaling"
37
37
  },
38
+ "AutoScalingPlans": {
39
+ "models": "autoscaling-plans/2018-01-06",
40
+ "endpoint": "autoscaling"
41
+ },
38
42
  "Batch": {
39
43
  "models": "batch/2016-08-10",
40
44
  "endpoint": "batch"
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.10.118
4
+ version: 2.10.119
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-01-15 00:00:00.000000000 Z
11
+ date: 2018-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -72,6 +72,9 @@ files:
72
72
  - apis/athena/2017-05-18/api-2.json
73
73
  - apis/athena/2017-05-18/examples-1.json
74
74
  - apis/athena/2017-05-18/paginators-1.json
75
+ - apis/autoscaling-plans/2018-01-06/api-2.json
76
+ - apis/autoscaling-plans/2018-01-06/examples-1.json
77
+ - apis/autoscaling-plans/2018-01-06/paginators-1.json
75
78
  - apis/autoscaling/2011-01-01/api-2.json
76
79
  - apis/autoscaling/2011-01-01/examples-1.json
77
80
  - apis/autoscaling/2011-01-01/paginators-1.json
@@ -534,6 +537,7 @@ files:
534
537
  - lib/aws-sdk-core/assume_role_credentials.rb
535
538
  - lib/aws-sdk-core/athena.rb
536
539
  - lib/aws-sdk-core/autoscaling.rb
540
+ - lib/aws-sdk-core/autoscalingplans.rb
537
541
  - lib/aws-sdk-core/batch.rb
538
542
  - lib/aws-sdk-core/budgets.rb
539
543
  - lib/aws-sdk-core/checksums.rb