@jjrawlins/cdk-iam-policy-builder-helper 0.0.122 → 0.0.123
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/cdkiampolicybuilderhelper/jsii/jsii.go +2 -2
- package/cdkiampolicybuilderhelper/version +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +4 -4
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForInstanceProfileExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-login/package.json +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +2 -2
- package/package.json +2 -2
package/.jsii
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
]
|
|
8
8
|
},
|
|
9
9
|
"bundled": {
|
|
10
|
-
"@aws-sdk/client-iam": "^3.
|
|
10
|
+
"@aws-sdk/client-iam": "^3.962.0",
|
|
11
11
|
"axios": "^1.8.2",
|
|
12
12
|
"jsonc-parser": "^3.3.1"
|
|
13
13
|
},
|
|
@@ -3526,6 +3526,6 @@
|
|
|
3526
3526
|
}
|
|
3527
3527
|
},
|
|
3528
3528
|
"types": {},
|
|
3529
|
-
"version": "0.0.
|
|
3530
|
-
"fingerprint": "
|
|
3529
|
+
"version": "0.0.123",
|
|
3530
|
+
"fingerprint": "QLXxs3QcvyPIrUbXMK+FSyNWcsQauf958tNLoZZ0rkk="
|
|
3531
3531
|
}
|
|
@@ -13,7 +13,7 @@ import (
|
|
|
13
13
|
constructs "github.com/aws/constructs-go/constructs/v10/jsii"
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
-
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.
|
|
16
|
+
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.122.tgz
|
|
17
17
|
var tarball []byte
|
|
18
18
|
|
|
19
19
|
// Initialize loads the necessary packages in the @jsii/kernel to support the enclosing module.
|
|
@@ -24,5 +24,5 @@ func Initialize() {
|
|
|
24
24
|
constructs.Initialize()
|
|
25
25
|
|
|
26
26
|
// Load this library into the kernel
|
|
27
|
-
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.
|
|
27
|
+
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.122", tarball)
|
|
28
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.122
|
|
@@ -6208,7 +6208,7 @@ const paginateSimulatePrincipalPolicy = core.createPaginator(IAMClient, Simulate
|
|
|
6208
6208
|
const checkState$3 = async (client, input) => {
|
|
6209
6209
|
let reason;
|
|
6210
6210
|
try {
|
|
6211
|
-
|
|
6211
|
+
let result = await client.send(new GetInstanceProfileCommand(input));
|
|
6212
6212
|
reason = result;
|
|
6213
6213
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
6214
6214
|
}
|
|
@@ -6233,7 +6233,7 @@ const waitUntilInstanceProfileExists = async (params, input) => {
|
|
|
6233
6233
|
const checkState$2 = async (client, input) => {
|
|
6234
6234
|
let reason;
|
|
6235
6235
|
try {
|
|
6236
|
-
|
|
6236
|
+
let result = await client.send(new GetPolicyCommand(input));
|
|
6237
6237
|
reason = result;
|
|
6238
6238
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
6239
6239
|
}
|
|
@@ -6258,7 +6258,7 @@ const waitUntilPolicyExists = async (params, input) => {
|
|
|
6258
6258
|
const checkState$1 = async (client, input) => {
|
|
6259
6259
|
let reason;
|
|
6260
6260
|
try {
|
|
6261
|
-
|
|
6261
|
+
let result = await client.send(new GetRoleCommand(input));
|
|
6262
6262
|
reason = result;
|
|
6263
6263
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
6264
6264
|
}
|
|
@@ -6283,7 +6283,7 @@ const waitUntilRoleExists = async (params, input) => {
|
|
|
6283
6283
|
const checkState = async (client, input) => {
|
|
6284
6284
|
let reason;
|
|
6285
6285
|
try {
|
|
6286
|
-
|
|
6286
|
+
let result = await client.send(new GetUserCommand(input));
|
|
6287
6287
|
reason = result;
|
|
6288
6288
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
6289
6289
|
}
|
|
@@ -3,7 +3,7 @@ import { GetInstanceProfileCommand } from "../commands/GetInstanceProfileCommand
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetInstanceProfileCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { GetPolicyCommand } from "../commands/GetPolicyCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetPolicyCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { GetRoleCommand } from "../commands/GetRoleCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetRoleCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { GetUserCommand } from "../commands/GetUserCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetUserCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -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.962.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
26
|
"@aws-sdk/core": "3.957.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.962.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.962.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",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@aws-sdk/core": "3.957.0",
|
|
32
32
|
"@aws-sdk/credential-provider-env": "3.957.0",
|
|
33
33
|
"@aws-sdk/credential-provider-http": "3.957.0",
|
|
34
|
-
"@aws-sdk/credential-provider-login": "3.
|
|
34
|
+
"@aws-sdk/credential-provider-login": "3.962.0",
|
|
35
35
|
"@aws-sdk/credential-provider-process": "3.957.0",
|
|
36
36
|
"@aws-sdk/credential-provider-sso": "3.958.0",
|
|
37
37
|
"@aws-sdk/credential-provider-web-identity": "3.958.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.962.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,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@aws-sdk/credential-provider-env": "3.957.0",
|
|
35
35
|
"@aws-sdk/credential-provider-http": "3.957.0",
|
|
36
|
-
"@aws-sdk/credential-provider-ini": "3.
|
|
36
|
+
"@aws-sdk/credential-provider-ini": "3.962.0",
|
|
37
37
|
"@aws-sdk/credential-provider-process": "3.957.0",
|
|
38
38
|
"@aws-sdk/credential-provider-sso": "3.958.0",
|
|
39
39
|
"@aws-sdk/credential-provider-web-identity": "3.958.0",
|
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"constructs": ">=10.0.5 <11.0.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@aws-sdk/client-iam": "^3.
|
|
73
|
+
"@aws-sdk/client-iam": "^3.962.0",
|
|
74
74
|
"axios": "^1.8.2",
|
|
75
75
|
"jsonc-parser": "^3.3.1"
|
|
76
76
|
},
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"publishConfig": {
|
|
100
100
|
"access": "public"
|
|
101
101
|
},
|
|
102
|
-
"version": "0.0.
|
|
102
|
+
"version": "0.0.123",
|
|
103
103
|
"jest": {
|
|
104
104
|
"coverageProvider": "v8",
|
|
105
105
|
"testMatch": [
|