Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions proto/spaceone/api/identity/v2/user.proto
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ enum AuthType {

enum UserRequiredAction {
UPDATE_PASSWORD = 0;
ENFORCE_MFA = 1;
}


Expand Down Expand Up @@ -160,6 +161,10 @@ message CreateUserRequest {
google.protobuf.Struct tags = 8;
// If reset_password is true, send email
bool reset_password = 9;
// +optional
MFA mfa = 10;
// +optional
repeated UserRequiredAction required_actions = 11;
}

//{
Expand Down Expand Up @@ -188,6 +193,10 @@ message UpdateUserRequest {
google.protobuf.Struct tags = 7;
// +optional
bool reset_password = 8;
// +optional
MFA mfa = 9;
// +optional
repeated UserRequiredAction required_actions = 10;
}

//{
Expand Down
Loading