aws-sdk-core 2.11.581 → 2.11.582

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
  SHA256:
3
- metadata.gz: '084f142d3216a0d07f13af9888f42439079066a0ae8fa076745cd4a025f16f9a'
4
- data.tar.gz: 54146eb75babace65d7c3c07350ef9b0fb67d13214665d64fc5e36783d2e0cfe
3
+ metadata.gz: ad9370da4813a7220c0d8a61afda327192572bb8d080644e1d91edaaee7239a6
4
+ data.tar.gz: 349ad40a39ebd53db2a2a9dd1b6a72040ca17b9b1b8a545eb8851b5531ebf9f1
5
5
  SHA512:
6
- metadata.gz: 15f99ea986909afa5e7ca6715ef91d0938f4536fbfb751900cff7b5b68058a738abe3e6486b29725097c3d1662f03ebb6acc526b72e9d0718140a5dec3711217
7
- data.tar.gz: c6a2768527931008e14a6c76309ade1d3f2a7c34431031393c4550f43d4ecec99e0f36e8aa02f90255b81c1b8add077d828f257cca833c9a83712ba093c3f13f
6
+ metadata.gz: 395cfc46811eb3e719d18064ee90cde36ca5b5bd81e2072bf24fafb45f38350af7e49b457c7e557438f6b53e9b369579c4ff3849087218cdb56cf14f900ae4ee
7
+ data.tar.gz: 7705e26fc009aca63ba161e65e9c43011da063461cc2f9865ece73b6b69f12d2d97f5ae4de06e832b36f6d3480ff410b80be791ebd37d2aede07ce9c6a35fc69
@@ -1086,6 +1086,22 @@
1086
1086
  {"shape":"GlueEncryptionException"}
1087
1087
  ]
1088
1088
  },
1089
+ "GetPartitionIndexes":{
1090
+ "name":"GetPartitionIndexes",
1091
+ "http":{
1092
+ "method":"POST",
1093
+ "requestUri":"/"
1094
+ },
1095
+ "input":{"shape":"GetPartitionIndexesRequest"},
1096
+ "output":{"shape":"GetPartitionIndexesResponse"},
1097
+ "errors":[
1098
+ {"shape":"InternalServiceException"},
1099
+ {"shape":"OperationTimeoutException"},
1100
+ {"shape":"InvalidInputException"},
1101
+ {"shape":"EntityNotFoundException"},
1102
+ {"shape":"ConflictException"}
1103
+ ]
1104
+ },
1089
1105
  "GetPartitions":{
1090
1106
  "name":"GetPartitions",
1091
1107
  "http":{
@@ -2681,6 +2697,13 @@
2681
2697
  "type":"list",
2682
2698
  "member":{"shape":"Condition"}
2683
2699
  },
2700
+ "ConflictException":{
2701
+ "type":"structure",
2702
+ "members":{
2703
+ "Message":{"shape":"MessageString"}
2704
+ },
2705
+ "exception":true
2706
+ },
2684
2707
  "ConfusionMatrix":{
2685
2708
  "type":"structure",
2686
2709
  "members":{
@@ -3188,7 +3211,8 @@
3188
3211
  "members":{
3189
3212
  "CatalogId":{"shape":"CatalogIdString"},
3190
3213
  "DatabaseName":{"shape":"NameString"},
3191
- "TableInput":{"shape":"TableInput"}
3214
+ "TableInput":{"shape":"TableInput"},
3215
+ "PartitionIndexes":{"shape":"PartitionIndexList"}
3192
3216
  }
3193
3217
  },
3194
3218
  "CreateTableResponse":{
@@ -4337,6 +4361,26 @@
4337
4361
  "Mapping":{"shape":"MappingList"}
4338
4362
  }
4339
4363
  },
4364
+ "GetPartitionIndexesRequest":{
4365
+ "type":"structure",
4366
+ "required":[
4367
+ "DatabaseName",
4368
+ "TableName"
4369
+ ],
4370
+ "members":{
4371
+ "CatalogId":{"shape":"CatalogIdString"},
4372
+ "DatabaseName":{"shape":"NameString"},
4373
+ "TableName":{"shape":"NameString"},
4374
+ "NextToken":{"shape":"Token"}
4375
+ }
4376
+ },
4377
+ "GetPartitionIndexesResponse":{
4378
+ "type":"structure",
4379
+ "members":{
4380
+ "PartitionIndexDescriptorList":{"shape":"PartitionIndexDescriptorList"},
4381
+ "NextToken":{"shape":"Token"}
4382
+ }
4383
+ },
4340
4384
  "GetPartitionRequest":{
4341
4385
  "type":"structure",
4342
4386
  "required":[
@@ -4999,6 +5043,27 @@
4999
5043
  },
5000
5044
  "JsonPath":{"type":"string"},
5001
5045
  "JsonValue":{"type":"string"},
5046
+ "KeyList":{
5047
+ "type":"list",
5048
+ "member":{"shape":"NameString"},
5049
+ "min":1
5050
+ },
5051
+ "KeySchemaElement":{
5052
+ "type":"structure",
5053
+ "required":[
5054
+ "Name",
5055
+ "Type"
5056
+ ],
5057
+ "members":{
5058
+ "Name":{"shape":"NameString"},
5059
+ "Type":{"shape":"ColumnTypeString"}
5060
+ }
5061
+ },
5062
+ "KeySchemaElementList":{
5063
+ "type":"list",
5064
+ "member":{"shape":"KeySchemaElement"},
5065
+ "min":1
5066
+ },
5002
5067
  "KeyString":{
5003
5068
  "type":"string",
5004
5069
  "max":255,
@@ -5404,6 +5469,43 @@
5404
5469
  "type":"list",
5405
5470
  "member":{"shape":"PartitionError"}
5406
5471
  },
5472
+ "PartitionIndex":{
5473
+ "type":"structure",
5474
+ "required":[
5475
+ "Keys",
5476
+ "IndexName"
5477
+ ],
5478
+ "members":{
5479
+ "Keys":{"shape":"KeyList"},
5480
+ "IndexName":{"shape":"NameString"}
5481
+ }
5482
+ },
5483
+ "PartitionIndexDescriptor":{
5484
+ "type":"structure",
5485
+ "required":[
5486
+ "IndexName",
5487
+ "Keys",
5488
+ "IndexStatus"
5489
+ ],
5490
+ "members":{
5491
+ "IndexName":{"shape":"NameString"},
5492
+ "Keys":{"shape":"KeySchemaElementList"},
5493
+ "IndexStatus":{"shape":"PartitionIndexStatus"}
5494
+ }
5495
+ },
5496
+ "PartitionIndexDescriptorList":{
5497
+ "type":"list",
5498
+ "member":{"shape":"PartitionIndexDescriptor"}
5499
+ },
5500
+ "PartitionIndexList":{
5501
+ "type":"list",
5502
+ "member":{"shape":"PartitionIndex"},
5503
+ "max":3
5504
+ },
5505
+ "PartitionIndexStatus":{
5506
+ "type":"string",
5507
+ "enum":["ACTIVE"]
5508
+ },
5407
5509
  "PartitionInput":{
5408
5510
  "type":"structure",
5409
5511
  "members":{
@@ -50,6 +50,11 @@
50
50
  "limit_key": "MaxResults",
51
51
  "output_token": "NextToken"
52
52
  },
53
+ "GetPartitionIndexes": {
54
+ "input_token": "NextToken",
55
+ "output_token": "NextToken",
56
+ "result_key": "PartitionIndexDescriptorList"
57
+ },
53
58
  "GetPartitions": {
54
59
  "input_token": "NextToken",
55
60
  "limit_key": "MaxResults",
@@ -108,7 +108,8 @@
108
108
  {"shape":"ResourceNotFoundException"},
109
109
  {"shape":"ResourceInUseException"},
110
110
  {"shape":"InvalidArgumentException"},
111
- {"shape":"ConcurrentModificationException"}
111
+ {"shape":"ConcurrentModificationException"},
112
+ {"shape":"InvalidApplicationConfigurationException"}
112
113
  ]
113
114
  },
114
115
  "CreateApplication":{
@@ -143,7 +144,8 @@
143
144
  {"shape":"LimitExceededException"},
144
145
  {"shape":"InvalidArgumentException"},
145
146
  {"shape":"UnsupportedOperationException"},
146
- {"shape":"InvalidRequestException"}
147
+ {"shape":"InvalidRequestException"},
148
+ {"shape":"InvalidApplicationConfigurationException"}
147
149
  ]
148
150
  },
149
151
  "DeleteApplication":{
@@ -256,7 +258,8 @@
256
258
  {"shape":"ResourceNotFoundException"},
257
259
  {"shape":"ResourceInUseException"},
258
260
  {"shape":"InvalidArgumentException"},
259
- {"shape":"ConcurrentModificationException"}
261
+ {"shape":"ConcurrentModificationException"},
262
+ {"shape":"InvalidApplicationConfigurationException"}
260
263
  ]
261
264
  },
262
265
  "DescribeApplication":{
@@ -692,7 +695,8 @@
692
695
  "STOPPING",
693
696
  "READY",
694
697
  "RUNNING",
695
- "UPDATING"
698
+ "UPDATING",
699
+ "AUTOSCALING"
696
700
  ]
697
701
  },
698
702
  "ApplicationSummaries":{
@@ -1171,7 +1175,8 @@
1171
1175
  "InAppStreamName":{
1172
1176
  "type":"string",
1173
1177
  "max":32,
1174
- "min":1
1178
+ "min":1,
1179
+ "pattern":"[^-\\s<>&]*"
1175
1180
  },
1176
1181
  "InAppStreamNames":{
1177
1182
  "type":"list",
@@ -1351,7 +1356,7 @@
1351
1356
  "type":"string",
1352
1357
  "max":2048,
1353
1358
  "min":1,
1354
- "pattern":"arn:aws:kinesisanalytics:[a-z]{2}-[a-z]+-\\d{1}+:\\d{12}+:application/[a-zA-Z0-9_.-]{1,128}"
1359
+ "pattern":"arn:.*"
1355
1360
  },
1356
1361
  "KinesisFirehoseInput":{
1357
1362
  "type":"structure",
@@ -1589,7 +1594,11 @@
1589
1594
  "max":512,
1590
1595
  "min":1
1591
1596
  },
1592
- "ObjectVersion":{"type":"string"},
1597
+ "ObjectVersion":{
1598
+ "type":"string",
1599
+ "max":1024,
1600
+ "min":0
1601
+ },
1593
1602
  "Output":{
1594
1603
  "type":"structure",
1595
1604
  "required":[
@@ -1742,12 +1751,23 @@
1742
1751
  },
1743
1752
  "RecordColumnDelimiter":{
1744
1753
  "type":"string",
1754
+ "max":1024,
1745
1755
  "min":1
1746
1756
  },
1747
- "RecordColumnMapping":{"type":"string"},
1748
- "RecordColumnName":{"type":"string"},
1757
+ "RecordColumnMapping":{
1758
+ "type":"string",
1759
+ "max":65535,
1760
+ "min":0
1761
+ },
1762
+ "RecordColumnName":{
1763
+ "type":"string",
1764
+ "max":256,
1765
+ "min":1,
1766
+ "pattern":"[^-\\s<>&]*"
1767
+ },
1749
1768
  "RecordColumnSqlType":{
1750
1769
  "type":"string",
1770
+ "max":100,
1751
1771
  "min":1
1752
1772
  },
1753
1773
  "RecordColumns":{
@@ -1758,6 +1778,8 @@
1758
1778
  },
1759
1779
  "RecordEncoding":{
1760
1780
  "type":"string",
1781
+ "max":5,
1782
+ "min":5,
1761
1783
  "pattern":"UTF-8"
1762
1784
  },
1763
1785
  "RecordFormat":{
@@ -1777,11 +1799,14 @@
1777
1799
  },
1778
1800
  "RecordRowDelimiter":{
1779
1801
  "type":"string",
1802
+ "max":1024,
1780
1803
  "min":1
1781
1804
  },
1782
1805
  "RecordRowPath":{
1783
1806
  "type":"string",
1784
- "min":1
1807
+ "max":65535,
1808
+ "min":1,
1809
+ "pattern":"^(?=^\\$)(?=^\\S+$).*$"
1785
1810
  },
1786
1811
  "ReferenceDataSource":{
1787
1812
  "type":"structure",
@@ -1862,7 +1887,7 @@
1862
1887
  "type":"string",
1863
1888
  "max":2048,
1864
1889
  "min":1,
1865
- "pattern":"arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
1890
+ "pattern":"arn:.*"
1866
1891
  },
1867
1892
  "RunConfiguration":{
1868
1893
  "type":"structure",
@@ -1875,7 +1900,8 @@
1875
1900
  "RunConfigurationDescription":{
1876
1901
  "type":"structure",
1877
1902
  "members":{
1878
- "ApplicationRestoreConfigurationDescription":{"shape":"ApplicationRestoreConfiguration"}
1903
+ "ApplicationRestoreConfigurationDescription":{"shape":"ApplicationRestoreConfiguration"},
1904
+ "FlinkRunConfigurationDescription":{"shape":"FlinkRunConfiguration"}
1879
1905
  }
1880
1906
  },
1881
1907
  "RunConfigurationUpdate":{
@@ -0,0 +1,501 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2019-12-20",
5
+ "endpointPrefix":"redshift-data",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceFullName":"Redshift Data API Service",
9
+ "serviceId":"Redshift Data",
10
+ "signatureVersion":"v4",
11
+ "signingName":"redshift-data",
12
+ "targetPrefix":"RedshiftData",
13
+ "uid":"redshift-data-2019-12-20"
14
+ },
15
+ "operations":{
16
+ "CancelStatement":{
17
+ "name":"CancelStatement",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CancelStatementRequest"},
23
+ "output":{"shape":"CancelStatementResponse"},
24
+ "errors":[
25
+ {"shape":"ResourceNotFoundException"},
26
+ {"shape":"InternalServerException"}
27
+ ]
28
+ },
29
+ "DescribeStatement":{
30
+ "name":"DescribeStatement",
31
+ "http":{
32
+ "method":"POST",
33
+ "requestUri":"/"
34
+ },
35
+ "input":{"shape":"DescribeStatementRequest"},
36
+ "output":{"shape":"DescribeStatementResponse"},
37
+ "errors":[
38
+ {"shape":"ValidationException"},
39
+ {"shape":"ResourceNotFoundException"},
40
+ {"shape":"InternalServerException"}
41
+ ]
42
+ },
43
+ "DescribeTable":{
44
+ "name":"DescribeTable",
45
+ "http":{
46
+ "method":"POST",
47
+ "requestUri":"/"
48
+ },
49
+ "input":{"shape":"DescribeTableRequest"},
50
+ "output":{"shape":"DescribeTableResponse"},
51
+ "errors":[
52
+ {"shape":"ValidationException"},
53
+ {"shape":"InternalServerException"}
54
+ ]
55
+ },
56
+ "ExecuteStatement":{
57
+ "name":"ExecuteStatement",
58
+ "http":{
59
+ "method":"POST",
60
+ "requestUri":"/"
61
+ },
62
+ "input":{"shape":"ExecuteStatementInput"},
63
+ "output":{"shape":"ExecuteStatementOutput"},
64
+ "errors":[
65
+ {"shape":"ValidationException"},
66
+ {"shape":"ExecuteStatementException"}
67
+ ]
68
+ },
69
+ "GetStatementResult":{
70
+ "name":"GetStatementResult",
71
+ "http":{
72
+ "method":"POST",
73
+ "requestUri":"/"
74
+ },
75
+ "input":{"shape":"GetStatementResultRequest"},
76
+ "output":{"shape":"GetStatementResultResponse"},
77
+ "errors":[
78
+ {"shape":"ValidationException"},
79
+ {"shape":"ResourceNotFoundException"},
80
+ {"shape":"InternalServerException"}
81
+ ]
82
+ },
83
+ "ListDatabases":{
84
+ "name":"ListDatabases",
85
+ "http":{
86
+ "method":"POST",
87
+ "requestUri":"/"
88
+ },
89
+ "input":{"shape":"ListDatabasesRequest"},
90
+ "output":{"shape":"ListDatabasesResponse"},
91
+ "errors":[
92
+ {"shape":"ValidationException"},
93
+ {"shape":"InternalServerException"}
94
+ ]
95
+ },
96
+ "ListSchemas":{
97
+ "name":"ListSchemas",
98
+ "http":{
99
+ "method":"POST",
100
+ "requestUri":"/"
101
+ },
102
+ "input":{"shape":"ListSchemasRequest"},
103
+ "output":{"shape":"ListSchemasResponse"},
104
+ "errors":[
105
+ {"shape":"ValidationException"},
106
+ {"shape":"InternalServerException"}
107
+ ]
108
+ },
109
+ "ListStatements":{
110
+ "name":"ListStatements",
111
+ "http":{
112
+ "method":"POST",
113
+ "requestUri":"/"
114
+ },
115
+ "input":{"shape":"ListStatementsRequest"},
116
+ "output":{"shape":"ListStatementsResponse"},
117
+ "errors":[
118
+ {"shape":"ValidationException"},
119
+ {"shape":"InternalServerException"}
120
+ ]
121
+ },
122
+ "ListTables":{
123
+ "name":"ListTables",
124
+ "http":{
125
+ "method":"POST",
126
+ "requestUri":"/"
127
+ },
128
+ "input":{"shape":"ListTablesRequest"},
129
+ "output":{"shape":"ListTablesResponse"},
130
+ "errors":[
131
+ {"shape":"ValidationException"},
132
+ {"shape":"InternalServerException"}
133
+ ]
134
+ }
135
+ },
136
+ "shapes":{
137
+ "Blob":{"type":"blob"},
138
+ "Boolean":{
139
+ "type":"boolean",
140
+ "box":true
141
+ },
142
+ "BoxedBoolean":{
143
+ "type":"boolean",
144
+ "box":true
145
+ },
146
+ "BoxedDouble":{
147
+ "type":"double",
148
+ "box":true
149
+ },
150
+ "BoxedLong":{
151
+ "type":"long",
152
+ "box":true
153
+ },
154
+ "CancelStatementRequest":{
155
+ "type":"structure",
156
+ "required":["Id"],
157
+ "members":{
158
+ "Id":{"shape":"UUID"}
159
+ }
160
+ },
161
+ "CancelStatementResponse":{
162
+ "type":"structure",
163
+ "members":{
164
+ "Status":{"shape":"Boolean"}
165
+ }
166
+ },
167
+ "ColumnList":{
168
+ "type":"list",
169
+ "member":{"shape":"ColumnMetadata"}
170
+ },
171
+ "ColumnMetadata":{
172
+ "type":"structure",
173
+ "members":{
174
+ "columnDefault":{"shape":"String"},
175
+ "isCaseSensitive":{"shape":"bool"},
176
+ "isCurrency":{"shape":"bool"},
177
+ "isSigned":{"shape":"bool"},
178
+ "label":{"shape":"String"},
179
+ "length":{"shape":"Integer"},
180
+ "name":{"shape":"String"},
181
+ "nullable":{"shape":"Integer"},
182
+ "precision":{"shape":"Integer"},
183
+ "scale":{"shape":"Integer"},
184
+ "schemaName":{"shape":"String"},
185
+ "tableName":{"shape":"String"},
186
+ "typeName":{"shape":"String"}
187
+ }
188
+ },
189
+ "ColumnMetadataList":{
190
+ "type":"list",
191
+ "member":{"shape":"ColumnMetadata"}
192
+ },
193
+ "DatabaseList":{
194
+ "type":"list",
195
+ "member":{"shape":"String"}
196
+ },
197
+ "DescribeStatementRequest":{
198
+ "type":"structure",
199
+ "required":["Id"],
200
+ "members":{
201
+ "Id":{"shape":"UUID"}
202
+ }
203
+ },
204
+ "DescribeStatementResponse":{
205
+ "type":"structure",
206
+ "required":["Id"],
207
+ "members":{
208
+ "ClusterIdentifier":{"shape":"String"},
209
+ "CreatedAt":{"shape":"Timestamp"},
210
+ "Database":{"shape":"String"},
211
+ "DbUser":{"shape":"String"},
212
+ "Duration":{"shape":"Long"},
213
+ "Error":{"shape":"String"},
214
+ "Id":{"shape":"UUID"},
215
+ "QueryString":{"shape":"StatementString"},
216
+ "RedshiftPid":{"shape":"Long"},
217
+ "RedshiftQueryId":{"shape":"Long"},
218
+ "ResultRows":{"shape":"Long"},
219
+ "ResultSize":{"shape":"Long"},
220
+ "SecretArn":{"shape":"SecretArn"},
221
+ "Status":{"shape":"StatusString"},
222
+ "UpdatedAt":{"shape":"Timestamp"}
223
+ }
224
+ },
225
+ "DescribeTableRequest":{
226
+ "type":"structure",
227
+ "required":["ClusterIdentifier"],
228
+ "members":{
229
+ "ClusterIdentifier":{"shape":"Location"},
230
+ "Database":{"shape":"String"},
231
+ "DbUser":{"shape":"String"},
232
+ "MaxResults":{"shape":"PageSize"},
233
+ "NextToken":{"shape":"String"},
234
+ "Schema":{"shape":"String"},
235
+ "SecretArn":{"shape":"SecretArn"},
236
+ "Table":{"shape":"String"}
237
+ }
238
+ },
239
+ "DescribeTableResponse":{
240
+ "type":"structure",
241
+ "members":{
242
+ "ColumnList":{"shape":"ColumnList"},
243
+ "NextToken":{"shape":"String"},
244
+ "TableName":{"shape":"String"}
245
+ }
246
+ },
247
+ "ExecuteStatementException":{
248
+ "type":"structure",
249
+ "required":[
250
+ "Message",
251
+ "StatementId"
252
+ ],
253
+ "members":{
254
+ "Message":{"shape":"String"},
255
+ "StatementId":{"shape":"String"}
256
+ },
257
+ "exception":true,
258
+ "fault":true
259
+ },
260
+ "ExecuteStatementInput":{
261
+ "type":"structure",
262
+ "required":[
263
+ "ClusterIdentifier",
264
+ "Sql"
265
+ ],
266
+ "members":{
267
+ "ClusterIdentifier":{"shape":"Location"},
268
+ "Database":{"shape":"String"},
269
+ "DbUser":{"shape":"String"},
270
+ "SecretArn":{"shape":"SecretArn"},
271
+ "Sql":{"shape":"StatementString"},
272
+ "StatementName":{"shape":"StatementNameString"},
273
+ "WithEvent":{"shape":"Boolean"}
274
+ }
275
+ },
276
+ "ExecuteStatementOutput":{
277
+ "type":"structure",
278
+ "members":{
279
+ "ClusterIdentifier":{"shape":"Location"},
280
+ "CreatedAt":{"shape":"Timestamp"},
281
+ "Database":{"shape":"String"},
282
+ "DbUser":{"shape":"String"},
283
+ "Id":{"shape":"UUID"},
284
+ "SecretArn":{"shape":"SecretArn"}
285
+ }
286
+ },
287
+ "Field":{
288
+ "type":"structure",
289
+ "members":{
290
+ "blobValue":{"shape":"Blob"},
291
+ "booleanValue":{"shape":"BoxedBoolean"},
292
+ "doubleValue":{"shape":"BoxedDouble"},
293
+ "isNull":{"shape":"BoxedBoolean"},
294
+ "longValue":{"shape":"BoxedLong"},
295
+ "stringValue":{"shape":"String"}
296
+ }
297
+ },
298
+ "FieldList":{
299
+ "type":"list",
300
+ "member":{"shape":"Field"}
301
+ },
302
+ "GetStatementResultRequest":{
303
+ "type":"structure",
304
+ "required":["Id"],
305
+ "members":{
306
+ "Id":{"shape":"UUID"},
307
+ "NextToken":{"shape":"String"}
308
+ }
309
+ },
310
+ "GetStatementResultResponse":{
311
+ "type":"structure",
312
+ "required":["Records"],
313
+ "members":{
314
+ "ColumnMetadata":{"shape":"ColumnMetadataList"},
315
+ "NextToken":{"shape":"String"},
316
+ "Records":{"shape":"SqlRecords"},
317
+ "TotalNumRows":{"shape":"Long"}
318
+ }
319
+ },
320
+ "Integer":{"type":"integer"},
321
+ "InternalServerException":{
322
+ "type":"structure",
323
+ "required":["Message"],
324
+ "members":{
325
+ "Message":{"shape":"String"}
326
+ },
327
+ "exception":true,
328
+ "fault":true
329
+ },
330
+ "ListDatabasesRequest":{
331
+ "type":"structure",
332
+ "required":["ClusterIdentifier"],
333
+ "members":{
334
+ "ClusterIdentifier":{"shape":"Location"},
335
+ "Database":{"shape":"String"},
336
+ "DbUser":{"shape":"String"},
337
+ "MaxResults":{"shape":"PageSize"},
338
+ "NextToken":{"shape":"String"},
339
+ "SecretArn":{"shape":"SecretArn"}
340
+ }
341
+ },
342
+ "ListDatabasesResponse":{
343
+ "type":"structure",
344
+ "members":{
345
+ "Databases":{"shape":"DatabaseList"},
346
+ "NextToken":{"shape":"String"}
347
+ }
348
+ },
349
+ "ListSchemasRequest":{
350
+ "type":"structure",
351
+ "required":[
352
+ "ClusterIdentifier",
353
+ "Database"
354
+ ],
355
+ "members":{
356
+ "ClusterIdentifier":{"shape":"Location"},
357
+ "Database":{"shape":"String"},
358
+ "DbUser":{"shape":"String"},
359
+ "MaxResults":{"shape":"PageSize"},
360
+ "NextToken":{"shape":"String"},
361
+ "SchemaPattern":{"shape":"String"},
362
+ "SecretArn":{"shape":"SecretArn"}
363
+ }
364
+ },
365
+ "ListSchemasResponse":{
366
+ "type":"structure",
367
+ "members":{
368
+ "NextToken":{"shape":"String"},
369
+ "Schemas":{"shape":"SchemaList"}
370
+ }
371
+ },
372
+ "ListStatementsLimit":{
373
+ "type":"integer",
374
+ "max":100,
375
+ "min":0
376
+ },
377
+ "ListStatementsRequest":{
378
+ "type":"structure",
379
+ "members":{
380
+ "MaxResults":{"shape":"ListStatementsLimit"},
381
+ "NextToken":{"shape":"String"},
382
+ "StatementName":{"shape":"StatementNameString"},
383
+ "Status":{"shape":"StatusString"}
384
+ }
385
+ },
386
+ "ListStatementsResponse":{
387
+ "type":"structure",
388
+ "required":["Statements"],
389
+ "members":{
390
+ "NextToken":{"shape":"String"},
391
+ "Statements":{"shape":"StatementList"}
392
+ }
393
+ },
394
+ "ListTablesRequest":{
395
+ "type":"structure",
396
+ "required":[
397
+ "ClusterIdentifier",
398
+ "Database"
399
+ ],
400
+ "members":{
401
+ "ClusterIdentifier":{"shape":"Location"},
402
+ "Database":{"shape":"String"},
403
+ "DbUser":{"shape":"String"},
404
+ "MaxResults":{"shape":"PageSize"},
405
+ "NextToken":{"shape":"String"},
406
+ "SchemaPattern":{"shape":"String"},
407
+ "SecretArn":{"shape":"SecretArn"},
408
+ "TablePattern":{"shape":"String"}
409
+ }
410
+ },
411
+ "ListTablesResponse":{
412
+ "type":"structure",
413
+ "members":{
414
+ "NextToken":{"shape":"String"},
415
+ "Tables":{"shape":"TableList"}
416
+ }
417
+ },
418
+ "Location":{"type":"string"},
419
+ "Long":{"type":"long"},
420
+ "PageSize":{"type":"integer"},
421
+ "ResourceNotFoundException":{
422
+ "type":"structure",
423
+ "required":[
424
+ "Message",
425
+ "ResourceId"
426
+ ],
427
+ "members":{
428
+ "Message":{"shape":"String"},
429
+ "ResourceId":{"shape":"String"}
430
+ },
431
+ "exception":true
432
+ },
433
+ "SchemaList":{
434
+ "type":"list",
435
+ "member":{"shape":"String"}
436
+ },
437
+ "SecretArn":{"type":"string"},
438
+ "SqlRecords":{
439
+ "type":"list",
440
+ "member":{"shape":"FieldList"}
441
+ },
442
+ "StatementData":{
443
+ "type":"structure",
444
+ "required":["Id"],
445
+ "members":{
446
+ "CreatedAt":{"shape":"Timestamp"},
447
+ "Id":{"shape":"UUID"},
448
+ "QueryString":{"shape":"StatementString"},
449
+ "SecretArn":{"shape":"SecretArn"},
450
+ "StatementName":{"shape":"StatementNameString"},
451
+ "Status":{"shape":"StatusString"},
452
+ "UpdatedAt":{"shape":"Timestamp"}
453
+ }
454
+ },
455
+ "StatementList":{
456
+ "type":"list",
457
+ "member":{"shape":"StatementData"}
458
+ },
459
+ "StatementNameString":{
460
+ "type":"string",
461
+ "max":500,
462
+ "min":0
463
+ },
464
+ "StatementString":{"type":"string"},
465
+ "StatusString":{
466
+ "type":"string",
467
+ "enum":[
468
+ "ABORTED",
469
+ "ALL",
470
+ "FAILED",
471
+ "FINISHED",
472
+ "PICKED",
473
+ "STARTED",
474
+ "SUBMITTED"
475
+ ]
476
+ },
477
+ "String":{"type":"string"},
478
+ "TableList":{
479
+ "type":"list",
480
+ "member":{"shape":"TableMember"}
481
+ },
482
+ "TableMember":{
483
+ "type":"structure",
484
+ "members":{
485
+ "name":{"shape":"String"},
486
+ "schema":{"shape":"String"},
487
+ "type":{"shape":"String"}
488
+ }
489
+ },
490
+ "Timestamp":{"type":"timestamp"},
491
+ "UUID":{"type":"string"},
492
+ "ValidationException":{
493
+ "type":"structure",
494
+ "members":{
495
+ "Message":{"shape":"String"}
496
+ },
497
+ "exception":true
498
+ },
499
+ "bool":{"type":"boolean"}
500
+ }
501
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "pagination": {
3
+ "DescribeTable": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults",
7
+ "result_key": "ColumnList"
8
+ },
9
+ "GetStatementResult": {
10
+ "input_token": "NextToken",
11
+ "output_token": "NextToken",
12
+ "result_key": "Records"
13
+ },
14
+ "ListDatabases": {
15
+ "input_token": "NextToken",
16
+ "output_token": "NextToken",
17
+ "limit_key": "MaxResults",
18
+ "result_key": "Databases"
19
+ },
20
+ "ListSchemas": {
21
+ "input_token": "NextToken",
22
+ "output_token": "NextToken",
23
+ "limit_key": "MaxResults",
24
+ "result_key": "Schemas"
25
+ },
26
+ "ListStatements": {
27
+ "input_token": "NextToken",
28
+ "output_token": "NextToken",
29
+ "limit_key": "MaxResults",
30
+ "result_key": "Statements"
31
+ },
32
+ "ListTables": {
33
+ "input_token": "NextToken",
34
+ "output_token": "NextToken",
35
+ "limit_key": "MaxResults",
36
+ "result_key": "Tables"
37
+ }
38
+ }
39
+ }
@@ -678,6 +678,7 @@
678
678
  "ca-central-1" : { },
679
679
  "eu-central-1" : { },
680
680
  "eu-north-1" : { },
681
+ "eu-south-1" : { },
681
682
  "eu-west-1" : { },
682
683
  "eu-west-2" : { },
683
684
  "eu-west-3" : { },
@@ -2785,6 +2786,7 @@
2785
2786
  "ca-central-1" : { },
2786
2787
  "eu-central-1" : { },
2787
2788
  "eu-north-1" : { },
2789
+ "eu-south-1" : { },
2788
2790
  "eu-west-1" : { },
2789
2791
  "eu-west-2" : { },
2790
2792
  "eu-west-3" : { },
@@ -3307,6 +3309,7 @@
3307
3309
  "ca-central-1" : { },
3308
3310
  "eu-central-1" : { },
3309
3311
  "eu-north-1" : { },
3312
+ "eu-south-1" : { },
3310
3313
  "eu-west-1" : { },
3311
3314
  "eu-west-2" : { },
3312
3315
  "eu-west-3" : { },
@@ -202,6 +202,7 @@ module Aws
202
202
  RDS
203
203
  RDSDataService
204
204
  Redshift
205
+ RedshiftDataAPIService
205
206
  Rekognition
206
207
  ResourceGroups
207
208
  ResourceGroupsTaggingAPI
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:RedshiftDataAPIService, {
2
+ api: "#{Aws::API_DIR}/redshift-data/2019-12-20/api-2.json",
3
+ docs: "#{Aws::API_DIR}/redshift-data/2019-12-20/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/redshift-data/2019-12-20/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/redshift-data/2019-12-20/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.581'
2
+ VERSION = '2.11.582'
3
3
  end
@@ -714,6 +714,10 @@
714
714
  "models": "redshift/2012-12-01",
715
715
  "endpoint": "redshift"
716
716
  },
717
+ "RedshiftDataAPIService": {
718
+ "models": "redshift-data/2019-12-20",
719
+ "endpoint": "redshift-data"
720
+ },
717
721
  "Rekognition": {
718
722
  "models": "rekognition/2016-06-27",
719
723
  "endpoint": "rekognition"
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.581
4
+ version: 2.11.582
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: 2020-09-08 00:00:00.000000000 Z
11
+ date: 2020-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -743,6 +743,9 @@ files:
743
743
  - apis/rds/2014-10-31/resources-1.json
744
744
  - apis/rds/2014-10-31/smoke.json
745
745
  - apis/rds/2014-10-31/waiters-2.json
746
+ - apis/redshift-data/2019-12-20/api-2.json
747
+ - apis/redshift-data/2019-12-20/examples-1.json
748
+ - apis/redshift-data/2019-12-20/paginators-1.json
746
749
  - apis/redshift/2012-12-01/api-2.json
747
750
  - apis/redshift/2012-12-01/examples-1.json
748
751
  - apis/redshift/2012-12-01/paginators-1.json
@@ -1235,6 +1238,7 @@ files:
1235
1238
  - lib/aws-sdk-core/rds/auth_token_generator.rb
1236
1239
  - lib/aws-sdk-core/rdsdataservice.rb
1237
1240
  - lib/aws-sdk-core/redshift.rb
1241
+ - lib/aws-sdk-core/redshiftdataapiservice.rb
1238
1242
  - lib/aws-sdk-core/refreshing_credentials.rb
1239
1243
  - lib/aws-sdk-core/rekognition.rb
1240
1244
  - lib/aws-sdk-core/resourcegroups.rb