@aws-sdk/client-iam 3.957.0 → 3.962.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/README.md +1 -182
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +2168 -2321
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/pagination/index.js +9 -9
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +1961 -2114
- package/dist-es/waiters/waitForInstanceProfileExists.js +1 -1
- package/dist-es/waiters/waitForPolicyExists.js +1 -1
- package/dist-es/waiters/waitForRoleExists.js +1 -1
- package/dist-es/waiters/waitForUserExists.js +1 -1
- package/dist-types/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/package.json +2 -2
|
@@ -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,6 +1,6 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
1
2
|
export * from "./GetAccountAuthorizationDetailsPaginator";
|
|
2
3
|
export * from "./GetGroupPaginator";
|
|
3
|
-
export * from "./Interfaces";
|
|
4
4
|
export * from "./ListAccessKeysPaginator";
|
|
5
5
|
export * from "./ListAccountAliasesPaginator";
|
|
6
6
|
export * from "./ListAttachedGroupPoliciesPaginator";
|
|
@@ -8,28 +8,28 @@ export * from "./ListAttachedRolePoliciesPaginator";
|
|
|
8
8
|
export * from "./ListAttachedUserPoliciesPaginator";
|
|
9
9
|
export * from "./ListEntitiesForPolicyPaginator";
|
|
10
10
|
export * from "./ListGroupPoliciesPaginator";
|
|
11
|
-
export * from "./ListGroupsForUserPaginator";
|
|
12
11
|
export * from "./ListGroupsPaginator";
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./ListInstanceProfilesForRolePaginator";
|
|
12
|
+
export * from "./ListGroupsForUserPaginator";
|
|
15
13
|
export * from "./ListInstanceProfilesPaginator";
|
|
16
|
-
export * from "./
|
|
14
|
+
export * from "./ListInstanceProfilesForRolePaginator";
|
|
15
|
+
export * from "./ListInstanceProfileTagsPaginator";
|
|
17
16
|
export * from "./ListMFADevicesPaginator";
|
|
17
|
+
export * from "./ListMFADeviceTagsPaginator";
|
|
18
18
|
export * from "./ListOpenIDConnectProviderTagsPaginator";
|
|
19
19
|
export * from "./ListPoliciesPaginator";
|
|
20
20
|
export * from "./ListPolicyTagsPaginator";
|
|
21
21
|
export * from "./ListPolicyVersionsPaginator";
|
|
22
22
|
export * from "./ListRolePoliciesPaginator";
|
|
23
|
-
export * from "./ListRoleTagsPaginator";
|
|
24
23
|
export * from "./ListRolesPaginator";
|
|
24
|
+
export * from "./ListRoleTagsPaginator";
|
|
25
25
|
export * from "./ListSAMLProviderTagsPaginator";
|
|
26
|
-
export * from "./ListSSHPublicKeysPaginator";
|
|
27
|
-
export * from "./ListServerCertificateTagsPaginator";
|
|
28
26
|
export * from "./ListServerCertificatesPaginator";
|
|
27
|
+
export * from "./ListServerCertificateTagsPaginator";
|
|
29
28
|
export * from "./ListSigningCertificatesPaginator";
|
|
29
|
+
export * from "./ListSSHPublicKeysPaginator";
|
|
30
30
|
export * from "./ListUserPoliciesPaginator";
|
|
31
|
-
export * from "./ListUserTagsPaginator";
|
|
32
31
|
export * from "./ListUsersPaginator";
|
|
32
|
+
export * from "./ListUserTagsPaginator";
|
|
33
33
|
export * from "./ListVirtualMFADevicesPaginator";
|
|
34
34
|
export * from "./SimulateCustomPolicyPaginator";
|
|
35
35
|
export * from "./SimulatePrincipalPolicyPaginator";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
1
2
|
export * from "./GetAccountAuthorizationDetailsPaginator";
|
|
2
3
|
export * from "./GetGroupPaginator";
|
|
3
|
-
export * from "./Interfaces";
|
|
4
4
|
export * from "./ListAccessKeysPaginator";
|
|
5
5
|
export * from "./ListAccountAliasesPaginator";
|
|
6
6
|
export * from "./ListAttachedGroupPoliciesPaginator";
|
|
@@ -8,28 +8,28 @@ export * from "./ListAttachedRolePoliciesPaginator";
|
|
|
8
8
|
export * from "./ListAttachedUserPoliciesPaginator";
|
|
9
9
|
export * from "./ListEntitiesForPolicyPaginator";
|
|
10
10
|
export * from "./ListGroupPoliciesPaginator";
|
|
11
|
-
export * from "./ListGroupsForUserPaginator";
|
|
12
11
|
export * from "./ListGroupsPaginator";
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./ListInstanceProfilesForRolePaginator";
|
|
12
|
+
export * from "./ListGroupsForUserPaginator";
|
|
15
13
|
export * from "./ListInstanceProfilesPaginator";
|
|
16
|
-
export * from "./
|
|
14
|
+
export * from "./ListInstanceProfilesForRolePaginator";
|
|
15
|
+
export * from "./ListInstanceProfileTagsPaginator";
|
|
17
16
|
export * from "./ListMFADevicesPaginator";
|
|
17
|
+
export * from "./ListMFADeviceTagsPaginator";
|
|
18
18
|
export * from "./ListOpenIDConnectProviderTagsPaginator";
|
|
19
19
|
export * from "./ListPoliciesPaginator";
|
|
20
20
|
export * from "./ListPolicyTagsPaginator";
|
|
21
21
|
export * from "./ListPolicyVersionsPaginator";
|
|
22
22
|
export * from "./ListRolePoliciesPaginator";
|
|
23
|
-
export * from "./ListRoleTagsPaginator";
|
|
24
23
|
export * from "./ListRolesPaginator";
|
|
24
|
+
export * from "./ListRoleTagsPaginator";
|
|
25
25
|
export * from "./ListSAMLProviderTagsPaginator";
|
|
26
|
-
export * from "./ListSSHPublicKeysPaginator";
|
|
27
|
-
export * from "./ListServerCertificateTagsPaginator";
|
|
28
26
|
export * from "./ListServerCertificatesPaginator";
|
|
27
|
+
export * from "./ListServerCertificateTagsPaginator";
|
|
29
28
|
export * from "./ListSigningCertificatesPaginator";
|
|
29
|
+
export * from "./ListSSHPublicKeysPaginator";
|
|
30
30
|
export * from "./ListUserPoliciesPaginator";
|
|
31
|
-
export * from "./ListUserTagsPaginator";
|
|
32
31
|
export * from "./ListUsersPaginator";
|
|
32
|
+
export * from "./ListUserTagsPaginator";
|
|
33
33
|
export * from "./ListVirtualMFADevicesPaginator";
|
|
34
34
|
export * from "./SimulateCustomPolicyPaginator";
|
|
35
35
|
export * from "./SimulatePrincipalPolicyPaginator";
|
package/package.json
CHANGED
|
@@ -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",
|