Skip to content

Commit f76607a

Browse files
author
BitsAdmin
committed
Merge branch 'iam-Java-2018-01-01-online-1507-2025_09_01_20_29_56' into 'integration_2025-09-11_1051496837890'
feat: [development task] iam-1507-Java (1649380) See merge request iaasng/volcengine-java-sdk!656
2 parents c010b17 + d7bc888 commit f76607a

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

volcengine-java-sdk-iam/src/main/java/com/volcengine/iam/model/LoginProfileForCreateLoginProfileOutput.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class LoginProfileForCreateLoginProfileOutput {
4040
private String lastLoginIp = null;
4141

4242
@SerializedName("LastResetPasswordTime")
43-
private Integer lastResetPasswordTime = null;
43+
private Long lastResetPasswordTime = null;
4444

4545
@SerializedName("LoginAllowed")
4646
private Boolean loginAllowed = null;
@@ -49,7 +49,7 @@ public class LoginProfileForCreateLoginProfileOutput {
4949
private Boolean loginLocked = null;
5050

5151
@SerializedName("PasswordExpireAt")
52-
private Integer passwordExpireAt = null;
52+
private Long passwordExpireAt = null;
5353

5454
@SerializedName("PasswordResetRequired")
5555
private Boolean passwordResetRequired = null;
@@ -132,7 +132,7 @@ public void setLastLoginIp(String lastLoginIp) {
132132
this.lastLoginIp = lastLoginIp;
133133
}
134134

135-
public LoginProfileForCreateLoginProfileOutput lastResetPasswordTime(Integer lastResetPasswordTime) {
135+
public LoginProfileForCreateLoginProfileOutput lastResetPasswordTime(Long lastResetPasswordTime) {
136136
this.lastResetPasswordTime = lastResetPasswordTime;
137137
return this;
138138
}
@@ -142,11 +142,11 @@ public LoginProfileForCreateLoginProfileOutput lastResetPasswordTime(Integer las
142142
* @return lastResetPasswordTime
143143
**/
144144
@Schema(description = "")
145-
public Integer getLastResetPasswordTime() {
145+
public Long getLastResetPasswordTime() {
146146
return lastResetPasswordTime;
147147
}
148148

149-
public void setLastResetPasswordTime(Integer lastResetPasswordTime) {
149+
public void setLastResetPasswordTime(Long lastResetPasswordTime) {
150150
this.lastResetPasswordTime = lastResetPasswordTime;
151151
}
152152

@@ -186,7 +186,7 @@ public void setLoginLocked(Boolean loginLocked) {
186186
this.loginLocked = loginLocked;
187187
}
188188

189-
public LoginProfileForCreateLoginProfileOutput passwordExpireAt(Integer passwordExpireAt) {
189+
public LoginProfileForCreateLoginProfileOutput passwordExpireAt(Long passwordExpireAt) {
190190
this.passwordExpireAt = passwordExpireAt;
191191
return this;
192192
}
@@ -196,11 +196,11 @@ public LoginProfileForCreateLoginProfileOutput passwordExpireAt(Integer password
196196
* @return passwordExpireAt
197197
**/
198198
@Schema(description = "")
199-
public Integer getPasswordExpireAt() {
199+
public Long getPasswordExpireAt() {
200200
return passwordExpireAt;
201201
}
202202

203-
public void setPasswordExpireAt(Integer passwordExpireAt) {
203+
public void setPasswordExpireAt(Long passwordExpireAt) {
204204
this.passwordExpireAt = passwordExpireAt;
205205
}
206206

volcengine-java-sdk-iam/src/main/java/com/volcengine/iam/model/LoginProfileForGetLoginProfileOutput.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class LoginProfileForGetLoginProfileOutput {
4040
private String lastLoginIp = null;
4141

4242
@SerializedName("LastResetPasswordTime")
43-
private Integer lastResetPasswordTime = null;
43+
private Long lastResetPasswordTime = null;
4444

4545
@SerializedName("LoginAllowed")
4646
private Boolean loginAllowed = null;
@@ -49,7 +49,7 @@ public class LoginProfileForGetLoginProfileOutput {
4949
private Boolean loginLocked = null;
5050

5151
@SerializedName("PasswordExpireAt")
52-
private Integer passwordExpireAt = null;
52+
private Long passwordExpireAt = null;
5353

5454
@SerializedName("PasswordResetRequired")
5555
private Boolean passwordResetRequired = null;
@@ -132,7 +132,7 @@ public void setLastLoginIp(String lastLoginIp) {
132132
this.lastLoginIp = lastLoginIp;
133133
}
134134

135-
public LoginProfileForGetLoginProfileOutput lastResetPasswordTime(Integer lastResetPasswordTime) {
135+
public LoginProfileForGetLoginProfileOutput lastResetPasswordTime(Long lastResetPasswordTime) {
136136
this.lastResetPasswordTime = lastResetPasswordTime;
137137
return this;
138138
}
@@ -142,11 +142,11 @@ public LoginProfileForGetLoginProfileOutput lastResetPasswordTime(Integer lastRe
142142
* @return lastResetPasswordTime
143143
**/
144144
@Schema(description = "")
145-
public Integer getLastResetPasswordTime() {
145+
public Long getLastResetPasswordTime() {
146146
return lastResetPasswordTime;
147147
}
148148

149-
public void setLastResetPasswordTime(Integer lastResetPasswordTime) {
149+
public void setLastResetPasswordTime(Long lastResetPasswordTime) {
150150
this.lastResetPasswordTime = lastResetPasswordTime;
151151
}
152152

@@ -186,7 +186,7 @@ public void setLoginLocked(Boolean loginLocked) {
186186
this.loginLocked = loginLocked;
187187
}
188188

189-
public LoginProfileForGetLoginProfileOutput passwordExpireAt(Integer passwordExpireAt) {
189+
public LoginProfileForGetLoginProfileOutput passwordExpireAt(Long passwordExpireAt) {
190190
this.passwordExpireAt = passwordExpireAt;
191191
return this;
192192
}
@@ -196,11 +196,11 @@ public LoginProfileForGetLoginProfileOutput passwordExpireAt(Integer passwordExp
196196
* @return passwordExpireAt
197197
**/
198198
@Schema(description = "")
199-
public Integer getPasswordExpireAt() {
199+
public Long getPasswordExpireAt() {
200200
return passwordExpireAt;
201201
}
202202

203-
public void setPasswordExpireAt(Integer passwordExpireAt) {
203+
public void setPasswordExpireAt(Long passwordExpireAt) {
204204
this.passwordExpireAt = passwordExpireAt;
205205
}
206206

volcengine-java-sdk-iam/src/main/java/com/volcengine/iam/model/LoginProfileForUpdateLoginProfileOutput.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class LoginProfileForUpdateLoginProfileOutput {
4040
private String lastLoginIp = null;
4141

4242
@SerializedName("LastResetPasswordTime")
43-
private Integer lastResetPasswordTime = null;
43+
private Long lastResetPasswordTime = null;
4444

4545
@SerializedName("LoginAllowed")
4646
private Boolean loginAllowed = null;
@@ -49,7 +49,7 @@ public class LoginProfileForUpdateLoginProfileOutput {
4949
private Boolean loginLocked = null;
5050

5151
@SerializedName("PasswordExpireAt")
52-
private Integer passwordExpireAt = null;
52+
private Long passwordExpireAt = null;
5353

5454
@SerializedName("PasswordResetRequired")
5555
private Boolean passwordResetRequired = null;
@@ -132,7 +132,7 @@ public void setLastLoginIp(String lastLoginIp) {
132132
this.lastLoginIp = lastLoginIp;
133133
}
134134

135-
public LoginProfileForUpdateLoginProfileOutput lastResetPasswordTime(Integer lastResetPasswordTime) {
135+
public LoginProfileForUpdateLoginProfileOutput lastResetPasswordTime(Long lastResetPasswordTime) {
136136
this.lastResetPasswordTime = lastResetPasswordTime;
137137
return this;
138138
}
@@ -142,11 +142,11 @@ public LoginProfileForUpdateLoginProfileOutput lastResetPasswordTime(Integer las
142142
* @return lastResetPasswordTime
143143
**/
144144
@Schema(description = "")
145-
public Integer getLastResetPasswordTime() {
145+
public Long getLastResetPasswordTime() {
146146
return lastResetPasswordTime;
147147
}
148148

149-
public void setLastResetPasswordTime(Integer lastResetPasswordTime) {
149+
public void setLastResetPasswordTime(Long lastResetPasswordTime) {
150150
this.lastResetPasswordTime = lastResetPasswordTime;
151151
}
152152

@@ -186,7 +186,7 @@ public void setLoginLocked(Boolean loginLocked) {
186186
this.loginLocked = loginLocked;
187187
}
188188

189-
public LoginProfileForUpdateLoginProfileOutput passwordExpireAt(Integer passwordExpireAt) {
189+
public LoginProfileForUpdateLoginProfileOutput passwordExpireAt(Long passwordExpireAt) {
190190
this.passwordExpireAt = passwordExpireAt;
191191
return this;
192192
}
@@ -196,11 +196,11 @@ public LoginProfileForUpdateLoginProfileOutput passwordExpireAt(Integer password
196196
* @return passwordExpireAt
197197
**/
198198
@Schema(description = "")
199-
public Integer getPasswordExpireAt() {
199+
public Long getPasswordExpireAt() {
200200
return passwordExpireAt;
201201
}
202202

203-
public void setPasswordExpireAt(Integer passwordExpireAt) {
203+
public void setPasswordExpireAt(Long passwordExpireAt) {
204204
this.passwordExpireAt = passwordExpireAt;
205205
}
206206

0 commit comments

Comments
 (0)