aws-sdk-core 2.11.28 → 2.11.29

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -114,6 +114,21 @@
114
114
  {"shape":"InternalServiceFault"}
115
115
  ]
116
116
  },
117
+ "GetMetricData":{
118
+ "name":"GetMetricData",
119
+ "http":{
120
+ "method":"POST",
121
+ "requestUri":"/"
122
+ },
123
+ "input":{"shape":"GetMetricDataInput"},
124
+ "output":{
125
+ "shape":"GetMetricDataOutput",
126
+ "resultWrapper":"GetMetricDataResult"
127
+ },
128
+ "errors":[
129
+ {"shape":"InvalidNextToken"}
130
+ ]
131
+ },
117
132
  "GetMetricStatistics":{
118
133
  "name":"GetMetricStatistics",
119
134
  "http":{
@@ -362,6 +377,10 @@
362
377
  "key":{"shape":"ExtendedStatistic"},
363
378
  "value":{"shape":"DatapointValue"}
364
379
  },
380
+ "DatapointValues":{
381
+ "type":"list",
382
+ "member":{"shape":"DatapointValue"}
383
+ },
365
384
  "Datapoints":{
366
385
  "type":"list",
367
386
  "member":{"shape":"Datapoint"}
@@ -544,6 +563,30 @@
544
563
  "DashboardName":{"shape":"DashboardName"}
545
564
  }
546
565
  },
566
+ "GetMetricDataInput":{
567
+ "type":"structure",
568
+ "required":[
569
+ "MetricDataQueries",
570
+ "StartTime",
571
+ "EndTime"
572
+ ],
573
+ "members":{
574
+ "MetricDataQueries":{"shape":"MetricDataQueries"},
575
+ "StartTime":{"shape":"Timestamp"},
576
+ "EndTime":{"shape":"Timestamp"},
577
+ "NextToken":{"shape":"NextToken"},
578
+ "ScanBy":{"shape":"ScanBy"},
579
+ "MaxDatapoints":{"shape":"GetMetricDataMaxDatapoints"}
580
+ }
581
+ },
582
+ "GetMetricDataMaxDatapoints":{"type":"integer"},
583
+ "GetMetricDataOutput":{
584
+ "type":"structure",
585
+ "members":{
586
+ "MetricDataResults":{"shape":"MetricDataResults"},
587
+ "NextToken":{"shape":"NextToken"}
588
+ }
589
+ },
547
590
  "GetMetricStatisticsInput":{
548
591
  "type":"structure",
549
592
  "required":[
@@ -703,6 +746,15 @@
703
746
  "min":1
704
747
  },
705
748
  "Message":{"type":"string"},
749
+ "MessageData":{
750
+ "type":"structure",
751
+ "members":{
752
+ "Code":{"shape":"MessageDataCode"},
753
+ "Value":{"shape":"MessageDataValue"}
754
+ }
755
+ },
756
+ "MessageDataCode":{"type":"string"},
757
+ "MessageDataValue":{"type":"string"},
706
758
  "Metric":{
707
759
  "type":"structure",
708
760
  "members":{
@@ -781,6 +833,40 @@
781
833
  "type":"list",
782
834
  "member":{"shape":"MetricDatum"}
783
835
  },
836
+ "MetricDataQueries":{
837
+ "type":"list",
838
+ "member":{"shape":"MetricDataQuery"}
839
+ },
840
+ "MetricDataQuery":{
841
+ "type":"structure",
842
+ "required":["Id"],
843
+ "members":{
844
+ "Id":{"shape":"MetricId"},
845
+ "MetricStat":{"shape":"MetricStat"},
846
+ "Expression":{"shape":"MetricExpression"},
847
+ "Label":{"shape":"MetricLabel"},
848
+ "ReturnData":{"shape":"ReturnData"}
849
+ }
850
+ },
851
+ "MetricDataResult":{
852
+ "type":"structure",
853
+ "members":{
854
+ "Id":{"shape":"MetricId"},
855
+ "Label":{"shape":"MetricLabel"},
856
+ "Timestamps":{"shape":"Timestamps"},
857
+ "Values":{"shape":"DatapointValues"},
858
+ "StatusCode":{"shape":"StatusCode"},
859
+ "Messages":{"shape":"MetricDataResultMessages"}
860
+ }
861
+ },
862
+ "MetricDataResultMessages":{
863
+ "type":"list",
864
+ "member":{"shape":"MessageData"}
865
+ },
866
+ "MetricDataResults":{
867
+ "type":"list",
868
+ "member":{"shape":"MetricDataResult"}
869
+ },
784
870
  "MetricDatum":{
785
871
  "type":"structure",
786
872
  "required":["MetricName"],
@@ -794,12 +880,36 @@
794
880
  "StorageResolution":{"shape":"StorageResolution"}
795
881
  }
796
882
  },
883
+ "MetricExpression":{
884
+ "type":"string",
885
+ "max":1024,
886
+ "min":1
887
+ },
888
+ "MetricId":{
889
+ "type":"string",
890
+ "max":255,
891
+ "min":1
892
+ },
797
893
  "MetricLabel":{"type":"string"},
798
894
  "MetricName":{
799
895
  "type":"string",
800
896
  "max":255,
801
897
  "min":1
802
898
  },
899
+ "MetricStat":{
900
+ "type":"structure",
901
+ "required":[
902
+ "Metric",
903
+ "Period",
904
+ "Stat"
905
+ ],
906
+ "members":{
907
+ "Metric":{"shape":"Metric"},
908
+ "Period":{"shape":"Period"},
909
+ "Stat":{"shape":"Stat"},
910
+ "Unit":{"shape":"StandardUnit"}
911
+ }
912
+ },
803
913
  "Metrics":{
804
914
  "type":"list",
805
915
  "member":{"shape":"Metric"}
@@ -914,6 +1024,14 @@
914
1024
  },
915
1025
  "exception":true
916
1026
  },
1027
+ "ReturnData":{"type":"boolean"},
1028
+ "ScanBy":{
1029
+ "type":"string",
1030
+ "enum":[
1031
+ "TimestampDescending",
1032
+ "TimestampAscending"
1033
+ ]
1034
+ },
917
1035
  "SetAlarmStateInput":{
918
1036
  "type":"structure",
919
1037
  "required":[
@@ -961,6 +1079,7 @@
961
1079
  "None"
962
1080
  ]
963
1081
  },
1082
+ "Stat":{"type":"string"},
964
1083
  "StateReason":{
965
1084
  "type":"string",
966
1085
  "max":1023,
@@ -1010,12 +1129,24 @@
1010
1129
  "max":5,
1011
1130
  "min":1
1012
1131
  },
1132
+ "StatusCode":{
1133
+ "type":"string",
1134
+ "enum":[
1135
+ "Complete",
1136
+ "InternalError",
1137
+ "PartialData"
1138
+ ]
1139
+ },
1013
1140
  "StorageResolution":{
1014
1141
  "type":"integer",
1015
1142
  "min":1
1016
1143
  },
1017
1144
  "Threshold":{"type":"double"},
1018
1145
  "Timestamp":{"type":"timestamp"},
1146
+ "Timestamps":{
1147
+ "type":"list",
1148
+ "member":{"shape":"Timestamp"}
1149
+ },
1019
1150
  "TreatMissingData":{
1020
1151
  "type":"string",
1021
1152
  "max":255,
@@ -751,6 +751,19 @@
751
751
  "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectRestore.html",
752
752
  "alias":"PostObjectRestore"
753
753
  },
754
+ "SelectObjectContent":{
755
+ "name":"SelectObjectContent",
756
+ "http":{
757
+ "method":"POST",
758
+ "requestUri":"/{Bucket}/{Key+}?select&select-type=2"
759
+ },
760
+ "input":{
761
+ "shape":"SelectObjectContentRequest",
762
+ "locationName":"SelectObjectContentRequest",
763
+ "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
764
+ },
765
+ "output":{"shape":"SelectObjectContentOutput"}
766
+ },
754
767
  "UploadPart":{
755
768
  "name":"UploadPart",
756
769
  "http":{
@@ -1016,6 +1029,8 @@
1016
1029
  "locationName":"Bucket"
1017
1030
  }
1018
1031
  },
1032
+ "BytesProcessed":{"type":"long"},
1033
+ "BytesScanned":{"type":"long"},
1019
1034
  "CORSConfiguration":{
1020
1035
  "type":"structure",
1021
1036
  "required":["CORSRules"],
@@ -1201,6 +1216,13 @@
1201
1216
  "member":{"shape":"CompletedPart"},
1202
1217
  "flattened":true
1203
1218
  },
1219
+ "CompressionType":{
1220
+ "type":"string",
1221
+ "enum":[
1222
+ "NONE",
1223
+ "GZIP"
1224
+ ]
1225
+ },
1204
1226
  "Condition":{
1205
1227
  "type":"structure",
1206
1228
  "members":{
@@ -1216,6 +1238,12 @@
1216
1238
  "ContentMD5":{"type":"string"},
1217
1239
  "ContentRange":{"type":"string"},
1218
1240
  "ContentType":{"type":"string"},
1241
+ "ContinuationEvent":{
1242
+ "type":"structure",
1243
+ "members":{
1244
+ },
1245
+ "event":true
1246
+ },
1219
1247
  "CopyObjectOutput":{
1220
1248
  "type":"structure",
1221
1249
  "members":{
@@ -2044,6 +2072,7 @@
2044
2072
  "DisplayName":{"type":"string"},
2045
2073
  "ETag":{"type":"string"},
2046
2074
  "EmailAddress":{"type":"string"},
2075
+ "EnableRequestProgress":{"type":"boolean"},
2047
2076
  "EncodingType":{
2048
2077
  "type":"string",
2049
2078
  "enum":["url"]
@@ -2063,6 +2092,12 @@
2063
2092
  "ReplicaKmsKeyID":{"shape":"ReplicaKmsKeyID"}
2064
2093
  }
2065
2094
  },
2095
+ "EndEvent":{
2096
+ "type":"structure",
2097
+ "members":{
2098
+ },
2099
+ "event":true
2100
+ },
2066
2101
  "Error":{
2067
2102
  "type":"structure",
2068
2103
  "members":{
@@ -3159,7 +3194,9 @@
3159
3194
  "InputSerialization":{
3160
3195
  "type":"structure",
3161
3196
  "members":{
3162
- "CSV":{"shape":"CSVInput"}
3197
+ "CSV":{"shape":"CSVInput"},
3198
+ "CompressionType":{"shape":"CompressionType"},
3199
+ "JSON":{"shape":"JSONInput"}
3163
3200
  }
3164
3201
  },
3165
3202
  "InventoryConfiguration":{
@@ -3278,6 +3315,25 @@
3278
3315
  "IsEnabled":{"type":"boolean"},
3279
3316
  "IsLatest":{"type":"boolean"},
3280
3317
  "IsTruncated":{"type":"boolean"},
3318
+ "JSONInput":{
3319
+ "type":"structure",
3320
+ "members":{
3321
+ "Type":{"shape":"JSONType"}
3322
+ }
3323
+ },
3324
+ "JSONOutput":{
3325
+ "type":"structure",
3326
+ "members":{
3327
+ "RecordDelimiter":{"shape":"RecordDelimiter"}
3328
+ }
3329
+ },
3330
+ "JSONType":{
3331
+ "type":"string",
3332
+ "enum":[
3333
+ "DOCUMENT",
3334
+ "LINES"
3335
+ ]
3336
+ },
3281
3337
  "KMSContext":{"type":"string"},
3282
3338
  "KeyCount":{"type":"integer"},
3283
3339
  "KeyMarker":{"type":"string"},
@@ -3793,6 +3849,10 @@
3793
3849
  "LocationPrefix":{"type":"string"},
3794
3850
  "LoggingEnabled":{
3795
3851
  "type":"structure",
3852
+ "required":[
3853
+ "TargetBucket",
3854
+ "TargetPrefix"
3855
+ ],
3796
3856
  "members":{
3797
3857
  "TargetBucket":{"shape":"TargetBucket"},
3798
3858
  "TargetGrants":{"shape":"TargetGrants"},
@@ -4031,7 +4091,9 @@
4031
4091
  "enum":[
4032
4092
  "STANDARD",
4033
4093
  "REDUCED_REDUNDANCY",
4034
- "GLACIER"
4094
+ "GLACIER",
4095
+ "STANDARD_IA",
4096
+ "ONEZONE_IA"
4035
4097
  ]
4036
4098
  },
4037
4099
  "ObjectVersion":{
@@ -4066,7 +4128,8 @@
4066
4128
  "OutputSerialization":{
4067
4129
  "type":"structure",
4068
4130
  "members":{
4069
- "CSV":{"shape":"CSVOutput"}
4131
+ "CSV":{"shape":"CSVOutput"},
4132
+ "JSON":{"shape":"JSONOutput"}
4070
4133
  }
4071
4134
  },
4072
4135
  "Owner":{
@@ -4116,6 +4179,23 @@
4116
4179
  },
4117
4180
  "Policy":{"type":"string"},
4118
4181
  "Prefix":{"type":"string"},
4182
+ "Progress":{
4183
+ "type":"structure",
4184
+ "members":{
4185
+ "BytesScanned":{"shape":"BytesScanned"},
4186
+ "BytesProcessed":{"shape":"BytesProcessed"}
4187
+ }
4188
+ },
4189
+ "ProgressEvent":{
4190
+ "type":"structure",
4191
+ "members":{
4192
+ "Details":{
4193
+ "shape":"Progress",
4194
+ "eventpayload":true
4195
+ }
4196
+ },
4197
+ "event":true
4198
+ },
4119
4199
  "Protocol":{
4120
4200
  "type":"string",
4121
4201
  "enum":[
@@ -4950,6 +5030,16 @@
4950
5030
  },
4951
5031
  "Range":{"type":"string"},
4952
5032
  "RecordDelimiter":{"type":"string"},
5033
+ "RecordsEvent":{
5034
+ "type":"structure",
5035
+ "members":{
5036
+ "Payload":{
5037
+ "shape":"Body",
5038
+ "eventpayload":true
5039
+ }
5040
+ },
5041
+ "event":true
5042
+ },
4953
5043
  "Redirect":{
4954
5044
  "type":"structure",
4955
5045
  "members":{
@@ -5036,6 +5126,12 @@
5036
5126
  "Payer":{"shape":"Payer"}
5037
5127
  }
5038
5128
  },
5129
+ "RequestProgress":{
5130
+ "type":"structure",
5131
+ "members":{
5132
+ "Enabled":{"shape":"EnableRequestProgress"}
5133
+ }
5134
+ },
5039
5135
  "ResponseCacheControl":{"type":"string"},
5040
5136
  "ResponseContentDisposition":{"type":"string"},
5041
5137
  "ResponseContentEncoding":{"type":"string"},
@@ -5198,6 +5294,67 @@
5198
5294
  },
5199
5295
  "locationName":"SSE-S3"
5200
5296
  },
5297
+ "SelectObjectContentEventStream":{
5298
+ "type":"structure",
5299
+ "members":{
5300
+ "Records":{"shape":"RecordsEvent"},
5301
+ "Stats":{"shape":"StatsEvent"},
5302
+ "Progress":{"shape":"ProgressEvent"},
5303
+ "Cont":{"shape":"ContinuationEvent"},
5304
+ "End":{"shape":"EndEvent"}
5305
+ },
5306
+ "eventstream":true
5307
+ },
5308
+ "SelectObjectContentOutput":{
5309
+ "type":"structure",
5310
+ "members":{
5311
+ "Payload":{"shape":"SelectObjectContentEventStream"}
5312
+ },
5313
+ "payload":"Payload"
5314
+ },
5315
+ "SelectObjectContentRequest":{
5316
+ "type":"structure",
5317
+ "required":[
5318
+ "Bucket",
5319
+ "Key",
5320
+ "Expression",
5321
+ "ExpressionType",
5322
+ "InputSerialization",
5323
+ "OutputSerialization"
5324
+ ],
5325
+ "members":{
5326
+ "Bucket":{
5327
+ "shape":"BucketName",
5328
+ "location":"uri",
5329
+ "locationName":"Bucket"
5330
+ },
5331
+ "Key":{
5332
+ "shape":"ObjectKey",
5333
+ "location":"uri",
5334
+ "locationName":"Key"
5335
+ },
5336
+ "SSECustomerAlgorithm":{
5337
+ "shape":"SSECustomerAlgorithm",
5338
+ "location":"header",
5339
+ "locationName":"x-amz-server-side-encryption-customer-algorithm"
5340
+ },
5341
+ "SSECustomerKey":{
5342
+ "shape":"SSECustomerKey",
5343
+ "location":"header",
5344
+ "locationName":"x-amz-server-side-encryption-customer-key"
5345
+ },
5346
+ "SSECustomerKeyMD5":{
5347
+ "shape":"SSECustomerKeyMD5",
5348
+ "location":"header",
5349
+ "locationName":"x-amz-server-side-encryption-customer-key-MD5"
5350
+ },
5351
+ "Expression":{"shape":"Expression"},
5352
+ "ExpressionType":{"shape":"ExpressionType"},
5353
+ "RequestProgress":{"shape":"RequestProgress"},
5354
+ "InputSerialization":{"shape":"InputSerialization"},
5355
+ "OutputSerialization":{"shape":"OutputSerialization"}
5356
+ }
5357
+ },
5201
5358
  "SelectParameters":{
5202
5359
  "type":"structure",
5203
5360
  "required":[
@@ -5271,12 +5428,30 @@
5271
5428
  ]
5272
5429
  },
5273
5430
  "StartAfter":{"type":"string"},
5431
+ "Stats":{
5432
+ "type":"structure",
5433
+ "members":{
5434
+ "BytesScanned":{"shape":"BytesScanned"},
5435
+ "BytesProcessed":{"shape":"BytesProcessed"}
5436
+ }
5437
+ },
5438
+ "StatsEvent":{
5439
+ "type":"structure",
5440
+ "members":{
5441
+ "Details":{
5442
+ "shape":"Stats",
5443
+ "eventpayload":true
5444
+ }
5445
+ },
5446
+ "event":true
5447
+ },
5274
5448
  "StorageClass":{
5275
5449
  "type":"string",
5276
5450
  "enum":[
5277
5451
  "STANDARD",
5278
5452
  "REDUCED_REDUNDANCY",
5279
- "STANDARD_IA"
5453
+ "STANDARD_IA",
5454
+ "ONEZONE_IA"
5280
5455
  ]
5281
5456
  },
5282
5457
  "StorageClassAnalysis":{
@@ -5417,7 +5592,8 @@
5417
5592
  "type":"string",
5418
5593
  "enum":[
5419
5594
  "GLACIER",
5420
- "STANDARD_IA"
5595
+ "STANDARD_IA",
5596
+ "ONEZONE_IA"
5421
5597
  ]
5422
5598
  },
5423
5599
  "Type":{