@aws-sdk/client-cloudsearch-domain 3.1077.0 → 3.1078.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1077.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -528,40 +529,17 @@ class CloudSearchDomainClient extends Client {
528
529
  }
529
530
  }
530
531
 
531
- class SearchCommand extends Command
532
- .classBuilder()
533
- .ep(commonParams)
534
- .m(function (Command, cs, config, o) {
535
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
536
- })
537
- .s("AmazonCloudSearch2013", "Search", {})
538
- .n("CloudSearchDomainClient", "SearchCommand")
539
- .sc(Search$)
540
- .build() {
532
+ const command = makeBuilder(commonParams, "AmazonCloudSearch2013", "CloudSearchDomainClient", getEndpointPlugin);
533
+ const _ep0 = {};
534
+ const _mw0 = (Command, cs, config, o) => [];
535
+
536
+ class SearchCommand extends command(_ep0, _mw0, "Search", Search$) {
541
537
  }
542
538
 
543
- class SuggestCommand extends Command
544
- .classBuilder()
545
- .ep(commonParams)
546
- .m(function (Command, cs, config, o) {
547
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
548
- })
549
- .s("AmazonCloudSearch2013", "Suggest", {})
550
- .n("CloudSearchDomainClient", "SuggestCommand")
551
- .sc(Suggest$)
552
- .build() {
539
+ class SuggestCommand extends command(_ep0, _mw0, "Suggest", Suggest$) {
553
540
  }
554
541
 
555
- class UploadDocumentsCommand extends Command
556
- .classBuilder()
557
- .ep(commonParams)
558
- .m(function (Command, cs, config, o) {
559
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
560
- })
561
- .s("AmazonCloudSearch2013", "UploadDocuments", {})
562
- .n("CloudSearchDomainClient", "UploadDocumentsCommand")
563
- .sc(UploadDocuments$)
564
- .build() {
542
+ class UploadDocumentsCommand extends command(_ep0, _mw0, "UploadDocuments", UploadDocuments$) {
565
543
  }
566
544
 
567
545
  const commands = {
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "AmazonCloudSearch2013", "CloudSearchDomainClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { Search$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SearchCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonCloudSearch2013", "Search", {})
13
- .n("CloudSearchDomainClient", "SearchCommand")
14
- .sc(Search$)
15
- .build() {
3
+ export class SearchCommand extends command(_ep0, _mw0, "Search", Search$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { Suggest$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SuggestCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonCloudSearch2013", "Suggest", {})
13
- .n("CloudSearchDomainClient", "SuggestCommand")
14
- .sc(Suggest$)
15
- .build() {
3
+ export class SuggestCommand extends command(_ep0, _mw0, "Suggest", Suggest$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UploadDocuments$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UploadDocumentsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonCloudSearch2013", "UploadDocuments", {})
13
- .n("CloudSearchDomainClient", "UploadDocumentsCommand")
14
- .sc(UploadDocuments$)
15
- .build() {
3
+ export class UploadDocumentsCommand extends command(_ep0, _mw0, "UploadDocuments", UploadDocuments$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./CloudSearchDomainClient";
2
2
  export * from "./CloudSearchDomain";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./CloudSearchDomainClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchDomainClient";
4
2
  import type { SearchRequest, SearchResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SearchCommandInput extends SearchRequest {
22
19
  export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SearchCommand_base: {
25
- new (input: SearchCommandInput): import("@smithy/core/client").CommandImpl<SearchCommandInput, SearchCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SearchCommandInput): import("@smithy/core/client").CommandImpl<SearchCommandInput, SearchCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SearchCommandInput): import("@smithy/core/client").CommandImpl<SearchCommandInput, SearchCommandOutput, import("..").CloudSearchDomainClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SearchCommandInput): import("@smithy/core/client").CommandImpl<SearchCommandInput, SearchCommandOutput, import("..").CloudSearchDomainClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves a list of documents that match the specified search criteria. How you specify the search criteria depends on which query parser you use. Amazon CloudSearch supports four query parsers:</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchDomainClient";
4
2
  import type { SuggestRequest, SuggestResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SuggestCommandInput extends SuggestRequest {
22
19
  export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SuggestCommand_base: {
25
- new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, import("..").CloudSearchDomainClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, import("..").CloudSearchDomainClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves autocomplete suggestions for a partial query string. You can use suggestions enable you to display likely matches before users finish typing. In Amazon CloudSearch, suggestions are based on the contents of a particular text field. When you request suggestions, Amazon CloudSearch finds all of the documents whose values in the suggester field start with the specified query string. The beginning of the field must match the query string to be considered a match. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types";
3
- import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchDomainClient";
4
2
  import type { UploadDocumentsRequest, UploadDocumentsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -23,11 +20,9 @@ export interface UploadDocumentsCommandInput extends Omit<UploadDocumentsRequest
23
20
  export interface UploadDocumentsCommandOutput extends UploadDocumentsResponse, __MetadataBearer {
24
21
  }
25
22
  declare const UploadDocumentsCommand_base: {
26
- new (input: UploadDocumentsCommandInput): import("@smithy/core/client").CommandImpl<UploadDocumentsCommandInput, UploadDocumentsCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (input: UploadDocumentsCommandInput): import("@smithy/core/client").CommandImpl<UploadDocumentsCommandInput, UploadDocumentsCommandOutput, CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
23
+ new (input: UploadDocumentsCommandInput): import("@smithy/core/client").CommandImpl<UploadDocumentsCommandInput, UploadDocumentsCommandOutput, import("..").CloudSearchDomainClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ new (input: UploadDocumentsCommandInput): import("@smithy/core/client").CommandImpl<UploadDocumentsCommandInput, UploadDocumentsCommandOutput, import("..").CloudSearchDomainClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
26
  };
32
27
  /**
33
28
  * <p>Posts a batch of documents to a search domain for indexing. A document batch is a collection of add and delete operations that represent the documents you want to add, update, or delete from your domain. Batches can be described in either JSON or XML. Each item that you want Amazon CloudSearch to return as a search result (such as a product) is represented as a document. Every document has a unique ID and one or more fields that contain the data that you want to search and return in results. Individual documents cannot contain more than 1 MB of data. The entire batch cannot exceed 5 MB. To get the best possible upload performance, group add and delete operations in batches that are close the 5 MB limit. Submitting a large volume of single-document batches can overload a domain's document service. </p>
@@ -12,6 +12,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
12
12
  export type { RuntimeExtension } from "./runtimeExtensions";
13
13
  export type { CloudSearchDomainExtensionConfiguration } from "./extensionConfiguration";
14
14
  export * from "./commands";
15
+ export { Command as $Command } from "@smithy/core/client";
15
16
  export * from "./schemas/schemas_0";
16
17
  export * from "./models/enums";
17
18
  export * from "./models/errors";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ CloudSearchDomainClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./CloudSearchDomainClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ CloudSearchDomainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ CloudSearchDomainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,33 +1,24 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CloudSearchDomainClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CloudSearchDomainClient";
8
2
  import { SearchRequest, SearchResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SearchCommandInput extends SearchRequest {}
12
5
  export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {}
13
6
  declare const SearchCommand_base: {
14
7
  new (input: SearchCommandInput): import("@smithy/core/client").CommandImpl<
15
8
  SearchCommandInput,
16
9
  SearchCommandOutput,
17
- CloudSearchDomainClientResolvedConfig,
18
- ServiceInputTypes,
19
- ServiceOutputTypes
10
+ import("..").CloudSearchDomainClientResolvedConfig,
11
+ import("..").ServiceInputTypes,
12
+ import("..").ServiceOutputTypes
20
13
  >;
21
14
  new (input: SearchCommandInput): import("@smithy/core/client").CommandImpl<
22
15
  SearchCommandInput,
23
16
  SearchCommandOutput,
24
- CloudSearchDomainClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").CloudSearchDomainClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
21
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
22
  };
32
23
  export declare class SearchCommand extends SearchCommand_base {
33
24
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CloudSearchDomainClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CloudSearchDomainClient";
8
2
  import { SuggestRequest, SuggestResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SuggestCommandInput extends SuggestRequest {}
12
5
  export interface SuggestCommandOutput
13
6
  extends SuggestResponse,
@@ -16,20 +9,18 @@ declare const SuggestCommand_base: {
16
9
  new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  SuggestCommandInput,
18
11
  SuggestCommandOutput,
19
- CloudSearchDomainClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").CloudSearchDomainClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  SuggestCommandInput,
25
18
  SuggestCommandOutput,
26
- CloudSearchDomainClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").CloudSearchDomainClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class SuggestCommand extends SuggestCommand_base {
35
26
  protected static __types: {
@@ -1,19 +1,12 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import {
3
2
  MetadataBearer as __MetadataBearer,
4
3
  StreamingBlobPayloadInputTypes,
5
4
  } from "@smithy/types";
6
- import {
7
- CloudSearchDomainClientResolvedConfig,
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- } from "../CloudSearchDomainClient";
11
5
  import {
12
6
  UploadDocumentsRequest,
13
7
  UploadDocumentsResponse,
14
8
  } from "../models/models_0";
15
9
  export { __MetadataBearer };
16
- export { $Command };
17
10
  export interface UploadDocumentsCommandInput
18
11
  extends Pick<
19
12
  UploadDocumentsRequest,
@@ -30,22 +23,20 @@ declare const UploadDocumentsCommand_base: {
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  UploadDocumentsCommandInput,
32
25
  UploadDocumentsCommandOutput,
33
- CloudSearchDomainClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").CloudSearchDomainClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
30
  new (
38
31
  input: UploadDocumentsCommandInput
39
32
  ): import("@smithy/core/client").CommandImpl<
40
33
  UploadDocumentsCommandInput,
41
34
  UploadDocumentsCommandOutput,
42
- CloudSearchDomainClientResolvedConfig,
43
- ServiceInputTypes,
44
- ServiceOutputTypes
35
+ import("..").CloudSearchDomainClientResolvedConfig,
36
+ import("..").ServiceInputTypes,
37
+ import("..").ServiceOutputTypes
45
38
  >;
46
- getEndpointParameterInstructions(): {
47
- [x: string]: unknown;
48
- };
39
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
49
40
  };
50
41
  export declare class UploadDocumentsCommand extends UploadDocumentsCommand_base {
51
42
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { CloudSearchDomainExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudsearch-domain",
3
3
  "description": "AWS SDK for JavaScript Cloudsearch Domain Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1078.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {