aws-sdk 2.1124.0 → 2.1127.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/README.md +1 -1
  3. package/apis/codeguru-reviewer-2019-09-19.min.json +15 -8
  4. package/apis/ec2-2016-11-15.min.json +5 -1
  5. package/apis/kinesis-video-archived-media-2017-09-30.min.json +64 -0
  6. package/apis/kinesis-video-archived-media-2017-09-30.paginators.json +6 -0
  7. package/apis/kinesisvideo-2017-09-30.min.json +145 -8
  8. package/apis/mediaconvert-2017-08-29.min.json +136 -120
  9. package/apis/outposts-2019-12-03.min.json +56 -0
  10. package/apis/outposts-2019-12-03.paginators.json +10 -0
  11. package/apis/rds-2014-10-31.min.json +20 -7
  12. package/apis/s3-2006-03-01.examples.json +124 -124
  13. package/apis/sagemaker-2017-07-24.min.json +149 -138
  14. package/apis/ssm-2014-11-06.min.json +3 -0
  15. package/apis/synthetics-2017-10-11.min.json +8 -3
  16. package/apis/wafv2-2019-07-29.min.json +196 -130
  17. package/clients/codegurureviewer.d.ts +18 -5
  18. package/clients/ec2.d.ts +10 -2
  19. package/clients/kinesisvideo.d.ts +177 -10
  20. package/clients/kinesisvideoarchivedmedia.d.ts +94 -0
  21. package/clients/mediaconvert.d.ts +23 -2
  22. package/clients/organizations.d.ts +5 -5
  23. package/clients/outposts.d.ts +67 -10
  24. package/clients/rds.d.ts +36 -0
  25. package/clients/s3.d.ts +8 -8
  26. package/clients/sagemaker.d.ts +10 -0
  27. package/clients/ssm.d.ts +5 -1
  28. package/clients/synthetics.d.ts +7 -3
  29. package/clients/wafv2.d.ts +104 -27
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +14 -14
  32. package/dist/aws-sdk.js +246 -19
  33. package/dist/aws-sdk.min.js +69 -69
  34. package/lib/core.js +1 -1
  35. package/package.json +1 -1
@@ -364,6 +364,62 @@
364
364
  }
365
365
  }
366
366
  },
367
+ "ListAssets": {
368
+ "http": {
369
+ "method": "GET",
370
+ "requestUri": "/outposts/{OutpostId}/assets"
371
+ },
372
+ "input": {
373
+ "type": "structure",
374
+ "required": [
375
+ "OutpostIdentifier"
376
+ ],
377
+ "members": {
378
+ "OutpostIdentifier": {
379
+ "location": "uri",
380
+ "locationName": "OutpostId"
381
+ },
382
+ "HostIdFilter": {
383
+ "location": "querystring",
384
+ "locationName": "HostIdFilter",
385
+ "type": "list",
386
+ "member": {}
387
+ },
388
+ "MaxResults": {
389
+ "location": "querystring",
390
+ "locationName": "MaxResults",
391
+ "type": "integer"
392
+ },
393
+ "NextToken": {
394
+ "location": "querystring",
395
+ "locationName": "NextToken"
396
+ }
397
+ }
398
+ },
399
+ "output": {
400
+ "type": "structure",
401
+ "members": {
402
+ "Assets": {
403
+ "type": "list",
404
+ "member": {
405
+ "type": "structure",
406
+ "members": {
407
+ "AssetId": {},
408
+ "RackId": {},
409
+ "AssetType": {},
410
+ "ComputeAttributes": {
411
+ "type": "structure",
412
+ "members": {
413
+ "HostId": {}
414
+ }
415
+ }
416
+ }
417
+ }
418
+ },
419
+ "NextToken": {}
420
+ }
421
+ }
422
+ },
367
423
  "ListCatalogItems": {
368
424
  "http": {
369
425
  "method": "GET",
@@ -1,5 +1,15 @@
1
1
  {
2
2
  "pagination": {
3
+ "GetOutpostInstanceTypes": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListAssets": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
3
13
  "ListCatalogItems": {
4
14
  "input_token": "NextToken",
5
15
  "output_token": "NextToken",
@@ -631,7 +631,8 @@
631
631
  "type": "boolean"
632
632
  },
633
633
  "CustomIamInstanceProfile": {},
634
- "BackupTarget": {}
634
+ "BackupTarget": {},
635
+ "NetworkType": {}
635
636
  }
636
637
  },
637
638
  "output": {
@@ -719,6 +720,7 @@
719
720
  "type": "integer"
720
721
  },
721
722
  "CustomIamInstanceProfile": {},
723
+ "NetworkType": {},
722
724
  "SourceRegion": {}
723
725
  }
724
726
  },
@@ -2507,6 +2509,9 @@
2507
2509
  },
2508
2510
  "SupportsClusters": {
2509
2511
  "type": "boolean"
2512
+ },
2513
+ "SupportedNetworkTypes": {
2514
+ "shape": "Sv"
2510
2515
  }
2511
2516
  },
2512
2517
  "wrapper": true
@@ -3173,7 +3178,8 @@
3173
3178
  "AutomationMode": {},
3174
3179
  "ResumeFullAutomationModeMinutes": {
3175
3180
  "type": "integer"
3176
- }
3181
+ },
3182
+ "NetworkType": {}
3177
3183
  }
3178
3184
  },
3179
3185
  "output": {
@@ -4056,7 +4062,8 @@
4056
4062
  "type": "boolean"
4057
4063
  },
4058
4064
  "CustomIamInstanceProfile": {},
4059
- "BackupTarget": {}
4065
+ "BackupTarget": {},
4066
+ "NetworkType": {}
4060
4067
  }
4061
4068
  },
4062
4069
  "output": {
@@ -4167,7 +4174,8 @@
4167
4174
  },
4168
4175
  "MaxAllocatedStorage": {
4169
4176
  "type": "integer"
4170
- }
4177
+ },
4178
+ "NetworkType": {}
4171
4179
  }
4172
4180
  },
4173
4181
  "output": {
@@ -4256,7 +4264,8 @@
4256
4264
  "type": "boolean"
4257
4265
  },
4258
4266
  "CustomIamInstanceProfile": {},
4259
- "BackupTarget": {}
4267
+ "BackupTarget": {},
4268
+ "NetworkType": {}
4260
4269
  }
4261
4270
  },
4262
4271
  "output": {
@@ -5562,7 +5571,8 @@
5562
5571
  "type": "timestamp"
5563
5572
  },
5564
5573
  "CustomIamInstanceProfile": {},
5565
- "BackupTarget": {}
5574
+ "BackupTarget": {},
5575
+ "NetworkType": {}
5566
5576
  },
5567
5577
  "wrapper": true
5568
5578
  },
@@ -5603,7 +5613,10 @@
5603
5613
  }
5604
5614
  }
5605
5615
  },
5606
- "DBSubnetGroupArn": {}
5616
+ "DBSubnetGroupArn": {},
5617
+ "SupportedNetworkTypes": {
5618
+ "shape": "Sv"
5619
+ }
5607
5620
  },
5608
5621
  "wrapper": true
5609
5622
  },