@aws-sdk/client-qconnect 3.461.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/LICENSE +201 -0
- package/README.md +545 -0
- package/dist-cjs/QConnect.js +93 -0
- package/dist-cjs/QConnectClient.js +43 -0
- package/dist-cjs/commands/CreateAssistantAssociationCommand.js +51 -0
- package/dist-cjs/commands/CreateAssistantCommand.js +51 -0
- package/dist-cjs/commands/CreateContentCommand.js +52 -0
- package/dist-cjs/commands/CreateKnowledgeBaseCommand.js +51 -0
- package/dist-cjs/commands/CreateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/CreateSessionCommand.js +51 -0
- package/dist-cjs/commands/DeleteAssistantAssociationCommand.js +51 -0
- package/dist-cjs/commands/DeleteAssistantCommand.js +51 -0
- package/dist-cjs/commands/DeleteContentCommand.js +51 -0
- package/dist-cjs/commands/DeleteImportJobCommand.js +51 -0
- package/dist-cjs/commands/DeleteKnowledgeBaseCommand.js +51 -0
- package/dist-cjs/commands/DeleteQuickResponseCommand.js +51 -0
- package/dist-cjs/commands/GetAssistantAssociationCommand.js +51 -0
- package/dist-cjs/commands/GetAssistantCommand.js +51 -0
- package/dist-cjs/commands/GetContentCommand.js +52 -0
- package/dist-cjs/commands/GetContentSummaryCommand.js +51 -0
- package/dist-cjs/commands/GetImportJobCommand.js +52 -0
- package/dist-cjs/commands/GetKnowledgeBaseCommand.js +51 -0
- package/dist-cjs/commands/GetQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/GetRecommendationsCommand.js +52 -0
- package/dist-cjs/commands/GetSessionCommand.js +51 -0
- package/dist-cjs/commands/ListAssistantAssociationsCommand.js +51 -0
- package/dist-cjs/commands/ListAssistantsCommand.js +51 -0
- package/dist-cjs/commands/ListContentsCommand.js +51 -0
- package/dist-cjs/commands/ListImportJobsCommand.js +51 -0
- package/dist-cjs/commands/ListKnowledgeBasesCommand.js +51 -0
- package/dist-cjs/commands/ListQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
- package/dist-cjs/commands/NotifyRecommendationsReceivedCommand.js +51 -0
- package/dist-cjs/commands/QueryAssistantCommand.js +52 -0
- package/dist-cjs/commands/RemoveKnowledgeBaseTemplateUriCommand.js +51 -0
- package/dist-cjs/commands/SearchContentCommand.js +51 -0
- package/dist-cjs/commands/SearchQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/SearchSessionsCommand.js +51 -0
- package/dist-cjs/commands/StartContentUploadCommand.js +52 -0
- package/dist-cjs/commands/StartImportJobCommand.js +52 -0
- package/dist-cjs/commands/TagResourceCommand.js +51 -0
- package/dist-cjs/commands/UntagResourceCommand.js +51 -0
- package/dist-cjs/commands/UpdateContentCommand.js +52 -0
- package/dist-cjs/commands/UpdateKnowledgeBaseTemplateUriCommand.js +51 -0
- package/dist-cjs/commands/UpdateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/index.js +44 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/QConnectServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +559 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAssistantAssociationsPaginator.js +29 -0
- package/dist-cjs/pagination/ListAssistantsPaginator.js +29 -0
- package/dist-cjs/pagination/ListContentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListImportJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListKnowledgeBasesPaginator.js +29 -0
- package/dist-cjs/pagination/ListQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/QueryAssistantPaginator.js +29 -0
- package/dist-cjs/pagination/SearchContentPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/SearchSessionsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +14 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2993 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/QConnect.js +89 -0
- package/dist-es/QConnectClient.js +39 -0
- package/dist-es/commands/CreateAssistantAssociationCommand.js +47 -0
- package/dist-es/commands/CreateAssistantCommand.js +47 -0
- package/dist-es/commands/CreateContentCommand.js +48 -0
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +47 -0
- package/dist-es/commands/CreateQuickResponseCommand.js +48 -0
- package/dist-es/commands/CreateSessionCommand.js +47 -0
- package/dist-es/commands/DeleteAssistantAssociationCommand.js +47 -0
- package/dist-es/commands/DeleteAssistantCommand.js +47 -0
- package/dist-es/commands/DeleteContentCommand.js +47 -0
- package/dist-es/commands/DeleteImportJobCommand.js +47 -0
- package/dist-es/commands/DeleteKnowledgeBaseCommand.js +47 -0
- package/dist-es/commands/DeleteQuickResponseCommand.js +47 -0
- package/dist-es/commands/GetAssistantAssociationCommand.js +47 -0
- package/dist-es/commands/GetAssistantCommand.js +47 -0
- package/dist-es/commands/GetContentCommand.js +48 -0
- package/dist-es/commands/GetContentSummaryCommand.js +47 -0
- package/dist-es/commands/GetImportJobCommand.js +48 -0
- package/dist-es/commands/GetKnowledgeBaseCommand.js +47 -0
- package/dist-es/commands/GetQuickResponseCommand.js +48 -0
- package/dist-es/commands/GetRecommendationsCommand.js +48 -0
- package/dist-es/commands/GetSessionCommand.js +47 -0
- package/dist-es/commands/ListAssistantAssociationsCommand.js +47 -0
- package/dist-es/commands/ListAssistantsCommand.js +47 -0
- package/dist-es/commands/ListContentsCommand.js +47 -0
- package/dist-es/commands/ListImportJobsCommand.js +47 -0
- package/dist-es/commands/ListKnowledgeBasesCommand.js +47 -0
- package/dist-es/commands/ListQuickResponsesCommand.js +48 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
- package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +47 -0
- package/dist-es/commands/QueryAssistantCommand.js +48 -0
- package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +47 -0
- package/dist-es/commands/SearchContentCommand.js +47 -0
- package/dist-es/commands/SearchQuickResponsesCommand.js +48 -0
- package/dist-es/commands/SearchSessionsCommand.js +47 -0
- package/dist-es/commands/StartContentUploadCommand.js +48 -0
- package/dist-es/commands/StartImportJobCommand.js +48 -0
- package/dist-es/commands/TagResourceCommand.js +47 -0
- package/dist-es/commands/UntagResourceCommand.js +47 -0
- package/dist-es/commands/UpdateContentCommand.js +48 -0
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +47 -0
- package/dist-es/commands/UpdateQuickResponseCommand.js +48 -0
- package/dist-es/commands/index.js +41 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/QConnectServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +508 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAssistantAssociationsPaginator.js +25 -0
- package/dist-es/pagination/ListAssistantsPaginator.js +25 -0
- package/dist-es/pagination/ListContentsPaginator.js +25 -0
- package/dist-es/pagination/ListImportJobsPaginator.js +25 -0
- package/dist-es/pagination/ListKnowledgeBasesPaginator.js +25 -0
- package/dist-es/pagination/ListQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/QueryAssistantPaginator.js +25 -0
- package/dist-es/pagination/SearchContentPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/SearchSessionsPaginator.js +25 -0
- package/dist-es/pagination/index.js +11 -0
- package/dist-es/protocols/Aws_restJson1.js +2907 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/QConnect.d.ts +309 -0
- package/dist-types/QConnectClient.d.ts +222 -0
- package/dist-types/commands/CreateAssistantAssociationCommand.d.ts +117 -0
- package/dist-types/commands/CreateAssistantCommand.d.ts +117 -0
- package/dist-types/commands/CreateContentCommand.d.ts +123 -0
- package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +157 -0
- package/dist-types/commands/CreateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +104 -0
- package/dist-types/commands/DeleteAssistantAssociationCommand.d.ts +81 -0
- package/dist-types/commands/DeleteAssistantCommand.d.ts +80 -0
- package/dist-types/commands/DeleteContentCommand.d.ts +81 -0
- package/dist-types/commands/DeleteImportJobCommand.d.ts +87 -0
- package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +94 -0
- package/dist-types/commands/DeleteQuickResponseCommand.d.ts +81 -0
- package/dist-types/commands/GetAssistantAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +101 -0
- package/dist-types/commands/GetContentCommand.d.ts +102 -0
- package/dist-types/commands/GetContentSummaryCommand.d.ts +99 -0
- package/dist-types/commands/GetImportJobCommand.d.ts +106 -0
- package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +107 -0
- package/dist-types/commands/GetQuickResponseCommand.d.ts +118 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +239 -0
- package/dist-types/commands/GetSessionCommand.d.ts +94 -0
- package/dist-types/commands/ListAssistantAssociationsCommand.d.ts +102 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +102 -0
- package/dist-types/commands/ListContentsCommand.d.ts +103 -0
- package/dist-types/commands/ListImportJobsCommand.d.ts +104 -0
- package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +107 -0
- package/dist-types/commands/ListQuickResponsesCommand.d.ts +106 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +78 -0
- package/dist-types/commands/NotifyRecommendationsReceivedCommand.d.ts +96 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +238 -0
- package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +80 -0
- package/dist-types/commands/SearchContentCommand.d.ts +113 -0
- package/dist-types/commands/SearchQuickResponsesCommand.d.ts +163 -0
- package/dist-types/commands/SearchSessionsCommand.d.ts +101 -0
- package/dist-types/commands/StartContentUploadCommand.d.ts +92 -0
- package/dist-types/commands/StartImportJobCommand.d.ts +135 -0
- package/dist-types/commands/TagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +77 -0
- package/dist-types/commands/UpdateContentCommand.d.ts +114 -0
- package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +113 -0
- package/dist-types/commands/UpdateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +41 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +27 -0
- package/dist-types/models/QConnectServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4249 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAssistantAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssistantsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListContentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListKnowledgeBasesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/QueryAssistantPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContentPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchSessionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +11 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +371 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/QConnect.d.ts +702 -0
- package/dist-types/ts3.4/QConnectClient.d.ts +364 -0
- package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetContentCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +41 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -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/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/QConnectServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1241 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAssistantAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssistantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListContentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListKnowledgeBasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/QueryAssistantPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContentPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchSessionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +11 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +497 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +104 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput } from "../commands/ListAssistantAssociationsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAssistantAssociations(config: QConnectPaginationConfiguration, input: ListAssistantAssociationsCommandInput, ...additionalArguments: any): Paginator<ListAssistantAssociationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssistantsCommandInput, ListAssistantsCommandOutput } from "../commands/ListAssistantsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAssistants(config: QConnectPaginationConfiguration, input: ListAssistantsCommandInput, ...additionalArguments: any): Paginator<ListAssistantsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListContentsCommandInput, ListContentsCommandOutput } from "../commands/ListContentsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListContents(config: QConnectPaginationConfiguration, input: ListContentsCommandInput, ...additionalArguments: any): Paginator<ListContentsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListImportJobs(config: QConnectPaginationConfiguration, input: ListImportJobsCommandInput, ...additionalArguments: any): Paginator<ListImportJobsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput } from "../commands/ListKnowledgeBasesCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListKnowledgeBases(config: QConnectPaginationConfiguration, input: ListKnowledgeBasesCommandInput, ...additionalArguments: any): Paginator<ListKnowledgeBasesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListQuickResponsesCommandInput, ListQuickResponsesCommandOutput } from "../commands/ListQuickResponsesCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListQuickResponses(config: QConnectPaginationConfiguration, input: ListQuickResponsesCommandInput, ...additionalArguments: any): Paginator<ListQuickResponsesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { QueryAssistantCommandInput, QueryAssistantCommandOutput } from "../commands/QueryAssistantCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateQueryAssistant(config: QConnectPaginationConfiguration, input: QueryAssistantCommandInput, ...additionalArguments: any): Paginator<QueryAssistantCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchContentCommandInput, SearchContentCommandOutput } from "../commands/SearchContentCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchContent(config: QConnectPaginationConfiguration, input: SearchContentCommandInput, ...additionalArguments: any): Paginator<SearchContentCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchQuickResponsesCommandInput, SearchQuickResponsesCommandOutput } from "../commands/SearchQuickResponsesCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchQuickResponses(config: QConnectPaginationConfiguration, input: SearchQuickResponsesCommandInput, ...additionalArguments: any): Paginator<SearchQuickResponsesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchSessionsCommandInput, SearchSessionsCommandOutput } from "../commands/SearchSessionsCommand";
|
|
3
|
+
import { QConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateSearchSessions(config: QConnectPaginationConfiguration, input: SearchSessionsCommandInput, ...additionalArguments: any): Paginator<SearchSessionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAssistantAssociationsPaginator";
|
|
3
|
+
export * from "./ListAssistantsPaginator";
|
|
4
|
+
export * from "./ListContentsPaginator";
|
|
5
|
+
export * from "./ListImportJobsPaginator";
|
|
6
|
+
export * from "./ListKnowledgeBasesPaginator";
|
|
7
|
+
export * from "./ListQuickResponsesPaginator";
|
|
8
|
+
export * from "./QueryAssistantPaginator";
|
|
9
|
+
export * from "./SearchContentPaginator";
|
|
10
|
+
export * from "./SearchQuickResponsesPaginator";
|
|
11
|
+
export * from "./SearchSessionsPaginator";
|
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateAssistantAssociationCommandInput, CreateAssistantAssociationCommandOutput } from "../commands/CreateAssistantAssociationCommand";
|
|
4
|
+
import { CreateAssistantCommandInput, CreateAssistantCommandOutput } from "../commands/CreateAssistantCommand";
|
|
5
|
+
import { CreateContentCommandInput, CreateContentCommandOutput } from "../commands/CreateContentCommand";
|
|
6
|
+
import { CreateKnowledgeBaseCommandInput, CreateKnowledgeBaseCommandOutput } from "../commands/CreateKnowledgeBaseCommand";
|
|
7
|
+
import { CreateQuickResponseCommandInput, CreateQuickResponseCommandOutput } from "../commands/CreateQuickResponseCommand";
|
|
8
|
+
import { CreateSessionCommandInput, CreateSessionCommandOutput } from "../commands/CreateSessionCommand";
|
|
9
|
+
import { DeleteAssistantAssociationCommandInput, DeleteAssistantAssociationCommandOutput } from "../commands/DeleteAssistantAssociationCommand";
|
|
10
|
+
import { DeleteAssistantCommandInput, DeleteAssistantCommandOutput } from "../commands/DeleteAssistantCommand";
|
|
11
|
+
import { DeleteContentCommandInput, DeleteContentCommandOutput } from "../commands/DeleteContentCommand";
|
|
12
|
+
import { DeleteImportJobCommandInput, DeleteImportJobCommandOutput } from "../commands/DeleteImportJobCommand";
|
|
13
|
+
import { DeleteKnowledgeBaseCommandInput, DeleteKnowledgeBaseCommandOutput } from "../commands/DeleteKnowledgeBaseCommand";
|
|
14
|
+
import { DeleteQuickResponseCommandInput, DeleteQuickResponseCommandOutput } from "../commands/DeleteQuickResponseCommand";
|
|
15
|
+
import { GetAssistantAssociationCommandInput, GetAssistantAssociationCommandOutput } from "../commands/GetAssistantAssociationCommand";
|
|
16
|
+
import { GetAssistantCommandInput, GetAssistantCommandOutput } from "../commands/GetAssistantCommand";
|
|
17
|
+
import { GetContentCommandInput, GetContentCommandOutput } from "../commands/GetContentCommand";
|
|
18
|
+
import { GetContentSummaryCommandInput, GetContentSummaryCommandOutput } from "../commands/GetContentSummaryCommand";
|
|
19
|
+
import { GetImportJobCommandInput, GetImportJobCommandOutput } from "../commands/GetImportJobCommand";
|
|
20
|
+
import { GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput } from "../commands/GetKnowledgeBaseCommand";
|
|
21
|
+
import { GetQuickResponseCommandInput, GetQuickResponseCommandOutput } from "../commands/GetQuickResponseCommand";
|
|
22
|
+
import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "../commands/GetRecommendationsCommand";
|
|
23
|
+
import { GetSessionCommandInput, GetSessionCommandOutput } from "../commands/GetSessionCommand";
|
|
24
|
+
import { ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput } from "../commands/ListAssistantAssociationsCommand";
|
|
25
|
+
import { ListAssistantsCommandInput, ListAssistantsCommandOutput } from "../commands/ListAssistantsCommand";
|
|
26
|
+
import { ListContentsCommandInput, ListContentsCommandOutput } from "../commands/ListContentsCommand";
|
|
27
|
+
import { ListImportJobsCommandInput, ListImportJobsCommandOutput } from "../commands/ListImportJobsCommand";
|
|
28
|
+
import { ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput } from "../commands/ListKnowledgeBasesCommand";
|
|
29
|
+
import { ListQuickResponsesCommandInput, ListQuickResponsesCommandOutput } from "../commands/ListQuickResponsesCommand";
|
|
30
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
31
|
+
import { NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput } from "../commands/NotifyRecommendationsReceivedCommand";
|
|
32
|
+
import { QueryAssistantCommandInput, QueryAssistantCommandOutput } from "../commands/QueryAssistantCommand";
|
|
33
|
+
import { RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput } from "../commands/RemoveKnowledgeBaseTemplateUriCommand";
|
|
34
|
+
import { SearchContentCommandInput, SearchContentCommandOutput } from "../commands/SearchContentCommand";
|
|
35
|
+
import { SearchQuickResponsesCommandInput, SearchQuickResponsesCommandOutput } from "../commands/SearchQuickResponsesCommand";
|
|
36
|
+
import { SearchSessionsCommandInput, SearchSessionsCommandOutput } from "../commands/SearchSessionsCommand";
|
|
37
|
+
import { StartContentUploadCommandInput, StartContentUploadCommandOutput } from "../commands/StartContentUploadCommand";
|
|
38
|
+
import { StartImportJobCommandInput, StartImportJobCommandOutput } from "../commands/StartImportJobCommand";
|
|
39
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
40
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
41
|
+
import { UpdateContentCommandInput, UpdateContentCommandOutput } from "../commands/UpdateContentCommand";
|
|
42
|
+
import { UpdateKnowledgeBaseTemplateUriCommandInput, UpdateKnowledgeBaseTemplateUriCommandOutput } from "../commands/UpdateKnowledgeBaseTemplateUriCommand";
|
|
43
|
+
import { UpdateQuickResponseCommandInput, UpdateQuickResponseCommandOutput } from "../commands/UpdateQuickResponseCommand";
|
|
44
|
+
/**
|
|
45
|
+
* serializeAws_restJson1CreateAssistantCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const se_CreateAssistantCommand: (input: CreateAssistantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
/**
|
|
49
|
+
* serializeAws_restJson1CreateAssistantAssociationCommand
|
|
50
|
+
*/
|
|
51
|
+
export declare const se_CreateAssistantAssociationCommand: (input: CreateAssistantAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_restJson1CreateContentCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_CreateContentCommand: (input: CreateContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
/**
|
|
57
|
+
* serializeAws_restJson1CreateKnowledgeBaseCommand
|
|
58
|
+
*/
|
|
59
|
+
export declare const se_CreateKnowledgeBaseCommand: (input: CreateKnowledgeBaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
/**
|
|
61
|
+
* serializeAws_restJson1CreateQuickResponseCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const se_CreateQuickResponseCommand: (input: CreateQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
/**
|
|
65
|
+
* serializeAws_restJson1CreateSessionCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const se_CreateSessionCommand: (input: CreateSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
/**
|
|
69
|
+
* serializeAws_restJson1DeleteAssistantCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const se_DeleteAssistantCommand: (input: DeleteAssistantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
/**
|
|
73
|
+
* serializeAws_restJson1DeleteAssistantAssociationCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const se_DeleteAssistantAssociationCommand: (input: DeleteAssistantAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
/**
|
|
77
|
+
* serializeAws_restJson1DeleteContentCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const se_DeleteContentCommand: (input: DeleteContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
+
/**
|
|
81
|
+
* serializeAws_restJson1DeleteImportJobCommand
|
|
82
|
+
*/
|
|
83
|
+
export declare const se_DeleteImportJobCommand: (input: DeleteImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
/**
|
|
85
|
+
* serializeAws_restJson1DeleteKnowledgeBaseCommand
|
|
86
|
+
*/
|
|
87
|
+
export declare const se_DeleteKnowledgeBaseCommand: (input: DeleteKnowledgeBaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
/**
|
|
89
|
+
* serializeAws_restJson1DeleteQuickResponseCommand
|
|
90
|
+
*/
|
|
91
|
+
export declare const se_DeleteQuickResponseCommand: (input: DeleteQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
+
/**
|
|
93
|
+
* serializeAws_restJson1GetAssistantCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const se_GetAssistantCommand: (input: GetAssistantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
/**
|
|
97
|
+
* serializeAws_restJson1GetAssistantAssociationCommand
|
|
98
|
+
*/
|
|
99
|
+
export declare const se_GetAssistantAssociationCommand: (input: GetAssistantAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_restJson1GetContentCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_GetContentCommand: (input: GetContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
/**
|
|
105
|
+
* serializeAws_restJson1GetContentSummaryCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const se_GetContentSummaryCommand: (input: GetContentSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1GetImportJobCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_GetImportJobCommand: (input: GetImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
|
+
/**
|
|
113
|
+
* serializeAws_restJson1GetKnowledgeBaseCommand
|
|
114
|
+
*/
|
|
115
|
+
export declare const se_GetKnowledgeBaseCommand: (input: GetKnowledgeBaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1GetQuickResponseCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_GetQuickResponseCommand: (input: GetQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
+
/**
|
|
121
|
+
* serializeAws_restJson1GetRecommendationsCommand
|
|
122
|
+
*/
|
|
123
|
+
export declare const se_GetRecommendationsCommand: (input: GetRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
|
+
/**
|
|
125
|
+
* serializeAws_restJson1GetSessionCommand
|
|
126
|
+
*/
|
|
127
|
+
export declare const se_GetSessionCommand: (input: GetSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
|
+
/**
|
|
129
|
+
* serializeAws_restJson1ListAssistantAssociationsCommand
|
|
130
|
+
*/
|
|
131
|
+
export declare const se_ListAssistantAssociationsCommand: (input: ListAssistantAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
|
+
/**
|
|
133
|
+
* serializeAws_restJson1ListAssistantsCommand
|
|
134
|
+
*/
|
|
135
|
+
export declare const se_ListAssistantsCommand: (input: ListAssistantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
|
+
/**
|
|
137
|
+
* serializeAws_restJson1ListContentsCommand
|
|
138
|
+
*/
|
|
139
|
+
export declare const se_ListContentsCommand: (input: ListContentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
/**
|
|
141
|
+
* serializeAws_restJson1ListImportJobsCommand
|
|
142
|
+
*/
|
|
143
|
+
export declare const se_ListImportJobsCommand: (input: ListImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
|
+
/**
|
|
145
|
+
* serializeAws_restJson1ListKnowledgeBasesCommand
|
|
146
|
+
*/
|
|
147
|
+
export declare const se_ListKnowledgeBasesCommand: (input: ListKnowledgeBasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
|
+
/**
|
|
149
|
+
* serializeAws_restJson1ListQuickResponsesCommand
|
|
150
|
+
*/
|
|
151
|
+
export declare const se_ListQuickResponsesCommand: (input: ListQuickResponsesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
|
+
/**
|
|
153
|
+
* serializeAws_restJson1ListTagsForResourceCommand
|
|
154
|
+
*/
|
|
155
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
156
|
+
/**
|
|
157
|
+
* serializeAws_restJson1NotifyRecommendationsReceivedCommand
|
|
158
|
+
*/
|
|
159
|
+
export declare const se_NotifyRecommendationsReceivedCommand: (input: NotifyRecommendationsReceivedCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
|
+
/**
|
|
161
|
+
* serializeAws_restJson1QueryAssistantCommand
|
|
162
|
+
*/
|
|
163
|
+
export declare const se_QueryAssistantCommand: (input: QueryAssistantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
|
+
/**
|
|
165
|
+
* serializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand
|
|
166
|
+
*/
|
|
167
|
+
export declare const se_RemoveKnowledgeBaseTemplateUriCommand: (input: RemoveKnowledgeBaseTemplateUriCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
168
|
+
/**
|
|
169
|
+
* serializeAws_restJson1SearchContentCommand
|
|
170
|
+
*/
|
|
171
|
+
export declare const se_SearchContentCommand: (input: SearchContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
172
|
+
/**
|
|
173
|
+
* serializeAws_restJson1SearchQuickResponsesCommand
|
|
174
|
+
*/
|
|
175
|
+
export declare const se_SearchQuickResponsesCommand: (input: SearchQuickResponsesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
|
+
/**
|
|
177
|
+
* serializeAws_restJson1SearchSessionsCommand
|
|
178
|
+
*/
|
|
179
|
+
export declare const se_SearchSessionsCommand: (input: SearchSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
|
+
/**
|
|
181
|
+
* serializeAws_restJson1StartContentUploadCommand
|
|
182
|
+
*/
|
|
183
|
+
export declare const se_StartContentUploadCommand: (input: StartContentUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
184
|
+
/**
|
|
185
|
+
* serializeAws_restJson1StartImportJobCommand
|
|
186
|
+
*/
|
|
187
|
+
export declare const se_StartImportJobCommand: (input: StartImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
188
|
+
/**
|
|
189
|
+
* serializeAws_restJson1TagResourceCommand
|
|
190
|
+
*/
|
|
191
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
192
|
+
/**
|
|
193
|
+
* serializeAws_restJson1UntagResourceCommand
|
|
194
|
+
*/
|
|
195
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
196
|
+
/**
|
|
197
|
+
* serializeAws_restJson1UpdateContentCommand
|
|
198
|
+
*/
|
|
199
|
+
export declare const se_UpdateContentCommand: (input: UpdateContentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
200
|
+
/**
|
|
201
|
+
* serializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand
|
|
202
|
+
*/
|
|
203
|
+
export declare const se_UpdateKnowledgeBaseTemplateUriCommand: (input: UpdateKnowledgeBaseTemplateUriCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
204
|
+
/**
|
|
205
|
+
* serializeAws_restJson1UpdateQuickResponseCommand
|
|
206
|
+
*/
|
|
207
|
+
export declare const se_UpdateQuickResponseCommand: (input: UpdateQuickResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
208
|
+
/**
|
|
209
|
+
* deserializeAws_restJson1CreateAssistantCommand
|
|
210
|
+
*/
|
|
211
|
+
export declare const de_CreateAssistantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssistantCommandOutput>;
|
|
212
|
+
/**
|
|
213
|
+
* deserializeAws_restJson1CreateAssistantAssociationCommand
|
|
214
|
+
*/
|
|
215
|
+
export declare const de_CreateAssistantAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAssistantAssociationCommandOutput>;
|
|
216
|
+
/**
|
|
217
|
+
* deserializeAws_restJson1CreateContentCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const de_CreateContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateContentCommandOutput>;
|
|
220
|
+
/**
|
|
221
|
+
* deserializeAws_restJson1CreateKnowledgeBaseCommand
|
|
222
|
+
*/
|
|
223
|
+
export declare const de_CreateKnowledgeBaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKnowledgeBaseCommandOutput>;
|
|
224
|
+
/**
|
|
225
|
+
* deserializeAws_restJson1CreateQuickResponseCommand
|
|
226
|
+
*/
|
|
227
|
+
export declare const de_CreateQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuickResponseCommandOutput>;
|
|
228
|
+
/**
|
|
229
|
+
* deserializeAws_restJson1CreateSessionCommand
|
|
230
|
+
*/
|
|
231
|
+
export declare const de_CreateSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSessionCommandOutput>;
|
|
232
|
+
/**
|
|
233
|
+
* deserializeAws_restJson1DeleteAssistantCommand
|
|
234
|
+
*/
|
|
235
|
+
export declare const de_DeleteAssistantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssistantCommandOutput>;
|
|
236
|
+
/**
|
|
237
|
+
* deserializeAws_restJson1DeleteAssistantAssociationCommand
|
|
238
|
+
*/
|
|
239
|
+
export declare const de_DeleteAssistantAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssistantAssociationCommandOutput>;
|
|
240
|
+
/**
|
|
241
|
+
* deserializeAws_restJson1DeleteContentCommand
|
|
242
|
+
*/
|
|
243
|
+
export declare const de_DeleteContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContentCommandOutput>;
|
|
244
|
+
/**
|
|
245
|
+
* deserializeAws_restJson1DeleteImportJobCommand
|
|
246
|
+
*/
|
|
247
|
+
export declare const de_DeleteImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteImportJobCommandOutput>;
|
|
248
|
+
/**
|
|
249
|
+
* deserializeAws_restJson1DeleteKnowledgeBaseCommand
|
|
250
|
+
*/
|
|
251
|
+
export declare const de_DeleteKnowledgeBaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKnowledgeBaseCommandOutput>;
|
|
252
|
+
/**
|
|
253
|
+
* deserializeAws_restJson1DeleteQuickResponseCommand
|
|
254
|
+
*/
|
|
255
|
+
export declare const de_DeleteQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQuickResponseCommandOutput>;
|
|
256
|
+
/**
|
|
257
|
+
* deserializeAws_restJson1GetAssistantCommand
|
|
258
|
+
*/
|
|
259
|
+
export declare const de_GetAssistantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssistantCommandOutput>;
|
|
260
|
+
/**
|
|
261
|
+
* deserializeAws_restJson1GetAssistantAssociationCommand
|
|
262
|
+
*/
|
|
263
|
+
export declare const de_GetAssistantAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssistantAssociationCommandOutput>;
|
|
264
|
+
/**
|
|
265
|
+
* deserializeAws_restJson1GetContentCommand
|
|
266
|
+
*/
|
|
267
|
+
export declare const de_GetContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContentCommandOutput>;
|
|
268
|
+
/**
|
|
269
|
+
* deserializeAws_restJson1GetContentSummaryCommand
|
|
270
|
+
*/
|
|
271
|
+
export declare const de_GetContentSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContentSummaryCommandOutput>;
|
|
272
|
+
/**
|
|
273
|
+
* deserializeAws_restJson1GetImportJobCommand
|
|
274
|
+
*/
|
|
275
|
+
export declare const de_GetImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetImportJobCommandOutput>;
|
|
276
|
+
/**
|
|
277
|
+
* deserializeAws_restJson1GetKnowledgeBaseCommand
|
|
278
|
+
*/
|
|
279
|
+
export declare const de_GetKnowledgeBaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKnowledgeBaseCommandOutput>;
|
|
280
|
+
/**
|
|
281
|
+
* deserializeAws_restJson1GetQuickResponseCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const de_GetQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQuickResponseCommandOutput>;
|
|
284
|
+
/**
|
|
285
|
+
* deserializeAws_restJson1GetRecommendationsCommand
|
|
286
|
+
*/
|
|
287
|
+
export declare const de_GetRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecommendationsCommandOutput>;
|
|
288
|
+
/**
|
|
289
|
+
* deserializeAws_restJson1GetSessionCommand
|
|
290
|
+
*/
|
|
291
|
+
export declare const de_GetSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSessionCommandOutput>;
|
|
292
|
+
/**
|
|
293
|
+
* deserializeAws_restJson1ListAssistantAssociationsCommand
|
|
294
|
+
*/
|
|
295
|
+
export declare const de_ListAssistantAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssistantAssociationsCommandOutput>;
|
|
296
|
+
/**
|
|
297
|
+
* deserializeAws_restJson1ListAssistantsCommand
|
|
298
|
+
*/
|
|
299
|
+
export declare const de_ListAssistantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssistantsCommandOutput>;
|
|
300
|
+
/**
|
|
301
|
+
* deserializeAws_restJson1ListContentsCommand
|
|
302
|
+
*/
|
|
303
|
+
export declare const de_ListContentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContentsCommandOutput>;
|
|
304
|
+
/**
|
|
305
|
+
* deserializeAws_restJson1ListImportJobsCommand
|
|
306
|
+
*/
|
|
307
|
+
export declare const de_ListImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportJobsCommandOutput>;
|
|
308
|
+
/**
|
|
309
|
+
* deserializeAws_restJson1ListKnowledgeBasesCommand
|
|
310
|
+
*/
|
|
311
|
+
export declare const de_ListKnowledgeBasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKnowledgeBasesCommandOutput>;
|
|
312
|
+
/**
|
|
313
|
+
* deserializeAws_restJson1ListQuickResponsesCommand
|
|
314
|
+
*/
|
|
315
|
+
export declare const de_ListQuickResponsesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQuickResponsesCommandOutput>;
|
|
316
|
+
/**
|
|
317
|
+
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
318
|
+
*/
|
|
319
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* deserializeAws_restJson1NotifyRecommendationsReceivedCommand
|
|
322
|
+
*/
|
|
323
|
+
export declare const de_NotifyRecommendationsReceivedCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<NotifyRecommendationsReceivedCommandOutput>;
|
|
324
|
+
/**
|
|
325
|
+
* deserializeAws_restJson1QueryAssistantCommand
|
|
326
|
+
*/
|
|
327
|
+
export declare const de_QueryAssistantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryAssistantCommandOutput>;
|
|
328
|
+
/**
|
|
329
|
+
* deserializeAws_restJson1RemoveKnowledgeBaseTemplateUriCommand
|
|
330
|
+
*/
|
|
331
|
+
export declare const de_RemoveKnowledgeBaseTemplateUriCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveKnowledgeBaseTemplateUriCommandOutput>;
|
|
332
|
+
/**
|
|
333
|
+
* deserializeAws_restJson1SearchContentCommand
|
|
334
|
+
*/
|
|
335
|
+
export declare const de_SearchContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchContentCommandOutput>;
|
|
336
|
+
/**
|
|
337
|
+
* deserializeAws_restJson1SearchQuickResponsesCommand
|
|
338
|
+
*/
|
|
339
|
+
export declare const de_SearchQuickResponsesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchQuickResponsesCommandOutput>;
|
|
340
|
+
/**
|
|
341
|
+
* deserializeAws_restJson1SearchSessionsCommand
|
|
342
|
+
*/
|
|
343
|
+
export declare const de_SearchSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchSessionsCommandOutput>;
|
|
344
|
+
/**
|
|
345
|
+
* deserializeAws_restJson1StartContentUploadCommand
|
|
346
|
+
*/
|
|
347
|
+
export declare const de_StartContentUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContentUploadCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* deserializeAws_restJson1StartImportJobCommand
|
|
350
|
+
*/
|
|
351
|
+
export declare const de_StartImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartImportJobCommandOutput>;
|
|
352
|
+
/**
|
|
353
|
+
* deserializeAws_restJson1TagResourceCommand
|
|
354
|
+
*/
|
|
355
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
356
|
+
/**
|
|
357
|
+
* deserializeAws_restJson1UntagResourceCommand
|
|
358
|
+
*/
|
|
359
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
360
|
+
/**
|
|
361
|
+
* deserializeAws_restJson1UpdateContentCommand
|
|
362
|
+
*/
|
|
363
|
+
export declare const de_UpdateContentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContentCommandOutput>;
|
|
364
|
+
/**
|
|
365
|
+
* deserializeAws_restJson1UpdateKnowledgeBaseTemplateUriCommand
|
|
366
|
+
*/
|
|
367
|
+
export declare const de_UpdateKnowledgeBaseTemplateUriCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKnowledgeBaseTemplateUriCommandOutput>;
|
|
368
|
+
/**
|
|
369
|
+
* deserializeAws_restJson1UpdateQuickResponseCommand
|
|
370
|
+
*/
|
|
371
|
+
export declare const de_UpdateQuickResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQuickResponseCommandOutput>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { QConnectClientConfig } from "./QConnectClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: QConnectClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
15
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
+
httpHandlerConfigs(): {};
|
|
17
|
+
}) | RequestHandler;
|
|
18
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
20
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
27
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
29
|
+
disableHostPrefix: boolean;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
34
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
36
|
+
}) => import("@smithy/types").EndpointV2;
|
|
37
|
+
tls?: boolean | undefined;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { QConnectClientConfig } from "./QConnectClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: QConnectClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
15
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
+
httpHandlerConfigs(): {};
|
|
17
|
+
}) | RequestHandler;
|
|
18
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
20
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
apiVersion: string;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
27
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
29
|
+
disableHostPrefix: boolean;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
34
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
36
|
+
}) => import("@smithy/types").EndpointV2;
|
|
37
|
+
tls?: boolean | undefined;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { QConnectClientConfig } from "./QConnectClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: QConnectClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
|
|
9
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
10
|
+
httpHandlerConfigs(): {};
|
|
11
|
+
}) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
12
|
+
apiVersion: string;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
27
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
28
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
|
+
logger: import("@smithy/types").Logger;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
|
+
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
33
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
34
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
35
|
+
}) => import("@smithy/types").EndpointV2;
|
|
36
|
+
tls?: boolean | undefined;
|
|
37
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
|
|
39
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
|
+
signingEscapePath?: boolean | undefined;
|
|
41
|
+
systemClockOffset?: number | undefined;
|
|
42
|
+
signingRegion?: string | undefined;
|
|
43
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
45
|
+
};
|