Skip to content

Commit c2a9611

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 173230f of spec repo
1 parent 6bec3d5 commit c2a9611

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50704,6 +50704,12 @@ components:
5070450704
icon:
5070550705
description: URL of the user's icon.
5070650706
type: string
50707+
last_login_time:
50708+
description: The last time the user logged in.
50709+
format: date-time
50710+
nullable: true
50711+
readOnly: true
50712+
type: string
5070750713
mfa_enabled:
5070850714
description: If user has MFA enabled.
5070950715
readOnly: true

packages/datadog-api-client-v2/models/UserAttributes.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ export class UserAttributes {
3030
* URL of the user's icon.
3131
*/
3232
"icon"?: string;
33+
/**
34+
* The last time the user logged in.
35+
*/
36+
"lastLoginTime"?: Date;
3337
/**
3438
* If user has MFA enabled.
3539
*/
@@ -96,6 +100,11 @@ export class UserAttributes {
96100
baseName: "icon",
97101
type: "string",
98102
},
103+
lastLoginTime: {
104+
baseName: "last_login_time",
105+
type: "Date",
106+
format: "date-time",
107+
},
99108
mfaEnabled: {
100109
baseName: "mfa_enabled",
101110
type: "boolean",

0 commit comments

Comments
 (0)