@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/DataExchange.d.ts +497 -150
- package/dist-types/ts3.4/DataExchangeClient.d.ts +279 -102
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +29 -29
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +969 -1337
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDataSetRevisionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEventActionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRevisionAssetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|