@aws-sdk/client-iam 3.687.0 → 3.691.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.
@@ -41,20 +41,20 @@ export interface UntagUserRequest {
41
41
  TagKeys: string[] | undefined;
42
42
  }
43
43
  export interface UpdateAccessKeyRequest {
44
- UserName?: string;
44
+ UserName?: string | undefined;
45
45
  AccessKeyId: string | undefined;
46
46
  Status: StatusType | undefined;
47
47
  }
48
48
  export interface UpdateAccountPasswordPolicyRequest {
49
- MinimumPasswordLength?: number;
50
- RequireSymbols?: boolean;
51
- RequireNumbers?: boolean;
52
- RequireUppercaseCharacters?: boolean;
53
- RequireLowercaseCharacters?: boolean;
54
- AllowUsersToChangePassword?: boolean;
55
- MaxPasswordAge?: number;
56
- PasswordReusePrevention?: number;
57
- HardExpiry?: boolean;
49
+ MinimumPasswordLength?: number | undefined;
50
+ RequireSymbols?: boolean | undefined;
51
+ RequireNumbers?: boolean | undefined;
52
+ RequireUppercaseCharacters?: boolean | undefined;
53
+ RequireLowercaseCharacters?: boolean | undefined;
54
+ AllowUsersToChangePassword?: boolean | undefined;
55
+ MaxPasswordAge?: number | undefined;
56
+ PasswordReusePrevention?: number | undefined;
57
+ HardExpiry?: boolean | undefined;
58
58
  }
59
59
  export interface UpdateAssumeRolePolicyRequest {
60
60
  RoleName: string | undefined;
@@ -62,13 +62,13 @@ export interface UpdateAssumeRolePolicyRequest {
62
62
  }
63
63
  export interface UpdateGroupRequest {
64
64
  GroupName: string | undefined;
65
- NewPath?: string;
66
- NewGroupName?: string;
65
+ NewPath?: string | undefined;
66
+ NewGroupName?: string | undefined;
67
67
  }
68
68
  export interface UpdateLoginProfileRequest {
69
69
  UserName: string | undefined;
70
- Password?: string;
71
- PasswordResetRequired?: boolean;
70
+ Password?: string | undefined;
71
+ PasswordResetRequired?: boolean | undefined;
72
72
  }
73
73
  export interface UpdateOpenIDConnectProviderThumbprintRequest {
74
74
  OpenIDConnectProviderArn: string | undefined;
@@ -76,8 +76,8 @@ export interface UpdateOpenIDConnectProviderThumbprintRequest {
76
76
  }
77
77
  export interface UpdateRoleRequest {
78
78
  RoleName: string | undefined;
79
- Description?: string;
80
- MaxSessionDuration?: number;
79
+ Description?: string | undefined;
80
+ MaxSessionDuration?: number | undefined;
81
81
  }
82
82
  export interface UpdateRoleResponse {}
83
83
  export interface UpdateRoleDescriptionRequest {
@@ -85,27 +85,27 @@ export interface UpdateRoleDescriptionRequest {
85
85
  Description: string | undefined;
86
86
  }
87
87
  export interface UpdateRoleDescriptionResponse {
88
- Role?: Role;
88
+ Role?: Role | undefined;
89
89
  }
90
90
  export interface UpdateSAMLProviderRequest {
91
91
  SAMLMetadataDocument: string | undefined;
92
92
  SAMLProviderArn: string | undefined;
93
93
  }
94
94
  export interface UpdateSAMLProviderResponse {
95
- SAMLProviderArn?: string;
95
+ SAMLProviderArn?: string | undefined;
96
96
  }
97
97
  export interface UpdateServerCertificateRequest {
98
98
  ServerCertificateName: string | undefined;
99
- NewPath?: string;
100
- NewServerCertificateName?: string;
99
+ NewPath?: string | undefined;
100
+ NewServerCertificateName?: string | undefined;
101
101
  }
102
102
  export interface UpdateServiceSpecificCredentialRequest {
103
- UserName?: string;
103
+ UserName?: string | undefined;
104
104
  ServiceSpecificCredentialId: string | undefined;
105
105
  Status: StatusType | undefined;
106
106
  }
107
107
  export interface UpdateSigningCertificateRequest {
108
- UserName?: string;
108
+ UserName?: string | undefined;
109
109
  CertificateId: string | undefined;
110
110
  Status: StatusType | undefined;
111
111
  }
@@ -116,8 +116,8 @@ export interface UpdateSSHPublicKeyRequest {
116
116
  }
117
117
  export interface UpdateUserRequest {
118
118
  UserName: string | undefined;
119
- NewPath?: string;
120
- NewUserName?: string;
119
+ NewPath?: string | undefined;
120
+ NewUserName?: string | undefined;
121
121
  }
122
122
  export declare class KeyPairMismatchException extends __BaseException {
123
123
  readonly name: "KeyPairMismatchException";
@@ -134,16 +134,16 @@ export declare class MalformedCertificateException extends __BaseException {
134
134
  );
135
135
  }
136
136
  export interface UploadServerCertificateRequest {
137
- Path?: string;
137
+ Path?: string | undefined;
138
138
  ServerCertificateName: string | undefined;
139
139
  CertificateBody: string | undefined;
140
140
  PrivateKey: string | undefined;
141
- CertificateChain?: string;
142
- Tags?: Tag[];
141
+ CertificateChain?: string | undefined;
142
+ Tags?: Tag[] | undefined;
143
143
  }
144
144
  export interface UploadServerCertificateResponse {
145
- ServerCertificateMetadata?: ServerCertificateMetadata;
146
- Tags?: Tag[];
145
+ ServerCertificateMetadata?: ServerCertificateMetadata | undefined;
146
+ Tags?: Tag[] | undefined;
147
147
  }
148
148
  export declare class DuplicateCertificateException extends __BaseException {
149
149
  readonly name: "DuplicateCertificateException";
@@ -160,7 +160,7 @@ export declare class InvalidCertificateException extends __BaseException {
160
160
  );
161
161
  }
162
162
  export interface UploadSigningCertificateRequest {
163
- UserName?: string;
163
+ UserName?: string | undefined;
164
164
  CertificateBody: string | undefined;
165
165
  }
166
166
  export interface UploadSigningCertificateResponse {
@@ -185,7 +185,7 @@ export interface UploadSSHPublicKeyRequest {
185
185
  SSHPublicKeyBody: string | undefined;
186
186
  }
187
187
  export interface UploadSSHPublicKeyResponse {
188
- SSHPublicKey?: SSHPublicKey;
188
+ SSHPublicKey?: SSHPublicKey | undefined;
189
189
  }
190
190
  export declare const UpdateLoginProfileRequestFilterSensitiveLog: (
191
191
  obj: UpdateLoginProfileRequest
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.687.0",
4
+ "version": "3.691.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",
@@ -20,19 +20,19 @@
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.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",