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
10 changes: 5 additions & 5 deletions proto/spaceone/api/identity/v2/user.proto
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ enum UserRequiredAction {
ENFORCE_MFA = 1;
}


message MFA {
enum State {
NONE = 0;
Expand Down Expand Up @@ -162,9 +161,10 @@ message CreateUserRequest {
// If reset_password is true, send email
bool reset_password = 9;
// +optional
MFA mfa = 10;
optional bool enforce_mfa = 10;
// +optional
repeated UserRequiredAction required_actions = 11;
string enforce_mfa_type = 11;

}

//{
Expand Down Expand Up @@ -194,9 +194,9 @@ message UpdateUserRequest {
// +optional
bool reset_password = 8;
// +optional
MFA mfa = 9;
optional bool enforce_mfa = 9;
// +optional
repeated UserRequiredAction required_actions = 10;
string enforce_mfa_type = 10;
}

//{
Expand Down
Loading