@aws-sdk/client-dax 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +263 -208
- package/dist-es/DAXClient.js +1 -0
- package/dist-es/models/models_0.js +54 -54
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-es/DAXClient.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class DAXClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { DAXServiceException as __BaseException } from "./DAXServiceException";
|
|
2
2
|
export class ClusterAlreadyExistsFault extends __BaseException {
|
|
3
|
+
name = "ClusterAlreadyExistsFault";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "ClusterAlreadyExistsFault",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "ClusterAlreadyExistsFault";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, ClusterAlreadyExistsFault.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export class ClusterQuotaForCustomerExceededFault extends __BaseException {
|
|
15
|
+
name = "ClusterQuotaForCustomerExceededFault";
|
|
16
|
+
$fault = "client";
|
|
15
17
|
constructor(opts) {
|
|
16
18
|
super({
|
|
17
19
|
name: "ClusterQuotaForCustomerExceededFault",
|
|
18
20
|
$fault: "client",
|
|
19
21
|
...opts,
|
|
20
22
|
});
|
|
21
|
-
this.name = "ClusterQuotaForCustomerExceededFault";
|
|
22
|
-
this.$fault = "client";
|
|
23
23
|
Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -34,266 +34,266 @@ export const SSEStatus = {
|
|
|
34
34
|
ENABLING: "ENABLING",
|
|
35
35
|
};
|
|
36
36
|
export class InsufficientClusterCapacityFault extends __BaseException {
|
|
37
|
+
name = "InsufficientClusterCapacityFault";
|
|
38
|
+
$fault = "client";
|
|
37
39
|
constructor(opts) {
|
|
38
40
|
super({
|
|
39
41
|
name: "InsufficientClusterCapacityFault",
|
|
40
42
|
$fault: "client",
|
|
41
43
|
...opts,
|
|
42
44
|
});
|
|
43
|
-
this.name = "InsufficientClusterCapacityFault";
|
|
44
|
-
this.$fault = "client";
|
|
45
45
|
Object.setPrototypeOf(this, InsufficientClusterCapacityFault.prototype);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
export class InvalidClusterStateFault extends __BaseException {
|
|
49
|
+
name = "InvalidClusterStateFault";
|
|
50
|
+
$fault = "client";
|
|
49
51
|
constructor(opts) {
|
|
50
52
|
super({
|
|
51
53
|
name: "InvalidClusterStateFault",
|
|
52
54
|
$fault: "client",
|
|
53
55
|
...opts,
|
|
54
56
|
});
|
|
55
|
-
this.name = "InvalidClusterStateFault";
|
|
56
|
-
this.$fault = "client";
|
|
57
57
|
Object.setPrototypeOf(this, InvalidClusterStateFault.prototype);
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
export class InvalidParameterCombinationException extends __BaseException {
|
|
61
|
+
name = "InvalidParameterCombinationException";
|
|
62
|
+
$fault = "client";
|
|
61
63
|
constructor(opts) {
|
|
62
64
|
super({
|
|
63
65
|
name: "InvalidParameterCombinationException",
|
|
64
66
|
$fault: "client",
|
|
65
67
|
...opts,
|
|
66
68
|
});
|
|
67
|
-
this.name = "InvalidParameterCombinationException";
|
|
68
|
-
this.$fault = "client";
|
|
69
69
|
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
export class InvalidParameterGroupStateFault extends __BaseException {
|
|
73
|
+
name = "InvalidParameterGroupStateFault";
|
|
74
|
+
$fault = "client";
|
|
73
75
|
constructor(opts) {
|
|
74
76
|
super({
|
|
75
77
|
name: "InvalidParameterGroupStateFault",
|
|
76
78
|
$fault: "client",
|
|
77
79
|
...opts,
|
|
78
80
|
});
|
|
79
|
-
this.name = "InvalidParameterGroupStateFault";
|
|
80
|
-
this.$fault = "client";
|
|
81
81
|
Object.setPrototypeOf(this, InvalidParameterGroupStateFault.prototype);
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
export class InvalidParameterValueException extends __BaseException {
|
|
85
|
+
name = "InvalidParameterValueException";
|
|
86
|
+
$fault = "client";
|
|
85
87
|
constructor(opts) {
|
|
86
88
|
super({
|
|
87
89
|
name: "InvalidParameterValueException",
|
|
88
90
|
$fault: "client",
|
|
89
91
|
...opts,
|
|
90
92
|
});
|
|
91
|
-
this.name = "InvalidParameterValueException";
|
|
92
|
-
this.$fault = "client";
|
|
93
93
|
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
export class InvalidVPCNetworkStateFault extends __BaseException {
|
|
97
|
+
name = "InvalidVPCNetworkStateFault";
|
|
98
|
+
$fault = "client";
|
|
97
99
|
constructor(opts) {
|
|
98
100
|
super({
|
|
99
101
|
name: "InvalidVPCNetworkStateFault",
|
|
100
102
|
$fault: "client",
|
|
101
103
|
...opts,
|
|
102
104
|
});
|
|
103
|
-
this.name = "InvalidVPCNetworkStateFault";
|
|
104
|
-
this.$fault = "client";
|
|
105
105
|
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
export class NodeQuotaForClusterExceededFault extends __BaseException {
|
|
109
|
+
name = "NodeQuotaForClusterExceededFault";
|
|
110
|
+
$fault = "client";
|
|
109
111
|
constructor(opts) {
|
|
110
112
|
super({
|
|
111
113
|
name: "NodeQuotaForClusterExceededFault",
|
|
112
114
|
$fault: "client",
|
|
113
115
|
...opts,
|
|
114
116
|
});
|
|
115
|
-
this.name = "NodeQuotaForClusterExceededFault";
|
|
116
|
-
this.$fault = "client";
|
|
117
117
|
Object.setPrototypeOf(this, NodeQuotaForClusterExceededFault.prototype);
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
export class NodeQuotaForCustomerExceededFault extends __BaseException {
|
|
121
|
+
name = "NodeQuotaForCustomerExceededFault";
|
|
122
|
+
$fault = "client";
|
|
121
123
|
constructor(opts) {
|
|
122
124
|
super({
|
|
123
125
|
name: "NodeQuotaForCustomerExceededFault",
|
|
124
126
|
$fault: "client",
|
|
125
127
|
...opts,
|
|
126
128
|
});
|
|
127
|
-
this.name = "NodeQuotaForCustomerExceededFault";
|
|
128
|
-
this.$fault = "client";
|
|
129
129
|
Object.setPrototypeOf(this, NodeQuotaForCustomerExceededFault.prototype);
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
export class ParameterGroupNotFoundFault extends __BaseException {
|
|
133
|
+
name = "ParameterGroupNotFoundFault";
|
|
134
|
+
$fault = "client";
|
|
133
135
|
constructor(opts) {
|
|
134
136
|
super({
|
|
135
137
|
name: "ParameterGroupNotFoundFault",
|
|
136
138
|
$fault: "client",
|
|
137
139
|
...opts,
|
|
138
140
|
});
|
|
139
|
-
this.name = "ParameterGroupNotFoundFault";
|
|
140
|
-
this.$fault = "client";
|
|
141
141
|
Object.setPrototypeOf(this, ParameterGroupNotFoundFault.prototype);
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
144
|
export class ServiceLinkedRoleNotFoundFault extends __BaseException {
|
|
145
|
+
name = "ServiceLinkedRoleNotFoundFault";
|
|
146
|
+
$fault = "client";
|
|
145
147
|
constructor(opts) {
|
|
146
148
|
super({
|
|
147
149
|
name: "ServiceLinkedRoleNotFoundFault",
|
|
148
150
|
$fault: "client",
|
|
149
151
|
...opts,
|
|
150
152
|
});
|
|
151
|
-
this.name = "ServiceLinkedRoleNotFoundFault";
|
|
152
|
-
this.$fault = "client";
|
|
153
153
|
Object.setPrototypeOf(this, ServiceLinkedRoleNotFoundFault.prototype);
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
157
|
+
name = "ServiceQuotaExceededException";
|
|
158
|
+
$fault = "client";
|
|
157
159
|
constructor(opts) {
|
|
158
160
|
super({
|
|
159
161
|
name: "ServiceQuotaExceededException",
|
|
160
162
|
$fault: "client",
|
|
161
163
|
...opts,
|
|
162
164
|
});
|
|
163
|
-
this.name = "ServiceQuotaExceededException";
|
|
164
|
-
this.$fault = "client";
|
|
165
165
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
export class SubnetGroupNotFoundFault extends __BaseException {
|
|
169
|
+
name = "SubnetGroupNotFoundFault";
|
|
170
|
+
$fault = "client";
|
|
169
171
|
constructor(opts) {
|
|
170
172
|
super({
|
|
171
173
|
name: "SubnetGroupNotFoundFault",
|
|
172
174
|
$fault: "client",
|
|
173
175
|
...opts,
|
|
174
176
|
});
|
|
175
|
-
this.name = "SubnetGroupNotFoundFault";
|
|
176
|
-
this.$fault = "client";
|
|
177
177
|
Object.setPrototypeOf(this, SubnetGroupNotFoundFault.prototype);
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
export class TagQuotaPerResourceExceeded extends __BaseException {
|
|
181
|
+
name = "TagQuotaPerResourceExceeded";
|
|
182
|
+
$fault = "client";
|
|
181
183
|
constructor(opts) {
|
|
182
184
|
super({
|
|
183
185
|
name: "TagQuotaPerResourceExceeded",
|
|
184
186
|
$fault: "client",
|
|
185
187
|
...opts,
|
|
186
188
|
});
|
|
187
|
-
this.name = "TagQuotaPerResourceExceeded";
|
|
188
|
-
this.$fault = "client";
|
|
189
189
|
Object.setPrototypeOf(this, TagQuotaPerResourceExceeded.prototype);
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
export class ParameterGroupAlreadyExistsFault extends __BaseException {
|
|
193
|
+
name = "ParameterGroupAlreadyExistsFault";
|
|
194
|
+
$fault = "client";
|
|
193
195
|
constructor(opts) {
|
|
194
196
|
super({
|
|
195
197
|
name: "ParameterGroupAlreadyExistsFault",
|
|
196
198
|
$fault: "client",
|
|
197
199
|
...opts,
|
|
198
200
|
});
|
|
199
|
-
this.name = "ParameterGroupAlreadyExistsFault";
|
|
200
|
-
this.$fault = "client";
|
|
201
201
|
Object.setPrototypeOf(this, ParameterGroupAlreadyExistsFault.prototype);
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
export class ParameterGroupQuotaExceededFault extends __BaseException {
|
|
205
|
+
name = "ParameterGroupQuotaExceededFault";
|
|
206
|
+
$fault = "client";
|
|
205
207
|
constructor(opts) {
|
|
206
208
|
super({
|
|
207
209
|
name: "ParameterGroupQuotaExceededFault",
|
|
208
210
|
$fault: "client",
|
|
209
211
|
...opts,
|
|
210
212
|
});
|
|
211
|
-
this.name = "ParameterGroupQuotaExceededFault";
|
|
212
|
-
this.$fault = "client";
|
|
213
213
|
Object.setPrototypeOf(this, ParameterGroupQuotaExceededFault.prototype);
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
export class InvalidSubnet extends __BaseException {
|
|
217
|
+
name = "InvalidSubnet";
|
|
218
|
+
$fault = "client";
|
|
217
219
|
constructor(opts) {
|
|
218
220
|
super({
|
|
219
221
|
name: "InvalidSubnet",
|
|
220
222
|
$fault: "client",
|
|
221
223
|
...opts,
|
|
222
224
|
});
|
|
223
|
-
this.name = "InvalidSubnet";
|
|
224
|
-
this.$fault = "client";
|
|
225
225
|
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
export class SubnetGroupAlreadyExistsFault extends __BaseException {
|
|
229
|
+
name = "SubnetGroupAlreadyExistsFault";
|
|
230
|
+
$fault = "client";
|
|
229
231
|
constructor(opts) {
|
|
230
232
|
super({
|
|
231
233
|
name: "SubnetGroupAlreadyExistsFault",
|
|
232
234
|
$fault: "client",
|
|
233
235
|
...opts,
|
|
234
236
|
});
|
|
235
|
-
this.name = "SubnetGroupAlreadyExistsFault";
|
|
236
|
-
this.$fault = "client";
|
|
237
237
|
Object.setPrototypeOf(this, SubnetGroupAlreadyExistsFault.prototype);
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
240
|
export class SubnetGroupQuotaExceededFault extends __BaseException {
|
|
241
|
+
name = "SubnetGroupQuotaExceededFault";
|
|
242
|
+
$fault = "client";
|
|
241
243
|
constructor(opts) {
|
|
242
244
|
super({
|
|
243
245
|
name: "SubnetGroupQuotaExceededFault",
|
|
244
246
|
$fault: "client",
|
|
245
247
|
...opts,
|
|
246
248
|
});
|
|
247
|
-
this.name = "SubnetGroupQuotaExceededFault";
|
|
248
|
-
this.$fault = "client";
|
|
249
249
|
Object.setPrototypeOf(this, SubnetGroupQuotaExceededFault.prototype);
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
252
|
export class SubnetQuotaExceededFault extends __BaseException {
|
|
253
|
+
name = "SubnetQuotaExceededFault";
|
|
254
|
+
$fault = "client";
|
|
253
255
|
constructor(opts) {
|
|
254
256
|
super({
|
|
255
257
|
name: "SubnetQuotaExceededFault",
|
|
256
258
|
$fault: "client",
|
|
257
259
|
...opts,
|
|
258
260
|
});
|
|
259
|
-
this.name = "SubnetQuotaExceededFault";
|
|
260
|
-
this.$fault = "client";
|
|
261
261
|
Object.setPrototypeOf(this, SubnetQuotaExceededFault.prototype);
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
264
|
export class ClusterNotFoundFault extends __BaseException {
|
|
265
|
+
name = "ClusterNotFoundFault";
|
|
266
|
+
$fault = "client";
|
|
265
267
|
constructor(opts) {
|
|
266
268
|
super({
|
|
267
269
|
name: "ClusterNotFoundFault",
|
|
268
270
|
$fault: "client",
|
|
269
271
|
...opts,
|
|
270
272
|
});
|
|
271
|
-
this.name = "ClusterNotFoundFault";
|
|
272
|
-
this.$fault = "client";
|
|
273
273
|
Object.setPrototypeOf(this, ClusterNotFoundFault.prototype);
|
|
274
274
|
}
|
|
275
275
|
}
|
|
276
276
|
export class NodeNotFoundFault extends __BaseException {
|
|
277
|
+
name = "NodeNotFoundFault";
|
|
278
|
+
$fault = "client";
|
|
277
279
|
constructor(opts) {
|
|
278
280
|
super({
|
|
279
281
|
name: "NodeNotFoundFault",
|
|
280
282
|
$fault: "client",
|
|
281
283
|
...opts,
|
|
282
284
|
});
|
|
283
|
-
this.name = "NodeNotFoundFault";
|
|
284
|
-
this.$fault = "client";
|
|
285
285
|
Object.setPrototypeOf(this, NodeNotFoundFault.prototype);
|
|
286
286
|
}
|
|
287
287
|
}
|
|
288
288
|
export class SubnetGroupInUseFault extends __BaseException {
|
|
289
|
+
name = "SubnetGroupInUseFault";
|
|
290
|
+
$fault = "client";
|
|
289
291
|
constructor(opts) {
|
|
290
292
|
super({
|
|
291
293
|
name: "SubnetGroupInUseFault",
|
|
292
294
|
$fault: "client",
|
|
293
295
|
...opts,
|
|
294
296
|
});
|
|
295
|
-
this.name = "SubnetGroupInUseFault";
|
|
296
|
-
this.$fault = "client";
|
|
297
297
|
Object.setPrototypeOf(this, SubnetGroupInUseFault.prototype);
|
|
298
298
|
}
|
|
299
299
|
}
|
|
@@ -316,38 +316,38 @@ export const SourceType = {
|
|
|
316
316
|
SUBNET_GROUP: "SUBNET_GROUP",
|
|
317
317
|
};
|
|
318
318
|
export class InvalidARNFault extends __BaseException {
|
|
319
|
+
name = "InvalidARNFault";
|
|
320
|
+
$fault = "client";
|
|
319
321
|
constructor(opts) {
|
|
320
322
|
super({
|
|
321
323
|
name: "InvalidARNFault",
|
|
322
324
|
$fault: "client",
|
|
323
325
|
...opts,
|
|
324
326
|
});
|
|
325
|
-
this.name = "InvalidARNFault";
|
|
326
|
-
this.$fault = "client";
|
|
327
327
|
Object.setPrototypeOf(this, InvalidARNFault.prototype);
|
|
328
328
|
}
|
|
329
329
|
}
|
|
330
330
|
export class TagNotFoundFault extends __BaseException {
|
|
331
|
+
name = "TagNotFoundFault";
|
|
332
|
+
$fault = "client";
|
|
331
333
|
constructor(opts) {
|
|
332
334
|
super({
|
|
333
335
|
name: "TagNotFoundFault",
|
|
334
336
|
$fault: "client",
|
|
335
337
|
...opts,
|
|
336
338
|
});
|
|
337
|
-
this.name = "TagNotFoundFault";
|
|
338
|
-
this.$fault = "client";
|
|
339
339
|
Object.setPrototypeOf(this, TagNotFoundFault.prototype);
|
|
340
340
|
}
|
|
341
341
|
}
|
|
342
342
|
export class SubnetInUse extends __BaseException {
|
|
343
|
+
name = "SubnetInUse";
|
|
344
|
+
$fault = "client";
|
|
343
345
|
constructor(opts) {
|
|
344
346
|
super({
|
|
345
347
|
name: "SubnetInUse",
|
|
346
348
|
$fault: "client",
|
|
347
349
|
...opts,
|
|
348
350
|
});
|
|
349
|
-
this.name = "SubnetInUse";
|
|
350
|
-
this.$fault = "client";
|
|
351
351
|
Object.setPrototypeOf(this, SubnetInUse.prototype);
|
|
352
352
|
}
|
|
353
353
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
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
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
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;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
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;
|
|
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>) & (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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: DAXClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-dax",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|