We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2e09c7 commit 3897493Copy full SHA for 3897493
packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts
@@ -226,6 +226,7 @@ export const unmarshalUser = (data: unknown) => {
226
}
227
228
return {
229
+ accountRootUserId: data.account_root_user_id,
230
createdAt: unmarshalDate(data.created_at),
231
deletable: data.deletable,
232
email: data.email,
packages/clients/src/api/iam/v1alpha1/types.gen.ts
@@ -435,6 +435,8 @@ export interface User {
435
status: UserStatus
436
/** Defines whether MFA is enabled. */
437
mfa: boolean
438
+ /** ID of the account root user associated with the user. */
439
+ accountRootUserId: string
440
441
442
export type ListSSHKeysRequest = {
0 commit comments