-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate client from commit 77d3d5e5 of spec repo
- Loading branch information
ci.datadog-api-spec
committed
Sep 24, 2024
1 parent
f835926
commit b92fccb
Showing
14 changed files
with
888 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24635,16 +24635,36 @@ components: | |
UserCreateAttributes: | ||
description: Attributes of the created user. | ||
properties: | ||
created_at: | ||
description: The `UserCreateAttributes` `created_at`. | ||
format: date-time | ||
type: string | ||
disabled: | ||
description: The `UserCreateAttributes` `disabled`. | ||
type: boolean | ||
email: | ||
description: The email of the user. | ||
example: [email protected] | ||
type: string | ||
handle: | ||
description: The `UserCreateAttributes` `handle`. | ||
type: string | ||
modified_at: | ||
description: The `UserCreateAttributes` `modified_at`. | ||
format: date-time | ||
type: string | ||
name: | ||
description: The name of the user. | ||
type: string | ||
service_account: | ||
description: The `UserCreateAttributes` `service_account`. | ||
type: boolean | ||
title: | ||
description: The title of the user. | ||
type: string | ||
verified: | ||
description: The `UserCreateAttributes` `verified`. | ||
type: boolean | ||
required: | ||
type: object | ||
|
@@ -24694,6 +24714,10 @@ components: | |
invite_type: | ||
description: Type of invitation. | ||
type: string | ||
login_method: | ||
description: The `UserInvitationDataAttributes` `login_method`. | ||
nullable: true | ||
type: string | ||
uuid: | ||
description: UUID of the user invitation. | ||
type: string | ||
|
@@ -24755,6 +24779,79 @@ components: | |
type: string | ||
x-enum-varnames: | ||
- USER_INVITATIONS | ||
UserOrgsSerializable: | ||
description: The definition of `UserOrgsSerializable` object. | ||
properties: | ||
attributes: | ||
$ref: '#/components/schemas/UserOrgsSerializableAttributes' | ||
id: | ||
description: The `UserOrgsSerializable` `id`. | ||
type: string | ||
type: | ||
$ref: '#/components/schemas/UserOrgsSerializableType' | ||
required: | ||
- type | ||
type: object | ||
UserOrgsSerializableAttributes: | ||
description: The definition of `UserOrgsSerializableAttributes` object. | ||
properties: | ||
disabled: | ||
description: The `UserOrgsSerializableAttributes` `disabled`. | ||
type: boolean | ||
email: | ||
description: The `UserOrgsSerializableAttributes` `email`. | ||
type: string | ||
name: | ||
description: The `UserOrgsSerializableAttributes` `name`. | ||
type: string | ||
org_id: | ||
description: The `UserOrgsSerializableAttributes` `org_id`. | ||
type: string | ||
title: | ||
description: The `UserOrgsSerializableAttributes` `title`. | ||
type: string | ||
verified: | ||
description: The `UserOrgsSerializableAttributes` `verified`. | ||
type: boolean | ||
type: object | ||
UserOrgsSerializableType: | ||
default: users | ||
description: The definition of `UserOrgsSerializableType` object. | ||
enum: | ||
- users | ||
example: users | ||
type: string | ||
x-enum-varnames: | ||
- USERS | ||
UserOverrideIdentityProvider: | ||
description: The definition of `UserOverrideIdentityProvider` object. | ||
properties: | ||
attributes: | ||
$ref: '#/components/schemas/UserOverrideIdentityProviderAttributes' | ||
id: | ||
description: The `UserOverrideIdentityProvider` `id`. | ||
type: string | ||
type: | ||
$ref: '#/components/schemas/UserOverrideIdentityProviderType' | ||
required: | ||
- type | ||
type: object | ||
UserOverrideIdentityProviderAttributes: | ||
description: The definition of `UserOverrideIdentityProviderAttributes` object. | ||
properties: | ||
authentication_method: | ||
description: The `UserOverrideIdentityProviderAttributes` `authentication_method`. | ||
type: string | ||
type: object | ||
UserOverrideIdentityProviderType: | ||
default: identity_providers | ||
description: The definition of `UserOverrideIdentityProviderType` object. | ||
enum: | ||
- identity_providers | ||
example: identity_providers | ||
type: string | ||
x-enum-varnames: | ||
- IDENTITY_PROVIDERS | ||
UserRelationshipData: | ||
description: Relationship to user object. | ||
properties: | ||
|
@@ -24800,6 +24897,8 @@ components: | |
- $ref: '#/components/schemas/Organization' | ||
- $ref: '#/components/schemas/Permission' | ||
- $ref: '#/components/schemas/Role' | ||
- $ref: '#/components/schemas/UserOverrideIdentityProvider' | ||
- $ref: '#/components/schemas/UserOrgsSerializable' | ||
UserResponseRelationships: | ||
description: Relationships of the user object returned by the API. | ||
properties: | ||
|
@@ -25038,15 +25137,36 @@ components: | |
UserUpdateAttributes: | ||
description: Attributes of the edited user. | ||
properties: | ||
created_at: | ||
description: The `UserUpdateAttributes` `created_at`. | ||
format: date-time | ||
type: string | ||
disabled: | ||
description: If the user is enabled or disabled. | ||
type: boolean | ||
email: | ||
description: The email of the user. | ||
type: string | ||
handle: | ||
description: The `UserUpdateAttributes` `handle`. | ||
type: string | ||
modified_at: | ||
description: The `UserUpdateAttributes` `modified_at`. | ||
format: date-time | ||
type: string | ||
name: | ||
description: The name of the user. | ||
type: string | ||
service_account: | ||
description: The `UserUpdateAttributes` `service_account`. | ||
type: boolean | ||
title: | ||
description: The `UserUpdateAttributes` `title`. | ||
nullable: true | ||
type: string | ||
verified: | ||
description: The `UserUpdateAttributes` `verified`. | ||
type: boolean | ||
type: object | ||
UserUpdateData: | ||
description: Object to update a user. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.