@aws-sdk/client-dataexchange 3.948.0 → 3.953.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 +562 -385
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AcceptDataGrantCommand.js +2 -2
- package/dist-es/commands/CancelJobCommand.js +2 -2
- package/dist-es/commands/CreateDataGrantCommand.js +2 -2
- package/dist-es/commands/CreateDataSetCommand.js +2 -2
- package/dist-es/commands/CreateEventActionCommand.js +2 -2
- package/dist-es/commands/CreateJobCommand.js +2 -2
- package/dist-es/commands/CreateRevisionCommand.js +2 -2
- package/dist-es/commands/DeleteAssetCommand.js +2 -2
- package/dist-es/commands/DeleteDataGrantCommand.js +2 -2
- package/dist-es/commands/DeleteDataSetCommand.js +2 -2
- package/dist-es/commands/DeleteEventActionCommand.js +2 -2
- package/dist-es/commands/DeleteRevisionCommand.js +2 -2
- package/dist-es/commands/GetAssetCommand.js +2 -2
- package/dist-es/commands/GetDataGrantCommand.js +2 -2
- package/dist-es/commands/GetDataSetCommand.js +2 -2
- package/dist-es/commands/GetEventActionCommand.js +2 -2
- package/dist-es/commands/GetJobCommand.js +2 -2
- package/dist-es/commands/GetReceivedDataGrantCommand.js +2 -2
- package/dist-es/commands/GetRevisionCommand.js +2 -2
- package/dist-es/commands/ListDataGrantsCommand.js +2 -2
- package/dist-es/commands/ListDataSetRevisionsCommand.js +2 -2
- package/dist-es/commands/ListDataSetsCommand.js +2 -2
- package/dist-es/commands/ListEventActionsCommand.js +2 -2
- package/dist-es/commands/ListJobsCommand.js +2 -2
- package/dist-es/commands/ListReceivedDataGrantsCommand.js +2 -2
- package/dist-es/commands/ListRevisionAssetsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RevokeRevisionCommand.js +2 -2
- package/dist-es/commands/SendApiAssetCommand.js +2 -2
- package/dist-es/commands/SendDataSetNotificationCommand.js +2 -2
- package/dist-es/commands/StartJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAssetCommand.js +2 -2
- package/dist-es/commands/UpdateDataSetCommand.js +2 -2
- package/dist-es/commands/UpdateEventActionCommand.js +2 -2
- package/dist-es/commands/UpdateRevisionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +336 -336
- package/dist-types/DataExchangeClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +178 -204
- package/dist-types/ts3.4/DataExchangeClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +177 -204
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.dataexchange",
|
|
32
|
+
version: "2017-07-25",
|
|
33
|
+
serviceTarget: "DataExchange",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "DataExchange",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AcceptDataGrant } from "../schemas/schemas_0";
|
|
4
|
+
import { AcceptDataGrant$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AcceptDataGrantCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AcceptDataGrantCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "AcceptDataGrant", {})
|
|
13
13
|
.n("DataExchangeClient", "AcceptDataGrantCommand")
|
|
14
|
-
.sc(AcceptDataGrant)
|
|
14
|
+
.sc(AcceptDataGrant$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelJob } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "CancelJob", {})
|
|
13
13
|
.n("DataExchangeClient", "CancelJobCommand")
|
|
14
|
-
.sc(CancelJob)
|
|
14
|
+
.sc(CancelJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDataGrant } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataGrant$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataGrantCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataGrantCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "CreateDataGrant", {})
|
|
13
13
|
.n("DataExchangeClient", "CreateDataGrantCommand")
|
|
14
|
-
.sc(CreateDataGrant)
|
|
14
|
+
.sc(CreateDataGrant$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDataSet } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDataSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDataSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "CreateDataSet", {})
|
|
13
13
|
.n("DataExchangeClient", "CreateDataSetCommand")
|
|
14
|
-
.sc(CreateDataSet)
|
|
14
|
+
.sc(CreateDataSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateEventAction } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateEventAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateEventActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateEventActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "CreateEventAction", {})
|
|
13
13
|
.n("DataExchangeClient", "CreateEventActionCommand")
|
|
14
|
-
.sc(CreateEventAction)
|
|
14
|
+
.sc(CreateEventAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateJob } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "CreateJob", {})
|
|
13
13
|
.n("DataExchangeClient", "CreateJobCommand")
|
|
14
|
-
.sc(CreateJob)
|
|
14
|
+
.sc(CreateJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "CreateRevision", {})
|
|
13
13
|
.n("DataExchangeClient", "CreateRevisionCommand")
|
|
14
|
-
.sc(CreateRevision)
|
|
14
|
+
.sc(CreateRevision$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAsset } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAsset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAssetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAssetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "DeleteAsset", {})
|
|
13
13
|
.n("DataExchangeClient", "DeleteAssetCommand")
|
|
14
|
-
.sc(DeleteAsset)
|
|
14
|
+
.sc(DeleteAsset$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDataGrant } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDataGrant$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDataGrantCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDataGrantCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "DeleteDataGrant", {})
|
|
13
13
|
.n("DataExchangeClient", "DeleteDataGrantCommand")
|
|
14
|
-
.sc(DeleteDataGrant)
|
|
14
|
+
.sc(DeleteDataGrant$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDataSet } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDataSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDataSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDataSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "DeleteDataSet", {})
|
|
13
13
|
.n("DataExchangeClient", "DeleteDataSetCommand")
|
|
14
|
-
.sc(DeleteDataSet)
|
|
14
|
+
.sc(DeleteDataSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteEventAction } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEventAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEventActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEventActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "DeleteEventAction", {})
|
|
13
13
|
.n("DataExchangeClient", "DeleteEventActionCommand")
|
|
14
|
-
.sc(DeleteEventAction)
|
|
14
|
+
.sc(DeleteEventAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "DeleteRevision", {})
|
|
13
13
|
.n("DataExchangeClient", "DeleteRevisionCommand")
|
|
14
|
-
.sc(DeleteRevision)
|
|
14
|
+
.sc(DeleteRevision$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAsset } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAsset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAssetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAssetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetAsset", {})
|
|
13
13
|
.n("DataExchangeClient", "GetAssetCommand")
|
|
14
|
-
.sc(GetAsset)
|
|
14
|
+
.sc(GetAsset$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDataGrant } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataGrant$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataGrantCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataGrantCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetDataGrant", {})
|
|
13
13
|
.n("DataExchangeClient", "GetDataGrantCommand")
|
|
14
|
-
.sc(GetDataGrant)
|
|
14
|
+
.sc(GetDataGrant$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDataSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetDataSet", {})
|
|
13
13
|
.n("DataExchangeClient", "GetDataSetCommand")
|
|
14
|
-
.sc(GetDataSet)
|
|
14
|
+
.sc(GetDataSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetEventAction } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEventAction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEventActionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEventActionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetEventAction", {})
|
|
13
13
|
.n("DataExchangeClient", "GetEventActionCommand")
|
|
14
|
-
.sc(GetEventAction)
|
|
14
|
+
.sc(GetEventAction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetJob", {})
|
|
13
13
|
.n("DataExchangeClient", "GetJobCommand")
|
|
14
|
-
.sc(GetJob)
|
|
14
|
+
.sc(GetJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetReceivedDataGrant } from "../schemas/schemas_0";
|
|
4
|
+
import { GetReceivedDataGrant$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetReceivedDataGrantCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetReceivedDataGrantCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetReceivedDataGrant", {})
|
|
13
13
|
.n("DataExchangeClient", "GetReceivedDataGrantCommand")
|
|
14
|
-
.sc(GetReceivedDataGrant)
|
|
14
|
+
.sc(GetReceivedDataGrant$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "GetRevision", {})
|
|
13
13
|
.n("DataExchangeClient", "GetRevisionCommand")
|
|
14
|
-
.sc(GetRevision)
|
|
14
|
+
.sc(GetRevision$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDataGrants } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataGrants$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataGrantsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataGrantsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListDataGrants", {})
|
|
13
13
|
.n("DataExchangeClient", "ListDataGrantsCommand")
|
|
14
|
-
.sc(ListDataGrants)
|
|
14
|
+
.sc(ListDataGrants$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDataSetRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataSetRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataSetRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataSetRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListDataSetRevisions", {})
|
|
13
13
|
.n("DataExchangeClient", "ListDataSetRevisionsCommand")
|
|
14
|
-
.sc(ListDataSetRevisions)
|
|
14
|
+
.sc(ListDataSetRevisions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDataSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListDataSets", {})
|
|
13
13
|
.n("DataExchangeClient", "ListDataSetsCommand")
|
|
14
|
-
.sc(ListDataSets)
|
|
14
|
+
.sc(ListDataSets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEventActions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEventActions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEventActionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEventActionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListEventActions", {})
|
|
13
13
|
.n("DataExchangeClient", "ListEventActionsCommand")
|
|
14
|
-
.sc(ListEventActions)
|
|
14
|
+
.sc(ListEventActions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListJobs", {})
|
|
13
13
|
.n("DataExchangeClient", "ListJobsCommand")
|
|
14
|
-
.sc(ListJobs)
|
|
14
|
+
.sc(ListJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReceivedDataGrants } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReceivedDataGrants$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReceivedDataGrantsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReceivedDataGrantsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListReceivedDataGrants", {})
|
|
13
13
|
.n("DataExchangeClient", "ListReceivedDataGrantsCommand")
|
|
14
|
-
.sc(ListReceivedDataGrants)
|
|
14
|
+
.sc(ListReceivedDataGrants$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRevisionAssets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRevisionAssets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRevisionAssetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRevisionAssetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListRevisionAssets", {})
|
|
13
13
|
.n("DataExchangeClient", "ListRevisionAssetsCommand")
|
|
14
|
-
.sc(ListRevisionAssets)
|
|
14
|
+
.sc(ListRevisionAssets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "ListTagsForResource", {})
|
|
13
13
|
.n("DataExchangeClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RevokeRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { RevokeRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RevokeRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RevokeRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "RevokeRevision", {})
|
|
13
13
|
.n("DataExchangeClient", "RevokeRevisionCommand")
|
|
14
|
-
.sc(RevokeRevision)
|
|
14
|
+
.sc(RevokeRevision$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendApiAsset } from "../schemas/schemas_0";
|
|
4
|
+
import { SendApiAsset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendApiAssetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendApiAssetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "SendApiAsset", {})
|
|
13
13
|
.n("DataExchangeClient", "SendApiAssetCommand")
|
|
14
|
-
.sc(SendApiAsset)
|
|
14
|
+
.sc(SendApiAsset$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendDataSetNotification } from "../schemas/schemas_0";
|
|
4
|
+
import { SendDataSetNotification$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendDataSetNotificationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendDataSetNotificationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "SendDataSetNotification", {})
|
|
13
13
|
.n("DataExchangeClient", "SendDataSetNotificationCommand")
|
|
14
|
-
.sc(SendDataSetNotification)
|
|
14
|
+
.sc(SendDataSetNotification$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "StartJob", {})
|
|
13
13
|
.n("DataExchangeClient", "StartJobCommand")
|
|
14
|
-
.sc(StartJob)
|
|
14
|
+
.sc(StartJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "TagResource", {})
|
|
13
13
|
.n("DataExchangeClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "UntagResource", {})
|
|
13
13
|
.n("DataExchangeClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAsset } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAsset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAssetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAssetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "UpdateAsset", {})
|
|
13
13
|
.n("DataExchangeClient", "UpdateAssetCommand")
|
|
14
|
-
.sc(UpdateAsset)
|
|
14
|
+
.sc(UpdateAsset$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateDataSet } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDataSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDataSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDataSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DataExchange", "UpdateDataSet", {})
|
|
13
13
|
.n("DataExchangeClient", "UpdateDataSetCommand")
|
|
14
|
-
.sc(UpdateDataSet)
|
|
14
|
+
.sc(UpdateDataSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|