aws-sdk 2.1376.0 → 2.1378.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.
- package/CHANGELOG.md +19 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +3 -0
- package/apis/codecatalyst-2022-09-28.min.json +75 -12
- package/apis/codecatalyst-2022-09-28.paginators.json +6 -0
- package/apis/elasticache-2015-02-02.min.json +147 -143
- package/apis/ivs-realtime-2020-07-14.min.json +223 -0
- package/apis/ivs-realtime-2020-07-14.paginators.json +15 -0
- package/apis/kafka-2018-11-14.min.json +6 -2
- package/apis/omics-2022-11-28.min.json +1393 -897
- package/apis/omics-2022-11-28.paginators.json +12 -0
- package/apis/rekognition-2016-06-27.min.json +104 -90
- package/apis/rolesanywhere-2018-05-10.min.json +159 -43
- package/apis/support-2013-04-15.min.json +97 -14
- package/apis/transfer-2018-11-05.min.json +48 -47
- package/clients/athena.d.ts +4 -0
- package/clients/codecatalyst.d.ts +66 -0
- package/clients/connect.d.ts +6 -6
- package/clients/elasticache.d.ts +25 -8
- package/clients/es.d.ts +1 -1
- package/clients/health.d.ts +19 -19
- package/clients/ivsrealtime.d.ts +292 -8
- package/clients/kafka.d.ts +2 -2
- package/clients/omics.d.ts +1451 -965
- package/clients/rekognition.d.ts +19 -1
- package/clients/rolesanywhere.d.ts +154 -45
- package/clients/support.d.ts +134 -7
- package/clients/transfer.d.ts +52 -44
- package/dist/aws-sdk-core-react-native.js +98 -73
- package/dist/aws-sdk-react-native.js +1956 -1906
- package/dist/aws-sdk.js +258 -236
- package/dist/aws-sdk.min.js +62 -62
- package/lib/core.js +1 -1
- package/lib/region_config.js +1 -0
- package/package.json +1 -1
| @@ -12,6 +12,12 @@ | |
| 12 12 | 
             
                  "limit_key": "maxResults",
         | 
| 13 13 | 
             
                  "result_key": "annotationStores"
         | 
| 14 14 | 
             
                },
         | 
| 15 | 
            +
                "ListMultipartReadSetUploads": {
         | 
| 16 | 
            +
                  "input_token": "nextToken",
         | 
| 17 | 
            +
                  "output_token": "nextToken",
         | 
| 18 | 
            +
                  "limit_key": "maxResults",
         | 
| 19 | 
            +
                  "result_key": "uploads"
         | 
| 20 | 
            +
                },
         | 
| 15 21 | 
             
                "ListReadSetActivationJobs": {
         | 
| 16 22 | 
             
                  "input_token": "nextToken",
         | 
| 17 23 | 
             
                  "output_token": "nextToken",
         | 
| @@ -30,6 +36,12 @@ | |
| 30 36 | 
             
                  "limit_key": "maxResults",
         | 
| 31 37 | 
             
                  "result_key": "importJobs"
         | 
| 32 38 | 
             
                },
         | 
| 39 | 
            +
                "ListReadSetUploadParts": {
         | 
| 40 | 
            +
                  "input_token": "nextToken",
         | 
| 41 | 
            +
                  "output_token": "nextToken",
         | 
| 42 | 
            +
                  "limit_key": "maxResults",
         | 
| 43 | 
            +
                  "result_key": "parts"
         | 
| 44 | 
            +
                },
         | 
| 33 45 | 
             
                "ListReadSets": {
         | 
| 34 46 | 
             
                  "input_token": "nextToken",
         | 
| 35 47 | 
             
                  "output_token": "nextToken",
         |