@aws-sdk/client-backupsearch 3.1076.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.
Files changed (56) hide show
  1. package/dist-cjs/index.js +23 -125
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/GetSearchJobCommand.js +2 -14
  4. package/dist-es/commands/GetSearchResultExportJobCommand.js +2 -14
  5. package/dist-es/commands/ListSearchJobBackupsCommand.js +2 -14
  6. package/dist-es/commands/ListSearchJobResultsCommand.js +2 -14
  7. package/dist-es/commands/ListSearchJobsCommand.js +2 -14
  8. package/dist-es/commands/ListSearchResultExportJobsCommand.js +2 -14
  9. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  10. package/dist-es/commands/StartSearchJobCommand.js +2 -14
  11. package/dist-es/commands/StartSearchResultExportJobCommand.js +2 -14
  12. package/dist-es/commands/StopSearchJobCommand.js +2 -14
  13. package/dist-es/commands/TagResourceCommand.js +2 -14
  14. package/dist-es/commands/UntagResourceCommand.js +2 -14
  15. package/dist-es/index.js +1 -0
  16. package/dist-es/runtimeConfig.browser.js +0 -2
  17. package/dist-es/runtimeConfig.js +1 -2
  18. package/dist-es/runtimeConfig.native.js +0 -2
  19. package/dist-es/runtimeConfig.shared.js +2 -0
  20. package/dist-types/commandBuilder.d.ts +18 -0
  21. package/dist-types/commands/GetSearchJobCommand.d.ts +3 -8
  22. package/dist-types/commands/GetSearchResultExportJobCommand.d.ts +3 -8
  23. package/dist-types/commands/ListSearchJobBackupsCommand.d.ts +3 -8
  24. package/dist-types/commands/ListSearchJobResultsCommand.d.ts +3 -8
  25. package/dist-types/commands/ListSearchJobsCommand.d.ts +3 -8
  26. package/dist-types/commands/ListSearchResultExportJobsCommand.d.ts +3 -8
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  28. package/dist-types/commands/StartSearchJobCommand.d.ts +3 -8
  29. package/dist-types/commands/StartSearchResultExportJobCommand.d.ts +3 -8
  30. package/dist-types/commands/StopSearchJobCommand.d.ts +3 -8
  31. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  32. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  33. package/dist-types/index.d.ts +1 -0
  34. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  35. package/dist-types/runtimeConfig.d.ts +1 -1
  36. package/dist-types/runtimeConfig.native.d.ts +1 -1
  37. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  38. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  39. package/dist-types/ts3.4/commands/GetSearchJobCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/GetSearchResultExportJobCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/ListSearchJobBackupsCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/ListSearchJobResultsCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/ListSearchJobsCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/ListSearchResultExportJobsCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/StartSearchJobCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/StartSearchResultExportJobCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/StopSearchJobCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/index.d.ts +1 -0
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  56. package/package.json +8 -10
@@ -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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { ListSearchJobResultsInput, ListSearchJobResultsOutput } 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 ListSearchJobResultsCommandInput extends ListSearchJobResultsIn
22
19
  export interface ListSearchJobResultsCommandOutput extends ListSearchJobResultsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListSearchJobResultsCommand_base: {
25
- new (input: ListSearchJobResultsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchJobResultsCommandInput, ListSearchJobResultsCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListSearchJobResultsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchJobResultsCommandInput, ListSearchJobResultsCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSearchJobResultsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchJobResultsCommandInput, ListSearchJobResultsCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListSearchJobResultsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchJobResultsCommandInput, ListSearchJobResultsCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation returns a list of a specified search job.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { ListSearchJobsInput, ListSearchJobsOutput } 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 ListSearchJobsCommandInput extends ListSearchJobsInput {
22
19
  export interface ListSearchJobsCommandOutput extends ListSearchJobsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListSearchJobsCommand_base: {
25
- new (input: ListSearchJobsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchJobsCommandInput, ListSearchJobsCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSearchJobsCommandInput]): import("@smithy/core/client").CommandImpl<ListSearchJobsCommandInput, ListSearchJobsCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSearchJobsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchJobsCommandInput, ListSearchJobsCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListSearchJobsCommandInput]): import("@smithy/core/client").CommandImpl<ListSearchJobsCommandInput, ListSearchJobsCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation returns a list of search jobs belonging to an account.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { ListSearchResultExportJobsInput, ListSearchResultExportJobsOutput } 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 ListSearchResultExportJobsCommandInput extends ListSearchResult
22
19
  export interface ListSearchResultExportJobsCommandOutput extends ListSearchResultExportJobsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListSearchResultExportJobsCommand_base: {
25
- new (input: ListSearchResultExportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchResultExportJobsCommandInput, ListSearchResultExportJobsCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSearchResultExportJobsCommandInput]): import("@smithy/core/client").CommandImpl<ListSearchResultExportJobsCommandInput, ListSearchResultExportJobsCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSearchResultExportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListSearchResultExportJobsCommandInput, ListSearchResultExportJobsCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListSearchResultExportJobsCommandInput]): import("@smithy/core/client").CommandImpl<ListSearchResultExportJobsCommandInput, ListSearchResultExportJobsCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation exports search results of a search job to a specified destination S3 bucket.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResponse } 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 ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation returns the tags for a resource type.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { StartSearchJobInput, StartSearchJobOutput } 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 StartSearchJobCommandInput extends StartSearchJobInput {
22
19
  export interface StartSearchJobCommandOutput extends StartSearchJobOutput, __MetadataBearer {
23
20
  }
24
21
  declare const StartSearchJobCommand_base: {
25
- new (input: StartSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchJobCommandInput, StartSearchJobCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchJobCommandInput, StartSearchJobCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StartSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchJobCommandInput, StartSearchJobCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StartSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchJobCommandInput, StartSearchJobCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation creates a search job which returns recovery points filtered by SearchScope and items filtered by ItemFilters.</p> <p>You can optionally include ClientToken, EncryptionKeyArn, Name, and/or Tags.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { StartSearchResultExportJobInput, StartSearchResultExportJobOutput } 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 StartSearchResultExportJobCommandInput extends StartSearchResul
22
19
  export interface StartSearchResultExportJobCommandOutput extends StartSearchResultExportJobOutput, __MetadataBearer {
23
20
  }
24
21
  declare const StartSearchResultExportJobCommand_base: {
25
- new (input: StartSearchResultExportJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchResultExportJobCommandInput, StartSearchResultExportJobCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartSearchResultExportJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchResultExportJobCommandInput, StartSearchResultExportJobCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StartSearchResultExportJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchResultExportJobCommandInput, StartSearchResultExportJobCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StartSearchResultExportJobCommandInput): import("@smithy/core/client").CommandImpl<StartSearchResultExportJobCommandInput, StartSearchResultExportJobCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operations starts a job to export the results of search job to a designated S3 bucket.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { StopSearchJobInput, StopSearchJobOutput } 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 StopSearchJobCommandInput extends StopSearchJobInput {
22
19
  export interface StopSearchJobCommandOutput extends StopSearchJobOutput, __MetadataBearer {
23
20
  }
24
21
  declare const StopSearchJobCommand_base: {
25
- new (input: StopSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StopSearchJobCommandInput, StopSearchJobCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StopSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StopSearchJobCommandInput, StopSearchJobCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StopSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StopSearchJobCommandInput, StopSearchJobCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StopSearchJobCommandInput): import("@smithy/core/client").CommandImpl<StopSearchJobCommandInput, StopSearchJobCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operations ends a search job.</p> <p>Only a search job with a status of <code>RUNNING</code> can be stopped.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { TagResourceRequest, TagResourceResponse } 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 TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation puts tags on the resource you indicate.</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 { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient";
4
2
  import type { UntagResourceRequest, UntagResourceResponse } 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 UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").BackupSearchClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>This operation removes tags from the specified resource.</p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { BackupSearchExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { BackupSearchClientConfig } from "./BackupSearchClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ BackupSearchClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./BackupSearchClient";
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
+ BackupSearchClientResolvedConfig,
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
+ BackupSearchClientResolvedConfig,
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,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BackupSearchClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BackupSearchClient";
8
2
  import { GetSearchJobInput, GetSearchJobOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetSearchJobCommandInput extends GetSearchJobInput {}
12
5
  export interface GetSearchJobCommandOutput
13
6
  extends GetSearchJobOutput,
@@ -18,22 +11,20 @@ declare const GetSearchJobCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetSearchJobCommandInput,
20
13
  GetSearchJobCommandOutput,
21
- BackupSearchClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").BackupSearchClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: GetSearchJobCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetSearchJobCommandInput,
29
22
  GetSearchJobCommandOutput,
30
- BackupSearchClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").BackupSearchClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class GetSearchJobCommand extends GetSearchJobCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BackupSearchClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BackupSearchClient";
8
2
  import {
9
3
  GetSearchResultExportJobInput,
10
4
  GetSearchResultExportJobOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetSearchResultExportJobCommandInput
15
8
  extends GetSearchResultExportJobInput {}
16
9
  export interface GetSearchResultExportJobCommandOutput
@@ -22,22 +15,20 @@ declare const GetSearchResultExportJobCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetSearchResultExportJobCommandInput,
24
17
  GetSearchResultExportJobCommandOutput,
25
- BackupSearchClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BackupSearchClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetSearchResultExportJobCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetSearchResultExportJobCommandInput,
33
26
  GetSearchResultExportJobCommandOutput,
34
- BackupSearchClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BackupSearchClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetSearchResultExportJobCommand extends GetSearchResultExportJobCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BackupSearchClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BackupSearchClient";
8
2
  import {
9
3
  ListSearchJobBackupsInput,
10
4
  ListSearchJobBackupsOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListSearchJobBackupsCommandInput
15
8
  extends ListSearchJobBackupsInput {}
16
9
  export interface ListSearchJobBackupsCommandOutput
@@ -22,22 +15,20 @@ declare const ListSearchJobBackupsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListSearchJobBackupsCommandInput,
24
17
  ListSearchJobBackupsCommandOutput,
25
- BackupSearchClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BackupSearchClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListSearchJobBackupsCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListSearchJobBackupsCommandInput,
33
26
  ListSearchJobBackupsCommandOutput,
34
- BackupSearchClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BackupSearchClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListSearchJobBackupsCommand extends ListSearchJobBackupsCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- BackupSearchClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BackupSearchClient";
8
2
  import {
9
3
  ListSearchJobResultsInput,
10
4
  ListSearchJobResultsOutput,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListSearchJobResultsCommandInput
15
8
  extends ListSearchJobResultsInput {}
16
9
  export interface ListSearchJobResultsCommandOutput
@@ -22,22 +15,20 @@ declare const ListSearchJobResultsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListSearchJobResultsCommandInput,
24
17
  ListSearchJobResultsCommandOutput,
25
- BackupSearchClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").BackupSearchClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListSearchJobResultsCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListSearchJobResultsCommandInput,
33
26
  ListSearchJobResultsCommandOutput,
34
- BackupSearchClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").BackupSearchClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListSearchJobResultsCommand extends ListSearchJobResultsCommand_base {
43
34
  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
- BackupSearchClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../BackupSearchClient";
8
2
  import { ListSearchJobsInput, ListSearchJobsOutput } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListSearchJobsCommandInput extends ListSearchJobsInput {}
12
5
  export interface ListSearchJobsCommandOutput
13
6
  extends ListSearchJobsOutput,
@@ -18,22 +11,20 @@ declare const ListSearchJobsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListSearchJobsCommandInput,
20
13
  ListSearchJobsCommandOutput,
21
- BackupSearchClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").BackupSearchClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListSearchJobsCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListSearchJobsCommandInput,
29
22
  ListSearchJobsCommandOutput,
30
- BackupSearchClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").BackupSearchClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListSearchJobsCommand extends ListSearchJobsCommand_base {
39
30
  protected static __types: {