@aws-sdk/client-dataexchange 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/DataExchange.d.ts +130 -180
- package/dist-types/ts3.4/DataExchangeClient.d.ts +17 -60
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AcceptDataGrantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/CreateDataGrantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteDataGrantCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetDataGrantCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GetReceivedDataGrantCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListDataGrantsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListReceivedDataGrantsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SendDataSetNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetEventActionRequest,
|
|
4
|
-
GetEventActionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetEventActionRequest, GetEventActionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetEventActionCommandInput extends GetEventActionRequest {}
|
|
8
|
-
export interface GetEventActionCommandOutput
|
|
9
|
-
extends GetEventActionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetEventActionCommandOutput extends GetEventActionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetEventActionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetEventActionCommandInput
|
|
8
|
+
input: GetEventActionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetEventActionCommandInput,
|
|
16
11
|
GetEventActionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetEventActionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetEventActionCommandInput
|
|
17
|
+
input: GetEventActionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetEventActionCommandInput,
|
|
25
20
|
GetEventActionCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface GetJobCommandInput extends GetJobRequest {}
|
|
5
5
|
export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
|
|
6
6
|
declare const GetJobCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetJobCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
GetJobCommandInput,
|
|
9
11
|
GetJobCommandOutput,
|
|
10
12
|
import("..").DataExchangeClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetJobCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
GetJobCommandInput,
|
|
16
20
|
GetJobCommandOutput,
|
|
17
21
|
import("..").DataExchangeClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetReceivedDataGrantRequest,
|
|
4
|
-
GetReceivedDataGrantResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetReceivedDataGrantRequest, GetReceivedDataGrantResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetReceivedDataGrantCommandInput
|
|
8
|
-
extends GetReceivedDataGrantRequest {}
|
|
4
|
+
export interface GetReceivedDataGrantCommandInput extends GetReceivedDataGrantRequest {}
|
|
9
5
|
export interface GetReceivedDataGrantCommandOutput
|
|
10
|
-
extends GetReceivedDataGrantResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetReceivedDataGrantResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetReceivedDataGrantCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetReceivedDataGrantCommandInput
|
|
9
|
+
input: GetReceivedDataGrantCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetReceivedDataGrantCommandInput,
|
|
17
12
|
GetReceivedDataGrantCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetReceivedDataGrantCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetReceivedDataGrantCommandInput
|
|
18
|
+
input: GetReceivedDataGrantCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetReceivedDataGrantCommandInput,
|
|
26
21
|
GetReceivedDataGrantCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetRevisionRequest, GetRevisionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetRevisionCommandInput extends GetRevisionRequest {}
|
|
5
|
-
export interface GetRevisionCommandOutput
|
|
6
|
-
extends GetRevisionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetRevisionCommandOutput extends GetRevisionResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetRevisionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetRevisionCommandInput
|
|
8
|
+
input: GetRevisionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetRevisionCommandInput,
|
|
13
11
|
GetRevisionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetRevisionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetRevisionCommandInput
|
|
17
|
+
input: GetRevisionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetRevisionCommandInput,
|
|
22
20
|
GetRevisionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDataGrantsRequest,
|
|
4
|
-
ListDataGrantsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDataGrantsRequest, ListDataGrantsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListDataGrantsCommandInput extends ListDataGrantsRequest {}
|
|
8
|
-
export interface ListDataGrantsCommandOutput
|
|
9
|
-
extends ListDataGrantsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDataGrantsCommandOutput extends ListDataGrantsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListDataGrantsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListDataGrantsCommandInput
|
|
8
|
+
input: ListDataGrantsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListDataGrantsCommandInput,
|
|
16
11
|
ListDataGrantsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDataSetRevisionsRequest,
|
|
4
|
-
ListDataSetRevisionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDataSetRevisionsRequest, ListDataSetRevisionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataSetRevisionsCommandInput
|
|
8
|
-
extends ListDataSetRevisionsRequest {}
|
|
4
|
+
export interface ListDataSetRevisionsCommandInput extends ListDataSetRevisionsRequest {}
|
|
9
5
|
export interface ListDataSetRevisionsCommandOutput
|
|
10
|
-
extends ListDataSetRevisionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDataSetRevisionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListDataSetRevisionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDataSetRevisionsCommandInput
|
|
9
|
+
input: ListDataSetRevisionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDataSetRevisionsCommandInput,
|
|
17
12
|
ListDataSetRevisionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListDataSetRevisionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListDataSetRevisionsCommandInput
|
|
18
|
+
input: ListDataSetRevisionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListDataSetRevisionsCommandInput,
|
|
26
21
|
ListDataSetRevisionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDataSetsCommandInput extends ListDataSetsRequest {}
|
|
5
|
-
export interface ListDataSetsCommandOutput
|
|
6
|
-
extends ListDataSetsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListDataSetsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDataSetsCommandInput
|
|
8
|
+
input: ListDataSetsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDataSetsCommandInput,
|
|
13
11
|
ListDataSetsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListEventActionsRequest,
|
|
4
|
-
ListEventActionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListEventActionsRequest, ListEventActionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListEventActionsCommandInput extends ListEventActionsRequest {}
|
|
8
|
-
export interface ListEventActionsCommandOutput
|
|
9
|
-
extends ListEventActionsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListEventActionsCommandOutput extends ListEventActionsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListEventActionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListEventActionsCommandInput
|
|
8
|
+
input: ListEventActionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListEventActionsCommandInput,
|
|
16
11
|
ListEventActionsCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListJobsRequest, ListJobsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListJobsCommandInput extends ListJobsRequest {}
|
|
5
|
-
export interface ListJobsCommandOutput
|
|
6
|
-
extends ListJobsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListJobsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListJobsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListJobsCommandInput,
|
|
11
11
|
ListJobsCommandOutput,
|
|
12
12
|
import("..").DataExchangeClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListReceivedDataGrantsRequest,
|
|
4
|
-
ListReceivedDataGrantsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListReceivedDataGrantsRequest, ListReceivedDataGrantsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListReceivedDataGrantsCommandInput
|
|
8
|
-
extends ListReceivedDataGrantsRequest {}
|
|
4
|
+
export interface ListReceivedDataGrantsCommandInput extends ListReceivedDataGrantsRequest {}
|
|
9
5
|
export interface ListReceivedDataGrantsCommandOutput
|
|
10
|
-
extends ListReceivedDataGrantsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListReceivedDataGrantsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListReceivedDataGrantsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListReceivedDataGrantsCommandInput
|
|
9
|
+
input: ListReceivedDataGrantsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListReceivedDataGrantsCommandInput,
|
|
17
12
|
ListReceivedDataGrantsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListRevisionAssetsRequest,
|
|
4
|
-
ListRevisionAssetsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListRevisionAssetsRequest, ListRevisionAssetsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRevisionAssetsCommandInput
|
|
8
|
-
extends ListRevisionAssetsRequest {}
|
|
4
|
+
export interface ListRevisionAssetsCommandInput extends ListRevisionAssetsRequest {}
|
|
9
5
|
export interface ListRevisionAssetsCommandOutput
|
|
10
|
-
extends ListRevisionAssetsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListRevisionAssetsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListRevisionAssetsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListRevisionAssetsCommandInput
|
|
9
|
+
input: ListRevisionAssetsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListRevisionAssetsCommandInput,
|
|
17
12
|
ListRevisionAssetsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListRevisionAssetsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListRevisionAssetsCommandInput
|
|
18
|
+
input: ListRevisionAssetsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListRevisionAssetsCommandInput,
|
|
26
21
|
ListRevisionAssetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RevokeRevisionRequest,
|
|
4
|
-
RevokeRevisionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RevokeRevisionRequest, RevokeRevisionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface RevokeRevisionCommandInput extends RevokeRevisionRequest {}
|
|
8
|
-
export interface RevokeRevisionCommandOutput
|
|
9
|
-
extends RevokeRevisionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __MetadataBearer {}
|
|
11
6
|
declare const RevokeRevisionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: RevokeRevisionCommandInput
|
|
8
|
+
input: RevokeRevisionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
RevokeRevisionCommandInput,
|
|
16
11
|
RevokeRevisionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const RevokeRevisionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: RevokeRevisionCommandInput
|
|
17
|
+
input: RevokeRevisionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
RevokeRevisionCommandInput,
|
|
25
20
|
RevokeRevisionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SendApiAssetRequest, SendApiAssetResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SendApiAssetCommandInput extends SendApiAssetRequest {}
|
|
5
|
-
export interface SendApiAssetCommandOutput
|
|
6
|
-
extends SendApiAssetResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __MetadataBearer {}
|
|
8
6
|
declare const SendApiAssetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SendApiAssetCommandInput
|
|
8
|
+
input: SendApiAssetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SendApiAssetCommandInput,
|
|
13
11
|
SendApiAssetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SendApiAssetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SendApiAssetCommandInput
|
|
17
|
+
input: SendApiAssetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SendApiAssetCommandInput,
|
|
22
20
|
SendApiAssetCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
SendDataSetNotificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface SendDataSetNotificationCommandInput
|
|
8
|
-
extends SendDataSetNotificationRequest {}
|
|
7
|
+
export interface SendDataSetNotificationCommandInput extends SendDataSetNotificationRequest {}
|
|
9
8
|
export interface SendDataSetNotificationCommandOutput
|
|
10
|
-
extends SendDataSetNotificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends SendDataSetNotificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const SendDataSetNotificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: SendDataSetNotificationCommandInput
|
|
12
|
+
input: SendDataSetNotificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
SendDataSetNotificationCommandInput,
|
|
17
15
|
SendDataSetNotificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const SendDataSetNotificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: SendDataSetNotificationCommandInput
|
|
21
|
+
input: SendDataSetNotificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
SendDataSetNotificationCommandInput,
|
|
26
24
|
SendDataSetNotificationCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartJobRequest, StartJobResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartJobCommandInput extends StartJobRequest {}
|
|
5
|
-
export interface StartJobCommandOutput
|
|
6
|
-
extends StartJobResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartJobCommandOutput extends StartJobResponse, __MetadataBearer {}
|
|
8
6
|
declare const StartJobCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: StartJobCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
StartJobCommandInput,
|
|
11
11
|
StartJobCommandOutput,
|
|
12
12
|
import("..").DataExchangeClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: StartJobCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
StartJobCommandInput,
|
|
18
20
|
StartJobCommandOutput,
|
|
19
21
|
import("..").DataExchangeClientResolvedConfig,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateAssetCommandInput extends UpdateAssetRequest {}
|
|
5
|
-
export interface UpdateAssetCommandOutput
|
|
6
|
-
extends UpdateAssetResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateAssetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateAssetCommandInput
|
|
8
|
+
input: UpdateAssetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateAssetCommandInput,
|
|
13
11
|
UpdateAssetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateAssetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateAssetCommandInput
|
|
17
|
+
input: UpdateAssetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateAssetCommandInput,
|
|
22
20
|
UpdateAssetCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDataSetRequest,
|
|
4
|
-
UpdateDataSetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDataSetRequest, UpdateDataSetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateDataSetCommandInput extends UpdateDataSetRequest {}
|
|
8
|
-
export interface UpdateDataSetCommandOutput
|
|
9
|
-
extends UpdateDataSetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateDataSetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateDataSetCommandInput
|
|
8
|
+
input: UpdateDataSetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateDataSetCommandInput,
|
|
16
11
|
UpdateDataSetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateDataSetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateDataSetCommandInput
|
|
17
|
+
input: UpdateDataSetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateDataSetCommandInput,
|
|
25
20
|
UpdateDataSetCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateEventActionRequest,
|
|
4
|
-
UpdateEventActionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateEventActionRequest, UpdateEventActionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateEventActionCommandInput
|
|
8
|
-
extends UpdateEventActionRequest {}
|
|
4
|
+
export interface UpdateEventActionCommandInput extends UpdateEventActionRequest {}
|
|
9
5
|
export interface UpdateEventActionCommandOutput
|
|
10
|
-
extends UpdateEventActionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateEventActionResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateEventActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateEventActionCommandInput
|
|
9
|
+
input: UpdateEventActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateEventActionCommandInput,
|
|
17
12
|
UpdateEventActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateEventActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateEventActionCommandInput
|
|
18
|
+
input: UpdateEventActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateEventActionCommandInput,
|
|
26
21
|
UpdateEventActionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateRevisionRequest,
|
|
4
|
-
UpdateRevisionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateRevisionRequest, UpdateRevisionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateRevisionCommandInput extends UpdateRevisionRequest {}
|
|
8
|
-
export interface UpdateRevisionCommandOutput
|
|
9
|
-
extends UpdateRevisionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateRevisionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateRevisionCommandInput
|
|
8
|
+
input: UpdateRevisionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateRevisionCommandInput,
|
|
16
11
|
UpdateRevisionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateRevisionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateRevisionCommandInput
|
|
17
|
+
input: UpdateRevisionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateRevisionCommandInput,
|
|
25
20
|
UpdateRevisionCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface DataExchangeExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -29,8 +29,7 @@ export declare const ExceptionCause: {
|
|
|
29
29
|
readonly InsufficientS3BucketPolicy: "InsufficientS3BucketPolicy";
|
|
30
30
|
readonly S3AccessDenied: "S3AccessDenied";
|
|
31
31
|
};
|
|
32
|
-
export type ExceptionCause =
|
|
33
|
-
(typeof ExceptionCause)[keyof typeof ExceptionCause];
|
|
32
|
+
export type ExceptionCause = (typeof ExceptionCause)[keyof typeof ExceptionCause];
|
|
34
33
|
export declare const ServerSideEncryptionTypes: {
|
|
35
34
|
readonly AES256: "AES256";
|
|
36
35
|
readonly aws_kms: "aws:kms";
|
|
@@ -45,8 +44,7 @@ export declare const LFResourceType: {
|
|
|
45
44
|
readonly DATABASE: "DATABASE";
|
|
46
45
|
readonly TABLE: "TABLE";
|
|
47
46
|
};
|
|
48
|
-
export type LFResourceType =
|
|
49
|
-
(typeof LFResourceType)[keyof typeof LFResourceType];
|
|
47
|
+
export type LFResourceType = (typeof LFResourceType)[keyof typeof LFResourceType];
|
|
50
48
|
export declare const LakeFormationDataPermissionType: {
|
|
51
49
|
readonly LFTagPolicy: "LFTagPolicy";
|
|
52
50
|
};
|
|
@@ -143,8 +141,7 @@ export declare const JobErrorLimitName: {
|
|
|
143
141
|
readonly Asset_size_in_GB: "Asset size in GB";
|
|
144
142
|
readonly Assets_per_revision: "Assets per revision";
|
|
145
143
|
};
|
|
146
|
-
export type JobErrorLimitName =
|
|
147
|
-
(typeof JobErrorLimitName)[keyof typeof JobErrorLimitName];
|
|
144
|
+
export type JobErrorLimitName = (typeof JobErrorLimitName)[keyof typeof JobErrorLimitName];
|
|
148
145
|
export declare const JobErrorResourceTypes: {
|
|
149
146
|
readonly ASSET: "ASSET";
|
|
150
147
|
readonly DATA_SET: "DATA_SET";
|
|
@@ -166,13 +163,11 @@ export declare const SchemaChangeType: {
|
|
|
166
163
|
readonly MODIFY: "MODIFY";
|
|
167
164
|
readonly REMOVE: "REMOVE";
|
|
168
165
|
};
|
|
169
|
-
export type SchemaChangeType =
|
|
170
|
-
(typeof SchemaChangeType)[keyof typeof SchemaChangeType];
|
|
166
|
+
export type SchemaChangeType = (typeof SchemaChangeType)[keyof typeof SchemaChangeType];
|
|
171
167
|
export declare const NotificationType: {
|
|
172
168
|
readonly DATA_DELAY: "DATA_DELAY";
|
|
173
169
|
readonly DATA_UPDATE: "DATA_UPDATE";
|
|
174
170
|
readonly DEPRECATION: "DEPRECATION";
|
|
175
171
|
readonly SCHEMA_CHANGE: "SCHEMA_CHANGE";
|
|
176
172
|
};
|
|
177
|
-
export type NotificationType =
|
|
178
|
-
(typeof NotificationType)[keyof typeof NotificationType];
|
|
173
|
+
export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
|