@aws-sdk/client-appconfigdata 3.721.0 → 3.726.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 +74 -36
- package/dist-es/AppConfigDataClient.js +1 -0
- package/dist-es/models/models_0.js +16 -8
- 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 +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -135,7 +135,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
135
135
|
}, "resolveRuntimeExtensions");
|
|
136
136
|
|
|
137
137
|
// src/AppConfigDataClient.ts
|
|
138
|
-
var
|
|
138
|
+
var AppConfigDataClient = class extends import_smithy_client.Client {
|
|
139
|
+
static {
|
|
140
|
+
__name(this, "AppConfigDataClient");
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* The resolved configuration of AppConfigDataClient class. This is resolved and normalized from the {@link AppConfigDataClientConfig | constructor configuration interface}.
|
|
144
|
+
*/
|
|
145
|
+
config;
|
|
139
146
|
constructor(...[configuration]) {
|
|
140
147
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
141
148
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -145,7 +152,7 @@ var _AppConfigDataClient = class _AppConfigDataClient extends import_smithy_clie
|
|
|
145
152
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
146
153
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
147
154
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
148
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
155
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
149
156
|
super(_config_8);
|
|
150
157
|
this.config = _config_8;
|
|
151
158
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -173,8 +180,6 @@ var _AppConfigDataClient = class _AppConfigDataClient extends import_smithy_clie
|
|
|
173
180
|
super.destroy();
|
|
174
181
|
}
|
|
175
182
|
};
|
|
176
|
-
__name(_AppConfigDataClient, "AppConfigDataClient");
|
|
177
|
-
var AppConfigDataClient = _AppConfigDataClient;
|
|
178
183
|
|
|
179
184
|
// src/AppConfigData.ts
|
|
180
185
|
|
|
@@ -189,7 +194,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
189
194
|
|
|
190
195
|
// src/models/AppConfigDataServiceException.ts
|
|
191
196
|
|
|
192
|
-
var
|
|
197
|
+
var AppConfigDataServiceException = class _AppConfigDataServiceException extends import_smithy_client.ServiceException {
|
|
198
|
+
static {
|
|
199
|
+
__name(this, "AppConfigDataServiceException");
|
|
200
|
+
}
|
|
193
201
|
/**
|
|
194
202
|
* @internal
|
|
195
203
|
*/
|
|
@@ -198,8 +206,6 @@ var _AppConfigDataServiceException = class _AppConfigDataServiceException extend
|
|
|
198
206
|
Object.setPrototypeOf(this, _AppConfigDataServiceException.prototype);
|
|
199
207
|
}
|
|
200
208
|
};
|
|
201
|
-
__name(_AppConfigDataServiceException, "AppConfigDataServiceException");
|
|
202
|
-
var AppConfigDataServiceException = _AppConfigDataServiceException;
|
|
203
209
|
|
|
204
210
|
// src/models/models_0.ts
|
|
205
211
|
var InvalidParameterProblem = {
|
|
@@ -231,7 +237,23 @@ var BadRequestReason = {
|
|
|
231
237
|
*/
|
|
232
238
|
INVALID_PARAMETERS: "InvalidParameters"
|
|
233
239
|
};
|
|
234
|
-
var
|
|
240
|
+
var BadRequestException = class _BadRequestException extends AppConfigDataServiceException {
|
|
241
|
+
static {
|
|
242
|
+
__name(this, "BadRequestException");
|
|
243
|
+
}
|
|
244
|
+
name = "BadRequestException";
|
|
245
|
+
$fault = "client";
|
|
246
|
+
Message;
|
|
247
|
+
/**
|
|
248
|
+
* <p>Code indicating the reason the request was invalid.</p>
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
251
|
+
Reason;
|
|
252
|
+
/**
|
|
253
|
+
* <p>Details describing why the request was invalid.</p>
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
Details;
|
|
235
257
|
/**
|
|
236
258
|
* @internal
|
|
237
259
|
*/
|
|
@@ -241,17 +263,19 @@ var _BadRequestException = class _BadRequestException extends AppConfigDataServi
|
|
|
241
263
|
$fault: "client",
|
|
242
264
|
...opts
|
|
243
265
|
});
|
|
244
|
-
this.name = "BadRequestException";
|
|
245
|
-
this.$fault = "client";
|
|
246
266
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
247
267
|
this.Message = opts.Message;
|
|
248
268
|
this.Reason = opts.Reason;
|
|
249
269
|
this.Details = opts.Details;
|
|
250
270
|
}
|
|
251
271
|
};
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
272
|
+
var InternalServerException = class _InternalServerException extends AppConfigDataServiceException {
|
|
273
|
+
static {
|
|
274
|
+
__name(this, "InternalServerException");
|
|
275
|
+
}
|
|
276
|
+
name = "InternalServerException";
|
|
277
|
+
$fault = "server";
|
|
278
|
+
Message;
|
|
255
279
|
/**
|
|
256
280
|
* @internal
|
|
257
281
|
*/
|
|
@@ -261,14 +285,10 @@ var _InternalServerException = class _InternalServerException extends AppConfigD
|
|
|
261
285
|
$fault: "server",
|
|
262
286
|
...opts
|
|
263
287
|
});
|
|
264
|
-
this.name = "InternalServerException";
|
|
265
|
-
this.$fault = "server";
|
|
266
288
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
267
289
|
this.Message = opts.Message;
|
|
268
290
|
}
|
|
269
291
|
};
|
|
270
|
-
__name(_InternalServerException, "InternalServerException");
|
|
271
|
-
var InternalServerException = _InternalServerException;
|
|
272
292
|
var ResourceType = {
|
|
273
293
|
/**
|
|
274
294
|
* Resource type value for the Application resource.
|
|
@@ -291,7 +311,24 @@ var ResourceType = {
|
|
|
291
311
|
*/
|
|
292
312
|
ENVIRONMENT: "Environment"
|
|
293
313
|
};
|
|
294
|
-
var
|
|
314
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AppConfigDataServiceException {
|
|
315
|
+
static {
|
|
316
|
+
__name(this, "ResourceNotFoundException");
|
|
317
|
+
}
|
|
318
|
+
name = "ResourceNotFoundException";
|
|
319
|
+
$fault = "client";
|
|
320
|
+
Message;
|
|
321
|
+
/**
|
|
322
|
+
* <p>The type of resource that was not found.</p>
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
325
|
+
ResourceType;
|
|
326
|
+
/**
|
|
327
|
+
* <p>A map indicating which parameters in the request reference the resource that was not
|
|
328
|
+
* found.</p>
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
ReferencedBy;
|
|
295
332
|
/**
|
|
296
333
|
* @internal
|
|
297
334
|
*/
|
|
@@ -301,17 +338,19 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AppCon
|
|
|
301
338
|
$fault: "client",
|
|
302
339
|
...opts
|
|
303
340
|
});
|
|
304
|
-
this.name = "ResourceNotFoundException";
|
|
305
|
-
this.$fault = "client";
|
|
306
341
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
307
342
|
this.Message = opts.Message;
|
|
308
343
|
this.ResourceType = opts.ResourceType;
|
|
309
344
|
this.ReferencedBy = opts.ReferencedBy;
|
|
310
345
|
}
|
|
311
346
|
};
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
347
|
+
var ThrottlingException = class _ThrottlingException extends AppConfigDataServiceException {
|
|
348
|
+
static {
|
|
349
|
+
__name(this, "ThrottlingException");
|
|
350
|
+
}
|
|
351
|
+
name = "ThrottlingException";
|
|
352
|
+
$fault = "client";
|
|
353
|
+
Message;
|
|
315
354
|
/**
|
|
316
355
|
* @internal
|
|
317
356
|
*/
|
|
@@ -321,14 +360,10 @@ var _ThrottlingException = class _ThrottlingException extends AppConfigDataServi
|
|
|
321
360
|
$fault: "client",
|
|
322
361
|
...opts
|
|
323
362
|
});
|
|
324
|
-
this.name = "ThrottlingException";
|
|
325
|
-
this.$fault = "client";
|
|
326
363
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
327
364
|
this.Message = opts.Message;
|
|
328
365
|
}
|
|
329
366
|
};
|
|
330
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
331
|
-
var ThrottlingException = _ThrottlingException;
|
|
332
367
|
var GetLatestConfigurationResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
333
368
|
...obj,
|
|
334
369
|
...obj.Configuration && { Configuration: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -499,39 +534,42 @@ var _npiis = "next-poll-interval-in-seconds";
|
|
|
499
534
|
var _vl = "version-label";
|
|
500
535
|
|
|
501
536
|
// src/commands/GetLatestConfigurationCommand.ts
|
|
502
|
-
var
|
|
537
|
+
var GetLatestConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
503
538
|
return [
|
|
504
539
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
505
540
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
506
541
|
];
|
|
507
542
|
}).s("AppConfigData", "GetLatestConfiguration", {}).n("AppConfigDataClient", "GetLatestConfigurationCommand").f(void 0, GetLatestConfigurationResponseFilterSensitiveLog).ser(se_GetLatestConfigurationCommand).de(de_GetLatestConfigurationCommand).build() {
|
|
543
|
+
static {
|
|
544
|
+
__name(this, "GetLatestConfigurationCommand");
|
|
545
|
+
}
|
|
508
546
|
};
|
|
509
|
-
__name(_GetLatestConfigurationCommand, "GetLatestConfigurationCommand");
|
|
510
|
-
var GetLatestConfigurationCommand = _GetLatestConfigurationCommand;
|
|
511
547
|
|
|
512
548
|
// src/commands/StartConfigurationSessionCommand.ts
|
|
513
549
|
|
|
514
550
|
|
|
515
551
|
|
|
516
|
-
var
|
|
552
|
+
var StartConfigurationSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
517
553
|
return [
|
|
518
554
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
519
555
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
520
556
|
];
|
|
521
557
|
}).s("AppConfigData", "StartConfigurationSession", {}).n("AppConfigDataClient", "StartConfigurationSessionCommand").f(void 0, void 0).ser(se_StartConfigurationSessionCommand).de(de_StartConfigurationSessionCommand).build() {
|
|
558
|
+
static {
|
|
559
|
+
__name(this, "StartConfigurationSessionCommand");
|
|
560
|
+
}
|
|
522
561
|
};
|
|
523
|
-
__name(_StartConfigurationSessionCommand, "StartConfigurationSessionCommand");
|
|
524
|
-
var StartConfigurationSessionCommand = _StartConfigurationSessionCommand;
|
|
525
562
|
|
|
526
563
|
// src/AppConfigData.ts
|
|
527
564
|
var commands = {
|
|
528
565
|
GetLatestConfigurationCommand,
|
|
529
566
|
StartConfigurationSessionCommand
|
|
530
567
|
};
|
|
531
|
-
var
|
|
568
|
+
var AppConfigData = class extends AppConfigDataClient {
|
|
569
|
+
static {
|
|
570
|
+
__name(this, "AppConfigData");
|
|
571
|
+
}
|
|
532
572
|
};
|
|
533
|
-
__name(_AppConfigData, "AppConfigData");
|
|
534
|
-
var AppConfigData = _AppConfigData;
|
|
535
573
|
(0, import_smithy_client.createAggregatedClient)(commands, AppConfigData);
|
|
536
574
|
// Annotate the CommonJS export names for ESM import in node:
|
|
537
575
|
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class AppConfigDataClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -17,14 +17,17 @@ export const BadRequestReason = {
|
|
|
17
17
|
INVALID_PARAMETERS: "InvalidParameters",
|
|
18
18
|
};
|
|
19
19
|
export class BadRequestException extends __BaseException {
|
|
20
|
+
name = "BadRequestException";
|
|
21
|
+
$fault = "client";
|
|
22
|
+
Message;
|
|
23
|
+
Reason;
|
|
24
|
+
Details;
|
|
20
25
|
constructor(opts) {
|
|
21
26
|
super({
|
|
22
27
|
name: "BadRequestException",
|
|
23
28
|
$fault: "client",
|
|
24
29
|
...opts,
|
|
25
30
|
});
|
|
26
|
-
this.name = "BadRequestException";
|
|
27
|
-
this.$fault = "client";
|
|
28
31
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
29
32
|
this.Message = opts.Message;
|
|
30
33
|
this.Reason = opts.Reason;
|
|
@@ -32,14 +35,15 @@ export class BadRequestException extends __BaseException {
|
|
|
32
35
|
}
|
|
33
36
|
}
|
|
34
37
|
export class InternalServerException extends __BaseException {
|
|
38
|
+
name = "InternalServerException";
|
|
39
|
+
$fault = "server";
|
|
40
|
+
Message;
|
|
35
41
|
constructor(opts) {
|
|
36
42
|
super({
|
|
37
43
|
name: "InternalServerException",
|
|
38
44
|
$fault: "server",
|
|
39
45
|
...opts,
|
|
40
46
|
});
|
|
41
|
-
this.name = "InternalServerException";
|
|
42
|
-
this.$fault = "server";
|
|
43
47
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
44
48
|
this.Message = opts.Message;
|
|
45
49
|
}
|
|
@@ -52,14 +56,17 @@ export const ResourceType = {
|
|
|
52
56
|
ENVIRONMENT: "Environment",
|
|
53
57
|
};
|
|
54
58
|
export class ResourceNotFoundException extends __BaseException {
|
|
59
|
+
name = "ResourceNotFoundException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
Message;
|
|
62
|
+
ResourceType;
|
|
63
|
+
ReferencedBy;
|
|
55
64
|
constructor(opts) {
|
|
56
65
|
super({
|
|
57
66
|
name: "ResourceNotFoundException",
|
|
58
67
|
$fault: "client",
|
|
59
68
|
...opts,
|
|
60
69
|
});
|
|
61
|
-
this.name = "ResourceNotFoundException";
|
|
62
|
-
this.$fault = "client";
|
|
63
70
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
64
71
|
this.Message = opts.Message;
|
|
65
72
|
this.ResourceType = opts.ResourceType;
|
|
@@ -67,14 +74,15 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
67
74
|
}
|
|
68
75
|
}
|
|
69
76
|
export class ThrottlingException extends __BaseException {
|
|
77
|
+
name = "ThrottlingException";
|
|
78
|
+
$fault = "client";
|
|
79
|
+
Message;
|
|
70
80
|
constructor(opts) {
|
|
71
81
|
super({
|
|
72
82
|
name: "ThrottlingException",
|
|
73
83
|
$fault: "client",
|
|
74
84
|
...opts,
|
|
75
85
|
});
|
|
76
|
-
this.name = "ThrottlingException";
|
|
77
|
-
this.$fault = "client";
|
|
78
86
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
79
87
|
this.Message = opts.Message;
|
|
80
88
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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: AppConfigDataClientConfig) => {
|
|
|
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-appconfigdata",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.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-appconfigdata",
|
|
@@ -20,57 +20,57 @@
|
|
|
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-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.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.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.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-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@tsconfig/
|
|
66
|
-
"@types/node": "^
|
|
65
|
+
"@tsconfig/node18": "18.2.4",
|
|
66
|
+
"@types/node": "^18.19.69",
|
|
67
67
|
"concurrently": "7.0.0",
|
|
68
68
|
"downlevel-dts": "0.10.1",
|
|
69
69
|
"rimraf": "3.0.2",
|
|
70
|
-
"typescript": "~
|
|
70
|
+
"typescript": "~5.2.2"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"typesVersions": {
|
|
76
76
|
"<4.0": {
|