aws-sdk-core 2.11.534 → 2.11.539

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/apis/amplify/2017-07-25/api-2.json +37 -6
  3. data/apis/autoscaling/2011-01-01/examples-1.json +129 -29
  4. data/apis/backup/2018-11-15/api-2.json +43 -3
  5. data/apis/cloudformation/2010-05-15/api-2.json +41 -0
  6. data/apis/codecommit/2015-04-13/api-2.json +139 -5
  7. data/apis/codecommit/2015-04-13/paginators-1.json +5 -0
  8. data/apis/codeguru-reviewer/2019-09-19/api-2.json +4 -2
  9. data/apis/codeguruprofiler/2019-07-18/api-2.json +691 -0
  10. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +10 -0
  11. data/apis/codestar-connections/2019-12-01/api-2.json +207 -8
  12. data/apis/codestar-connections/2019-12-01/paginators-1.json +5 -0
  13. data/apis/cognito-idp/2016-04-18/api-2.json +4 -2
  14. data/apis/comprehendmedical/2018-10-30/api-2.json +2 -1
  15. data/apis/ec2/2016-11-15/api-2.json +438 -3
  16. data/apis/ec2/2016-11-15/paginators-1.json +18 -0
  17. data/apis/ecr/2015-09-21/api-2.json +11 -2
  18. data/apis/elasticmapreduce/2009-03-31/api-2.json +19 -3
  19. data/apis/fsx/2018-03-01/api-2.json +39 -12
  20. data/apis/glue/2017-03-31/api-2.json +418 -0
  21. data/apis/honeycode/2020-03-01/api-2.json +321 -0
  22. data/apis/honeycode/2020-03-01/examples-1.json +5 -0
  23. data/apis/honeycode/2020-03-01/paginators-1.json +4 -0
  24. data/apis/organizations/2016-11-28/api-2.json +32 -7
  25. data/apis/quicksight/2018-04-01/api-2.json +17 -2
  26. data/apis/sagemaker/2017-07-24/api-2.json +19 -0
  27. data/endpoints.json +50 -0
  28. data/lib/aws-sdk-core.rb +1 -0
  29. data/lib/aws-sdk-core/honeycode.rb +6 -0
  30. data/lib/aws-sdk-core/version.rb +1 -1
  31. data/service-models.json +4 -0
  32. metadata +6 -2
@@ -0,0 +1,321 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2020-03-01",
5
+ "endpointPrefix":"honeycode",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"rest-json",
8
+ "serviceAbbreviation":"Honeycode",
9
+ "serviceFullName":"Amazon Honeycode",
10
+ "serviceId":"Honeycode",
11
+ "signatureVersion":"v4",
12
+ "signingName":"honeycode",
13
+ "uid":"honeycode-2020-03-01"
14
+ },
15
+ "operations":{
16
+ "GetScreenData":{
17
+ "name":"GetScreenData",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/screendata"
21
+ },
22
+ "input":{"shape":"GetScreenDataRequest"},
23
+ "output":{"shape":"GetScreenDataResult"},
24
+ "errors":[
25
+ {"shape":"AccessDeniedException"},
26
+ {"shape":"InternalServerException"},
27
+ {"shape":"RequestTimeoutException"},
28
+ {"shape":"ResourceNotFoundException"},
29
+ {"shape":"ServiceUnavailableException"},
30
+ {"shape":"ThrottlingException"},
31
+ {"shape":"ValidationException"}
32
+ ]
33
+ },
34
+ "InvokeScreenAutomation":{
35
+ "name":"InvokeScreenAutomation",
36
+ "http":{
37
+ "method":"POST",
38
+ "requestUri":"/workbooks/{workbookId}/apps/{appId}/screens/{screenId}/automations/{automationId}"
39
+ },
40
+ "input":{"shape":"InvokeScreenAutomationRequest"},
41
+ "output":{"shape":"InvokeScreenAutomationResult"},
42
+ "errors":[
43
+ {"shape":"AccessDeniedException"},
44
+ {"shape":"InternalServerException"},
45
+ {"shape":"ResourceNotFoundException"},
46
+ {"shape":"ValidationException"},
47
+ {"shape":"ThrottlingException"},
48
+ {"shape":"ServiceUnavailableException"},
49
+ {"shape":"AutomationExecutionException"},
50
+ {"shape":"AutomationExecutionTimeoutException"},
51
+ {"shape":"RequestTimeoutException"}
52
+ ]
53
+ }
54
+ },
55
+ "shapes":{
56
+ "AccessDeniedException":{
57
+ "type":"structure",
58
+ "members":{
59
+ "message":{"shape":"ErrorMessage"}
60
+ },
61
+ "error":{"httpStatusCode":403},
62
+ "exception":true
63
+ },
64
+ "AutomationExecutionException":{
65
+ "type":"structure",
66
+ "members":{
67
+ "message":{"shape":"ErrorMessage"}
68
+ },
69
+ "error":{"httpStatusCode":400},
70
+ "exception":true
71
+ },
72
+ "AutomationExecutionTimeoutException":{
73
+ "type":"structure",
74
+ "members":{
75
+ "message":{"shape":"ErrorMessage"}
76
+ },
77
+ "error":{"httpStatusCode":504},
78
+ "exception":true
79
+ },
80
+ "ClientRequestToken":{
81
+ "type":"string",
82
+ "max":64,
83
+ "min":32
84
+ },
85
+ "ColumnMetadata":{
86
+ "type":"structure",
87
+ "required":[
88
+ "name",
89
+ "format"
90
+ ],
91
+ "members":{
92
+ "name":{"shape":"Name"},
93
+ "format":{"shape":"Format"}
94
+ }
95
+ },
96
+ "DataItem":{
97
+ "type":"structure",
98
+ "members":{
99
+ "overrideFormat":{"shape":"Format"},
100
+ "rawValue":{"shape":"RawValue"},
101
+ "formattedValue":{"shape":"FormattedValue"}
102
+ },
103
+ "sensitive":true
104
+ },
105
+ "DataItems":{
106
+ "type":"list",
107
+ "member":{"shape":"DataItem"}
108
+ },
109
+ "ErrorMessage":{"type":"string"},
110
+ "Format":{
111
+ "type":"string",
112
+ "enum":[
113
+ "AUTO",
114
+ "NUMBER",
115
+ "CURRENCY",
116
+ "DATE",
117
+ "TIME",
118
+ "DATE_TIME",
119
+ "PERCENTAGE",
120
+ "TEXT",
121
+ "ACCOUNTING",
122
+ "CONTACT",
123
+ "ROWLINK"
124
+ ]
125
+ },
126
+ "FormattedValue":{"type":"string"},
127
+ "GetScreenDataRequest":{
128
+ "type":"structure",
129
+ "required":[
130
+ "workbookId",
131
+ "appId",
132
+ "screenId"
133
+ ],
134
+ "members":{
135
+ "workbookId":{"shape":"ResourceId"},
136
+ "appId":{"shape":"ResourceId"},
137
+ "screenId":{"shape":"ResourceId"},
138
+ "variables":{"shape":"VariableValueMap"},
139
+ "maxResults":{"shape":"MaxResults"},
140
+ "nextToken":{"shape":"PaginationToken"}
141
+ }
142
+ },
143
+ "GetScreenDataResult":{
144
+ "type":"structure",
145
+ "required":[
146
+ "results",
147
+ "workbookCursor"
148
+ ],
149
+ "members":{
150
+ "results":{"shape":"ResultSetMap"},
151
+ "workbookCursor":{"shape":"WorkbookCursor"},
152
+ "nextToken":{"shape":"PaginationToken"}
153
+ }
154
+ },
155
+ "InternalServerException":{
156
+ "type":"structure",
157
+ "members":{
158
+ "message":{"shape":"ErrorMessage"}
159
+ },
160
+ "error":{"httpStatusCode":500},
161
+ "exception":true
162
+ },
163
+ "InvokeScreenAutomationRequest":{
164
+ "type":"structure",
165
+ "required":[
166
+ "workbookId",
167
+ "appId",
168
+ "screenId",
169
+ "screenAutomationId"
170
+ ],
171
+ "members":{
172
+ "workbookId":{
173
+ "shape":"ResourceId",
174
+ "location":"uri",
175
+ "locationName":"workbookId"
176
+ },
177
+ "appId":{
178
+ "shape":"ResourceId",
179
+ "location":"uri",
180
+ "locationName":"appId"
181
+ },
182
+ "screenId":{
183
+ "shape":"ResourceId",
184
+ "location":"uri",
185
+ "locationName":"screenId"
186
+ },
187
+ "screenAutomationId":{
188
+ "shape":"ResourceId",
189
+ "location":"uri",
190
+ "locationName":"automationId"
191
+ },
192
+ "variables":{"shape":"VariableValueMap"},
193
+ "rowId":{"shape":"RowId"},
194
+ "clientRequestToken":{"shape":"ClientRequestToken"}
195
+ }
196
+ },
197
+ "InvokeScreenAutomationResult":{
198
+ "type":"structure",
199
+ "required":["workbookCursor"],
200
+ "members":{
201
+ "workbookCursor":{"shape":"WorkbookCursor"}
202
+ }
203
+ },
204
+ "MaxResults":{
205
+ "type":"integer",
206
+ "box":true,
207
+ "max":100,
208
+ "min":1
209
+ },
210
+ "Name":{
211
+ "type":"string",
212
+ "sensitive":true
213
+ },
214
+ "PaginationToken":{
215
+ "type":"string",
216
+ "max":1024,
217
+ "min":1
218
+ },
219
+ "RawValue":{"type":"string"},
220
+ "RequestTimeoutException":{
221
+ "type":"structure",
222
+ "members":{
223
+ "message":{"shape":"ErrorMessage"}
224
+ },
225
+ "error":{"httpStatusCode":504},
226
+ "exception":true
227
+ },
228
+ "ResourceId":{
229
+ "type":"string",
230
+ "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
231
+ },
232
+ "ResourceNotFoundException":{
233
+ "type":"structure",
234
+ "members":{
235
+ "message":{"shape":"ErrorMessage"}
236
+ },
237
+ "error":{"httpStatusCode":404},
238
+ "exception":true
239
+ },
240
+ "ResultHeader":{
241
+ "type":"list",
242
+ "member":{"shape":"ColumnMetadata"}
243
+ },
244
+ "ResultRow":{
245
+ "type":"structure",
246
+ "required":["dataItems"],
247
+ "members":{
248
+ "rowId":{"shape":"RowId"},
249
+ "dataItems":{"shape":"DataItems"}
250
+ }
251
+ },
252
+ "ResultRows":{
253
+ "type":"list",
254
+ "member":{"shape":"ResultRow"}
255
+ },
256
+ "ResultSet":{
257
+ "type":"structure",
258
+ "required":[
259
+ "headers",
260
+ "rows"
261
+ ],
262
+ "members":{
263
+ "headers":{"shape":"ResultHeader"},
264
+ "rows":{"shape":"ResultRows"}
265
+ }
266
+ },
267
+ "ResultSetMap":{
268
+ "type":"map",
269
+ "key":{"shape":"Name"},
270
+ "value":{"shape":"ResultSet"}
271
+ },
272
+ "RowId":{
273
+ "type":"string",
274
+ "pattern":"row:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\\/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
275
+ },
276
+ "ServiceUnavailableException":{
277
+ "type":"structure",
278
+ "members":{
279
+ "message":{"shape":"ErrorMessage"}
280
+ },
281
+ "error":{"httpStatusCode":503},
282
+ "exception":true
283
+ },
284
+ "ThrottlingException":{
285
+ "type":"structure",
286
+ "members":{
287
+ "message":{"shape":"ErrorMessage"}
288
+ },
289
+ "error":{"httpStatusCode":429},
290
+ "exception":true
291
+ },
292
+ "ValidationException":{
293
+ "type":"structure",
294
+ "required":["message"],
295
+ "members":{
296
+ "message":{"shape":"ErrorMessage"}
297
+ },
298
+ "error":{"httpStatusCode":400},
299
+ "exception":true
300
+ },
301
+ "VariableName":{
302
+ "type":"string",
303
+ "sensitive":true
304
+ },
305
+ "VariableValue":{
306
+ "type":"structure",
307
+ "required":["rawValue"],
308
+ "members":{
309
+ "rawValue":{"shape":"RawValue"}
310
+ },
311
+ "sensitive":true
312
+ },
313
+ "VariableValueMap":{
314
+ "type":"map",
315
+ "key":{"shape":"VariableName"},
316
+ "value":{"shape":"VariableValue"},
317
+ "sensitive":true
318
+ },
319
+ "WorkbookCursor":{"type":"long"}
320
+ }
321
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -1031,6 +1031,7 @@
1031
1031
  },
1032
1032
  "AccountId":{
1033
1033
  "type":"string",
1034
+ "max":12,
1034
1035
  "pattern":"^\\d{12}$"
1035
1036
  },
1036
1037
  "AccountJoinedMethod":{
@@ -1129,6 +1130,7 @@
1129
1130
  },
1130
1131
  "ChildId":{
1131
1132
  "type":"string",
1133
+ "max":100,
1132
1134
  "pattern":"^(\\d{12})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})$"
1133
1135
  },
1134
1136
  "ChildNotFoundException":{
@@ -1224,6 +1226,7 @@
1224
1226
  },
1225
1227
  "CreateAccountRequestId":{
1226
1228
  "type":"string",
1229
+ "max":36,
1227
1230
  "pattern":"^car-[a-z0-9]{8,32}$"
1228
1231
  },
1229
1232
  "CreateAccountResponse":{
@@ -1583,7 +1586,10 @@
1583
1586
  },
1584
1587
  "EffectivePolicyType":{
1585
1588
  "type":"string",
1586
- "enum":["TAG_POLICY"]
1589
+ "enum":[
1590
+ "TAG_POLICY",
1591
+ "BACKUP_POLICY"
1592
+ ]
1587
1593
  },
1588
1594
  "Email":{
1589
1595
  "type":"string",
@@ -1705,6 +1711,7 @@
1705
1711
  },
1706
1712
  "HandshakeId":{
1707
1713
  "type":"string",
1714
+ "max":34,
1708
1715
  "pattern":"^h-[0-9a-z]{8,32}$"
1709
1716
  },
1710
1717
  "HandshakeNotFoundException":{
@@ -1717,6 +1724,7 @@
1717
1724
  "HandshakeNotes":{
1718
1725
  "type":"string",
1719
1726
  "max":1024,
1727
+ "pattern":"[\\s\\S]*",
1720
1728
  "sensitive":true
1721
1729
  },
1722
1730
  "HandshakeParties":{
@@ -1738,6 +1746,7 @@
1738
1746
  "type":"string",
1739
1747
  "max":64,
1740
1748
  "min":1,
1749
+ "pattern":"[\\s\\S]*",
1741
1750
  "sensitive":true
1742
1751
  },
1743
1752
  "HandshakePartyType":{
@@ -2141,7 +2150,11 @@
2141
2150
  "DestinationParentId":{"shape":"ParentId"}
2142
2151
  }
2143
2152
  },
2144
- "NextToken":{"type":"string"},
2153
+ "NextToken":{
2154
+ "type":"string",
2155
+ "max":100000,
2156
+ "pattern":"[\\s\\S]*"
2157
+ },
2145
2158
  "Organization":{
2146
2159
  "type":"structure",
2147
2160
  "members":{
@@ -2190,12 +2203,14 @@
2190
2203
  },
2191
2204
  "OrganizationalUnitId":{
2192
2205
  "type":"string",
2206
+ "max":68,
2193
2207
  "pattern":"^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$"
2194
2208
  },
2195
2209
  "OrganizationalUnitName":{
2196
2210
  "type":"string",
2197
2211
  "max":128,
2198
- "min":1
2212
+ "min":1,
2213
+ "pattern":"[\\s\\S]*"
2199
2214
  },
2200
2215
  "OrganizationalUnitNotEmptyException":{
2201
2216
  "type":"structure",
@@ -2224,6 +2239,7 @@
2224
2239
  },
2225
2240
  "ParentId":{
2226
2241
  "type":"string",
2242
+ "max":100,
2227
2243
  "pattern":"^(r-[0-9a-z]{4,32})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})$"
2228
2244
  },
2229
2245
  "ParentNotFoundException":{
@@ -2269,14 +2285,17 @@
2269
2285
  "PolicyContent":{
2270
2286
  "type":"string",
2271
2287
  "max":1000000,
2272
- "min":1
2288
+ "min":1,
2289
+ "pattern":"[\\s\\S]*"
2273
2290
  },
2274
2291
  "PolicyDescription":{
2275
2292
  "type":"string",
2276
- "max":512
2293
+ "max":512,
2294
+ "pattern":"[\\s\\S]*"
2277
2295
  },
2278
2296
  "PolicyId":{
2279
2297
  "type":"string",
2298
+ "max":130,
2280
2299
  "pattern":"^p-[0-9a-zA-Z_]{8,128}$"
2281
2300
  },
2282
2301
  "PolicyInUseException":{
@@ -2289,7 +2308,8 @@
2289
2308
  "PolicyName":{
2290
2309
  "type":"string",
2291
2310
  "max":128,
2292
- "min":1
2311
+ "min":1,
2312
+ "pattern":"[\\s\\S]*"
2293
2313
  },
2294
2314
  "PolicyNotAttachedException":{
2295
2315
  "type":"structure",
@@ -2318,6 +2338,7 @@
2318
2338
  },
2319
2339
  "PolicyTargetId":{
2320
2340
  "type":"string",
2341
+ "max":100,
2321
2342
  "pattern":"^(r-[0-9a-z]{4,32})|(\\d{12})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})$"
2322
2343
  },
2323
2344
  "PolicyTargetSummary":{
@@ -2337,7 +2358,8 @@
2337
2358
  "type":"string",
2338
2359
  "enum":[
2339
2360
  "SERVICE_CONTROL_POLICY",
2340
- "TAG_POLICY"
2361
+ "TAG_POLICY",
2362
+ "BACKUP_POLICY"
2341
2363
  ]
2342
2364
  },
2343
2365
  "PolicyTypeAlreadyEnabledException":{
@@ -2400,6 +2422,7 @@
2400
2422
  },
2401
2423
  "RoleName":{
2402
2424
  "type":"string",
2425
+ "max":64,
2403
2426
  "pattern":"[\\w+=,.@-]{1,64}"
2404
2427
  },
2405
2428
  "Root":{
@@ -2417,6 +2440,7 @@
2417
2440
  },
2418
2441
  "RootId":{
2419
2442
  "type":"string",
2443
+ "max":34,
2420
2444
  "pattern":"^r-[0-9a-z]{4,32}$"
2421
2445
  },
2422
2446
  "RootName":{
@@ -2495,6 +2519,7 @@
2495
2519
  },
2496
2520
  "TaggableResourceId":{
2497
2521
  "type":"string",
2522
+ "max":12,
2498
2523
  "pattern":"^\\d{12}$"
2499
2524
  },
2500
2525
  "Tags":{