@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,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { DeleteAssetRequest } from "../models/models_0";
5
- export interface DeleteAssetCommandInput extends DeleteAssetRequest {
6
- }
7
- export interface DeleteAssetCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAssetCommand extends $Command<DeleteAssetCommandInput, DeleteAssetCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: DeleteAssetCommandInput;
12
- constructor(input: DeleteAssetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAssetCommandInput, DeleteAssetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { DeleteAssetRequest } from "../models/models_0";
14
+ export interface DeleteAssetCommandInput extends DeleteAssetRequest {}
15
+ export interface DeleteAssetCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteAssetCommand extends $Command<
17
+ DeleteAssetCommandInput,
18
+ DeleteAssetCommandOutput,
19
+ DataExchangeClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteAssetCommandInput;
22
+ constructor(input: DeleteAssetCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: DataExchangeClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteAssetCommandInput, DeleteAssetCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { DeleteDataSetRequest } from "../models/models_0";
5
- export interface DeleteDataSetCommandInput extends DeleteDataSetRequest {
6
- }
7
- export interface DeleteDataSetCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteDataSetCommand extends $Command<DeleteDataSetCommandInput, DeleteDataSetCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: DeleteDataSetCommandInput;
12
- constructor(input: DeleteDataSetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataSetCommandInput, DeleteDataSetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { DeleteDataSetRequest } from "../models/models_0";
14
+ export interface DeleteDataSetCommandInput extends DeleteDataSetRequest {}
15
+ export interface DeleteDataSetCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteDataSetCommand extends $Command<
17
+ DeleteDataSetCommandInput,
18
+ DeleteDataSetCommandOutput,
19
+ DataExchangeClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteDataSetCommandInput;
22
+ constructor(input: DeleteDataSetCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: DataExchangeClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteDataSetCommandInput, DeleteDataSetCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,31 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { DeleteEventActionRequest } from "../models/models_0";
5
- export interface DeleteEventActionCommandInput extends DeleteEventActionRequest {
6
- }
7
- export interface DeleteEventActionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteEventActionCommand extends $Command<DeleteEventActionCommandInput, DeleteEventActionCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: DeleteEventActionCommandInput;
12
- constructor(input: DeleteEventActionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEventActionCommandInput, DeleteEventActionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { DeleteEventActionRequest } from "../models/models_0";
14
+ export interface DeleteEventActionCommandInput
15
+ extends DeleteEventActionRequest {}
16
+ export interface DeleteEventActionCommandOutput extends __MetadataBearer {}
17
+ export declare class DeleteEventActionCommand extends $Command<
18
+ DeleteEventActionCommandInput,
19
+ DeleteEventActionCommandOutput,
20
+ DataExchangeClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteEventActionCommandInput;
23
+ constructor(input: DeleteEventActionCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: DataExchangeClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<DeleteEventActionCommandInput, DeleteEventActionCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { DeleteRevisionRequest } from "../models/models_0";
5
- export interface DeleteRevisionCommandInput extends DeleteRevisionRequest {
6
- }
7
- export interface DeleteRevisionCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteRevisionCommand extends $Command<DeleteRevisionCommandInput, DeleteRevisionCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: DeleteRevisionCommandInput;
12
- constructor(input: DeleteRevisionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRevisionCommandInput, DeleteRevisionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { DeleteRevisionRequest } from "../models/models_0";
14
+ export interface DeleteRevisionCommandInput extends DeleteRevisionRequest {}
15
+ export interface DeleteRevisionCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteRevisionCommand extends $Command<
17
+ DeleteRevisionCommandInput,
18
+ DeleteRevisionCommandOutput,
19
+ DataExchangeClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteRevisionCommandInput;
22
+ constructor(input: DeleteRevisionCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: DataExchangeClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteRevisionCommandInput, DeleteRevisionCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { GetAssetRequest, GetAssetResponse } from "../models/models_0";
5
- export interface GetAssetCommandInput extends GetAssetRequest {
6
- }
7
- export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAssetCommand extends $Command<GetAssetCommandInput, GetAssetCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: GetAssetCommandInput;
12
- constructor(input: GetAssetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssetCommandInput, GetAssetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { GetAssetRequest, GetAssetResponse } from "../models/models_0";
14
+ export interface GetAssetCommandInput extends GetAssetRequest {}
15
+ export interface GetAssetCommandOutput
16
+ extends GetAssetResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetAssetCommand extends $Command<
19
+ GetAssetCommandInput,
20
+ GetAssetCommandOutput,
21
+ DataExchangeClientResolvedConfig
22
+ > {
23
+ readonly input: GetAssetCommandInput;
24
+ constructor(input: GetAssetCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DataExchangeClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetAssetCommandInput, GetAssetCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { GetDataSetRequest, GetDataSetResponse } from "../models/models_0";
5
- export interface GetDataSetCommandInput extends GetDataSetRequest {
6
- }
7
- export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDataSetCommand extends $Command<GetDataSetCommandInput, GetDataSetCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: GetDataSetCommandInput;
12
- constructor(input: GetDataSetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSetCommandInput, GetDataSetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { GetDataSetRequest, GetDataSetResponse } from "../models/models_0";
14
+ export interface GetDataSetCommandInput extends GetDataSetRequest {}
15
+ export interface GetDataSetCommandOutput
16
+ extends GetDataSetResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetDataSetCommand extends $Command<
19
+ GetDataSetCommandInput,
20
+ GetDataSetCommandOutput,
21
+ DataExchangeClientResolvedConfig
22
+ > {
23
+ readonly input: GetDataSetCommandInput;
24
+ constructor(input: GetDataSetCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DataExchangeClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetDataSetCommandInput, GetDataSetCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { GetEventActionRequest, GetEventActionResponse } from "../models/models_0";
5
- export interface GetEventActionCommandInput extends GetEventActionRequest {
6
- }
7
- export interface GetEventActionCommandOutput extends GetEventActionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetEventActionCommand extends $Command<GetEventActionCommandInput, GetEventActionCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: GetEventActionCommandInput;
12
- constructor(input: GetEventActionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEventActionCommandInput, GetEventActionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import {
14
+ GetEventActionRequest,
15
+ GetEventActionResponse,
16
+ } from "../models/models_0";
17
+ export interface GetEventActionCommandInput extends GetEventActionRequest {}
18
+ export interface GetEventActionCommandOutput
19
+ extends GetEventActionResponse,
20
+ __MetadataBearer {}
21
+ export declare class GetEventActionCommand extends $Command<
22
+ GetEventActionCommandInput,
23
+ GetEventActionCommandOutput,
24
+ DataExchangeClientResolvedConfig
25
+ > {
26
+ readonly input: GetEventActionCommandInput;
27
+ constructor(input: GetEventActionCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: DataExchangeClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetEventActionCommandInput, GetEventActionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { GetJobRequest, GetJobResponse } from "../models/models_0";
5
- export interface GetJobCommandInput extends GetJobRequest {
6
- }
7
- export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: GetJobCommandInput;
12
- constructor(input: GetJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { GetJobRequest, GetJobResponse } from "../models/models_0";
14
+ export interface GetJobCommandInput extends GetJobRequest {}
15
+ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
16
+ export declare class GetJobCommand extends $Command<
17
+ GetJobCommandInput,
18
+ GetJobCommandOutput,
19
+ DataExchangeClientResolvedConfig
20
+ > {
21
+ readonly input: GetJobCommandInput;
22
+ constructor(input: GetJobCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: DataExchangeClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<GetJobCommandInput, GetJobCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { GetRevisionRequest, GetRevisionResponse } from "../models/models_0";
5
- export interface GetRevisionCommandInput extends GetRevisionRequest {
6
- }
7
- export interface GetRevisionCommandOutput extends GetRevisionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetRevisionCommand extends $Command<GetRevisionCommandInput, GetRevisionCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: GetRevisionCommandInput;
12
- constructor(input: GetRevisionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRevisionCommandInput, GetRevisionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { GetRevisionRequest, GetRevisionResponse } from "../models/models_0";
14
+ export interface GetRevisionCommandInput extends GetRevisionRequest {}
15
+ export interface GetRevisionCommandOutput
16
+ extends GetRevisionResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetRevisionCommand extends $Command<
19
+ GetRevisionCommandInput,
20
+ GetRevisionCommandOutput,
21
+ DataExchangeClientResolvedConfig
22
+ > {
23
+ readonly input: GetRevisionCommandInput;
24
+ constructor(input: GetRevisionCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DataExchangeClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetRevisionCommandInput, GetRevisionCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { ListDataSetRevisionsRequest, ListDataSetRevisionsResponse } from "../models/models_0";
5
- export interface ListDataSetRevisionsCommandInput extends ListDataSetRevisionsRequest {
6
- }
7
- export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDataSetRevisionsCommand extends $Command<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: ListDataSetRevisionsCommandInput;
12
- constructor(input: ListDataSetRevisionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import {
14
+ ListDataSetRevisionsRequest,
15
+ ListDataSetRevisionsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListDataSetRevisionsCommandInput
18
+ extends ListDataSetRevisionsRequest {}
19
+ export interface ListDataSetRevisionsCommandOutput
20
+ extends ListDataSetRevisionsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListDataSetRevisionsCommand extends $Command<
23
+ ListDataSetRevisionsCommandInput,
24
+ ListDataSetRevisionsCommandOutput,
25
+ DataExchangeClientResolvedConfig
26
+ > {
27
+ readonly input: ListDataSetRevisionsCommandInput;
28
+ constructor(input: ListDataSetRevisionsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: DataExchangeClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListDataSetRevisionsCommandInput,
35
+ ListDataSetRevisionsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0";
5
- export interface ListDataSetsCommandInput extends ListDataSetsRequest {
6
- }
7
- export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDataSetsCommand extends $Command<ListDataSetsCommandInput, ListDataSetsCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: ListDataSetsCommandInput;
12
- constructor(input: ListDataSetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataSetsCommandInput, ListDataSetsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0";
14
+ export interface ListDataSetsCommandInput extends ListDataSetsRequest {}
15
+ export interface ListDataSetsCommandOutput
16
+ extends ListDataSetsResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListDataSetsCommand extends $Command<
19
+ ListDataSetsCommandInput,
20
+ ListDataSetsCommandOutput,
21
+ DataExchangeClientResolvedConfig
22
+ > {
23
+ readonly input: ListDataSetsCommandInput;
24
+ constructor(input: ListDataSetsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DataExchangeClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListDataSetsCommandInput, ListDataSetsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
4
- import { ListEventActionsRequest, ListEventActionsResponse } from "../models/models_0";
5
- export interface ListEventActionsCommandInput extends ListEventActionsRequest {
6
- }
7
- export interface ListEventActionsCommandOutput extends ListEventActionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListEventActionsCommand extends $Command<ListEventActionsCommandInput, ListEventActionsCommandOutput, DataExchangeClientResolvedConfig> {
11
- readonly input: ListEventActionsCommandInput;
12
- constructor(input: ListEventActionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventActionsCommandInput, ListEventActionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DataExchangeClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DataExchangeClient";
13
+ import {
14
+ ListEventActionsRequest,
15
+ ListEventActionsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListEventActionsCommandInput extends ListEventActionsRequest {}
18
+ export interface ListEventActionsCommandOutput
19
+ extends ListEventActionsResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListEventActionsCommand extends $Command<
22
+ ListEventActionsCommandInput,
23
+ ListEventActionsCommandOutput,
24
+ DataExchangeClientResolvedConfig
25
+ > {
26
+ readonly input: ListEventActionsCommandInput;
27
+ constructor(input: ListEventActionsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: DataExchangeClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListEventActionsCommandInput, ListEventActionsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }