File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
proto/spaceone/api/identity/v2 Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ enum UserRequiredAction {
117
117
ENFORCE_MFA = 1 ;
118
118
}
119
119
120
-
121
120
message MFA {
122
121
enum State {
123
122
NONE = 0 ;
@@ -162,9 +161,10 @@ message CreateUserRequest {
162
161
// If reset_password is true, send email
163
162
bool reset_password = 9 ;
164
163
// +optional
165
- MFA mfa = 10 ;
164
+ optional bool enforce_mfa = 10 ;
166
165
// +optional
167
- repeated UserRequiredAction required_actions = 11 ;
166
+ string enforce_mfa_type = 11 ;
167
+
168
168
}
169
169
170
170
//{
@@ -194,9 +194,9 @@ message UpdateUserRequest {
194
194
// +optional
195
195
bool reset_password = 8 ;
196
196
// +optional
197
- MFA mfa = 9 ;
197
+ optional bool enforce_mfa = 9 ;
198
198
// +optional
199
- repeated UserRequiredAction required_actions = 10 ;
199
+ string enforce_mfa_type = 10 ;
200
200
}
201
201
202
202
//{
You can’t perform that action at this time.
0 commit comments