@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,192 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ GetSearchJobCommandInput,
50
+ GetSearchJobCommandOutput,
51
+ } from "./commands/GetSearchJobCommand";
52
+ import {
53
+ GetSearchResultExportJobCommandInput,
54
+ GetSearchResultExportJobCommandOutput,
55
+ } from "./commands/GetSearchResultExportJobCommand";
56
+ import {
57
+ ListSearchJobBackupsCommandInput,
58
+ ListSearchJobBackupsCommandOutput,
59
+ } from "./commands/ListSearchJobBackupsCommand";
60
+ import {
61
+ ListSearchJobResultsCommandInput,
62
+ ListSearchJobResultsCommandOutput,
63
+ } from "./commands/ListSearchJobResultsCommand";
64
+ import {
65
+ ListSearchJobsCommandInput,
66
+ ListSearchJobsCommandOutput,
67
+ } from "./commands/ListSearchJobsCommand";
68
+ import {
69
+ ListSearchResultExportJobsCommandInput,
70
+ ListSearchResultExportJobsCommandOutput,
71
+ } from "./commands/ListSearchResultExportJobsCommand";
72
+ import {
73
+ ListTagsForResourceCommandInput,
74
+ ListTagsForResourceCommandOutput,
75
+ } from "./commands/ListTagsForResourceCommand";
76
+ import {
77
+ StartSearchJobCommandInput,
78
+ StartSearchJobCommandOutput,
79
+ } from "./commands/StartSearchJobCommand";
80
+ import {
81
+ StartSearchResultExportJobCommandInput,
82
+ StartSearchResultExportJobCommandOutput,
83
+ } from "./commands/StartSearchResultExportJobCommand";
84
+ import {
85
+ StopSearchJobCommandInput,
86
+ StopSearchJobCommandOutput,
87
+ } from "./commands/StopSearchJobCommand";
88
+ import {
89
+ TagResourceCommandInput,
90
+ TagResourceCommandOutput,
91
+ } from "./commands/TagResourceCommand";
92
+ import {
93
+ UntagResourceCommandInput,
94
+ UntagResourceCommandOutput,
95
+ } from "./commands/UntagResourceCommand";
96
+ import {
97
+ ClientInputEndpointParameters,
98
+ ClientResolvedEndpointParameters,
99
+ EndpointParameters,
100
+ } from "./endpoint/EndpointParameters";
101
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
102
+ export { __Client };
103
+ export type ServiceInputTypes =
104
+ | GetSearchJobCommandInput
105
+ | GetSearchResultExportJobCommandInput
106
+ | ListSearchJobBackupsCommandInput
107
+ | ListSearchJobResultsCommandInput
108
+ | ListSearchJobsCommandInput
109
+ | ListSearchResultExportJobsCommandInput
110
+ | ListTagsForResourceCommandInput
111
+ | StartSearchJobCommandInput
112
+ | StartSearchResultExportJobCommandInput
113
+ | StopSearchJobCommandInput
114
+ | TagResourceCommandInput
115
+ | UntagResourceCommandInput;
116
+ export type ServiceOutputTypes =
117
+ | GetSearchJobCommandOutput
118
+ | GetSearchResultExportJobCommandOutput
119
+ | ListSearchJobBackupsCommandOutput
120
+ | ListSearchJobResultsCommandOutput
121
+ | ListSearchJobsCommandOutput
122
+ | ListSearchResultExportJobsCommandOutput
123
+ | ListTagsForResourceCommandOutput
124
+ | StartSearchJobCommandOutput
125
+ | StartSearchResultExportJobCommandOutput
126
+ | StopSearchJobCommandOutput
127
+ | TagResourceCommandOutput
128
+ | UntagResourceCommandOutput;
129
+ export interface ClientDefaults
130
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
131
+ requestHandler?: __HttpHandlerUserInput;
132
+ sha256?: __ChecksumConstructor | __HashConstructor;
133
+ urlParser?: __UrlParser;
134
+ bodyLengthChecker?: __BodyLengthCalculator;
135
+ streamCollector?: __StreamCollector;
136
+ base64Decoder?: __Decoder;
137
+ base64Encoder?: __Encoder;
138
+ utf8Decoder?: __Decoder;
139
+ utf8Encoder?: __Encoder;
140
+ runtime?: string;
141
+ disableHostPrefix?: boolean;
142
+ serviceId?: string;
143
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
144
+ useFipsEndpoint?: boolean | __Provider<boolean>;
145
+ region?: string | __Provider<string>;
146
+ profile?: string;
147
+ defaultUserAgentProvider?: Provider<__UserAgent>;
148
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
149
+ maxAttempts?: number | __Provider<number>;
150
+ retryMode?: string | __Provider<string>;
151
+ logger?: __Logger;
152
+ extensions?: RuntimeExtension[];
153
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
154
+ }
155
+ export type BackupSearchClientConfigType = Partial<
156
+ __SmithyConfiguration<__HttpHandlerOptions>
157
+ > &
158
+ ClientDefaults &
159
+ UserAgentInputConfig &
160
+ RetryInputConfig &
161
+ RegionInputConfig &
162
+ HostHeaderInputConfig &
163
+ EndpointInputConfig<EndpointParameters> &
164
+ HttpAuthSchemeInputConfig &
165
+ ClientInputEndpointParameters;
166
+ export interface BackupSearchClientConfig
167
+ extends BackupSearchClientConfigType {}
168
+ export type BackupSearchClientResolvedConfigType =
169
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
170
+ Required<ClientDefaults> &
171
+ RuntimeExtensionsConfig &
172
+ UserAgentResolvedConfig &
173
+ RetryResolvedConfig &
174
+ RegionResolvedConfig &
175
+ HostHeaderResolvedConfig &
176
+ EndpointResolvedConfig<EndpointParameters> &
177
+ HttpAuthSchemeResolvedConfig &
178
+ ClientResolvedEndpointParameters;
179
+ export interface BackupSearchClientResolvedConfig
180
+ extends BackupSearchClientResolvedConfigType {}
181
+ export declare class BackupSearchClient extends __Client<
182
+ __HttpHandlerOptions,
183
+ ServiceInputTypes,
184
+ ServiceOutputTypes,
185
+ BackupSearchClientResolvedConfig
186
+ > {
187
+ readonly config: BackupSearchClientResolvedConfig;
188
+ constructor(
189
+ ...[configuration]: __CheckOptionalClientConfig<BackupSearchClientConfig>
190
+ );
191
+ destroy(): void;
192
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { BackupSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: BackupSearchHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): BackupSearchHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: BackupSearchHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { BackupSearchClientResolvedConfig } from "../BackupSearchClient";
14
+ export interface BackupSearchHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface BackupSearchHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ BackupSearchClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ BackupSearchHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultBackupSearchHttpAuthSchemeParametersProvider: (
26
+ config: BackupSearchClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<BackupSearchHttpAuthSchemeParameters>;
30
+ export interface BackupSearchHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<BackupSearchHttpAuthSchemeParameters> {}
32
+ export declare const defaultBackupSearchHttpAuthSchemeProvider: BackupSearchHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: BackupSearchHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: BackupSearchHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import { GetSearchJobInput, GetSearchJobOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetSearchJobCommandInput extends GetSearchJobInput {}
12
+ export interface GetSearchJobCommandOutput
13
+ extends GetSearchJobOutput,
14
+ __MetadataBearer {}
15
+ declare const GetSearchJobCommand_base: {
16
+ new (
17
+ input: GetSearchJobCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetSearchJobCommandInput,
20
+ GetSearchJobCommandOutput,
21
+ BackupSearchClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetSearchJobCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetSearchJobCommandInput,
29
+ GetSearchJobCommandOutput,
30
+ BackupSearchClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetSearchJobCommand extends GetSearchJobCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetSearchJobInput;
40
+ output: GetSearchJobOutput;
41
+ };
42
+ sdk: {
43
+ input: GetSearchJobCommandInput;
44
+ output: GetSearchJobCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import {
9
+ GetSearchResultExportJobInput,
10
+ GetSearchResultExportJobOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetSearchResultExportJobCommandInput
15
+ extends GetSearchResultExportJobInput {}
16
+ export interface GetSearchResultExportJobCommandOutput
17
+ extends GetSearchResultExportJobOutput,
18
+ __MetadataBearer {}
19
+ declare const GetSearchResultExportJobCommand_base: {
20
+ new (
21
+ input: GetSearchResultExportJobCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetSearchResultExportJobCommandInput,
24
+ GetSearchResultExportJobCommandOutput,
25
+ BackupSearchClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetSearchResultExportJobCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetSearchResultExportJobCommandInput,
33
+ GetSearchResultExportJobCommandOutput,
34
+ BackupSearchClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetSearchResultExportJobCommand extends GetSearchResultExportJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetSearchResultExportJobInput;
44
+ output: GetSearchResultExportJobOutput;
45
+ };
46
+ sdk: {
47
+ input: GetSearchResultExportJobCommandInput;
48
+ output: GetSearchResultExportJobCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import {
9
+ ListSearchJobBackupsInput,
10
+ ListSearchJobBackupsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListSearchJobBackupsCommandInput
15
+ extends ListSearchJobBackupsInput {}
16
+ export interface ListSearchJobBackupsCommandOutput
17
+ extends ListSearchJobBackupsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListSearchJobBackupsCommand_base: {
20
+ new (
21
+ input: ListSearchJobBackupsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListSearchJobBackupsCommandInput,
24
+ ListSearchJobBackupsCommandOutput,
25
+ BackupSearchClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListSearchJobBackupsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListSearchJobBackupsCommandInput,
33
+ ListSearchJobBackupsCommandOutput,
34
+ BackupSearchClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListSearchJobBackupsCommand extends ListSearchJobBackupsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListSearchJobBackupsInput;
44
+ output: ListSearchJobBackupsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListSearchJobBackupsCommandInput;
48
+ output: ListSearchJobBackupsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import {
9
+ ListSearchJobResultsInput,
10
+ ListSearchJobResultsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListSearchJobResultsCommandInput
15
+ extends ListSearchJobResultsInput {}
16
+ export interface ListSearchJobResultsCommandOutput
17
+ extends ListSearchJobResultsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListSearchJobResultsCommand_base: {
20
+ new (
21
+ input: ListSearchJobResultsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListSearchJobResultsCommandInput,
24
+ ListSearchJobResultsCommandOutput,
25
+ BackupSearchClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListSearchJobResultsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListSearchJobResultsCommandInput,
33
+ ListSearchJobResultsCommandOutput,
34
+ BackupSearchClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListSearchJobResultsCommand extends ListSearchJobResultsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListSearchJobResultsInput;
44
+ output: ListSearchJobResultsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListSearchJobResultsCommandInput;
48
+ output: ListSearchJobResultsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import { ListSearchJobsInput, ListSearchJobsOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListSearchJobsCommandInput extends ListSearchJobsInput {}
12
+ export interface ListSearchJobsCommandOutput
13
+ extends ListSearchJobsOutput,
14
+ __MetadataBearer {}
15
+ declare const ListSearchJobsCommand_base: {
16
+ new (
17
+ input: ListSearchJobsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListSearchJobsCommandInput,
20
+ ListSearchJobsCommandOutput,
21
+ BackupSearchClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListSearchJobsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListSearchJobsCommandInput,
29
+ ListSearchJobsCommandOutput,
30
+ BackupSearchClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListSearchJobsCommand extends ListSearchJobsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListSearchJobsInput;
40
+ output: ListSearchJobsOutput;
41
+ };
42
+ sdk: {
43
+ input: ListSearchJobsCommandInput;
44
+ output: ListSearchJobsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import {
9
+ ListSearchResultExportJobsInput,
10
+ ListSearchResultExportJobsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListSearchResultExportJobsCommandInput
15
+ extends ListSearchResultExportJobsInput {}
16
+ export interface ListSearchResultExportJobsCommandOutput
17
+ extends ListSearchResultExportJobsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListSearchResultExportJobsCommand_base: {
20
+ new (
21
+ input: ListSearchResultExportJobsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListSearchResultExportJobsCommandInput,
24
+ ListSearchResultExportJobsCommandOutput,
25
+ BackupSearchClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListSearchResultExportJobsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListSearchResultExportJobsCommandInput,
33
+ ListSearchResultExportJobsCommandOutput,
34
+ BackupSearchClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListSearchResultExportJobsCommand extends ListSearchResultExportJobsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListSearchResultExportJobsInput;
44
+ output: ListSearchResultExportJobsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListSearchResultExportJobsCommandInput;
48
+ output: ListSearchResultExportJobsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ BackupSearchClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ BackupSearchClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BackupSearchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BackupSearchClient";
8
+ import { StartSearchJobInput, StartSearchJobOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface StartSearchJobCommandInput extends StartSearchJobInput {}
12
+ export interface StartSearchJobCommandOutput
13
+ extends StartSearchJobOutput,
14
+ __MetadataBearer {}
15
+ declare const StartSearchJobCommand_base: {
16
+ new (
17
+ input: StartSearchJobCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ StartSearchJobCommandInput,
20
+ StartSearchJobCommandOutput,
21
+ BackupSearchClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: StartSearchJobCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ StartSearchJobCommandInput,
29
+ StartSearchJobCommandOutput,
30
+ BackupSearchClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class StartSearchJobCommand extends StartSearchJobCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: StartSearchJobInput;
40
+ output: StartSearchJobOutput;
41
+ };
42
+ sdk: {
43
+ input: StartSearchJobCommandInput;
44
+ output: StartSearchJobCommandOutput;
45
+ };
46
+ };
47
+ }