@aws-sdk/client-dataexchange 3.169.0 → 3.171.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 (51) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/DataExchange.d.ts +497 -150
  3. package/dist-types/ts3.4/DataExchangeClient.d.ts +279 -102
  4. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +31 -17
  12. package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +30 -17
  13. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
  17. package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +35 -17
  25. package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  29. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +36 -17
  32. package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +6 -6
  36. package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +7 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +969 -1337
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  40. package/dist-types/ts3.4/pagination/ListDataSetRevisionsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListEventActionsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListRevisionAssetsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  51. package/package.json +34 -34
@@ -1,29 +1,29 @@
1
- export * from "./CancelJobCommand";
2
- export * from "./CreateDataSetCommand";
3
- export * from "./CreateEventActionCommand";
4
- export * from "./CreateJobCommand";
5
- export * from "./CreateRevisionCommand";
6
- export * from "./DeleteAssetCommand";
7
- export * from "./DeleteDataSetCommand";
8
- export * from "./DeleteEventActionCommand";
9
- export * from "./DeleteRevisionCommand";
10
- export * from "./GetAssetCommand";
11
- export * from "./GetDataSetCommand";
12
- export * from "./GetEventActionCommand";
13
- export * from "./GetJobCommand";
14
- export * from "./GetRevisionCommand";
15
- export * from "./ListDataSetRevisionsCommand";
16
- export * from "./ListDataSetsCommand";
17
- export * from "./ListEventActionsCommand";
18
- export * from "./ListJobsCommand";
19
- export * from "./ListRevisionAssetsCommand";
20
- export * from "./ListTagsForResourceCommand";
21
- export * from "./RevokeRevisionCommand";
22
- export * from "./SendApiAssetCommand";
23
- export * from "./StartJobCommand";
24
- export * from "./TagResourceCommand";
25
- export * from "./UntagResourceCommand";
26
- export * from "./UpdateAssetCommand";
27
- export * from "./UpdateDataSetCommand";
28
- export * from "./UpdateEventActionCommand";
29
- export * from "./UpdateRevisionCommand";
1
+ export * from "./CancelJobCommand";
2
+ export * from "./CreateDataSetCommand";
3
+ export * from "./CreateEventActionCommand";
4
+ export * from "./CreateJobCommand";
5
+ export * from "./CreateRevisionCommand";
6
+ export * from "./DeleteAssetCommand";
7
+ export * from "./DeleteDataSetCommand";
8
+ export * from "./DeleteEventActionCommand";
9
+ export * from "./DeleteRevisionCommand";
10
+ export * from "./GetAssetCommand";
11
+ export * from "./GetDataSetCommand";
12
+ export * from "./GetEventActionCommand";
13
+ export * from "./GetJobCommand";
14
+ export * from "./GetRevisionCommand";
15
+ export * from "./ListDataSetRevisionsCommand";
16
+ export * from "./ListDataSetsCommand";
17
+ export * from "./ListEventActionsCommand";
18
+ export * from "./ListJobsCommand";
19
+ export * from "./ListRevisionAssetsCommand";
20
+ export * from "./ListTagsForResourceCommand";
21
+ export * from "./RevokeRevisionCommand";
22
+ export * from "./SendApiAssetCommand";
23
+ export * from "./StartJobCommand";
24
+ export * from "./TagResourceCommand";
25
+ export * from "./UntagResourceCommand";
26
+ export * from "./UpdateAssetCommand";
27
+ export * from "./UpdateDataSetCommand";
28
+ export * from "./UpdateEventActionCommand";
29
+ export * from "./UpdateRevisionCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./DataExchange";
2
- export * from "./DataExchangeClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { DataExchangeServiceException } from "./models/DataExchangeServiceException";
1
+ export * from "./DataExchange";
2
+ export * from "./DataExchangeClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { DataExchangeServiceException } from "./models/DataExchangeServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class DataExchangeServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class DataExchangeServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";