@aws-sdk/client-verifiedpermissions 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +26 -78
- package/dist-es/commands/BatchIsAuthorizedCommand.js +1 -3
- package/dist-es/commands/BatchIsAuthorizedWithTokenCommand.js +1 -3
- package/dist-es/commands/CreateIdentitySourceCommand.js +1 -3
- package/dist-es/commands/CreatePolicyCommand.js +1 -3
- package/dist-es/commands/CreatePolicyStoreCommand.js +1 -3
- package/dist-es/commands/CreatePolicyTemplateCommand.js +1 -3
- package/dist-es/commands/DeleteIdentitySourceCommand.js +1 -3
- package/dist-es/commands/DeletePolicyCommand.js +1 -3
- package/dist-es/commands/DeletePolicyStoreCommand.js +1 -3
- package/dist-es/commands/DeletePolicyTemplateCommand.js +1 -3
- package/dist-es/commands/GetIdentitySourceCommand.js +1 -3
- package/dist-es/commands/GetPolicyCommand.js +1 -3
- package/dist-es/commands/GetPolicyStoreCommand.js +1 -3
- package/dist-es/commands/GetPolicyTemplateCommand.js +1 -3
- package/dist-es/commands/GetSchemaCommand.js +1 -3
- package/dist-es/commands/IsAuthorizedCommand.js +1 -3
- package/dist-es/commands/IsAuthorizedWithTokenCommand.js +1 -3
- package/dist-es/commands/ListIdentitySourcesCommand.js +1 -3
- package/dist-es/commands/ListPoliciesCommand.js +1 -3
- package/dist-es/commands/ListPolicyStoresCommand.js +1 -3
- package/dist-es/commands/ListPolicyTemplatesCommand.js +1 -3
- package/dist-es/commands/PutSchemaCommand.js +1 -3
- package/dist-es/commands/UpdateIdentitySourceCommand.js +1 -3
- package/dist-es/commands/UpdatePolicyCommand.js +1 -3
- package/dist-es/commands/UpdatePolicyStoreCommand.js +1 -3
- package/dist-es/commands/UpdatePolicyTemplateCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2392,9 +2392,7 @@ function sharedHeaders(operation) {
|
|
|
2392
2392
|
__name(sharedHeaders, "sharedHeaders");
|
|
2393
2393
|
|
|
2394
2394
|
// src/commands/BatchIsAuthorizedCommand.ts
|
|
2395
|
-
var _BatchIsAuthorizedCommand = class _BatchIsAuthorizedCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2396
|
-
...commonParams
|
|
2397
|
-
}).m(function(Command, cs, config, o) {
|
|
2395
|
+
var _BatchIsAuthorizedCommand = class _BatchIsAuthorizedCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2398
2396
|
return [
|
|
2399
2397
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2400
2398
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2408,9 +2406,7 @@ var BatchIsAuthorizedCommand = _BatchIsAuthorizedCommand;
|
|
|
2408
2406
|
|
|
2409
2407
|
|
|
2410
2408
|
|
|
2411
|
-
var _BatchIsAuthorizedWithTokenCommand = class _BatchIsAuthorizedWithTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2412
|
-
...commonParams
|
|
2413
|
-
}).m(function(Command, cs, config, o) {
|
|
2409
|
+
var _BatchIsAuthorizedWithTokenCommand = class _BatchIsAuthorizedWithTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2414
2410
|
return [
|
|
2415
2411
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2416
2412
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2424,9 +2420,7 @@ var BatchIsAuthorizedWithTokenCommand = _BatchIsAuthorizedWithTokenCommand;
|
|
|
2424
2420
|
|
|
2425
2421
|
|
|
2426
2422
|
|
|
2427
|
-
var _CreateIdentitySourceCommand = class _CreateIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2428
|
-
...commonParams
|
|
2429
|
-
}).m(function(Command, cs, config, o) {
|
|
2423
|
+
var _CreateIdentitySourceCommand = class _CreateIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2430
2424
|
return [
|
|
2431
2425
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2432
2426
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2440,9 +2434,7 @@ var CreateIdentitySourceCommand = _CreateIdentitySourceCommand;
|
|
|
2440
2434
|
|
|
2441
2435
|
|
|
2442
2436
|
|
|
2443
|
-
var _CreatePolicyCommand = class _CreatePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2444
|
-
...commonParams
|
|
2445
|
-
}).m(function(Command, cs, config, o) {
|
|
2437
|
+
var _CreatePolicyCommand = class _CreatePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2446
2438
|
return [
|
|
2447
2439
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2448
2440
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2456,9 +2448,7 @@ var CreatePolicyCommand = _CreatePolicyCommand;
|
|
|
2456
2448
|
|
|
2457
2449
|
|
|
2458
2450
|
|
|
2459
|
-
var _CreatePolicyStoreCommand = class _CreatePolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2460
|
-
...commonParams
|
|
2461
|
-
}).m(function(Command, cs, config, o) {
|
|
2451
|
+
var _CreatePolicyStoreCommand = class _CreatePolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2462
2452
|
return [
|
|
2463
2453
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2464
2454
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2472,9 +2462,7 @@ var CreatePolicyStoreCommand = _CreatePolicyStoreCommand;
|
|
|
2472
2462
|
|
|
2473
2463
|
|
|
2474
2464
|
|
|
2475
|
-
var _CreatePolicyTemplateCommand = class _CreatePolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2476
|
-
...commonParams
|
|
2477
|
-
}).m(function(Command, cs, config, o) {
|
|
2465
|
+
var _CreatePolicyTemplateCommand = class _CreatePolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2478
2466
|
return [
|
|
2479
2467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2480
2468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2488,9 +2476,7 @@ var CreatePolicyTemplateCommand = _CreatePolicyTemplateCommand;
|
|
|
2488
2476
|
|
|
2489
2477
|
|
|
2490
2478
|
|
|
2491
|
-
var _DeleteIdentitySourceCommand = class _DeleteIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2492
|
-
...commonParams
|
|
2493
|
-
}).m(function(Command, cs, config, o) {
|
|
2479
|
+
var _DeleteIdentitySourceCommand = class _DeleteIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2494
2480
|
return [
|
|
2495
2481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2496
2482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2504,9 +2490,7 @@ var DeleteIdentitySourceCommand = _DeleteIdentitySourceCommand;
|
|
|
2504
2490
|
|
|
2505
2491
|
|
|
2506
2492
|
|
|
2507
|
-
var _DeletePolicyCommand = class _DeletePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2508
|
-
...commonParams
|
|
2509
|
-
}).m(function(Command, cs, config, o) {
|
|
2493
|
+
var _DeletePolicyCommand = class _DeletePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2510
2494
|
return [
|
|
2511
2495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2512
2496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2520,9 +2504,7 @@ var DeletePolicyCommand = _DeletePolicyCommand;
|
|
|
2520
2504
|
|
|
2521
2505
|
|
|
2522
2506
|
|
|
2523
|
-
var _DeletePolicyStoreCommand = class _DeletePolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2524
|
-
...commonParams
|
|
2525
|
-
}).m(function(Command, cs, config, o) {
|
|
2507
|
+
var _DeletePolicyStoreCommand = class _DeletePolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2526
2508
|
return [
|
|
2527
2509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2528
2510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2536,9 +2518,7 @@ var DeletePolicyStoreCommand = _DeletePolicyStoreCommand;
|
|
|
2536
2518
|
|
|
2537
2519
|
|
|
2538
2520
|
|
|
2539
|
-
var _DeletePolicyTemplateCommand = class _DeletePolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2540
|
-
...commonParams
|
|
2541
|
-
}).m(function(Command, cs, config, o) {
|
|
2521
|
+
var _DeletePolicyTemplateCommand = class _DeletePolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2542
2522
|
return [
|
|
2543
2523
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2544
2524
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2552,9 +2532,7 @@ var DeletePolicyTemplateCommand = _DeletePolicyTemplateCommand;
|
|
|
2552
2532
|
|
|
2553
2533
|
|
|
2554
2534
|
|
|
2555
|
-
var _GetIdentitySourceCommand = class _GetIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2556
|
-
...commonParams
|
|
2557
|
-
}).m(function(Command, cs, config, o) {
|
|
2535
|
+
var _GetIdentitySourceCommand = class _GetIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2558
2536
|
return [
|
|
2559
2537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2560
2538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2568,9 +2546,7 @@ var GetIdentitySourceCommand = _GetIdentitySourceCommand;
|
|
|
2568
2546
|
|
|
2569
2547
|
|
|
2570
2548
|
|
|
2571
|
-
var _GetPolicyCommand = class _GetPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2572
|
-
...commonParams
|
|
2573
|
-
}).m(function(Command, cs, config, o) {
|
|
2549
|
+
var _GetPolicyCommand = class _GetPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2574
2550
|
return [
|
|
2575
2551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2576
2552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2584,9 +2560,7 @@ var GetPolicyCommand = _GetPolicyCommand;
|
|
|
2584
2560
|
|
|
2585
2561
|
|
|
2586
2562
|
|
|
2587
|
-
var _GetPolicyStoreCommand = class _GetPolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2588
|
-
...commonParams
|
|
2589
|
-
}).m(function(Command, cs, config, o) {
|
|
2563
|
+
var _GetPolicyStoreCommand = class _GetPolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2590
2564
|
return [
|
|
2591
2565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2592
2566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2600,9 +2574,7 @@ var GetPolicyStoreCommand = _GetPolicyStoreCommand;
|
|
|
2600
2574
|
|
|
2601
2575
|
|
|
2602
2576
|
|
|
2603
|
-
var _GetPolicyTemplateCommand = class _GetPolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2604
|
-
...commonParams
|
|
2605
|
-
}).m(function(Command, cs, config, o) {
|
|
2577
|
+
var _GetPolicyTemplateCommand = class _GetPolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2606
2578
|
return [
|
|
2607
2579
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2608
2580
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2616,9 +2588,7 @@ var GetPolicyTemplateCommand = _GetPolicyTemplateCommand;
|
|
|
2616
2588
|
|
|
2617
2589
|
|
|
2618
2590
|
|
|
2619
|
-
var _GetSchemaCommand = class _GetSchemaCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2620
|
-
...commonParams
|
|
2621
|
-
}).m(function(Command, cs, config, o) {
|
|
2591
|
+
var _GetSchemaCommand = class _GetSchemaCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2622
2592
|
return [
|
|
2623
2593
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2624
2594
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2632,9 +2602,7 @@ var GetSchemaCommand = _GetSchemaCommand;
|
|
|
2632
2602
|
|
|
2633
2603
|
|
|
2634
2604
|
|
|
2635
|
-
var _IsAuthorizedCommand = class _IsAuthorizedCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2636
|
-
...commonParams
|
|
2637
|
-
}).m(function(Command, cs, config, o) {
|
|
2605
|
+
var _IsAuthorizedCommand = class _IsAuthorizedCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2638
2606
|
return [
|
|
2639
2607
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2640
2608
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2648,9 +2616,7 @@ var IsAuthorizedCommand = _IsAuthorizedCommand;
|
|
|
2648
2616
|
|
|
2649
2617
|
|
|
2650
2618
|
|
|
2651
|
-
var _IsAuthorizedWithTokenCommand = class _IsAuthorizedWithTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2652
|
-
...commonParams
|
|
2653
|
-
}).m(function(Command, cs, config, o) {
|
|
2619
|
+
var _IsAuthorizedWithTokenCommand = class _IsAuthorizedWithTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2654
2620
|
return [
|
|
2655
2621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2656
2622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2664,9 +2630,7 @@ var IsAuthorizedWithTokenCommand = _IsAuthorizedWithTokenCommand;
|
|
|
2664
2630
|
|
|
2665
2631
|
|
|
2666
2632
|
|
|
2667
|
-
var _ListIdentitySourcesCommand = class _ListIdentitySourcesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2668
|
-
...commonParams
|
|
2669
|
-
}).m(function(Command, cs, config, o) {
|
|
2633
|
+
var _ListIdentitySourcesCommand = class _ListIdentitySourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2670
2634
|
return [
|
|
2671
2635
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2672
2636
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2680,9 +2644,7 @@ var ListIdentitySourcesCommand = _ListIdentitySourcesCommand;
|
|
|
2680
2644
|
|
|
2681
2645
|
|
|
2682
2646
|
|
|
2683
|
-
var _ListPoliciesCommand = class _ListPoliciesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2684
|
-
...commonParams
|
|
2685
|
-
}).m(function(Command, cs, config, o) {
|
|
2647
|
+
var _ListPoliciesCommand = class _ListPoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2686
2648
|
return [
|
|
2687
2649
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2688
2650
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2696,9 +2658,7 @@ var ListPoliciesCommand = _ListPoliciesCommand;
|
|
|
2696
2658
|
|
|
2697
2659
|
|
|
2698
2660
|
|
|
2699
|
-
var _ListPolicyStoresCommand = class _ListPolicyStoresCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2700
|
-
...commonParams
|
|
2701
|
-
}).m(function(Command, cs, config, o) {
|
|
2661
|
+
var _ListPolicyStoresCommand = class _ListPolicyStoresCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2702
2662
|
return [
|
|
2703
2663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2704
2664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2712,9 +2672,7 @@ var ListPolicyStoresCommand = _ListPolicyStoresCommand;
|
|
|
2712
2672
|
|
|
2713
2673
|
|
|
2714
2674
|
|
|
2715
|
-
var _ListPolicyTemplatesCommand = class _ListPolicyTemplatesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2716
|
-
...commonParams
|
|
2717
|
-
}).m(function(Command, cs, config, o) {
|
|
2675
|
+
var _ListPolicyTemplatesCommand = class _ListPolicyTemplatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2718
2676
|
return [
|
|
2719
2677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2720
2678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2728,9 +2686,7 @@ var ListPolicyTemplatesCommand = _ListPolicyTemplatesCommand;
|
|
|
2728
2686
|
|
|
2729
2687
|
|
|
2730
2688
|
|
|
2731
|
-
var _PutSchemaCommand = class _PutSchemaCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2732
|
-
...commonParams
|
|
2733
|
-
}).m(function(Command, cs, config, o) {
|
|
2689
|
+
var _PutSchemaCommand = class _PutSchemaCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2734
2690
|
return [
|
|
2735
2691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2736
2692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2744,9 +2700,7 @@ var PutSchemaCommand = _PutSchemaCommand;
|
|
|
2744
2700
|
|
|
2745
2701
|
|
|
2746
2702
|
|
|
2747
|
-
var _UpdateIdentitySourceCommand = class _UpdateIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2748
|
-
...commonParams
|
|
2749
|
-
}).m(function(Command, cs, config, o) {
|
|
2703
|
+
var _UpdateIdentitySourceCommand = class _UpdateIdentitySourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2750
2704
|
return [
|
|
2751
2705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2752
2706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2760,9 +2714,7 @@ var UpdateIdentitySourceCommand = _UpdateIdentitySourceCommand;
|
|
|
2760
2714
|
|
|
2761
2715
|
|
|
2762
2716
|
|
|
2763
|
-
var _UpdatePolicyCommand = class _UpdatePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2764
|
-
...commonParams
|
|
2765
|
-
}).m(function(Command, cs, config, o) {
|
|
2717
|
+
var _UpdatePolicyCommand = class _UpdatePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2766
2718
|
return [
|
|
2767
2719
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2768
2720
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2776,9 +2728,7 @@ var UpdatePolicyCommand = _UpdatePolicyCommand;
|
|
|
2776
2728
|
|
|
2777
2729
|
|
|
2778
2730
|
|
|
2779
|
-
var _UpdatePolicyStoreCommand = class _UpdatePolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2780
|
-
...commonParams
|
|
2781
|
-
}).m(function(Command, cs, config, o) {
|
|
2731
|
+
var _UpdatePolicyStoreCommand = class _UpdatePolicyStoreCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2782
2732
|
return [
|
|
2783
2733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2784
2734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2792,9 +2742,7 @@ var UpdatePolicyStoreCommand = _UpdatePolicyStoreCommand;
|
|
|
2792
2742
|
|
|
2793
2743
|
|
|
2794
2744
|
|
|
2795
|
-
var _UpdatePolicyTemplateCommand = class _UpdatePolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2796
|
-
...commonParams
|
|
2797
|
-
}).m(function(Command, cs, config, o) {
|
|
2745
|
+
var _UpdatePolicyTemplateCommand = class _UpdatePolicyTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2798
2746
|
return [
|
|
2799
2747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2800
2748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -7,9 +7,7 @@ import { de_BatchIsAuthorizedCommand, se_BatchIsAuthorizedCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class BatchIsAuthorizedCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_BatchIsAuthorizedWithTokenCommand, se_BatchIsAuthorizedWithTokenComm
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class BatchIsAuthorizedWithTokenCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreateIdentitySourceCommand, se_CreateIdentitySourceCommand } from "
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateIdentitySourceCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreatePolicyCommand, se_CreatePolicyCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreatePolicyCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreatePolicyStoreCommand, se_CreatePolicyStoreCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreatePolicyStoreCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreatePolicyTemplateCommand, se_CreatePolicyTemplateCommand } from "
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreatePolicyTemplateCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteIdentitySourceCommand, se_DeleteIdentitySourceCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteIdentitySourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePolicyCommand, se_DeletePolicyCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePolicyCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePolicyStoreCommand, se_DeletePolicyStoreCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePolicyStoreCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePolicyTemplateCommand, se_DeletePolicyTemplateCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePolicyTemplateCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetIdentitySourceCommand, se_GetIdentitySourceCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetIdentitySourceCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetPolicyCommand, se_GetPolicyCommand } from "../protocols/Aws_json1
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetPolicyCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetPolicyStoreCommand, se_GetPolicyStoreCommand } from "../protocols
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetPolicyStoreCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetPolicyTemplateCommand, se_GetPolicyTemplateCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetPolicyTemplateCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetSchemaCommand, se_GetSchemaCommand } from "../protocols/Aws_json1
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetSchemaCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_IsAuthorizedCommand, se_IsAuthorizedCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class IsAuthorizedCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_IsAuthorizedWithTokenCommand, se_IsAuthorizedWithTokenCommand } from
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class IsAuthorizedWithTokenCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_ListIdentitySourcesCommand, se_ListIdentitySourcesCommand } from "..
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListIdentitySourcesCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_ListPoliciesCommand, se_ListPoliciesCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListPoliciesCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_ListPolicyStoresCommand, se_ListPolicyStoresCommand } from "../proto
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListPolicyStoresCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_ListPolicyTemplatesCommand, se_ListPolicyTemplatesCommand } from "..
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListPolicyTemplatesCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_PutSchemaCommand, se_PutSchemaCommand } from "../protocols/Aws_json1
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class PutSchemaCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdateIdentitySourceCommand, se_UpdateIdentitySourceCommand } from "
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateIdentitySourceCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdatePolicyCommand, se_UpdatePolicyCommand } from "../protocols/Aws
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdatePolicyCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdatePolicyStoreCommand, se_UpdatePolicyStoreCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdatePolicyStoreCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdatePolicyTemplateCommand, se_UpdatePolicyTemplateCommand } from "
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdatePolicyTemplateCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig)
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig)
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig)
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig)
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig)
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
10
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -33,6 +34,7 @@ export declare const getRuntimeConfig: (config: VerifiedPermissionsClientConfig)
|
|
|
33
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
35
|
}) => import("@smithy/types").EndpointV2;
|
|
35
36
|
tls?: boolean | undefined;
|
|
37
|
+
serviceConfiguredEndpoint?: undefined;
|
|
36
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (
|
|
|
25
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
27
|
apiVersion: string;
|
|
28
|
+
cacheMiddleware?: boolean | undefined;
|
|
28
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
31
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -63,6 +64,7 @@ export declare const getRuntimeConfig: (
|
|
|
63
64
|
}
|
|
64
65
|
) => import("@smithy/types").EndpointV2;
|
|
65
66
|
tls?: boolean | undefined;
|
|
67
|
+
serviceConfiguredEndpoint?: undefined;
|
|
66
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
68
70
|
credentials?:
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (
|
|
|
29
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
31
|
apiVersion: string;
|
|
32
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
33
|
urlParser: import("@smithy/types").UrlParser;
|
|
33
34
|
base64Decoder: import("@smithy/types").Decoder;
|
|
34
35
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -67,6 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
67
68
|
}
|
|
68
69
|
) => import("@smithy/types").EndpointV2;
|
|
69
70
|
tls?: boolean | undefined;
|
|
71
|
+
serviceConfiguredEndpoint?: undefined;
|
|
70
72
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
73
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
72
74
|
credentials?:
|
|
@@ -11,6 +11,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
11
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
12
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
13
|
apiVersion: string;
|
|
14
|
+
cacheMiddleware?: boolean | undefined;
|
|
14
15
|
urlParser: import("@smithy/types").UrlParser;
|
|
15
16
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -57,6 +58,7 @@ export declare const getRuntimeConfig: (
|
|
|
57
58
|
}
|
|
58
59
|
) => import("@smithy/types").EndpointV2;
|
|
59
60
|
tls?: boolean | undefined;
|
|
61
|
+
serviceConfiguredEndpoint?: undefined;
|
|
60
62
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
63
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
62
64
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-verifiedpermissions",
|
|
3
3
|
"description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.650.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-verifiedpermissions",
|
|
@@ -20,43 +20,43 @@
|
|
|
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": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.650.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.650.0",
|
|
25
|
+
"@aws-sdk/core": "3.649.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.650.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
32
|
+
"@aws-sdk/types": "3.649.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
37
|
+
"@smithy/core": "^2.4.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
39
|
+
"@smithy/hash-node": "^3.0.4",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
50
|
+
"@smithy/types": "^3.4.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.4",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
59
|
+
"@smithy/util-retry": "^3.0.4",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2",
|
|
62
62
|
"uuid": "^9.0.1"
|