aws-sdk 2.1506.0 → 2.1508.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 (46) hide show
  1. package/README.md +1 -1
  2. package/apis/cleanrooms-2022-02-17.min.json +1222 -83
  3. package/apis/cleanrooms-2022-02-17.paginators.json +36 -0
  4. package/apis/cleanroomsml-2023-09-06.examples.json +5 -0
  5. package/apis/cleanroomsml-2023-09-06.min.json +1226 -0
  6. package/apis/cleanroomsml-2023-09-06.paginators.json +34 -0
  7. package/apis/marketplace-agreement-2020-03-01.examples.json +5 -0
  8. package/apis/marketplace-agreement-2020-03-01.min.json +397 -0
  9. package/apis/marketplace-agreement-2020-03-01.paginators.json +14 -0
  10. package/apis/marketplace-catalog-2018-09-17.min.json +542 -7
  11. package/apis/marketplace-deployment-2023-01-25.examples.json +5 -0
  12. package/apis/marketplace-deployment-2023-01-25.min.json +178 -0
  13. package/apis/marketplace-deployment-2023-01-25.paginators.json +4 -0
  14. package/apis/metadata.json +11 -0
  15. package/apis/opensearch-2021-01-01.min.json +369 -195
  16. package/apis/opensearchserverless-2021-11-01.min.json +49 -46
  17. package/apis/redshift-serverless-2021-04-21.min.json +436 -74
  18. package/apis/redshift-serverless-2021-04-21.paginators.json +12 -0
  19. package/apis/runtime.sagemaker-2017-05-13.min.json +8 -0
  20. package/apis/sagemaker-2017-07-24.min.json +1688 -980
  21. package/apis/sagemaker-2017-07-24.paginators.json +18 -0
  22. package/clients/all.d.ts +3 -0
  23. package/clients/all.js +4 -1
  24. package/clients/applicationautoscaling.d.ts +31 -31
  25. package/clients/cleanrooms.d.ts +1292 -177
  26. package/clients/cleanroomsml.d.ts +1232 -0
  27. package/clients/cleanroomsml.js +18 -0
  28. package/clients/marketplaceagreement.d.ts +602 -0
  29. package/clients/marketplaceagreement.js +18 -0
  30. package/clients/marketplacecatalog.d.ts +883 -2
  31. package/clients/marketplacedeployment.d.ts +172 -0
  32. package/clients/marketplacedeployment.js +18 -0
  33. package/clients/opensearch.d.ts +170 -1
  34. package/clients/opensearchserverless.d.ts +13 -0
  35. package/clients/redshiftserverless.d.ts +463 -6
  36. package/clients/sagemaker.d.ts +950 -44
  37. package/clients/sagemakerruntime.d.ts +11 -2
  38. package/clients/sts.d.ts +1 -1
  39. package/dist/aws-sdk-core-react-native.js +2 -2
  40. package/dist/aws-sdk-react-native.js +125 -14
  41. package/dist/aws-sdk.js +556 -10
  42. package/dist/aws-sdk.min.js +40 -40
  43. package/lib/config_service_placeholders.d.ts +6 -0
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
  46. package/CHANGELOG.md +0 -9341
@@ -54,6 +54,18 @@
54
54
  "limit_key": "MaxResults",
55
55
  "result_key": "Candidates"
56
56
  },
57
+ "ListClusterNodes": {
58
+ "input_token": "NextToken",
59
+ "output_token": "NextToken",
60
+ "limit_key": "MaxResults",
61
+ "result_key": "ClusterNodeSummaries"
62
+ },
63
+ "ListClusters": {
64
+ "input_token": "NextToken",
65
+ "output_token": "NextToken",
66
+ "limit_key": "MaxResults",
67
+ "result_key": "ClusterSummaries"
68
+ },
57
69
  "ListCodeRepositories": {
58
70
  "input_token": "NextToken",
59
71
  "output_token": "NextToken",
@@ -162,6 +174,12 @@
162
174
  "limit_key": "MaxResults",
163
175
  "result_key": "Images"
164
176
  },
177
+ "ListInferenceComponents": {
178
+ "input_token": "NextToken",
179
+ "output_token": "NextToken",
180
+ "limit_key": "MaxResults",
181
+ "result_key": "InferenceComponents"
182
+ },
165
183
  "ListInferenceExperiments": {
166
184
  "input_token": "NextToken",
167
185
  "output_token": "NextToken",
package/clients/all.d.ts CHANGED
@@ -370,3 +370,6 @@ export import BedrockAgent = require('./bedrockagent');
370
370
  export import BedrockAgentRuntime = require('./bedrockagentruntime');
371
371
  export import QBusiness = require('./qbusiness');
372
372
  export import QConnect = require('./qconnect');
373
+ export import CleanRoomsML = require('./cleanroomsml');
374
+ export import MarketplaceAgreement = require('./marketplaceagreement');
375
+ export import MarketplaceDeployment = require('./marketplacedeployment');
package/clients/all.js CHANGED
@@ -371,5 +371,8 @@ module.exports = {
371
371
  BedrockAgent: require('./bedrockagent'),
372
372
  BedrockAgentRuntime: require('./bedrockagentruntime'),
373
373
  QBusiness: require('./qbusiness'),
374
- QConnect: require('./qconnect')
374
+ QConnect: require('./qconnect'),
375
+ CleanRoomsML: require('./cleanroomsml'),
376
+ MarketplaceAgreement: require('./marketplaceagreement'),
377
+ MarketplaceDeployment: require('./marketplacedeployment')
375
378
  };