@jjrawlins/cdk-iam-policy-builder-helper 0.0.67 → 0.0.69
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/.jsii +3 -3
- package/cdk-iam-policy-builder-helper/jsii/jsii.go +2 -2
- package/cdk-iam-policy-builder-helper/version +1 -1
- package/lib/constructs/Actions.d.ts +1 -0
- package/lib/constructs/Actions.js +2 -1
- package/methods_list.txt +1 -0
- package/node_modules/@aws/lambda-invoke-store/README.md +8 -0
- package/node_modules/@aws/lambda-invoke-store/{dist → dist-cjs}/invoke-store.js +12 -36
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +64 -0
- package/node_modules/@aws/lambda-invoke-store/{dist → dist-types}/invoke-store.d.ts +5 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +26 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +7 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/models/models_0.js +7 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +7 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/node_modules/@aws-sdk/client-iam/package.json +3 -3
- package/node_modules/@aws-sdk/client-sso/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +1 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +4 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
- package/node_modules/@aws-sdk/nested-clients/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/node_modules/axios/CHANGELOG.md +403 -357
- package/node_modules/axios/README.md +80 -49
- package/node_modules/axios/dist/axios.js +121 -46
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +126 -57
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +126 -57
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +346 -97
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +4 -0
- package/node_modules/axios/index.d.ts +4 -0
- package/node_modules/axios/lib/adapters/adapters.js +85 -40
- package/node_modules/axios/lib/adapters/fetch.js +1 -1
- package/node_modules/axios/lib/adapters/http.js +220 -42
- package/node_modules/axios/lib/core/InterceptorManager.js +1 -1
- package/node_modules/axios/lib/core/mergeConfig.js +4 -4
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/HttpStatusCode.js +6 -0
- package/node_modules/axios/lib/helpers/bind.js +7 -0
- package/node_modules/axios/lib/helpers/cookies.js +24 -13
- package/node_modules/axios/package.json +9 -4
- package/package.json +3 -3
package/methods_list.txt
CHANGED
|
@@ -1250,6 +1250,7 @@ autoscaling:EnterStandby
|
|
|
1250
1250
|
autoscaling:ExecutePolicy
|
|
1251
1251
|
autoscaling:ExitStandby
|
|
1252
1252
|
autoscaling:GetPredictiveScalingForecast
|
|
1253
|
+
autoscaling:LaunchInstances
|
|
1253
1254
|
autoscaling:PutLifecycleHook
|
|
1254
1255
|
autoscaling:PutNotificationConfiguration
|
|
1255
1256
|
autoscaling:PutScalingPolicy
|
|
@@ -99,6 +99,14 @@ Convenience method to get the current request ID.
|
|
|
99
99
|
const requestId = InvokeStore.getRequestId(); // Returns '-' if outside context
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
+
### InvokeStore.getTenantId()
|
|
103
|
+
|
|
104
|
+
Convenience method to get the tenant ID.
|
|
105
|
+
|
|
106
|
+
```typescript
|
|
107
|
+
const requestId = InvokeStore.getTenantId();
|
|
108
|
+
```
|
|
109
|
+
|
|
102
110
|
### InvokeStore.getXRayTraceId()
|
|
103
111
|
|
|
104
112
|
Convenience method to get the current [X-Ray trace ID](https://docs.aws.amazon.com/xray/latest/devguide/xray-concepts.html#xray-concepts-traces). This ID is used for distributed tracing across AWS services.
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
// AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA provides an escape hatch since we're modifying the global object which may not be expected to a customer's handler.
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var async_hooks = require('async_hooks');
|
|
4
|
+
|
|
6
5
|
const noGlobalAwsLambda = process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "1" ||
|
|
7
6
|
process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "true";
|
|
8
7
|
if (!noGlobalAwsLambda) {
|
|
@@ -11,37 +10,21 @@ if (!noGlobalAwsLambda) {
|
|
|
11
10
|
const PROTECTED_KEYS = {
|
|
12
11
|
REQUEST_ID: Symbol("_AWS_LAMBDA_REQUEST_ID"),
|
|
13
12
|
X_RAY_TRACE_ID: Symbol("_AWS_LAMBDA_X_RAY_TRACE_ID"),
|
|
13
|
+
TENANT_ID: Symbol("_AWS_LAMBDA_TENANT_ID"),
|
|
14
14
|
};
|
|
15
|
-
/**
|
|
16
|
-
* InvokeStore implementation class
|
|
17
|
-
*/
|
|
18
15
|
class InvokeStoreImpl {
|
|
19
|
-
static storage = new
|
|
20
|
-
// Protected keys for Lambda context fields
|
|
16
|
+
static storage = new async_hooks.AsyncLocalStorage();
|
|
21
17
|
static PROTECTED_KEYS = PROTECTED_KEYS;
|
|
22
|
-
/**
|
|
23
|
-
* Initialize and run code within an invoke context
|
|
24
|
-
*/
|
|
25
18
|
static run(context, fn) {
|
|
26
19
|
return this.storage.run({ ...context }, fn);
|
|
27
20
|
}
|
|
28
|
-
/**
|
|
29
|
-
* Get the complete current context
|
|
30
|
-
*/
|
|
31
21
|
static getContext() {
|
|
32
22
|
return this.storage.getStore();
|
|
33
23
|
}
|
|
34
|
-
/**
|
|
35
|
-
* Get a specific value from the context by key
|
|
36
|
-
*/
|
|
37
24
|
static get(key) {
|
|
38
25
|
const context = this.storage.getStore();
|
|
39
26
|
return context?.[key];
|
|
40
27
|
}
|
|
41
|
-
/**
|
|
42
|
-
* Set a custom value in the current context
|
|
43
|
-
* Protected Lambda context fields cannot be overwritten
|
|
44
|
-
*/
|
|
45
28
|
static set(key, value) {
|
|
46
29
|
if (this.isProtectedKey(key)) {
|
|
47
30
|
throw new Error(`Cannot modify protected Lambda context field`);
|
|
@@ -51,27 +34,18 @@ class InvokeStoreImpl {
|
|
|
51
34
|
context[key] = value;
|
|
52
35
|
}
|
|
53
36
|
}
|
|
54
|
-
/**
|
|
55
|
-
* Get the current request ID
|
|
56
|
-
*/
|
|
57
37
|
static getRequestId() {
|
|
58
38
|
return this.get(this.PROTECTED_KEYS.REQUEST_ID) ?? "-";
|
|
59
39
|
}
|
|
60
|
-
/**
|
|
61
|
-
* Get the current X-ray trace ID
|
|
62
|
-
*/
|
|
63
40
|
static getXRayTraceId() {
|
|
64
41
|
return this.get(this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
65
42
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
43
|
+
static getTenantId() {
|
|
44
|
+
return this.get(this.PROTECTED_KEYS.TENANT_ID);
|
|
45
|
+
}
|
|
69
46
|
static hasContext() {
|
|
70
47
|
return this.storage.getStore() !== undefined;
|
|
71
48
|
}
|
|
72
|
-
/**
|
|
73
|
-
* Check if a key is protected (readonly Lambda context field)
|
|
74
|
-
*/
|
|
75
49
|
static isProtectedKey(key) {
|
|
76
50
|
return (key === this.PROTECTED_KEYS.REQUEST_ID ||
|
|
77
51
|
key === this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
@@ -87,4 +61,6 @@ else {
|
|
|
87
61
|
globalThis.awslambda.InvokeStore = instance;
|
|
88
62
|
}
|
|
89
63
|
}
|
|
90
|
-
|
|
64
|
+
const InvokeStore = instance;
|
|
65
|
+
|
|
66
|
+
exports.InvokeStore = InvokeStore;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { AsyncLocalStorage } from 'async_hooks';
|
|
2
|
+
|
|
3
|
+
const noGlobalAwsLambda = process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "1" ||
|
|
4
|
+
process.env["AWS_LAMBDA_NODEJS_NO_GLOBAL_AWSLAMBDA"] === "true";
|
|
5
|
+
if (!noGlobalAwsLambda) {
|
|
6
|
+
globalThis.awslambda = globalThis.awslambda || {};
|
|
7
|
+
}
|
|
8
|
+
const PROTECTED_KEYS = {
|
|
9
|
+
REQUEST_ID: Symbol("_AWS_LAMBDA_REQUEST_ID"),
|
|
10
|
+
X_RAY_TRACE_ID: Symbol("_AWS_LAMBDA_X_RAY_TRACE_ID"),
|
|
11
|
+
TENANT_ID: Symbol("_AWS_LAMBDA_TENANT_ID"),
|
|
12
|
+
};
|
|
13
|
+
class InvokeStoreImpl {
|
|
14
|
+
static storage = new AsyncLocalStorage();
|
|
15
|
+
static PROTECTED_KEYS = PROTECTED_KEYS;
|
|
16
|
+
static run(context, fn) {
|
|
17
|
+
return this.storage.run({ ...context }, fn);
|
|
18
|
+
}
|
|
19
|
+
static getContext() {
|
|
20
|
+
return this.storage.getStore();
|
|
21
|
+
}
|
|
22
|
+
static get(key) {
|
|
23
|
+
const context = this.storage.getStore();
|
|
24
|
+
return context?.[key];
|
|
25
|
+
}
|
|
26
|
+
static set(key, value) {
|
|
27
|
+
if (this.isProtectedKey(key)) {
|
|
28
|
+
throw new Error(`Cannot modify protected Lambda context field`);
|
|
29
|
+
}
|
|
30
|
+
const context = this.storage.getStore();
|
|
31
|
+
if (context) {
|
|
32
|
+
context[key] = value;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
static getRequestId() {
|
|
36
|
+
return this.get(this.PROTECTED_KEYS.REQUEST_ID) ?? "-";
|
|
37
|
+
}
|
|
38
|
+
static getXRayTraceId() {
|
|
39
|
+
return this.get(this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
40
|
+
}
|
|
41
|
+
static getTenantId() {
|
|
42
|
+
return this.get(this.PROTECTED_KEYS.TENANT_ID);
|
|
43
|
+
}
|
|
44
|
+
static hasContext() {
|
|
45
|
+
return this.storage.getStore() !== undefined;
|
|
46
|
+
}
|
|
47
|
+
static isProtectedKey(key) {
|
|
48
|
+
return (key === this.PROTECTED_KEYS.REQUEST_ID ||
|
|
49
|
+
key === this.PROTECTED_KEYS.X_RAY_TRACE_ID);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
let instance;
|
|
53
|
+
if (!noGlobalAwsLambda && globalThis.awslambda?.InvokeStore) {
|
|
54
|
+
instance = globalThis.awslambda.InvokeStore;
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
instance = InvokeStoreImpl;
|
|
58
|
+
if (!noGlobalAwsLambda && globalThis.awslambda) {
|
|
59
|
+
globalThis.awslambda.InvokeStore = instance;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
const InvokeStore = instance;
|
|
63
|
+
|
|
64
|
+
export { InvokeStore };
|
|
@@ -13,6 +13,7 @@ declare class InvokeStoreImpl {
|
|
|
13
13
|
static readonly PROTECTED_KEYS: {
|
|
14
14
|
readonly REQUEST_ID: symbol;
|
|
15
15
|
readonly X_RAY_TRACE_ID: symbol;
|
|
16
|
+
readonly TENANT_ID: symbol;
|
|
16
17
|
};
|
|
17
18
|
/**
|
|
18
19
|
* Initialize and run code within an invoke context
|
|
@@ -39,6 +40,10 @@ declare class InvokeStoreImpl {
|
|
|
39
40
|
* Get the current X-ray trace ID
|
|
40
41
|
*/
|
|
41
42
|
static getXRayTraceId(): string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* Get the current tenant ID
|
|
45
|
+
*/
|
|
46
|
+
static getTenantId(): string | undefined;
|
|
42
47
|
/**
|
|
43
48
|
* Check if we're currently within an invoke context
|
|
44
49
|
*/
|
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/lambda-invoke-store",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Invoke scoped data storage for AWS Lambda Node.js Runtime Environment",
|
|
5
5
|
"homepage": "https://github.com/awslabs/aws-lambda-invoke-store",
|
|
6
|
-
"main": "./dist/invoke-store.js",
|
|
7
|
-
"
|
|
6
|
+
"main": "./dist-cjs/invoke-store.js",
|
|
7
|
+
"module": "./dist-es/invoke-store.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist-types/invoke-store.d.ts",
|
|
11
|
+
"module": "./dist-es/invoke-store.js",
|
|
12
|
+
"node": "./dist-cjs/invoke-store.js",
|
|
13
|
+
"import": "./dist-es/invoke-store.js",
|
|
14
|
+
"require": "./dist-cjs/invoke-store.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
8
17
|
"files": [
|
|
9
|
-
"dist"
|
|
18
|
+
"dist-es",
|
|
19
|
+
"dist-cjs",
|
|
20
|
+
"dist-types"
|
|
10
21
|
],
|
|
11
22
|
"repository": {
|
|
12
23
|
"type": "git",
|
|
@@ -18,15 +29,22 @@
|
|
|
18
29
|
"url": "http://aws.amazon.com"
|
|
19
30
|
},
|
|
20
31
|
"scripts": {
|
|
21
|
-
"build": "
|
|
32
|
+
"build": "yarn clean && yarn build:types && node ./scripts/build-rollup.js",
|
|
33
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
34
|
+
"clean": "rm -rf dist-types dist-cjs dist-es",
|
|
22
35
|
"test": "vitest run",
|
|
23
36
|
"test:watch": "vitest watch",
|
|
24
|
-
"
|
|
37
|
+
"release": "yarn build && changeset publish"
|
|
25
38
|
},
|
|
26
39
|
"devDependencies": {
|
|
40
|
+
"@changesets/cli": "^2.29.6",
|
|
41
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
42
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
27
43
|
"@tsconfig/node18": "^18.2.4",
|
|
28
|
-
"@types/node": "^18.19.
|
|
29
|
-
"
|
|
44
|
+
"@types/node": "^18.19.130",
|
|
45
|
+
"rollup": "^4.52.5",
|
|
46
|
+
"tslib": "^2.8.1",
|
|
47
|
+
"typescript": "^5.9.3",
|
|
30
48
|
"vitest": "^3.1.1"
|
|
31
49
|
},
|
|
32
50
|
"engines": {
|
|
@@ -435,6 +435,7 @@ const SummaryKeyType = {
|
|
|
435
435
|
AccountMFAEnabled: "AccountMFAEnabled",
|
|
436
436
|
AccountPasswordPresent: "AccountPasswordPresent",
|
|
437
437
|
AccountSigningCertificatesPresent: "AccountSigningCertificatesPresent",
|
|
438
|
+
AssumeRolePolicySizeQuota: "AssumeRolePolicySizeQuota",
|
|
438
439
|
AttachedPoliciesPerGroupQuota: "AttachedPoliciesPerGroupQuota",
|
|
439
440
|
AttachedPoliciesPerRoleQuota: "AttachedPoliciesPerRoleQuota",
|
|
440
441
|
AttachedPoliciesPerUserQuota: "AttachedPoliciesPerUserQuota",
|
|
@@ -443,6 +444,8 @@ const SummaryKeyType = {
|
|
|
443
444
|
Groups: "Groups",
|
|
444
445
|
GroupsPerUserQuota: "GroupsPerUserQuota",
|
|
445
446
|
GroupsQuota: "GroupsQuota",
|
|
447
|
+
InstanceProfiles: "InstanceProfiles",
|
|
448
|
+
InstanceProfilesQuota: "InstanceProfilesQuota",
|
|
446
449
|
MFADevices: "MFADevices",
|
|
447
450
|
MFADevicesInUse: "MFADevicesInUse",
|
|
448
451
|
Policies: "Policies",
|
|
@@ -450,6 +453,10 @@ const SummaryKeyType = {
|
|
|
450
453
|
PolicySizeQuota: "PolicySizeQuota",
|
|
451
454
|
PolicyVersionsInUse: "PolicyVersionsInUse",
|
|
452
455
|
PolicyVersionsInUseQuota: "PolicyVersionsInUseQuota",
|
|
456
|
+
Providers: "Providers",
|
|
457
|
+
RolePolicySizeQuota: "RolePolicySizeQuota",
|
|
458
|
+
Roles: "Roles",
|
|
459
|
+
RolesQuota: "RolesQuota",
|
|
453
460
|
ServerCertificates: "ServerCertificates",
|
|
454
461
|
ServerCertificatesQuota: "ServerCertificatesQuota",
|
|
455
462
|
SigningCertificatesPerUserQuota: "SigningCertificatesPerUserQuota",
|
|
@@ -317,6 +317,7 @@ export const SummaryKeyType = {
|
|
|
317
317
|
AccountMFAEnabled: "AccountMFAEnabled",
|
|
318
318
|
AccountPasswordPresent: "AccountPasswordPresent",
|
|
319
319
|
AccountSigningCertificatesPresent: "AccountSigningCertificatesPresent",
|
|
320
|
+
AssumeRolePolicySizeQuota: "AssumeRolePolicySizeQuota",
|
|
320
321
|
AttachedPoliciesPerGroupQuota: "AttachedPoliciesPerGroupQuota",
|
|
321
322
|
AttachedPoliciesPerRoleQuota: "AttachedPoliciesPerRoleQuota",
|
|
322
323
|
AttachedPoliciesPerUserQuota: "AttachedPoliciesPerUserQuota",
|
|
@@ -325,6 +326,8 @@ export const SummaryKeyType = {
|
|
|
325
326
|
Groups: "Groups",
|
|
326
327
|
GroupsPerUserQuota: "GroupsPerUserQuota",
|
|
327
328
|
GroupsQuota: "GroupsQuota",
|
|
329
|
+
InstanceProfiles: "InstanceProfiles",
|
|
330
|
+
InstanceProfilesQuota: "InstanceProfilesQuota",
|
|
328
331
|
MFADevices: "MFADevices",
|
|
329
332
|
MFADevicesInUse: "MFADevicesInUse",
|
|
330
333
|
Policies: "Policies",
|
|
@@ -332,6 +335,10 @@ export const SummaryKeyType = {
|
|
|
332
335
|
PolicySizeQuota: "PolicySizeQuota",
|
|
333
336
|
PolicyVersionsInUse: "PolicyVersionsInUse",
|
|
334
337
|
PolicyVersionsInUseQuota: "PolicyVersionsInUseQuota",
|
|
338
|
+
Providers: "Providers",
|
|
339
|
+
RolePolicySizeQuota: "RolePolicySizeQuota",
|
|
340
|
+
Roles: "Roles",
|
|
341
|
+
RolesQuota: "RolesQuota",
|
|
335
342
|
ServerCertificates: "ServerCertificates",
|
|
336
343
|
ServerCertificatesQuota: "ServerCertificatesQuota",
|
|
337
344
|
SigningCertificatesPerUserQuota: "SigningCertificatesPerUserQuota",
|
|
@@ -3273,6 +3273,7 @@ export declare const SummaryKeyType: {
|
|
|
3273
3273
|
readonly AccountMFAEnabled: "AccountMFAEnabled";
|
|
3274
3274
|
readonly AccountPasswordPresent: "AccountPasswordPresent";
|
|
3275
3275
|
readonly AccountSigningCertificatesPresent: "AccountSigningCertificatesPresent";
|
|
3276
|
+
readonly AssumeRolePolicySizeQuota: "AssumeRolePolicySizeQuota";
|
|
3276
3277
|
readonly AttachedPoliciesPerGroupQuota: "AttachedPoliciesPerGroupQuota";
|
|
3277
3278
|
readonly AttachedPoliciesPerRoleQuota: "AttachedPoliciesPerRoleQuota";
|
|
3278
3279
|
readonly AttachedPoliciesPerUserQuota: "AttachedPoliciesPerUserQuota";
|
|
@@ -3281,6 +3282,8 @@ export declare const SummaryKeyType: {
|
|
|
3281
3282
|
readonly Groups: "Groups";
|
|
3282
3283
|
readonly GroupsPerUserQuota: "GroupsPerUserQuota";
|
|
3283
3284
|
readonly GroupsQuota: "GroupsQuota";
|
|
3285
|
+
readonly InstanceProfiles: "InstanceProfiles";
|
|
3286
|
+
readonly InstanceProfilesQuota: "InstanceProfilesQuota";
|
|
3284
3287
|
readonly MFADevices: "MFADevices";
|
|
3285
3288
|
readonly MFADevicesInUse: "MFADevicesInUse";
|
|
3286
3289
|
readonly Policies: "Policies";
|
|
@@ -3288,6 +3291,10 @@ export declare const SummaryKeyType: {
|
|
|
3288
3291
|
readonly PolicySizeQuota: "PolicySizeQuota";
|
|
3289
3292
|
readonly PolicyVersionsInUse: "PolicyVersionsInUse";
|
|
3290
3293
|
readonly PolicyVersionsInUseQuota: "PolicyVersionsInUseQuota";
|
|
3294
|
+
readonly Providers: "Providers";
|
|
3295
|
+
readonly RolePolicySizeQuota: "RolePolicySizeQuota";
|
|
3296
|
+
readonly Roles: "Roles";
|
|
3297
|
+
readonly RolesQuota: "RolesQuota";
|
|
3291
3298
|
readonly ServerCertificates: "ServerCertificates";
|
|
3292
3299
|
readonly ServerCertificatesQuota: "ServerCertificatesQuota";
|
|
3293
3300
|
readonly SigningCertificatesPerUserQuota: "SigningCertificatesPerUserQuota";
|
|
@@ -743,6 +743,7 @@ export declare const SummaryKeyType: {
|
|
|
743
743
|
readonly AccountMFAEnabled: "AccountMFAEnabled";
|
|
744
744
|
readonly AccountPasswordPresent: "AccountPasswordPresent";
|
|
745
745
|
readonly AccountSigningCertificatesPresent: "AccountSigningCertificatesPresent";
|
|
746
|
+
readonly AssumeRolePolicySizeQuota: "AssumeRolePolicySizeQuota";
|
|
746
747
|
readonly AttachedPoliciesPerGroupQuota: "AttachedPoliciesPerGroupQuota";
|
|
747
748
|
readonly AttachedPoliciesPerRoleQuota: "AttachedPoliciesPerRoleQuota";
|
|
748
749
|
readonly AttachedPoliciesPerUserQuota: "AttachedPoliciesPerUserQuota";
|
|
@@ -751,6 +752,8 @@ export declare const SummaryKeyType: {
|
|
|
751
752
|
readonly Groups: "Groups";
|
|
752
753
|
readonly GroupsPerUserQuota: "GroupsPerUserQuota";
|
|
753
754
|
readonly GroupsQuota: "GroupsQuota";
|
|
755
|
+
readonly InstanceProfiles: "InstanceProfiles";
|
|
756
|
+
readonly InstanceProfilesQuota: "InstanceProfilesQuota";
|
|
754
757
|
readonly MFADevices: "MFADevices";
|
|
755
758
|
readonly MFADevicesInUse: "MFADevicesInUse";
|
|
756
759
|
readonly Policies: "Policies";
|
|
@@ -758,6 +761,10 @@ export declare const SummaryKeyType: {
|
|
|
758
761
|
readonly PolicySizeQuota: "PolicySizeQuota";
|
|
759
762
|
readonly PolicyVersionsInUse: "PolicyVersionsInUse";
|
|
760
763
|
readonly PolicyVersionsInUseQuota: "PolicyVersionsInUseQuota";
|
|
764
|
+
readonly Providers: "Providers";
|
|
765
|
+
readonly RolePolicySizeQuota: "RolePolicySizeQuota";
|
|
766
|
+
readonly Roles: "Roles";
|
|
767
|
+
readonly RolesQuota: "RolesQuota";
|
|
761
768
|
readonly ServerCertificates: "ServerCertificates";
|
|
762
769
|
readonly ServerCertificatesQuota: "ServerCertificatesQuota";
|
|
763
770
|
readonly SigningCertificatesPerUserQuota: "SigningCertificatesPerUserQuota";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iam",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.919.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-iam",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.916.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.919.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
30
30
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.919.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-sso",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@aws-sdk/core": "3.916.0",
|
|
24
24
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
25
25
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
26
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
26
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
27
27
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
28
28
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
29
29
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"@aws-sdk/credential-provider-env": "3.916.0",
|
|
33
33
|
"@aws-sdk/credential-provider-http": "3.916.0",
|
|
34
34
|
"@aws-sdk/credential-provider-process": "3.916.0",
|
|
35
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
36
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
37
|
-
"@aws-sdk/nested-clients": "3.
|
|
35
|
+
"@aws-sdk/credential-provider-sso": "3.919.0",
|
|
36
|
+
"@aws-sdk/credential-provider-web-identity": "3.919.0",
|
|
37
|
+
"@aws-sdk/nested-clients": "3.919.0",
|
|
38
38
|
"@aws-sdk/types": "3.914.0",
|
|
39
39
|
"@smithy/credential-provider-imds": "^4.2.3",
|
|
40
40
|
"@smithy/property-provider": "^4.2.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@aws-sdk/credential-provider-env": "3.916.0",
|
|
35
35
|
"@aws-sdk/credential-provider-http": "3.916.0",
|
|
36
|
-
"@aws-sdk/credential-provider-ini": "3.
|
|
36
|
+
"@aws-sdk/credential-provider-ini": "3.919.0",
|
|
37
37
|
"@aws-sdk/credential-provider-process": "3.916.0",
|
|
38
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
39
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
38
|
+
"@aws-sdk/credential-provider-sso": "3.919.0",
|
|
39
|
+
"@aws-sdk/credential-provider-web-identity": "3.919.0",
|
|
40
40
|
"@aws-sdk/types": "3.914.0",
|
|
41
41
|
"@smithy/credential-provider-imds": "^4.2.3",
|
|
42
42
|
"@smithy/property-provider": "^4.2.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-sso",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aws-sdk/client-sso": "3.
|
|
29
|
+
"@aws-sdk/client-sso": "3.919.0",
|
|
30
30
|
"@aws-sdk/core": "3.916.0",
|
|
31
|
-
"@aws-sdk/token-providers": "3.
|
|
31
|
+
"@aws-sdk/token-providers": "3.919.0",
|
|
32
32
|
"@aws-sdk/types": "3.914.0",
|
|
33
33
|
"@smithy/property-provider": "^4.2.3",
|
|
34
34
|
"@smithy/shared-ini-file-loader": "^4.3.3",
|
package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { CredentialProviderOptions } from "@aws-sdk/types";
|
|
2
|
-
import { RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types/src";
|
|
1
|
+
import type { CredentialProviderOptions, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
|
|
3
2
|
import { FromWebTokenInit } from "./fromWebToken";
|
|
4
3
|
/**
|
|
5
4
|
* @public
|
package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
CredentialProviderOptions,
|
|
3
|
+
RuntimeConfigAwsCredentialIdentityProvider,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
3
5
|
import { FromWebTokenInit } from "./fromWebToken";
|
|
4
6
|
export interface FromTokenFileInit
|
|
5
7
|
extends Partial<
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-web-identity",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"license": "Apache-2.0",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@aws-sdk/core": "3.916.0",
|
|
38
|
-
"@aws-sdk/nested-clients": "3.
|
|
38
|
+
"@aws-sdk/nested-clients": "3.919.0",
|
|
39
39
|
"@aws-sdk/types": "3.914.0",
|
|
40
40
|
"@smithy/property-provider": "^4.2.3",
|
|
41
41
|
"@smithy/shared-ini-file-loader": "^4.3.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-recursion-detection",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline middleware-recursion-detection",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@aws-sdk/types": "3.914.0",
|
|
28
|
-
"@aws/lambda-invoke-store": "^0.
|
|
28
|
+
"@aws/lambda-invoke-store": "^0.1.1",
|
|
29
29
|
"@smithy/protocol-http": "^5.3.3",
|
|
30
30
|
"@smithy/types": "^4.8.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/nested-clients",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "Nested clients for AWS SDK packages.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/core": "3.916.0",
|
|
33
33
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
34
34
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
35
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
36
36
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
37
37
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
38
38
|
"@aws-sdk/types": "3.914.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/token-providers",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.919.0",
|
|
4
4
|
"description": "A collection of token providers",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"license": "Apache-2.0",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@aws-sdk/core": "3.916.0",
|
|
33
|
-
"@aws-sdk/nested-clients": "3.
|
|
33
|
+
"@aws-sdk/nested-clients": "3.919.0",
|
|
34
34
|
"@aws-sdk/types": "3.914.0",
|
|
35
35
|
"@smithy/property-provider": "^4.2.3",
|
|
36
36
|
"@smithy/shared-ini-file-loader": "^4.3.3",
|