@aws-sdk/client-wisdom 3.194.0 → 3.196.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 +11 -0
- package/dist-cjs/WisdomClient.js +11 -8
- package/dist-cjs/commands/CreateAssistantAssociationCommand.js +10 -0
- package/dist-cjs/commands/CreateAssistantCommand.js +10 -0
- package/dist-cjs/commands/CreateContentCommand.js +10 -0
- package/dist-cjs/commands/CreateKnowledgeBaseCommand.js +10 -0
- package/dist-cjs/commands/CreateSessionCommand.js +10 -0
- package/dist-cjs/commands/DeleteAssistantAssociationCommand.js +10 -0
- package/dist-cjs/commands/DeleteAssistantCommand.js +10 -0
- package/dist-cjs/commands/DeleteContentCommand.js +10 -0
- package/dist-cjs/commands/DeleteKnowledgeBaseCommand.js +10 -0
- package/dist-cjs/commands/GetAssistantAssociationCommand.js +10 -0
- package/dist-cjs/commands/GetAssistantCommand.js +10 -0
- package/dist-cjs/commands/GetContentCommand.js +10 -0
- package/dist-cjs/commands/GetContentSummaryCommand.js +10 -0
- package/dist-cjs/commands/GetKnowledgeBaseCommand.js +10 -0
- package/dist-cjs/commands/GetRecommendationsCommand.js +10 -0
- package/dist-cjs/commands/GetSessionCommand.js +10 -0
- package/dist-cjs/commands/ListAssistantAssociationsCommand.js +10 -0
- package/dist-cjs/commands/ListAssistantsCommand.js +10 -0
- package/dist-cjs/commands/ListContentsCommand.js +10 -0
- package/dist-cjs/commands/ListKnowledgeBasesCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/NotifyRecommendationsReceivedCommand.js +10 -0
- package/dist-cjs/commands/QueryAssistantCommand.js +10 -0
- package/dist-cjs/commands/RemoveKnowledgeBaseTemplateUriCommand.js +10 -0
- package/dist-cjs/commands/SearchContentCommand.js +10 -0
- package/dist-cjs/commands/SearchSessionsCommand.js +10 -0
- package/dist-cjs/commands/StartContentUploadCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateContentCommand.js +10 -0
- package/dist-cjs/commands/UpdateKnowledgeBaseTemplateUriCommand.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/WisdomClient.js +12 -9
- package/dist-es/commands/CreateAssistantAssociationCommand.js +10 -0
- package/dist-es/commands/CreateAssistantCommand.js +10 -0
- package/dist-es/commands/CreateContentCommand.js +10 -0
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +10 -0
- package/dist-es/commands/CreateSessionCommand.js +10 -0
- package/dist-es/commands/DeleteAssistantAssociationCommand.js +10 -0
- package/dist-es/commands/DeleteAssistantCommand.js +10 -0
- package/dist-es/commands/DeleteContentCommand.js +10 -0
- package/dist-es/commands/DeleteKnowledgeBaseCommand.js +10 -0
- package/dist-es/commands/GetAssistantAssociationCommand.js +10 -0
- package/dist-es/commands/GetAssistantCommand.js +10 -0
- package/dist-es/commands/GetContentCommand.js +10 -0
- package/dist-es/commands/GetContentSummaryCommand.js +10 -0
- package/dist-es/commands/GetKnowledgeBaseCommand.js +10 -0
- package/dist-es/commands/GetRecommendationsCommand.js +10 -0
- package/dist-es/commands/GetSessionCommand.js +10 -0
- package/dist-es/commands/ListAssistantAssociationsCommand.js +10 -0
- package/dist-es/commands/ListAssistantsCommand.js +10 -0
- package/dist-es/commands/ListContentsCommand.js +10 -0
- package/dist-es/commands/ListKnowledgeBasesCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +10 -0
- package/dist-es/commands/QueryAssistantCommand.js +10 -0
- package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +10 -0
- package/dist-es/commands/SearchContentCommand.js +10 -0
- package/dist-es/commands/SearchSessionsCommand.js +10 -0
- package/dist-es/commands/StartContentUploadCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateContentCommand.js +10 -0
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.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/WisdomClient.d.ts +6 -9
- package/dist-types/commands/CreateAssistantAssociationCommand.d.ts +2 -0
- package/dist-types/commands/CreateAssistantCommand.d.ts +2 -0
- package/dist-types/commands/CreateContentCommand.d.ts +2 -0
- package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +2 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAssistantAssociationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAssistantCommand.d.ts +2 -0
- package/dist-types/commands/DeleteContentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +2 -0
- package/dist-types/commands/GetAssistantAssociationCommand.d.ts +2 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +2 -0
- package/dist-types/commands/GetContentCommand.d.ts +2 -0
- package/dist-types/commands/GetContentSummaryCommand.d.ts +2 -0
- package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +2 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +2 -0
- package/dist-types/commands/GetSessionCommand.d.ts +2 -0
- package/dist-types/commands/ListAssistantAssociationsCommand.d.ts +2 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +2 -0
- package/dist-types/commands/ListContentsCommand.d.ts +2 -0
- package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/NotifyRecommendationsReceivedCommand.d.ts +2 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +2 -0
- package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +2 -0
- package/dist-types/commands/SearchContentCommand.d.ts +2 -0
- package/dist-types/commands/SearchSessionsCommand.d.ts +2 -0
- package/dist-types/commands/StartContentUploadCommand.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/UpdateContentCommand.d.ts +2 -0
- package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.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/WisdomClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetContentCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartContentUploadCommand.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/UpdateContentCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -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 +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -141
- package/dist-es/endpoints.js +0 -137
- 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 { GetContentSummaryRequest, GetContentSummaryResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface GetContentSummaryCommandOutput extends GetContentSummaryRespons
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetContentSummaryCommand extends $Command<GetContentSummaryCommandInput, GetContentSummaryCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: GetContentSummaryCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetContentSummaryCommandInput);
|
|
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 { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface GetKnowledgeBaseCommandOutput extends GetKnowledgeBaseResponse,
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetKnowledgeBaseCommand extends $Command<GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: GetKnowledgeBaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetKnowledgeBaseCommandInput);
|
|
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 { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0";
|
|
@@ -28,6 +29,7 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, WisdomClientResolvedConfig> {
|
|
30
31
|
readonly input: GetRecommendationsCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: GetRecommendationsCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @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 { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class GetSessionCommand extends $Command<GetSessionCommandInput, GetSessionCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: GetSessionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetSessionCommandInput);
|
|
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 { ListAssistantAssociationsRequest, ListAssistantAssociationsResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface ListAssistantAssociationsCommandOutput extends ListAssistantAss
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListAssistantAssociationsCommand extends $Command<ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: ListAssistantAssociationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListAssistantAssociationsCommandInput);
|
|
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 { ListAssistantsRequest, ListAssistantsResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface ListAssistantsCommandOutput extends ListAssistantsResponse, __M
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListAssistantsCommand extends $Command<ListAssistantsCommandInput, ListAssistantsCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: ListAssistantsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListAssistantsCommandInput);
|
|
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 { ListContentsRequest, ListContentsResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface ListContentsCommandOutput extends ListContentsResponse, __Metad
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListContentsCommand extends $Command<ListContentsCommandInput, ListContentsCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: ListContentsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListContentsCommandInput);
|
|
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 { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface ListKnowledgeBasesCommandOutput extends ListKnowledgeBasesRespo
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListKnowledgeBasesCommand extends $Command<ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: ListKnowledgeBasesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListKnowledgeBasesCommandInput);
|
|
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WisdomClientResolvedConfig> {
|
|
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 { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface NotifyRecommendationsReceivedCommandOutput extends NotifyRecomm
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class NotifyRecommendationsReceivedCommand extends $Command<NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput, WisdomClientResolvedConfig> {
|
|
29
30
|
readonly input: NotifyRecommendationsReceivedCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: NotifyRecommendationsReceivedCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @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 { QueryAssistantRequest, QueryAssistantResponse } from "../models/models_0";
|
|
@@ -27,6 +28,7 @@ export interface QueryAssistantCommandOutput extends QueryAssistantResponse, __M
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class QueryAssistantCommand extends $Command<QueryAssistantCommandInput, QueryAssistantCommandOutput, WisdomClientResolvedConfig> {
|
|
29
30
|
readonly input: QueryAssistantCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: QueryAssistantCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @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 { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface RemoveKnowledgeBaseTemplateUriCommandOutput extends RemoveKnowl
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class RemoveKnowledgeBaseTemplateUriCommand extends $Command<RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: RemoveKnowledgeBaseTemplateUriCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: RemoveKnowledgeBaseTemplateUriCommandInput);
|
|
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 { SearchContentRequest, SearchContentResponse } from "../models/models_0";
|
|
@@ -26,6 +27,7 @@ export interface SearchContentCommandOutput extends SearchContentResponse, __Met
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class SearchContentCommand extends $Command<SearchContentCommandInput, SearchContentCommandOutput, WisdomClientResolvedConfig> {
|
|
28
29
|
readonly input: SearchContentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: SearchContentCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @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 { SearchSessionsRequest, SearchSessionsResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface SearchSessionsCommandOutput extends SearchSessionsResponse, __M
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class SearchSessionsCommand extends $Command<SearchSessionsCommandInput, SearchSessionsCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: SearchSessionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: SearchSessionsCommandInput);
|
|
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 { StartContentUploadRequest, StartContentUploadResponse } from "../models/models_0";
|
|
@@ -28,6 +29,7 @@ export interface StartContentUploadCommandOutput extends StartContentUploadRespo
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class StartContentUploadCommand extends $Command<StartContentUploadCommandInput, StartContentUploadCommandOutput, WisdomClientResolvedConfig> {
|
|
30
31
|
readonly input: StartContentUploadCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: StartContentUploadCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, WisdomClientResolvedConfig> {
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, WisdomClientResolvedConfig> {
|
|
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 { UpdateContentRequest, UpdateContentResponse } from "../models/models_0";
|
|
@@ -25,6 +26,7 @@ export interface UpdateContentCommandOutput extends UpdateContentResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateContentCommand extends $Command<UpdateContentCommandInput, UpdateContentCommandOutput, WisdomClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateContentCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateContentCommandInput);
|
|
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 { UpdateKnowledgeBaseTemplateUriRequest, UpdateKnowledgeBaseTemplateUriResponse } from "../models/models_0";
|
|
@@ -30,6 +31,7 @@ export interface UpdateKnowledgeBaseTemplateUriCommandOutput extends UpdateKnowl
|
|
|
30
31
|
*/
|
|
31
32
|
export declare class UpdateKnowledgeBaseTemplateUriCommand extends $Command<UpdateKnowledgeBaseTemplateUriCommandInput, UpdateKnowledgeBaseTemplateUriCommandOutput, WisdomClientResolvedConfig> {
|
|
32
33
|
readonly input: UpdateKnowledgeBaseTemplateUriCommandInput;
|
|
34
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
35
|
constructor(input: UpdateKnowledgeBaseTemplateUriCommandInput);
|
|
34
36
|
/**
|
|
35
37
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, 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>;
|
|
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: WisdomClientConfig) => {
|
|
|
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>)) | 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: WisdomClientConfig) => {
|
|
|
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>)) | 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: WisdomClientConfig) => {
|
|
|
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
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | 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 { WisdomClientConfig } from "./WisdomClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
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,
|
|
@@ -166,6 +167,11 @@ import {
|
|
|
166
167
|
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
167
168
|
UpdateKnowledgeBaseTemplateUriCommandOutput,
|
|
168
169
|
} from "./commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
170
|
+
import {
|
|
171
|
+
ClientInputEndpointParameters,
|
|
172
|
+
ClientResolvedEndpointParameters,
|
|
173
|
+
EndpointParameters,
|
|
174
|
+
} from "./endpoint/EndpointParameters";
|
|
169
175
|
export declare type ServiceInputTypes =
|
|
170
176
|
| CreateAssistantAssociationCommandInput
|
|
171
177
|
| CreateAssistantCommandInput
|
|
@@ -251,7 +257,6 @@ export interface ClientDefaults
|
|
|
251
257
|
serviceId?: string;
|
|
252
258
|
region?: string | __Provider<string>;
|
|
253
259
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
254
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
255
260
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
256
261
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
257
262
|
}
|
|
@@ -260,21 +265,23 @@ declare type WisdomClientConfigType = Partial<
|
|
|
260
265
|
> &
|
|
261
266
|
ClientDefaults &
|
|
262
267
|
RegionInputConfig &
|
|
263
|
-
|
|
268
|
+
EndpointInputConfig<EndpointParameters> &
|
|
264
269
|
RetryInputConfig &
|
|
265
270
|
HostHeaderInputConfig &
|
|
266
271
|
AwsAuthInputConfig &
|
|
267
|
-
UserAgentInputConfig
|
|
272
|
+
UserAgentInputConfig &
|
|
273
|
+
ClientInputEndpointParameters;
|
|
268
274
|
export interface WisdomClientConfig extends WisdomClientConfigType {}
|
|
269
275
|
declare type WisdomClientResolvedConfigType =
|
|
270
276
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
271
277
|
Required<ClientDefaults> &
|
|
272
278
|
RegionResolvedConfig &
|
|
273
|
-
|
|
279
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
274
280
|
RetryResolvedConfig &
|
|
275
281
|
HostHeaderResolvedConfig &
|
|
276
282
|
AwsAuthResolvedConfig &
|
|
277
|
-
UserAgentResolvedConfig
|
|
283
|
+
UserAgentResolvedConfig &
|
|
284
|
+
ClientResolvedEndpointParameters;
|
|
278
285
|
export interface WisdomClientResolvedConfig
|
|
279
286
|
extends WisdomClientResolvedConfigType {}
|
|
280
287
|
export declare class WisdomClient 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,
|
|
@@ -25,6 +26,7 @@ export declare class CreateAssistantAssociationCommand extends $Command<
|
|
|
25
26
|
WisdomClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateAssistantAssociationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateAssistantAssociationCommandInput);
|
|
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 CreateAssistantCommand extends $Command<
|
|
|
24
25
|
WisdomClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateAssistantCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateAssistantCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class CreateContentCommand extends $Command<
|
|
|
24
25
|
WisdomClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateContentCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateContentCommandInput);
|
|
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 CreateKnowledgeBaseCommand extends $Command<
|
|
|
25
26
|
WisdomClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateKnowledgeBaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateKnowledgeBaseCommandInput);
|
|
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 CreateSessionCommand extends $Command<
|
|
|
24
25
|
WisdomClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateSessionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateSessionCommandInput);
|
|
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 DeleteAssistantAssociationCommand extends $Command<
|
|
|
25
26
|
WisdomClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteAssistantAssociationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteAssistantAssociationCommandInput);
|
|
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 DeleteAssistantCommand extends $Command<
|
|
|
24
25
|
WisdomClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteAssistantCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteAssistantCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteContentCommand extends $Command<
|
|
|
24
25
|
WisdomClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteContentCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteContentCommandInput);
|
|
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 DeleteKnowledgeBaseCommand extends $Command<
|
|
|
25
26
|
WisdomClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteKnowledgeBaseCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteKnowledgeBaseCommandInput);
|
|
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 GetAssistantAssociationCommand extends $Command<
|
|
|
25
26
|
WisdomClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetAssistantAssociationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetAssistantAssociationCommandInput);
|
|
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 GetAssistantCommand extends $Command<
|
|
|
21
22
|
WisdomClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetAssistantCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetAssistantCommandInput);
|
|
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 GetContentCommand extends $Command<
|
|
|
21
22
|
WisdomClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetContentCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetContentCommandInput);
|
|
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 GetContentSummaryCommand extends $Command<
|
|
|
25
26
|
WisdomClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetContentSummaryCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetContentSummaryCommandInput);
|
|
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 GetKnowledgeBaseCommand extends $Command<
|
|
|
24
25
|
WisdomClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: GetKnowledgeBaseCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: GetKnowledgeBaseCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|