@aws-sdk/client-dataexchange 3.194.0 → 3.197.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 +22 -0
- package/dist-cjs/DataExchangeClient.js +11 -8
- package/dist-cjs/commands/CancelJobCommand.js +10 -0
- package/dist-cjs/commands/CreateDataSetCommand.js +10 -0
- package/dist-cjs/commands/CreateEventActionCommand.js +10 -0
- package/dist-cjs/commands/CreateJobCommand.js +10 -0
- package/dist-cjs/commands/CreateRevisionCommand.js +10 -0
- package/dist-cjs/commands/DeleteAssetCommand.js +10 -0
- package/dist-cjs/commands/DeleteDataSetCommand.js +10 -0
- package/dist-cjs/commands/DeleteEventActionCommand.js +10 -0
- package/dist-cjs/commands/DeleteRevisionCommand.js +10 -0
- package/dist-cjs/commands/GetAssetCommand.js +10 -0
- package/dist-cjs/commands/GetDataSetCommand.js +10 -0
- package/dist-cjs/commands/GetEventActionCommand.js +10 -0
- package/dist-cjs/commands/GetJobCommand.js +10 -0
- package/dist-cjs/commands/GetRevisionCommand.js +10 -0
- package/dist-cjs/commands/ListDataSetRevisionsCommand.js +10 -0
- package/dist-cjs/commands/ListDataSetsCommand.js +10 -0
- package/dist-cjs/commands/ListEventActionsCommand.js +10 -0
- package/dist-cjs/commands/ListJobsCommand.js +10 -0
- package/dist-cjs/commands/ListRevisionAssetsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/RevokeRevisionCommand.js +10 -0
- package/dist-cjs/commands/SendApiAssetCommand.js +10 -0
- package/dist-cjs/commands/StartJobCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateAssetCommand.js +10 -0
- package/dist-cjs/commands/UpdateDataSetCommand.js +10 -0
- package/dist-cjs/commands/UpdateEventActionCommand.js +10 -0
- package/dist-cjs/commands/UpdateRevisionCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/DataExchangeClient.js +12 -9
- package/dist-es/commands/CancelJobCommand.js +10 -0
- package/dist-es/commands/CreateDataSetCommand.js +10 -0
- package/dist-es/commands/CreateEventActionCommand.js +10 -0
- package/dist-es/commands/CreateJobCommand.js +10 -0
- package/dist-es/commands/CreateRevisionCommand.js +10 -0
- package/dist-es/commands/DeleteAssetCommand.js +10 -0
- package/dist-es/commands/DeleteDataSetCommand.js +10 -0
- package/dist-es/commands/DeleteEventActionCommand.js +10 -0
- package/dist-es/commands/DeleteRevisionCommand.js +10 -0
- package/dist-es/commands/GetAssetCommand.js +10 -0
- package/dist-es/commands/GetDataSetCommand.js +10 -0
- package/dist-es/commands/GetEventActionCommand.js +10 -0
- package/dist-es/commands/GetJobCommand.js +10 -0
- package/dist-es/commands/GetRevisionCommand.js +10 -0
- package/dist-es/commands/ListDataSetRevisionsCommand.js +10 -0
- package/dist-es/commands/ListDataSetsCommand.js +10 -0
- package/dist-es/commands/ListEventActionsCommand.js +10 -0
- package/dist-es/commands/ListJobsCommand.js +10 -0
- package/dist-es/commands/ListRevisionAssetsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/RevokeRevisionCommand.js +10 -0
- package/dist-es/commands/SendApiAssetCommand.js +10 -0
- package/dist-es/commands/StartJobCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateAssetCommand.js +10 -0
- package/dist-es/commands/UpdateDataSetCommand.js +10 -0
- package/dist-es/commands/UpdateEventActionCommand.js +10 -0
- package/dist-es/commands/UpdateRevisionCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/DataExchangeClient.d.ts +6 -9
- package/dist-types/commands/CancelJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +2 -0
- package/dist-types/commands/CreateEventActionCommand.d.ts +2 -0
- package/dist-types/commands/CreateJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateRevisionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataSetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteEventActionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteRevisionCommand.d.ts +2 -0
- package/dist-types/commands/GetAssetCommand.d.ts +2 -0
- package/dist-types/commands/GetDataSetCommand.d.ts +2 -0
- package/dist-types/commands/GetEventActionCommand.d.ts +2 -0
- package/dist-types/commands/GetJobCommand.d.ts +2 -0
- package/dist-types/commands/GetRevisionCommand.d.ts +2 -0
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +2 -0
- package/dist-types/commands/ListDataSetsCommand.d.ts +2 -0
- package/dist-types/commands/ListEventActionsCommand.d.ts +2 -0
- package/dist-types/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/RevokeRevisionCommand.d.ts +2 -0
- package/dist-types/commands/SendApiAssetCommand.d.ts +2 -0
- package/dist-types/commands/StartJobCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDataSetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateEventActionCommand.d.ts +2 -0
- package/dist-types/commands/UpdateRevisionCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/DataExchangeClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +23 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +23 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +28 -26
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: ListJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListJobsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListRevisionAssetsCommand extends $Command<ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: ListRevisionAssetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListRevisionAssetsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class RevokeRevisionCommand extends $Command<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: RevokeRevisionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: RevokeRevisionCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __Metad
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class SendApiAssetCommand extends $Command<SendApiAssetCommandInput, SendApiAssetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: SendApiAssetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: SendApiAssetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface StartJobCommandOutput extends StartJobResponse, __MetadataBeare
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class StartJobCommand extends $Command<StartJobCommandInput, StartJobCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: StartJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartJobCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: TagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: TagResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UntagResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateAssetCommand extends $Command<UpdateAssetCommandInput, UpdateAssetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateAssetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateAssetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateDataSetCommand extends $Command<UpdateDataSetCommandInput, UpdateDataSetCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateDataSetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateDataSetCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateEventActionCommandOutput extends UpdateEventActionRespons
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateEventActionCommand extends $Command<UpdateEventActionCommandInput, UpdateEventActionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateEventActionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateEventActionCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateRevisionCommandOutput extends UpdateRevisionResponse, __M
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateRevisionCommand extends $Command<UpdateRevisionCommandInput, UpdateRevisionCommandOutput, DataExchangeClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateRevisionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateRevisionCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { DataExchangeClientConfig } from "./DataExchangeClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: DataExchangeClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -158,6 +159,11 @@ import {
|
|
|
158
159
|
UpdateRevisionCommandInput,
|
|
159
160
|
UpdateRevisionCommandOutput,
|
|
160
161
|
} from "./commands/UpdateRevisionCommand";
|
|
162
|
+
import {
|
|
163
|
+
ClientInputEndpointParameters,
|
|
164
|
+
ClientResolvedEndpointParameters,
|
|
165
|
+
EndpointParameters,
|
|
166
|
+
} from "./endpoint/EndpointParameters";
|
|
161
167
|
export declare type ServiceInputTypes =
|
|
162
168
|
| CancelJobCommandInput
|
|
163
169
|
| CreateDataSetCommandInput
|
|
@@ -239,7 +245,6 @@ export interface ClientDefaults
|
|
|
239
245
|
serviceId?: string;
|
|
240
246
|
region?: string | __Provider<string>;
|
|
241
247
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
242
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
243
248
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
244
249
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
245
250
|
}
|
|
@@ -248,22 +253,24 @@ declare type DataExchangeClientConfigType = Partial<
|
|
|
248
253
|
> &
|
|
249
254
|
ClientDefaults &
|
|
250
255
|
RegionInputConfig &
|
|
251
|
-
|
|
256
|
+
EndpointInputConfig<EndpointParameters> &
|
|
252
257
|
RetryInputConfig &
|
|
253
258
|
HostHeaderInputConfig &
|
|
254
259
|
AwsAuthInputConfig &
|
|
255
|
-
UserAgentInputConfig
|
|
260
|
+
UserAgentInputConfig &
|
|
261
|
+
ClientInputEndpointParameters;
|
|
256
262
|
export interface DataExchangeClientConfig
|
|
257
263
|
extends DataExchangeClientConfigType {}
|
|
258
264
|
declare type DataExchangeClientResolvedConfigType =
|
|
259
265
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
260
266
|
Required<ClientDefaults> &
|
|
261
267
|
RegionResolvedConfig &
|
|
262
|
-
|
|
268
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
263
269
|
RetryResolvedConfig &
|
|
264
270
|
HostHeaderResolvedConfig &
|
|
265
271
|
AwsAuthResolvedConfig &
|
|
266
|
-
UserAgentResolvedConfig
|
|
272
|
+
UserAgentResolvedConfig &
|
|
273
|
+
ClientResolvedEndpointParameters;
|
|
267
274
|
export interface DataExchangeClientResolvedConfig
|
|
268
275
|
extends DataExchangeClientResolvedConfigType {}
|
|
269
276
|
export declare class DataExchangeClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class CancelJobCommand extends $Command<
|
|
|
19
20
|
DataExchangeClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: CancelJobCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: CancelJobCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateDataSetCommand extends $Command<
|
|
|
24
25
|
DataExchangeClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateDataSetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateDataSetCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateEventActionCommand extends $Command<
|
|
|
25
26
|
DataExchangeClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateEventActionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateEventActionCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreateJobCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateJobCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateJobCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateRevisionCommand extends $Command<
|
|
|
24
25
|
DataExchangeClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateRevisionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateRevisionCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class DeleteAssetCommand extends $Command<
|
|
|
19
20
|
DataExchangeClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: DeleteAssetCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: DeleteAssetCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class DeleteDataSetCommand extends $Command<
|
|
|
19
20
|
DataExchangeClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: DeleteDataSetCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: DeleteDataSetCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -20,6 +21,7 @@ export declare class DeleteEventActionCommand extends $Command<
|
|
|
20
21
|
DataExchangeClientResolvedConfig
|
|
21
22
|
> {
|
|
22
23
|
readonly input: DeleteEventActionCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
23
25
|
constructor(input: DeleteEventActionCommandInput);
|
|
24
26
|
resolveMiddleware(
|
|
25
27
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class DeleteRevisionCommand extends $Command<
|
|
|
19
20
|
DataExchangeClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: DeleteRevisionCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: DeleteRevisionCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetAssetCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetAssetCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetAssetCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetDataSetCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetDataSetCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetDataSetCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class GetEventActionCommand extends $Command<
|
|
|
24
25
|
DataExchangeClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: GetEventActionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: GetEventActionCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class GetJobCommand extends $Command<
|
|
|
19
20
|
DataExchangeClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: GetJobCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: GetJobCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class GetRevisionCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetRevisionCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetRevisionCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListDataSetRevisionsCommand extends $Command<
|
|
|
25
26
|
DataExchangeClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListDataSetRevisionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDataSetRevisionsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListDataSetsCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListDataSetsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListDataSetsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListEventActionsCommand extends $Command<
|
|
|
24
25
|
DataExchangeClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListEventActionsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListEventActionsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListJobsCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListJobsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListJobsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListRevisionAssetsCommand extends $Command<
|
|
|
25
26
|
DataExchangeClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListRevisionAssetsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListRevisionAssetsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
DataExchangeClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class RevokeRevisionCommand extends $Command<
|
|
|
24
25
|
DataExchangeClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: RevokeRevisionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: RevokeRevisionCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class SendApiAssetCommand extends $Command<
|
|
|
21
22
|
DataExchangeClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: SendApiAssetCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: SendApiAssetCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|