@aws-sdk/client-backupsearch 3.714.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 (151) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +317 -0
  3. package/dist-cjs/BackupSearch.js +35 -0
  4. package/dist-cjs/BackupSearchClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/GetSearchJobCommand.js +26 -0
  8. package/dist-cjs/commands/GetSearchResultExportJobCommand.js +26 -0
  9. package/dist-cjs/commands/ListSearchJobBackupsCommand.js +26 -0
  10. package/dist-cjs/commands/ListSearchJobResultsCommand.js +27 -0
  11. package/dist-cjs/commands/ListSearchJobsCommand.js +26 -0
  12. package/dist-cjs/commands/ListSearchResultExportJobsCommand.js +26 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  14. package/dist-cjs/commands/StartSearchJobCommand.js +26 -0
  15. package/dist-cjs/commands/StartSearchResultExportJobCommand.js +26 -0
  16. package/dist-cjs/commands/StopSearchJobCommand.js +26 -0
  17. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  18. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  21. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  22. package/dist-cjs/endpoint/ruleset.js +7 -0
  23. package/dist-cjs/extensionConfiguration.js +2 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/BackupSearchServiceException.js +12 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +192 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListSearchJobBackupsPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListSearchJobResultsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListSearchJobsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListSearchResultExportJobsPaginator.js +7 -0
  33. package/dist-cjs/pagination/index.js +8 -0
  34. package/dist-cjs/protocols/Aws_restJson1.js +780 -0
  35. package/dist-cjs/runtimeConfig.browser.js +39 -0
  36. package/dist-cjs/runtimeConfig.js +52 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +34 -0
  39. package/dist-cjs/runtimeExtensions.js +25 -0
  40. package/dist-es/BackupSearch.js +31 -0
  41. package/dist-es/BackupSearchClient.js +46 -0
  42. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  43. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  44. package/dist-es/commands/GetSearchJobCommand.js +22 -0
  45. package/dist-es/commands/GetSearchResultExportJobCommand.js +22 -0
  46. package/dist-es/commands/ListSearchJobBackupsCommand.js +22 -0
  47. package/dist-es/commands/ListSearchJobResultsCommand.js +23 -0
  48. package/dist-es/commands/ListSearchJobsCommand.js +22 -0
  49. package/dist-es/commands/ListSearchResultExportJobsCommand.js +22 -0
  50. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  51. package/dist-es/commands/StartSearchJobCommand.js +22 -0
  52. package/dist-es/commands/StartSearchResultExportJobCommand.js +22 -0
  53. package/dist-es/commands/StopSearchJobCommand.js +22 -0
  54. package/dist-es/commands/TagResourceCommand.js +22 -0
  55. package/dist-es/commands/UntagResourceCommand.js +22 -0
  56. package/dist-es/commands/index.js +12 -0
  57. package/dist-es/endpoint/EndpointParameters.js +12 -0
  58. package/dist-es/endpoint/endpointResolver.js +14 -0
  59. package/dist-es/endpoint/ruleset.js +4 -0
  60. package/dist-es/extensionConfiguration.js +1 -0
  61. package/dist-es/index.js +6 -0
  62. package/dist-es/models/BackupSearchServiceException.js +8 -0
  63. package/dist-es/models/index.js +1 -0
  64. package/dist-es/models/models_0.js +178 -0
  65. package/dist-es/pagination/Interfaces.js +1 -0
  66. package/dist-es/pagination/ListSearchJobBackupsPaginator.js +4 -0
  67. package/dist-es/pagination/ListSearchJobResultsPaginator.js +4 -0
  68. package/dist-es/pagination/ListSearchJobsPaginator.js +4 -0
  69. package/dist-es/pagination/ListSearchResultExportJobsPaginator.js +4 -0
  70. package/dist-es/pagination/index.js +5 -0
  71. package/dist-es/protocols/Aws_restJson1.js +753 -0
  72. package/dist-es/runtimeConfig.browser.js +34 -0
  73. package/dist-es/runtimeConfig.js +47 -0
  74. package/dist-es/runtimeConfig.native.js +11 -0
  75. package/dist-es/runtimeConfig.shared.js +30 -0
  76. package/dist-es/runtimeExtensions.js +21 -0
  77. package/dist-types/BackupSearch.d.ts +111 -0
  78. package/dist-types/BackupSearchClient.d.ts +214 -0
  79. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  80. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  81. package/dist-types/commands/GetSearchJobCommand.d.ts +187 -0
  82. package/dist-types/commands/GetSearchResultExportJobCommand.d.ts +105 -0
  83. package/dist-types/commands/ListSearchJobBackupsCommand.d.ts +113 -0
  84. package/dist-types/commands/ListSearchJobResultsCommand.d.ts +114 -0
  85. package/dist-types/commands/ListSearchJobsCommand.d.ts +101 -0
  86. package/dist-types/commands/ListSearchResultExportJobsCommand.d.ts +106 -0
  87. package/dist-types/commands/ListTagsForResourceCommand.d.ts +90 -0
  88. package/dist-types/commands/StartSearchJobCommand.d.ts +187 -0
  89. package/dist-types/commands/StartSearchResultExportJobCommand.d.ts +112 -0
  90. package/dist-types/commands/StopSearchJobCommand.d.ts +96 -0
  91. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  92. package/dist-types/commands/UntagResourceCommand.d.ts +89 -0
  93. package/dist-types/commands/index.d.ts +12 -0
  94. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  95. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  96. package/dist-types/endpoint/ruleset.d.ts +2 -0
  97. package/dist-types/extensionConfiguration.d.ts +9 -0
  98. package/dist-types/index.d.ts +29 -0
  99. package/dist-types/models/BackupSearchServiceException.d.ts +14 -0
  100. package/dist-types/models/index.d.ts +1 -0
  101. package/dist-types/models/models_0.d.ts +1535 -0
  102. package/dist-types/pagination/Interfaces.d.ts +8 -0
  103. package/dist-types/pagination/ListSearchJobBackupsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListSearchJobResultsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/ListSearchJobsPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListSearchResultExportJobsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/index.d.ts +5 -0
  108. package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +49 -0
  110. package/dist-types/runtimeConfig.d.ts +49 -0
  111. package/dist-types/runtimeConfig.native.d.ts +48 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/ts3.4/BackupSearch.d.ts +213 -0
  115. package/dist-types/ts3.4/BackupSearchClient.d.ts +192 -0
  116. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  117. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  118. package/dist-types/ts3.4/commands/GetSearchJobCommand.d.ts +47 -0
  119. package/dist-types/ts3.4/commands/GetSearchResultExportJobCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/ListSearchJobBackupsCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/ListSearchJobResultsCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/ListSearchJobsCommand.d.ts +47 -0
  123. package/dist-types/ts3.4/commands/ListSearchResultExportJobsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/StartSearchJobCommand.d.ts +47 -0
  126. package/dist-types/ts3.4/commands/StartSearchResultExportJobCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/StopSearchJobCommand.d.ts +47 -0
  128. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  129. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  130. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  131. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  132. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  133. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  134. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  135. package/dist-types/ts3.4/index.d.ts +9 -0
  136. package/dist-types/ts3.4/models/BackupSearchServiceException.d.ts +9 -0
  137. package/dist-types/ts3.4/models/index.d.ts +1 -0
  138. package/dist-types/ts3.4/models/models_0.d.ts +379 -0
  139. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  140. package/dist-types/ts3.4/pagination/ListSearchJobBackupsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/ListSearchJobResultsPaginator.d.ts +11 -0
  142. package/dist-types/ts3.4/pagination/ListSearchJobsPaginator.d.ts +11 -0
  143. package/dist-types/ts3.4/pagination/ListSearchResultExportJobsPaginator.d.ts +11 -0
  144. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  145. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  146. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +94 -0
  147. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  148. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  149. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  150. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  151. package/package.json +101 -0
@@ -0,0 +1,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { BackupSearchClient } from "../BackupSearchClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface BackupSearchPaginationConfiguration extends PaginationConfiguration {
7
+ client: BackupSearchClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSearchJobBackupsCommandInput, ListSearchJobBackupsCommandOutput } from "../commands/ListSearchJobBackupsCommand";
3
+ import { BackupSearchPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSearchJobBackups: (config: BackupSearchPaginationConfiguration, input: ListSearchJobBackupsCommandInput, ...rest: any[]) => Paginator<ListSearchJobBackupsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSearchJobResultsCommandInput, ListSearchJobResultsCommandOutput } from "../commands/ListSearchJobResultsCommand";
3
+ import { BackupSearchPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSearchJobResults: (config: BackupSearchPaginationConfiguration, input: ListSearchJobResultsCommandInput, ...rest: any[]) => Paginator<ListSearchJobResultsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSearchJobsCommandInput, ListSearchJobsCommandOutput } from "../commands/ListSearchJobsCommand";
3
+ import { BackupSearchPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSearchJobs: (config: BackupSearchPaginationConfiguration, input: ListSearchJobsCommandInput, ...rest: any[]) => Paginator<ListSearchJobsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSearchResultExportJobsCommandInput, ListSearchResultExportJobsCommandOutput } from "../commands/ListSearchResultExportJobsCommand";
3
+ import { BackupSearchPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSearchResultExportJobs: (config: BackupSearchPaginationConfiguration, input: ListSearchResultExportJobsCommandInput, ...rest: any[]) => Paginator<ListSearchResultExportJobsCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListSearchJobBackupsPaginator";
3
+ export * from "./ListSearchJobResultsPaginator";
4
+ export * from "./ListSearchJobsPaginator";
5
+ export * from "./ListSearchResultExportJobsPaginator";
@@ -0,0 +1,110 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { GetSearchJobCommandInput, GetSearchJobCommandOutput } from "../commands/GetSearchJobCommand";
4
+ import { GetSearchResultExportJobCommandInput, GetSearchResultExportJobCommandOutput } from "../commands/GetSearchResultExportJobCommand";
5
+ import { ListSearchJobBackupsCommandInput, ListSearchJobBackupsCommandOutput } from "../commands/ListSearchJobBackupsCommand";
6
+ import { ListSearchJobResultsCommandInput, ListSearchJobResultsCommandOutput } from "../commands/ListSearchJobResultsCommand";
7
+ import { ListSearchJobsCommandInput, ListSearchJobsCommandOutput } from "../commands/ListSearchJobsCommand";
8
+ import { ListSearchResultExportJobsCommandInput, ListSearchResultExportJobsCommandOutput } from "../commands/ListSearchResultExportJobsCommand";
9
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
+ import { StartSearchJobCommandInput, StartSearchJobCommandOutput } from "../commands/StartSearchJobCommand";
11
+ import { StartSearchResultExportJobCommandInput, StartSearchResultExportJobCommandOutput } from "../commands/StartSearchResultExportJobCommand";
12
+ import { StopSearchJobCommandInput, StopSearchJobCommandOutput } from "../commands/StopSearchJobCommand";
13
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
+ /**
16
+ * serializeAws_restJson1GetSearchJobCommand
17
+ */
18
+ export declare const se_GetSearchJobCommand: (input: GetSearchJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ /**
20
+ * serializeAws_restJson1GetSearchResultExportJobCommand
21
+ */
22
+ export declare const se_GetSearchResultExportJobCommand: (input: GetSearchResultExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_restJson1ListSearchJobBackupsCommand
25
+ */
26
+ export declare const se_ListSearchJobBackupsCommand: (input: ListSearchJobBackupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1ListSearchJobResultsCommand
29
+ */
30
+ export declare const se_ListSearchJobResultsCommand: (input: ListSearchJobResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1ListSearchJobsCommand
33
+ */
34
+ export declare const se_ListSearchJobsCommand: (input: ListSearchJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1ListSearchResultExportJobsCommand
37
+ */
38
+ export declare const se_ListSearchResultExportJobsCommand: (input: ListSearchResultExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1ListTagsForResourceCommand
41
+ */
42
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1StartSearchJobCommand
45
+ */
46
+ export declare const se_StartSearchJobCommand: (input: StartSearchJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_restJson1StartSearchResultExportJobCommand
49
+ */
50
+ export declare const se_StartSearchResultExportJobCommand: (input: StartSearchResultExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_restJson1StopSearchJobCommand
53
+ */
54
+ export declare const se_StopSearchJobCommand: (input: StopSearchJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1TagResourceCommand
57
+ */
58
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1UntagResourceCommand
61
+ */
62
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * deserializeAws_restJson1GetSearchJobCommand
65
+ */
66
+ export declare const de_GetSearchJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSearchJobCommandOutput>;
67
+ /**
68
+ * deserializeAws_restJson1GetSearchResultExportJobCommand
69
+ */
70
+ export declare const de_GetSearchResultExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSearchResultExportJobCommandOutput>;
71
+ /**
72
+ * deserializeAws_restJson1ListSearchJobBackupsCommand
73
+ */
74
+ export declare const de_ListSearchJobBackupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSearchJobBackupsCommandOutput>;
75
+ /**
76
+ * deserializeAws_restJson1ListSearchJobResultsCommand
77
+ */
78
+ export declare const de_ListSearchJobResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSearchJobResultsCommandOutput>;
79
+ /**
80
+ * deserializeAws_restJson1ListSearchJobsCommand
81
+ */
82
+ export declare const de_ListSearchJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSearchJobsCommandOutput>;
83
+ /**
84
+ * deserializeAws_restJson1ListSearchResultExportJobsCommand
85
+ */
86
+ export declare const de_ListSearchResultExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSearchResultExportJobsCommandOutput>;
87
+ /**
88
+ * deserializeAws_restJson1ListTagsForResourceCommand
89
+ */
90
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1StartSearchJobCommand
93
+ */
94
+ export declare const de_StartSearchJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSearchJobCommandOutput>;
95
+ /**
96
+ * deserializeAws_restJson1StartSearchResultExportJobCommand
97
+ */
98
+ export declare const de_StartSearchResultExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSearchResultExportJobCommandOutput>;
99
+ /**
100
+ * deserializeAws_restJson1StopSearchJobCommand
101
+ */
102
+ export declare const de_StopSearchJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopSearchJobCommandOutput>;
103
+ /**
104
+ * deserializeAws_restJson1TagResourceCommand
105
+ */
106
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
107
+ /**
108
+ * deserializeAws_restJson1UntagResourceCommand
109
+ */
110
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,49 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { BackupSearchClientConfig } from "./BackupSearchClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
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").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string | undefined;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ 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;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger | undefined;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean | undefined;
40
+ serviceConfiguredEndpoint?: undefined;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupSearchHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
45
+ signingEscapePath?: boolean | undefined;
46
+ systemClockOffset?: number | undefined;
47
+ signingRegion?: string | undefined;
48
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
49
+ };
@@ -0,0 +1,49 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { BackupSearchClientConfig } from "./BackupSearchClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
21
+ apiVersion: string;
22
+ cacheMiddleware?: boolean | undefined;
23
+ urlParser: import("@smithy/types").UrlParser;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: string | Uint8Array) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: string | Uint8Array) => string;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ profile?: string | undefined;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ 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;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger | undefined;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean | undefined;
40
+ serviceConfiguredEndpoint?: undefined;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupSearchHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
45
+ signingEscapePath?: boolean | undefined;
46
+ systemClockOffset?: number | undefined;
47
+ signingRegion?: string | undefined;
48
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
49
+ };
@@ -0,0 +1,48 @@
1
+ import { BackupSearchClientConfig } from "./BackupSearchClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean | undefined;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: string | Uint8Array) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: string | Uint8Array) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string | undefined;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ 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;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
41
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupSearchHttpAuthSchemeProvider;
42
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
43
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
44
+ signingEscapePath?: boolean | undefined;
45
+ systemClockOffset?: number | undefined;
46
+ signingRegion?: string | undefined;
47
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ };
@@ -0,0 +1,21 @@
1
+ import { BackupSearchClientConfig } from "./BackupSearchClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: BackupSearchClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BackupSearchHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { BackupSearchExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: BackupSearchExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,213 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { BackupSearchClient } from "./BackupSearchClient";
3
+ import {
4
+ GetSearchJobCommandInput,
5
+ GetSearchJobCommandOutput,
6
+ } from "./commands/GetSearchJobCommand";
7
+ import {
8
+ GetSearchResultExportJobCommandInput,
9
+ GetSearchResultExportJobCommandOutput,
10
+ } from "./commands/GetSearchResultExportJobCommand";
11
+ import {
12
+ ListSearchJobBackupsCommandInput,
13
+ ListSearchJobBackupsCommandOutput,
14
+ } from "./commands/ListSearchJobBackupsCommand";
15
+ import {
16
+ ListSearchJobResultsCommandInput,
17
+ ListSearchJobResultsCommandOutput,
18
+ } from "./commands/ListSearchJobResultsCommand";
19
+ import {
20
+ ListSearchJobsCommandInput,
21
+ ListSearchJobsCommandOutput,
22
+ } from "./commands/ListSearchJobsCommand";
23
+ import {
24
+ ListSearchResultExportJobsCommandInput,
25
+ ListSearchResultExportJobsCommandOutput,
26
+ } from "./commands/ListSearchResultExportJobsCommand";
27
+ import {
28
+ ListTagsForResourceCommandInput,
29
+ ListTagsForResourceCommandOutput,
30
+ } from "./commands/ListTagsForResourceCommand";
31
+ import {
32
+ StartSearchJobCommandInput,
33
+ StartSearchJobCommandOutput,
34
+ } from "./commands/StartSearchJobCommand";
35
+ import {
36
+ StartSearchResultExportJobCommandInput,
37
+ StartSearchResultExportJobCommandOutput,
38
+ } from "./commands/StartSearchResultExportJobCommand";
39
+ import {
40
+ StopSearchJobCommandInput,
41
+ StopSearchJobCommandOutput,
42
+ } from "./commands/StopSearchJobCommand";
43
+ import {
44
+ TagResourceCommandInput,
45
+ TagResourceCommandOutput,
46
+ } from "./commands/TagResourceCommand";
47
+ import {
48
+ UntagResourceCommandInput,
49
+ UntagResourceCommandOutput,
50
+ } from "./commands/UntagResourceCommand";
51
+ export interface BackupSearch {
52
+ getSearchJob(
53
+ args: GetSearchJobCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<GetSearchJobCommandOutput>;
56
+ getSearchJob(
57
+ args: GetSearchJobCommandInput,
58
+ cb: (err: any, data?: GetSearchJobCommandOutput) => void
59
+ ): void;
60
+ getSearchJob(
61
+ args: GetSearchJobCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: GetSearchJobCommandOutput) => void
64
+ ): void;
65
+ getSearchResultExportJob(
66
+ args: GetSearchResultExportJobCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<GetSearchResultExportJobCommandOutput>;
69
+ getSearchResultExportJob(
70
+ args: GetSearchResultExportJobCommandInput,
71
+ cb: (err: any, data?: GetSearchResultExportJobCommandOutput) => void
72
+ ): void;
73
+ getSearchResultExportJob(
74
+ args: GetSearchResultExportJobCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: GetSearchResultExportJobCommandOutput) => void
77
+ ): void;
78
+ listSearchJobBackups(
79
+ args: ListSearchJobBackupsCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<ListSearchJobBackupsCommandOutput>;
82
+ listSearchJobBackups(
83
+ args: ListSearchJobBackupsCommandInput,
84
+ cb: (err: any, data?: ListSearchJobBackupsCommandOutput) => void
85
+ ): void;
86
+ listSearchJobBackups(
87
+ args: ListSearchJobBackupsCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: ListSearchJobBackupsCommandOutput) => void
90
+ ): void;
91
+ listSearchJobResults(
92
+ args: ListSearchJobResultsCommandInput,
93
+ options?: __HttpHandlerOptions
94
+ ): Promise<ListSearchJobResultsCommandOutput>;
95
+ listSearchJobResults(
96
+ args: ListSearchJobResultsCommandInput,
97
+ cb: (err: any, data?: ListSearchJobResultsCommandOutput) => void
98
+ ): void;
99
+ listSearchJobResults(
100
+ args: ListSearchJobResultsCommandInput,
101
+ options: __HttpHandlerOptions,
102
+ cb: (err: any, data?: ListSearchJobResultsCommandOutput) => void
103
+ ): void;
104
+ listSearchJobs(): Promise<ListSearchJobsCommandOutput>;
105
+ listSearchJobs(
106
+ args: ListSearchJobsCommandInput,
107
+ options?: __HttpHandlerOptions
108
+ ): Promise<ListSearchJobsCommandOutput>;
109
+ listSearchJobs(
110
+ args: ListSearchJobsCommandInput,
111
+ cb: (err: any, data?: ListSearchJobsCommandOutput) => void
112
+ ): void;
113
+ listSearchJobs(
114
+ args: ListSearchJobsCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (err: any, data?: ListSearchJobsCommandOutput) => void
117
+ ): void;
118
+ listSearchResultExportJobs(): Promise<ListSearchResultExportJobsCommandOutput>;
119
+ listSearchResultExportJobs(
120
+ args: ListSearchResultExportJobsCommandInput,
121
+ options?: __HttpHandlerOptions
122
+ ): Promise<ListSearchResultExportJobsCommandOutput>;
123
+ listSearchResultExportJobs(
124
+ args: ListSearchResultExportJobsCommandInput,
125
+ cb: (err: any, data?: ListSearchResultExportJobsCommandOutput) => void
126
+ ): void;
127
+ listSearchResultExportJobs(
128
+ args: ListSearchResultExportJobsCommandInput,
129
+ options: __HttpHandlerOptions,
130
+ cb: (err: any, data?: ListSearchResultExportJobsCommandOutput) => void
131
+ ): void;
132
+ listTagsForResource(
133
+ args: ListTagsForResourceCommandInput,
134
+ options?: __HttpHandlerOptions
135
+ ): Promise<ListTagsForResourceCommandOutput>;
136
+ listTagsForResource(
137
+ args: ListTagsForResourceCommandInput,
138
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
139
+ ): void;
140
+ listTagsForResource(
141
+ args: ListTagsForResourceCommandInput,
142
+ options: __HttpHandlerOptions,
143
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
144
+ ): void;
145
+ startSearchJob(
146
+ args: StartSearchJobCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<StartSearchJobCommandOutput>;
149
+ startSearchJob(
150
+ args: StartSearchJobCommandInput,
151
+ cb: (err: any, data?: StartSearchJobCommandOutput) => void
152
+ ): void;
153
+ startSearchJob(
154
+ args: StartSearchJobCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: StartSearchJobCommandOutput) => void
157
+ ): void;
158
+ startSearchResultExportJob(
159
+ args: StartSearchResultExportJobCommandInput,
160
+ options?: __HttpHandlerOptions
161
+ ): Promise<StartSearchResultExportJobCommandOutput>;
162
+ startSearchResultExportJob(
163
+ args: StartSearchResultExportJobCommandInput,
164
+ cb: (err: any, data?: StartSearchResultExportJobCommandOutput) => void
165
+ ): void;
166
+ startSearchResultExportJob(
167
+ args: StartSearchResultExportJobCommandInput,
168
+ options: __HttpHandlerOptions,
169
+ cb: (err: any, data?: StartSearchResultExportJobCommandOutput) => void
170
+ ): void;
171
+ stopSearchJob(
172
+ args: StopSearchJobCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<StopSearchJobCommandOutput>;
175
+ stopSearchJob(
176
+ args: StopSearchJobCommandInput,
177
+ cb: (err: any, data?: StopSearchJobCommandOutput) => void
178
+ ): void;
179
+ stopSearchJob(
180
+ args: StopSearchJobCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: StopSearchJobCommandOutput) => void
183
+ ): void;
184
+ tagResource(
185
+ args: TagResourceCommandInput,
186
+ options?: __HttpHandlerOptions
187
+ ): Promise<TagResourceCommandOutput>;
188
+ tagResource(
189
+ args: TagResourceCommandInput,
190
+ cb: (err: any, data?: TagResourceCommandOutput) => void
191
+ ): void;
192
+ tagResource(
193
+ args: TagResourceCommandInput,
194
+ options: __HttpHandlerOptions,
195
+ cb: (err: any, data?: TagResourceCommandOutput) => void
196
+ ): void;
197
+ untagResource(
198
+ args: UntagResourceCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<UntagResourceCommandOutput>;
201
+ untagResource(
202
+ args: UntagResourceCommandInput,
203
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
204
+ ): void;
205
+ untagResource(
206
+ args: UntagResourceCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
209
+ ): void;
210
+ }
211
+ export declare class BackupSearch
212
+ extends BackupSearchClient
213
+ implements BackupSearch {}