@aws-sdk/client-kendra-ranking 3.478.0 → 3.484.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist-cjs/commands/CreateRescoreExecutionPlanCommand.js +18 -40
  2. package/dist-cjs/commands/DeleteRescoreExecutionPlanCommand.js +18 -40
  3. package/dist-cjs/commands/DescribeRescoreExecutionPlanCommand.js +18 -40
  4. package/dist-cjs/commands/ListRescoreExecutionPlansCommand.js +18 -40
  5. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -40
  6. package/dist-cjs/commands/RescoreCommand.js +18 -40
  7. package/dist-cjs/commands/TagResourceCommand.js +18 -40
  8. package/dist-cjs/commands/UntagResourceCommand.js +18 -40
  9. package/dist-cjs/commands/UpdateRescoreExecutionPlanCommand.js +18 -40
  10. package/dist-cjs/endpoint/EndpointParameters.js +6 -1
  11. package/dist-es/commands/CreateRescoreExecutionPlanCommand.js +18 -40
  12. package/dist-es/commands/DeleteRescoreExecutionPlanCommand.js +18 -40
  13. package/dist-es/commands/DescribeRescoreExecutionPlanCommand.js +18 -40
  14. package/dist-es/commands/ListRescoreExecutionPlansCommand.js +18 -40
  15. package/dist-es/commands/ListTagsForResourceCommand.js +18 -40
  16. package/dist-es/commands/RescoreCommand.js +18 -40
  17. package/dist-es/commands/TagResourceCommand.js +18 -40
  18. package/dist-es/commands/UntagResourceCommand.js +18 -40
  19. package/dist-es/commands/UpdateRescoreExecutionPlanCommand.js +18 -40
  20. package/dist-es/endpoint/EndpointParameters.js +5 -0
  21. package/dist-types/commands/CreateRescoreExecutionPlanCommand.d.ts +6 -21
  22. package/dist-types/commands/DeleteRescoreExecutionPlanCommand.d.ts +6 -21
  23. package/dist-types/commands/DescribeRescoreExecutionPlanCommand.d.ts +6 -21
  24. package/dist-types/commands/ListRescoreExecutionPlansCommand.d.ts +6 -21
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  26. package/dist-types/commands/RescoreCommand.d.ts +6 -21
  27. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  28. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  29. package/dist-types/commands/UpdateRescoreExecutionPlanCommand.d.ts +6 -21
  30. package/dist-types/endpoint/EndpointParameters.d.ts +14 -0
  31. package/dist-types/ts3.4/commands/CreateRescoreExecutionPlanCommand.d.ts +12 -24
  32. package/dist-types/ts3.4/commands/DeleteRescoreExecutionPlanCommand.d.ts +12 -24
  33. package/dist-types/ts3.4/commands/DescribeRescoreExecutionPlanCommand.d.ts +12 -24
  34. package/dist-types/ts3.4/commands/ListRescoreExecutionPlansCommand.d.ts +12 -24
  35. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/commands/RescoreCommand.d.ts +12 -23
  37. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/commands/UpdateRescoreExecutionPlanCommand.d.ts +12 -24
  40. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -0
  41. package/package.json +11 -11
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { CreateRescoreExecutionPlanRequest, CreateRescoreExecutionPlanResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreateRescoreExecutionPlanCommandInput extends CreateRescoreExe
21
20
  */
22
21
  export interface CreateRescoreExecutionPlanCommandOutput extends CreateRescoreExecutionPlanResponse, __MetadataBearer {
23
22
  }
23
+ declare const CreateRescoreExecutionPlanCommand_base: {
24
+ new (input: CreateRescoreExecutionPlanCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRescoreExecutionPlanCommandInput, CreateRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Creates a rescore execution plan. A rescore execution
@@ -104,23 +107,5 @@ export interface CreateRescoreExecutionPlanCommandOutput extends CreateRescoreEx
104
107
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
105
108
  *
106
109
  */
107
- export declare class CreateRescoreExecutionPlanCommand extends $Command<CreateRescoreExecutionPlanCommandInput, CreateRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig> {
108
- readonly input: CreateRescoreExecutionPlanCommandInput;
109
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
110
- /**
111
- * @public
112
- */
113
- constructor(input: CreateRescoreExecutionPlanCommandInput);
114
- /**
115
- * @internal
116
- */
117
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRescoreExecutionPlanCommandInput, CreateRescoreExecutionPlanCommandOutput>;
118
- /**
119
- * @internal
120
- */
121
- private serialize;
122
- /**
123
- * @internal
124
- */
125
- private deserialize;
110
+ export declare class CreateRescoreExecutionPlanCommand extends CreateRescoreExecutionPlanCommand_base {
126
111
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { DeleteRescoreExecutionPlanRequest } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeleteRescoreExecutionPlanCommandInput extends DeleteRescoreExe
21
20
  */
22
21
  export interface DeleteRescoreExecutionPlanCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const DeleteRescoreExecutionPlanCommand_base: {
24
+ new (input: DeleteRescoreExecutionPlanCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRescoreExecutionPlanCommandInput, DeleteRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes a rescore execution plan. A rescore execution
@@ -81,23 +84,5 @@ export interface DeleteRescoreExecutionPlanCommandOutput extends __MetadataBeare
81
84
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
82
85
  *
83
86
  */
84
- export declare class DeleteRescoreExecutionPlanCommand extends $Command<DeleteRescoreExecutionPlanCommandInput, DeleteRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig> {
85
- readonly input: DeleteRescoreExecutionPlanCommandInput;
86
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
- /**
88
- * @public
89
- */
90
- constructor(input: DeleteRescoreExecutionPlanCommandInput);
91
- /**
92
- * @internal
93
- */
94
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRescoreExecutionPlanCommandInput, DeleteRescoreExecutionPlanCommandOutput>;
95
- /**
96
- * @internal
97
- */
98
- private serialize;
99
- /**
100
- * @internal
101
- */
102
- private deserialize;
87
+ export declare class DeleteRescoreExecutionPlanCommand extends DeleteRescoreExecutionPlanCommand_base {
103
88
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { DescribeRescoreExecutionPlanRequest, DescribeRescoreExecutionPlanResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DescribeRescoreExecutionPlanCommandInput extends DescribeRescor
21
20
  */
22
21
  export interface DescribeRescoreExecutionPlanCommandOutput extends DescribeRescoreExecutionPlanResponse, __MetadataBearer {
23
22
  }
23
+ declare const DescribeRescoreExecutionPlanCommand_base: {
24
+ new (input: DescribeRescoreExecutionPlanCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRescoreExecutionPlanCommandInput, DescribeRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Gets information about a rescore execution plan. A rescore
@@ -89,23 +92,5 @@ export interface DescribeRescoreExecutionPlanCommandOutput extends DescribeResco
89
92
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
90
93
  *
91
94
  */
92
- export declare class DescribeRescoreExecutionPlanCommand extends $Command<DescribeRescoreExecutionPlanCommandInput, DescribeRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig> {
93
- readonly input: DescribeRescoreExecutionPlanCommandInput;
94
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
95
- /**
96
- * @public
97
- */
98
- constructor(input: DescribeRescoreExecutionPlanCommandInput);
99
- /**
100
- * @internal
101
- */
102
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRescoreExecutionPlanCommandInput, DescribeRescoreExecutionPlanCommandOutput>;
103
- /**
104
- * @internal
105
- */
106
- private serialize;
107
- /**
108
- * @internal
109
- */
110
- private deserialize;
95
+ export declare class DescribeRescoreExecutionPlanCommand extends DescribeRescoreExecutionPlanCommand_base {
111
96
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { ListRescoreExecutionPlansRequest, ListRescoreExecutionPlansResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListRescoreExecutionPlansCommandInput extends ListRescoreExecut
21
20
  */
22
21
  export interface ListRescoreExecutionPlansCommandOutput extends ListRescoreExecutionPlansResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListRescoreExecutionPlansCommand_base: {
24
+ new (input: ListRescoreExecutionPlansCommandInput): import("@smithy/smithy-client").CommandImpl<ListRescoreExecutionPlansCommandInput, ListRescoreExecutionPlansCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists your rescore execution plans. A rescore execution plan
@@ -84,23 +87,5 @@ export interface ListRescoreExecutionPlansCommandOutput extends ListRescoreExecu
84
87
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
85
88
  *
86
89
  */
87
- export declare class ListRescoreExecutionPlansCommand extends $Command<ListRescoreExecutionPlansCommandInput, ListRescoreExecutionPlansCommandOutput, KendraRankingClientResolvedConfig> {
88
- readonly input: ListRescoreExecutionPlansCommandInput;
89
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
90
- /**
91
- * @public
92
- */
93
- constructor(input: ListRescoreExecutionPlansCommandInput);
94
- /**
95
- * @internal
96
- */
97
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRescoreExecutionPlansCommandInput, ListRescoreExecutionPlansCommandOutput>;
98
- /**
99
- * @internal
100
- */
101
- private serialize;
102
- /**
103
- * @internal
104
- */
105
- private deserialize;
90
+ export declare class ListRescoreExecutionPlansCommand extends ListRescoreExecutionPlansCommand_base {
106
91
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Gets a list of tags associated with a specified resource.
@@ -84,23 +87,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
84
87
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
85
88
  *
86
89
  */
87
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KendraRankingClientResolvedConfig> {
88
- readonly input: ListTagsForResourceCommandInput;
89
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
90
- /**
91
- * @public
92
- */
93
- constructor(input: ListTagsForResourceCommandInput);
94
- /**
95
- * @internal
96
- */
97
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
98
- /**
99
- * @internal
100
- */
101
- private serialize;
102
- /**
103
- * @internal
104
- */
105
- private deserialize;
90
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
106
91
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { RescoreRequest, RescoreResult } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface RescoreCommandInput extends RescoreRequest {
21
20
  */
22
21
  export interface RescoreCommandOutput extends RescoreResult, __MetadataBearer {
23
22
  }
23
+ declare const RescoreCommand_base: {
24
+ new (input: RescoreCommandInput): import("@smithy/smithy-client").CommandImpl<RescoreCommandInput, RescoreCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Rescores or re-ranks search results from a search service
@@ -106,23 +109,5 @@ export interface RescoreCommandOutput extends RescoreResult, __MetadataBearer {
106
109
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
107
110
  *
108
111
  */
109
- export declare class RescoreCommand extends $Command<RescoreCommandInput, RescoreCommandOutput, KendraRankingClientResolvedConfig> {
110
- readonly input: RescoreCommandInput;
111
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
112
- /**
113
- * @public
114
- */
115
- constructor(input: RescoreCommandInput);
116
- /**
117
- * @internal
118
- */
119
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RescoreCommandInput, RescoreCommandOutput>;
120
- /**
121
- * @internal
122
- */
123
- private serialize;
124
- /**
125
- * @internal
126
- */
127
- private deserialize;
112
+ export declare class RescoreCommand extends RescoreCommand_base {
128
113
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Adds a specified tag to a specified rescore execution
@@ -85,23 +88,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
85
88
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
86
89
  *
87
90
  */
88
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, KendraRankingClientResolvedConfig> {
89
- readonly input: TagResourceCommandInput;
90
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
- /**
92
- * @public
93
- */
94
- constructor(input: TagResourceCommandInput);
95
- /**
96
- * @internal
97
- */
98
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
99
- /**
100
- * @internal
101
- */
102
- private serialize;
103
- /**
104
- * @internal
105
- */
106
- private deserialize;
91
+ export declare class TagResourceCommand extends TagResourceCommand_base {
107
92
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes a tag from a rescore execution plan. A rescore
@@ -81,23 +84,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
81
84
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
82
85
  *
83
86
  */
84
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, KendraRankingClientResolvedConfig> {
85
- readonly input: UntagResourceCommandInput;
86
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
- /**
88
- * @public
89
- */
90
- constructor(input: UntagResourceCommandInput);
91
- /**
92
- * @internal
93
- */
94
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
95
- /**
96
- * @internal
97
- */
98
- private serialize;
99
- /**
100
- * @internal
101
- */
102
- private deserialize;
87
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
103
88
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient";
5
4
  import { UpdateRescoreExecutionPlanRequest } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateRescoreExecutionPlanCommandInput extends UpdateRescoreExe
21
20
  */
22
21
  export interface UpdateRescoreExecutionPlanCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const UpdateRescoreExecutionPlanCommand_base: {
24
+ new (input: UpdateRescoreExecutionPlanCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRescoreExecutionPlanCommandInput, UpdateRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Updates a rescore execution plan. A rescore execution plan
@@ -96,23 +99,5 @@ export interface UpdateRescoreExecutionPlanCommandOutput extends __MetadataBeare
96
99
  * <p>Base exception class for all service exceptions from KendraRanking service.</p>
97
100
  *
98
101
  */
99
- export declare class UpdateRescoreExecutionPlanCommand extends $Command<UpdateRescoreExecutionPlanCommandInput, UpdateRescoreExecutionPlanCommandOutput, KendraRankingClientResolvedConfig> {
100
- readonly input: UpdateRescoreExecutionPlanCommandInput;
101
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
102
- /**
103
- * @public
104
- */
105
- constructor(input: UpdateRescoreExecutionPlanCommandInput);
106
- /**
107
- * @internal
108
- */
109
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KendraRankingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRescoreExecutionPlanCommandInput, UpdateRescoreExecutionPlanCommandOutput>;
110
- /**
111
- * @internal
112
- */
113
- private serialize;
114
- /**
115
- * @internal
116
- */
117
- private deserialize;
102
+ export declare class UpdateRescoreExecutionPlanCommand extends UpdateRescoreExecutionPlanCommand_base {
118
103
  }
@@ -13,6 +13,20 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
13
13
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
14
14
  defaultSigningName: string;
15
15
  };
16
+ export declare const commonParams: {
17
+ readonly UseFIPS: {
18
+ readonly type: "builtInParams";
19
+ readonly name: "useFipsEndpoint";
20
+ };
21
+ readonly Endpoint: {
22
+ readonly type: "builtInParams";
23
+ readonly name: "endpoint";
24
+ };
25
+ readonly Region: {
26
+ readonly type: "builtInParams";
27
+ readonly name: "region";
28
+ };
29
+ };
16
30
  export interface EndpointParameters extends __EndpointParameters {
17
31
  Region?: string;
18
32
  UseFIPS?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  KendraRankingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface CreateRescoreExecutionPlanCommandInput
21
15
  export interface CreateRescoreExecutionPlanCommandOutput
22
16
  extends CreateRescoreExecutionPlanResponse,
23
17
  __MetadataBearer {}
24
- export declare class CreateRescoreExecutionPlanCommand extends $Command<
25
- CreateRescoreExecutionPlanCommandInput,
26
- CreateRescoreExecutionPlanCommandOutput,
27
- KendraRankingClientResolvedConfig
28
- > {
29
- readonly input: CreateRescoreExecutionPlanCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: CreateRescoreExecutionPlanCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: KendraRankingClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const CreateRescoreExecutionPlanCommand_base: {
19
+ new (
20
+ input: CreateRescoreExecutionPlanCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  CreateRescoreExecutionPlanCommandInput,
38
- CreateRescoreExecutionPlanCommandOutput
23
+ CreateRescoreExecutionPlanCommandOutput,
24
+ KendraRankingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CreateRescoreExecutionPlanCommand extends CreateRescoreExecutionPlanCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  KendraRankingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,22 +11,16 @@ export interface DeleteRescoreExecutionPlanCommandInput
17
11
  extends DeleteRescoreExecutionPlanRequest {}
18
12
  export interface DeleteRescoreExecutionPlanCommandOutput
19
13
  extends __MetadataBearer {}
20
- export declare class DeleteRescoreExecutionPlanCommand extends $Command<
21
- DeleteRescoreExecutionPlanCommandInput,
22
- DeleteRescoreExecutionPlanCommandOutput,
23
- KendraRankingClientResolvedConfig
24
- > {
25
- readonly input: DeleteRescoreExecutionPlanCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: DeleteRescoreExecutionPlanCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: KendraRankingClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<
14
+ declare const DeleteRescoreExecutionPlanCommand_base: {
15
+ new (
16
+ input: DeleteRescoreExecutionPlanCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
33
18
  DeleteRescoreExecutionPlanCommandInput,
34
- DeleteRescoreExecutionPlanCommandOutput
19
+ DeleteRescoreExecutionPlanCommandOutput,
20
+ KendraRankingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
35
23
  >;
36
- private serialize;
37
- private deserialize;
38
- }
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class DeleteRescoreExecutionPlanCommand extends DeleteRescoreExecutionPlanCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  KendraRankingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface DescribeRescoreExecutionPlanCommandInput
21
15
  export interface DescribeRescoreExecutionPlanCommandOutput
22
16
  extends DescribeRescoreExecutionPlanResponse,
23
17
  __MetadataBearer {}
24
- export declare class DescribeRescoreExecutionPlanCommand extends $Command<
25
- DescribeRescoreExecutionPlanCommandInput,
26
- DescribeRescoreExecutionPlanCommandOutput,
27
- KendraRankingClientResolvedConfig
28
- > {
29
- readonly input: DescribeRescoreExecutionPlanCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DescribeRescoreExecutionPlanCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: KendraRankingClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const DescribeRescoreExecutionPlanCommand_base: {
19
+ new (
20
+ input: DescribeRescoreExecutionPlanCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  DescribeRescoreExecutionPlanCommandInput,
38
- DescribeRescoreExecutionPlanCommandOutput
23
+ DescribeRescoreExecutionPlanCommandOutput,
24
+ KendraRankingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DescribeRescoreExecutionPlanCommand extends DescribeRescoreExecutionPlanCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  KendraRankingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListRescoreExecutionPlansCommandInput
21
15
  export interface ListRescoreExecutionPlansCommandOutput
22
16
  extends ListRescoreExecutionPlansResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListRescoreExecutionPlansCommand extends $Command<
25
- ListRescoreExecutionPlansCommandInput,
26
- ListRescoreExecutionPlansCommandOutput,
27
- KendraRankingClientResolvedConfig
28
- > {
29
- readonly input: ListRescoreExecutionPlansCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListRescoreExecutionPlansCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: KendraRankingClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListRescoreExecutionPlansCommand_base: {
19
+ new (
20
+ input: ListRescoreExecutionPlansCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListRescoreExecutionPlansCommandInput,
38
- ListRescoreExecutionPlansCommandOutput
23
+ ListRescoreExecutionPlansCommandOutput,
24
+ KendraRankingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListRescoreExecutionPlansCommand extends ListRescoreExecutionPlansCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  KendraRankingClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,19 +15,16 @@ export interface ListTagsForResourceCommandInput
21
15
  export interface ListTagsForResourceCommandOutput
22
16
  extends ListTagsForResourceResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListTagsForResourceCommand extends $Command<
25
- ListTagsForResourceCommandInput,
26
- ListTagsForResourceCommandOutput,
27
- KendraRankingClientResolvedConfig
28
- > {
29
- readonly input: ListTagsForResourceCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListTagsForResourceCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: KendraRankingClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ KendraRankingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}