File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
proto/spaceone/api/identity/v2 Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ enum AuthType {
114
114
115
115
enum UserRequiredAction {
116
116
UPDATE_PASSWORD = 0 ;
117
+ ENFORCE_MFA = 1 ;
117
118
}
118
119
119
120
@@ -160,6 +161,10 @@ message CreateUserRequest {
160
161
google.protobuf.Struct tags = 8 ;
161
162
// If reset_password is true, send email
162
163
bool reset_password = 9 ;
164
+ // +optional
165
+ MFA mfa = 10 ;
166
+ // +optional
167
+ repeated UserRequiredAction required_actions = 11 ;
163
168
}
164
169
165
170
//{
@@ -188,6 +193,10 @@ message UpdateUserRequest {
188
193
google.protobuf.Struct tags = 7 ;
189
194
// +optional
190
195
bool reset_password = 8 ;
196
+ // +optional
197
+ MFA mfa = 9 ;
198
+ // +optional
199
+ repeated UserRequiredAction required_actions = 10 ;
191
200
}
192
201
193
202
//{
You can’t perform that action at this time.
0 commit comments