@aws-sdk/client-docdb-elastic 3.221.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 (131) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +205 -0
  3. package/dist-cjs/DocDBElastic.js +202 -0
  4. package/dist-cjs/DocDBElasticClient.js +40 -0
  5. package/dist-cjs/commands/CreateClusterCommand.js +46 -0
  6. package/dist-cjs/commands/CreateClusterSnapshotCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteClusterCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteClusterSnapshotCommand.js +46 -0
  9. package/dist-cjs/commands/GetClusterCommand.js +46 -0
  10. package/dist-cjs/commands/GetClusterSnapshotCommand.js +46 -0
  11. package/dist-cjs/commands/ListClusterSnapshotsCommand.js +46 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +46 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  14. package/dist-cjs/commands/RestoreClusterFromSnapshotCommand.js +46 -0
  15. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  16. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  17. package/dist-cjs/commands/UpdateClusterCommand.js +46 -0
  18. package/dist-cjs/commands/index.js +16 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  21. package/dist-cjs/endpoint/ruleset.js +312 -0
  22. package/dist-cjs/index.js +11 -0
  23. package/dist-cjs/models/DocDBElasticServiceException.js +11 -0
  24. package/dist-cjs/models/index.js +4 -0
  25. package/dist-cjs/models/models_0.js +255 -0
  26. package/dist-cjs/pagination/Interfaces.js +2 -0
  27. package/dist-cjs/pagination/ListClusterSnapshotsPaginator.js +36 -0
  28. package/dist-cjs/pagination/ListClustersPaginator.js +36 -0
  29. package/dist-cjs/pagination/index.js +6 -0
  30. package/dist-cjs/protocols/Aws_restJson1.js +1197 -0
  31. package/dist-cjs/runtimeConfig.browser.js +42 -0
  32. package/dist-cjs/runtimeConfig.js +50 -0
  33. package/dist-cjs/runtimeConfig.native.js +15 -0
  34. package/dist-cjs/runtimeConfig.shared.js +18 -0
  35. package/dist-es/DocDBElastic.js +198 -0
  36. package/dist-es/DocDBElasticClient.js +36 -0
  37. package/dist-es/commands/CreateClusterCommand.js +42 -0
  38. package/dist-es/commands/CreateClusterSnapshotCommand.js +42 -0
  39. package/dist-es/commands/DeleteClusterCommand.js +42 -0
  40. package/dist-es/commands/DeleteClusterSnapshotCommand.js +42 -0
  41. package/dist-es/commands/GetClusterCommand.js +42 -0
  42. package/dist-es/commands/GetClusterSnapshotCommand.js +42 -0
  43. package/dist-es/commands/ListClusterSnapshotsCommand.js +42 -0
  44. package/dist-es/commands/ListClustersCommand.js +42 -0
  45. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  46. package/dist-es/commands/RestoreClusterFromSnapshotCommand.js +42 -0
  47. package/dist-es/commands/TagResourceCommand.js +42 -0
  48. package/dist-es/commands/UntagResourceCommand.js +42 -0
  49. package/dist-es/commands/UpdateClusterCommand.js +42 -0
  50. package/dist-es/commands/index.js +13 -0
  51. package/dist-es/endpoint/EndpointParameters.js +8 -0
  52. package/dist-es/endpoint/endpointResolver.js +8 -0
  53. package/dist-es/endpoint/ruleset.js +309 -0
  54. package/dist-es/index.js +6 -0
  55. package/dist-es/models/DocDBElasticServiceException.js +7 -0
  56. package/dist-es/models/index.js +1 -0
  57. package/dist-es/models/models_0.js +214 -0
  58. package/dist-es/pagination/Interfaces.js +1 -0
  59. package/dist-es/pagination/ListClusterSnapshotsPaginator.js +32 -0
  60. package/dist-es/pagination/ListClustersPaginator.js +32 -0
  61. package/dist-es/pagination/index.js +3 -0
  62. package/dist-es/protocols/Aws_restJson1.js +1168 -0
  63. package/dist-es/runtimeConfig.browser.js +37 -0
  64. package/dist-es/runtimeConfig.js +45 -0
  65. package/dist-es/runtimeConfig.native.js +11 -0
  66. package/dist-es/runtimeConfig.shared.js +14 -0
  67. package/dist-types/DocDBElastic.d.ts +99 -0
  68. package/dist-types/DocDBElasticClient.d.ts +154 -0
  69. package/dist-types/commands/CreateClusterCommand.d.ts +37 -0
  70. package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +37 -0
  71. package/dist-types/commands/DeleteClusterCommand.d.ts +37 -0
  72. package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +37 -0
  73. package/dist-types/commands/GetClusterCommand.d.ts +37 -0
  74. package/dist-types/commands/GetClusterSnapshotCommand.d.ts +37 -0
  75. package/dist-types/commands/ListClusterSnapshotsCommand.d.ts +37 -0
  76. package/dist-types/commands/ListClustersCommand.d.ts +37 -0
  77. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  78. package/dist-types/commands/RestoreClusterFromSnapshotCommand.d.ts +37 -0
  79. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  80. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  81. package/dist-types/commands/UpdateClusterCommand.d.ts +38 -0
  82. package/dist-types/commands/index.d.ts +13 -0
  83. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  84. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  85. package/dist-types/endpoint/ruleset.d.ts +2 -0
  86. package/dist-types/index.d.ts +6 -0
  87. package/dist-types/models/DocDBElasticServiceException.d.ts +10 -0
  88. package/dist-types/models/index.d.ts +1 -0
  89. package/dist-types/models/models_0.d.ts +782 -0
  90. package/dist-types/pagination/Interfaces.d.ts +6 -0
  91. package/dist-types/pagination/ListClusterSnapshotsPaginator.d.ts +4 -0
  92. package/dist-types/pagination/ListClustersPaginator.d.ts +4 -0
  93. package/dist-types/pagination/index.d.ts +3 -0
  94. package/dist-types/protocols/Aws_restJson1.d.ts +41 -0
  95. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  96. package/dist-types/runtimeConfig.d.ts +42 -0
  97. package/dist-types/runtimeConfig.native.d.ts +41 -0
  98. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  99. package/dist-types/ts3.4/DocDBElastic.d.ts +225 -0
  100. package/dist-types/ts3.4/DocDBElasticClient.d.ts +190 -0
  101. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +34 -0
  102. package/dist-types/ts3.4/commands/CreateClusterSnapshotCommand.d.ts +41 -0
  103. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +34 -0
  104. package/dist-types/ts3.4/commands/DeleteClusterSnapshotCommand.d.ts +41 -0
  105. package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +34 -0
  106. package/dist-types/ts3.4/commands/GetClusterSnapshotCommand.d.ts +38 -0
  107. package/dist-types/ts3.4/commands/ListClusterSnapshotsCommand.d.ts +41 -0
  108. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  110. package/dist-types/ts3.4/commands/RestoreClusterFromSnapshotCommand.d.ts +41 -0
  111. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  113. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +34 -0
  114. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  115. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  116. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  117. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  118. package/dist-types/ts3.4/index.d.ts +6 -0
  119. package/dist-types/ts3.4/models/DocDBElasticServiceException.d.ts +7 -0
  120. package/dist-types/ts3.4/models/index.d.ts +1 -0
  121. package/dist-types/ts3.4/models/models_0.d.ts +320 -0
  122. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  123. package/dist-types/ts3.4/pagination/ListClusterSnapshotsPaginator.d.ts +11 -0
  124. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  125. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  126. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -0
  127. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
  128. package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
  129. package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
  130. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  131. package/package.json +103 -0
@@ -0,0 +1,320 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DocDBElasticServiceException as __BaseException } from "./DocDBElasticServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare enum Auth {
11
+ PLAIN_TEXT = "PLAIN_TEXT",
12
+ SECRET_ARN = "SECRET_ARN",
13
+ }
14
+ export declare class ConflictException extends __BaseException {
15
+ readonly name: "ConflictException";
16
+ readonly $fault: "client";
17
+ resourceId: string | undefined;
18
+ resourceType: string | undefined;
19
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
+ }
21
+ export interface CreateClusterInput {
22
+ clusterName: string | undefined;
23
+ authType: Auth | string | undefined;
24
+ adminUserName: string | undefined;
25
+ adminUserPassword: string | undefined;
26
+ shardCapacity: number | undefined;
27
+ shardCount: number | undefined;
28
+ vpcSecurityGroupIds?: string[];
29
+ subnetIds?: string[];
30
+ kmsKeyId?: string;
31
+ clientToken?: string;
32
+ preferredMaintenanceWindow?: string;
33
+ tags?: Record<string, string>;
34
+ }
35
+ export declare enum Status {
36
+ ACTIVE = "ACTIVE",
37
+ CREATING = "CREATING",
38
+ DELETING = "DELETING",
39
+ INACCESSIBLE_ENCRYPTION_CREDS = "INACCESSIBLE_ENCRYPTION_CREDS",
40
+ INVALID_SECURITY_GROUP_ID = "INVALID_SECURITY_GROUP_ID",
41
+ INVALID_SUBNET_ID = "INVALID_SUBNET_ID",
42
+ IP_ADDRESS_LIMIT_EXCEEDED = "IP_ADDRESS_LIMIT_EXCEEDED",
43
+ UPDATING = "UPDATING",
44
+ VPC_ENDPOINT_LIMIT_EXCEEDED = "VPC_ENDPOINT_LIMIT_EXCEEDED",
45
+ }
46
+ export interface Cluster {
47
+ clusterName: string | undefined;
48
+ clusterArn: string | undefined;
49
+ status: Status | string | undefined;
50
+ clusterEndpoint: string | undefined;
51
+ createTime: string | undefined;
52
+ adminUserName: string | undefined;
53
+ authType: Auth | string | undefined;
54
+ shardCapacity: number | undefined;
55
+ shardCount: number | undefined;
56
+ vpcSecurityGroupIds: string[] | undefined;
57
+ subnetIds: string[] | undefined;
58
+ preferredMaintenanceWindow: string | undefined;
59
+ kmsKeyId: string | undefined;
60
+ }
61
+ export interface CreateClusterOutput {
62
+ cluster: Cluster | undefined;
63
+ }
64
+ export declare class InternalServerException extends __BaseException {
65
+ readonly name: "InternalServerException";
66
+ readonly $fault: "server";
67
+ $retryable: {};
68
+ constructor(
69
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
70
+ );
71
+ }
72
+ export declare class ServiceQuotaExceededException extends __BaseException {
73
+ readonly name: "ServiceQuotaExceededException";
74
+ readonly $fault: "client";
75
+ constructor(
76
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
77
+ );
78
+ }
79
+ export declare class ThrottlingException extends __BaseException {
80
+ readonly name: "ThrottlingException";
81
+ readonly $fault: "client";
82
+ $retryable: {};
83
+ retryAfterSeconds?: number;
84
+ constructor(
85
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
86
+ );
87
+ }
88
+ export interface ValidationExceptionField {
89
+ name: string | undefined;
90
+ message: string | undefined;
91
+ }
92
+ export declare enum ValidationExceptionReason {
93
+ CANNOT_PARSE = "cannotParse",
94
+ FIELD_VALIDATION_FAILED = "fieldValidationFailed",
95
+ OTHER = "other",
96
+ UNKNOWN_OPERATION = "unknownOperation",
97
+ }
98
+ export declare class ValidationException extends __BaseException {
99
+ readonly name: "ValidationException";
100
+ readonly $fault: "client";
101
+ reason: ValidationExceptionReason | string | undefined;
102
+ fieldList?: ValidationExceptionField[];
103
+ constructor(
104
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
105
+ );
106
+ }
107
+ export interface CreateClusterSnapshotInput {
108
+ clusterArn: string | undefined;
109
+ snapshotName: string | undefined;
110
+ tags?: Record<string, string>;
111
+ }
112
+ export interface ClusterSnapshot {
113
+ subnetIds: string[] | undefined;
114
+ snapshotName: string | undefined;
115
+ snapshotArn: string | undefined;
116
+ snapshotCreationTime: string | undefined;
117
+ clusterArn: string | undefined;
118
+ clusterCreationTime: string | undefined;
119
+ status: Status | string | undefined;
120
+ vpcSecurityGroupIds: string[] | undefined;
121
+ adminUserName: string | undefined;
122
+ kmsKeyId: string | undefined;
123
+ }
124
+ export interface CreateClusterSnapshotOutput {
125
+ snapshot: ClusterSnapshot | undefined;
126
+ }
127
+ export declare class ResourceNotFoundException extends __BaseException {
128
+ readonly name: "ResourceNotFoundException";
129
+ readonly $fault: "client";
130
+ resourceId: string | undefined;
131
+ resourceType: string | undefined;
132
+ constructor(
133
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
134
+ );
135
+ }
136
+ export interface DeleteClusterInput {
137
+ clusterArn: string | undefined;
138
+ }
139
+ export interface DeleteClusterOutput {
140
+ cluster: Cluster | undefined;
141
+ }
142
+ export interface DeleteClusterSnapshotInput {
143
+ snapshotArn: string | undefined;
144
+ }
145
+ export interface DeleteClusterSnapshotOutput {
146
+ snapshot: ClusterSnapshot | undefined;
147
+ }
148
+ export interface GetClusterInput {
149
+ clusterArn: string | undefined;
150
+ }
151
+ export interface GetClusterOutput {
152
+ cluster: Cluster | undefined;
153
+ }
154
+ export interface GetClusterSnapshotInput {
155
+ snapshotArn: string | undefined;
156
+ }
157
+ export interface GetClusterSnapshotOutput {
158
+ snapshot: ClusterSnapshot | undefined;
159
+ }
160
+ export interface ListClustersInput {
161
+ nextToken?: string;
162
+ maxResults?: number;
163
+ }
164
+ export interface ClusterInList {
165
+ clusterName: string | undefined;
166
+ clusterArn: string | undefined;
167
+ status: Status | string | undefined;
168
+ }
169
+ export interface ListClustersOutput {
170
+ clusters?: ClusterInList[];
171
+ nextToken?: string;
172
+ }
173
+ export interface ListClusterSnapshotsInput {
174
+ clusterArn?: string;
175
+ nextToken?: string;
176
+ maxResults?: number;
177
+ }
178
+ export interface ClusterSnapshotInList {
179
+ snapshotName: string | undefined;
180
+ snapshotArn: string | undefined;
181
+ clusterArn: string | undefined;
182
+ status: Status | string | undefined;
183
+ snapshotCreationTime: string | undefined;
184
+ }
185
+ export interface ListClusterSnapshotsOutput {
186
+ snapshots?: ClusterSnapshotInList[];
187
+ nextToken?: string;
188
+ }
189
+ export interface ListTagsForResourceRequest {
190
+ resourceArn: string | undefined;
191
+ }
192
+ export interface ListTagsForResourceResponse {
193
+ tags?: Record<string, string>;
194
+ }
195
+ export interface RestoreClusterFromSnapshotInput {
196
+ clusterName: string | undefined;
197
+ snapshotArn: string | undefined;
198
+ vpcSecurityGroupIds?: string[];
199
+ subnetIds?: string[];
200
+ kmsKeyId?: string;
201
+ tags?: Record<string, string>;
202
+ }
203
+ export interface RestoreClusterFromSnapshotOutput {
204
+ cluster: Cluster | undefined;
205
+ }
206
+ export interface TagResourceRequest {
207
+ resourceArn: string | undefined;
208
+ tags: Record<string, string> | undefined;
209
+ }
210
+ export interface TagResourceResponse {}
211
+ export interface UntagResourceRequest {
212
+ resourceArn: string | undefined;
213
+ tagKeys: string[] | undefined;
214
+ }
215
+ export interface UntagResourceResponse {}
216
+ export interface UpdateClusterInput {
217
+ clusterArn: string | undefined;
218
+ authType?: Auth | string;
219
+ shardCapacity?: number;
220
+ shardCount?: number;
221
+ vpcSecurityGroupIds?: string[];
222
+ subnetIds?: string[];
223
+ adminUserPassword?: string;
224
+ clientToken?: string;
225
+ preferredMaintenanceWindow?: string;
226
+ }
227
+ export interface UpdateClusterOutput {
228
+ cluster: Cluster | undefined;
229
+ }
230
+ export declare const CreateClusterInputFilterSensitiveLog: (
231
+ obj: CreateClusterInput
232
+ ) => any;
233
+ export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
234
+ export declare const CreateClusterOutputFilterSensitiveLog: (
235
+ obj: CreateClusterOutput
236
+ ) => any;
237
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
238
+ obj: ValidationExceptionField
239
+ ) => any;
240
+ export declare const CreateClusterSnapshotInputFilterSensitiveLog: (
241
+ obj: CreateClusterSnapshotInput
242
+ ) => any;
243
+ export declare const ClusterSnapshotFilterSensitiveLog: (
244
+ obj: ClusterSnapshot
245
+ ) => any;
246
+ export declare const CreateClusterSnapshotOutputFilterSensitiveLog: (
247
+ obj: CreateClusterSnapshotOutput
248
+ ) => any;
249
+ export declare const DeleteClusterInputFilterSensitiveLog: (
250
+ obj: DeleteClusterInput
251
+ ) => any;
252
+ export declare const DeleteClusterOutputFilterSensitiveLog: (
253
+ obj: DeleteClusterOutput
254
+ ) => any;
255
+ export declare const DeleteClusterSnapshotInputFilterSensitiveLog: (
256
+ obj: DeleteClusterSnapshotInput
257
+ ) => any;
258
+ export declare const DeleteClusterSnapshotOutputFilterSensitiveLog: (
259
+ obj: DeleteClusterSnapshotOutput
260
+ ) => any;
261
+ export declare const GetClusterInputFilterSensitiveLog: (
262
+ obj: GetClusterInput
263
+ ) => any;
264
+ export declare const GetClusterOutputFilterSensitiveLog: (
265
+ obj: GetClusterOutput
266
+ ) => any;
267
+ export declare const GetClusterSnapshotInputFilterSensitiveLog: (
268
+ obj: GetClusterSnapshotInput
269
+ ) => any;
270
+ export declare const GetClusterSnapshotOutputFilterSensitiveLog: (
271
+ obj: GetClusterSnapshotOutput
272
+ ) => any;
273
+ export declare const ListClustersInputFilterSensitiveLog: (
274
+ obj: ListClustersInput
275
+ ) => any;
276
+ export declare const ClusterInListFilterSensitiveLog: (
277
+ obj: ClusterInList
278
+ ) => any;
279
+ export declare const ListClustersOutputFilterSensitiveLog: (
280
+ obj: ListClustersOutput
281
+ ) => any;
282
+ export declare const ListClusterSnapshotsInputFilterSensitiveLog: (
283
+ obj: ListClusterSnapshotsInput
284
+ ) => any;
285
+ export declare const ClusterSnapshotInListFilterSensitiveLog: (
286
+ obj: ClusterSnapshotInList
287
+ ) => any;
288
+ export declare const ListClusterSnapshotsOutputFilterSensitiveLog: (
289
+ obj: ListClusterSnapshotsOutput
290
+ ) => any;
291
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
292
+ obj: ListTagsForResourceRequest
293
+ ) => any;
294
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
295
+ obj: ListTagsForResourceResponse
296
+ ) => any;
297
+ export declare const RestoreClusterFromSnapshotInputFilterSensitiveLog: (
298
+ obj: RestoreClusterFromSnapshotInput
299
+ ) => any;
300
+ export declare const RestoreClusterFromSnapshotOutputFilterSensitiveLog: (
301
+ obj: RestoreClusterFromSnapshotOutput
302
+ ) => any;
303
+ export declare const TagResourceRequestFilterSensitiveLog: (
304
+ obj: TagResourceRequest
305
+ ) => any;
306
+ export declare const TagResourceResponseFilterSensitiveLog: (
307
+ obj: TagResourceResponse
308
+ ) => any;
309
+ export declare const UntagResourceRequestFilterSensitiveLog: (
310
+ obj: UntagResourceRequest
311
+ ) => any;
312
+ export declare const UntagResourceResponseFilterSensitiveLog: (
313
+ obj: UntagResourceResponse
314
+ ) => any;
315
+ export declare const UpdateClusterInputFilterSensitiveLog: (
316
+ obj: UpdateClusterInput
317
+ ) => any;
318
+ export declare const UpdateClusterOutputFilterSensitiveLog: (
319
+ obj: UpdateClusterOutput
320
+ ) => any;
@@ -0,0 +1,7 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { DocDBElastic } from "../DocDBElastic";
3
+ import { DocDBElasticClient } from "../DocDBElasticClient";
4
+ export interface DocDBElasticPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: DocDBElastic | DocDBElasticClient;
7
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListClusterSnapshotsCommandInput,
4
+ ListClusterSnapshotsCommandOutput,
5
+ } from "../commands/ListClusterSnapshotsCommand";
6
+ import { DocDBElasticPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListClusterSnapshots(
8
+ config: DocDBElasticPaginationConfiguration,
9
+ input: ListClusterSnapshotsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListClusterSnapshotsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListClustersCommandInput,
4
+ ListClustersCommandOutput,
5
+ } from "../commands/ListClustersCommand";
6
+ import { DocDBElasticPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListClusters(
8
+ config: DocDBElasticPaginationConfiguration,
9
+ input: ListClustersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListClustersCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListClusterSnapshotsPaginator";
3
+ export * from "./ListClustersPaginator";
@@ -0,0 +1,161 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateClusterCommandInput,
8
+ CreateClusterCommandOutput,
9
+ } from "../commands/CreateClusterCommand";
10
+ import {
11
+ CreateClusterSnapshotCommandInput,
12
+ CreateClusterSnapshotCommandOutput,
13
+ } from "../commands/CreateClusterSnapshotCommand";
14
+ import {
15
+ DeleteClusterCommandInput,
16
+ DeleteClusterCommandOutput,
17
+ } from "../commands/DeleteClusterCommand";
18
+ import {
19
+ DeleteClusterSnapshotCommandInput,
20
+ DeleteClusterSnapshotCommandOutput,
21
+ } from "../commands/DeleteClusterSnapshotCommand";
22
+ import {
23
+ GetClusterCommandInput,
24
+ GetClusterCommandOutput,
25
+ } from "../commands/GetClusterCommand";
26
+ import {
27
+ GetClusterSnapshotCommandInput,
28
+ GetClusterSnapshotCommandOutput,
29
+ } from "../commands/GetClusterSnapshotCommand";
30
+ import {
31
+ ListClustersCommandInput,
32
+ ListClustersCommandOutput,
33
+ } from "../commands/ListClustersCommand";
34
+ import {
35
+ ListClusterSnapshotsCommandInput,
36
+ ListClusterSnapshotsCommandOutput,
37
+ } from "../commands/ListClusterSnapshotsCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "../commands/ListTagsForResourceCommand";
42
+ import {
43
+ RestoreClusterFromSnapshotCommandInput,
44
+ RestoreClusterFromSnapshotCommandOutput,
45
+ } from "../commands/RestoreClusterFromSnapshotCommand";
46
+ import {
47
+ TagResourceCommandInput,
48
+ TagResourceCommandOutput,
49
+ } from "../commands/TagResourceCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "../commands/UntagResourceCommand";
54
+ import {
55
+ UpdateClusterCommandInput,
56
+ UpdateClusterCommandOutput,
57
+ } from "../commands/UpdateClusterCommand";
58
+ export declare const serializeAws_restJson1CreateClusterCommand: (
59
+ input: CreateClusterCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_restJson1CreateClusterSnapshotCommand: (
63
+ input: CreateClusterSnapshotCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1DeleteClusterCommand: (
67
+ input: DeleteClusterCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1DeleteClusterSnapshotCommand: (
71
+ input: DeleteClusterSnapshotCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1GetClusterCommand: (
75
+ input: GetClusterCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1GetClusterSnapshotCommand: (
79
+ input: GetClusterSnapshotCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1ListClustersCommand: (
83
+ input: ListClustersCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1ListClusterSnapshotsCommand: (
87
+ input: ListClusterSnapshotsCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
91
+ input: ListTagsForResourceCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1RestoreClusterFromSnapshotCommand: (
95
+ input: RestoreClusterFromSnapshotCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1TagResourceCommand: (
99
+ input: TagResourceCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1UntagResourceCommand: (
103
+ input: UntagResourceCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1UpdateClusterCommand: (
107
+ input: UpdateClusterCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const deserializeAws_restJson1CreateClusterCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<CreateClusterCommandOutput>;
114
+ export declare const deserializeAws_restJson1CreateClusterSnapshotCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<CreateClusterSnapshotCommandOutput>;
118
+ export declare const deserializeAws_restJson1DeleteClusterCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<DeleteClusterCommandOutput>;
122
+ export declare const deserializeAws_restJson1DeleteClusterSnapshotCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<DeleteClusterSnapshotCommandOutput>;
126
+ export declare const deserializeAws_restJson1GetClusterCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<GetClusterCommandOutput>;
130
+ export declare const deserializeAws_restJson1GetClusterSnapshotCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<GetClusterSnapshotCommandOutput>;
134
+ export declare const deserializeAws_restJson1ListClustersCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<ListClustersCommandOutput>;
138
+ export declare const deserializeAws_restJson1ListClusterSnapshotsCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<ListClusterSnapshotsCommandOutput>;
142
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<ListTagsForResourceCommandOutput>;
146
+ export declare const deserializeAws_restJson1RestoreClusterFromSnapshotCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<RestoreClusterFromSnapshotCommandOutput>;
150
+ export declare const deserializeAws_restJson1TagResourceCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<TagResourceCommandOutput>;
154
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<UntagResourceCommandOutput>;
158
+ export declare const deserializeAws_restJson1UpdateClusterCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<UpdateClusterCommandOutput>;
@@ -0,0 +1,88 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { DocDBElasticClientConfig } from "./DocDBElasticClient";
3
+ export declare const getRuntimeConfig: (config: DocDBElasticClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
13
+ import("@aws-sdk/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
16
+ region: string | import("@aws-sdk/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@aws-sdk/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@aws-sdk/types").HttpHandlerOptions
22
+ > &
23
+ import("@aws-sdk/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ sha256: import("@aws-sdk/types").HashConstructor;
27
+ streamCollector: import("@aws-sdk/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
+ utf8Decoder: import("@aws-sdk/types").Decoder;
31
+ utf8Encoder: import("@aws-sdk/types").Encoder;
32
+ apiVersion: string;
33
+ urlParser: import("@aws-sdk/types").UrlParser;
34
+ base64Decoder: import("@aws-sdk/types").Decoder;
35
+ base64Encoder: import("@aws-sdk/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ endpoint?:
40
+ | ((
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | import("@aws-sdk/types").EndpointV2
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
46
+ ) &
47
+ (
48
+ | string
49
+ | import("@aws-sdk/types").Provider<string>
50
+ | import("@aws-sdk/types").Endpoint
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
52
+ | import("@aws-sdk/types").EndpointV2
53
+ | import("@aws-sdk/types").Provider<
54
+ import("@aws-sdk/types").EndpointV2
55
+ >
56
+ ))
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@aws-sdk/types").Logger | undefined;
62
+ }
63
+ ) => import("@aws-sdk/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
66
+ credentials?:
67
+ | import("@aws-sdk/types").AwsCredentialIdentity
68
+ | import("@aws-sdk/types").Provider<
69
+ import("@aws-sdk/types").AwsCredentialIdentity
70
+ >
71
+ | undefined;
72
+ signer?:
73
+ | import("@aws-sdk/types").RequestSigner
74
+ | ((
75
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
76
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
77
+ | undefined;
78
+ signingEscapePath?: boolean | undefined;
79
+ systemClockOffset?: number | undefined;
80
+ signingRegion?: string | undefined;
81
+ signerConstructor?:
82
+ | (new (
83
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
84
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
85
+ ) => import("@aws-sdk/types").RequestSigner)
86
+ | undefined;
87
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
88
+ };