Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge user.yaml #2167

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-23 19:10:10.087479",
"spec_repo_commit": "41592dc6"
"regenerated": "2024-09-24 14:14:08.062785",
"spec_repo_commit": "77d3d5e5"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-23 19:10:10.101269",
"spec_repo_commit": "41592dc6"
"regenerated": "2024-09-24 14:14:08.076432",
"spec_repo_commit": "77d3d5e5"
}
}
}
120 changes: 120 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
- email
type: object
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down
42 changes: 42 additions & 0 deletions docs/datadog_api_client.v2.model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11029,6 +11029,48 @@ datadog\_api\_client.v2.model.user\_invitations\_type module
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_orgs\_serializable module
-------------------------------------------------------------

.. automodule:: datadog_api_client.v2.model.user_orgs_serializable
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_orgs\_serializable\_attributes module
-------------------------------------------------------------------------

.. automodule:: datadog_api_client.v2.model.user_orgs_serializable_attributes
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_orgs\_serializable\_type module
-------------------------------------------------------------------

.. automodule:: datadog_api_client.v2.model.user_orgs_serializable_type
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_override\_identity\_provider module
-----------------------------------------------------------------------

.. automodule:: datadog_api_client.v2.model.user_override_identity_provider
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_override\_identity\_provider\_attributes module
-----------------------------------------------------------------------------------

.. automodule:: datadog_api_client.v2.model.user_override_identity_provider_attributes
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_override\_identity\_provider\_type module
-----------------------------------------------------------------------------

.. automodule:: datadog_api_client.v2.model.user_override_identity_provider_type
:members:
:show-inheritance:

datadog\_api\_client.v2.model.user\_relationship\_data module
-------------------------------------------------------------

Expand Down
55 changes: 54 additions & 1 deletion src/datadog_api_client/v2/model/user_create_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from datadog_api_client.model_utils import (
ModelNormal,
cached_property,
datetime,
unset,
UnsetType,
)
Expand All @@ -17,36 +18,88 @@ class UserCreateAttributes(ModelNormal):
@cached_property
def openapi_types(_):
return {
"created_at": (datetime,),
"disabled": (bool,),
"email": (str,),
"handle": (str,),
"modified_at": (datetime,),
"name": (str,),
"service_account": (bool,),
"title": (str,),
"verified": (bool,),
}

attribute_map = {
"created_at": "created_at",
"disabled": "disabled",
"email": "email",
"handle": "handle",
"modified_at": "modified_at",
"name": "name",
"service_account": "service_account",
"title": "title",
"verified": "verified",
}

def __init__(
self_, email: str, name: Union[str, UnsetType] = unset, title: Union[str, UnsetType] = unset, **kwargs
self_,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Code Quality Violation

Suggested change
self_,
self,
first parameter of a class function should be self (...read more)

In a class method (that is not a class method nor a static method), the first argument must be self by convention.

Learn More

View in Datadog  Leave us feedback  Documentation

email: str,
created_at: Union[datetime, UnsetType] = unset,
disabled: Union[bool, UnsetType] = unset,
handle: Union[str, UnsetType] = unset,
modified_at: Union[datetime, UnsetType] = unset,
name: Union[str, UnsetType] = unset,
service_account: Union[bool, UnsetType] = unset,
title: Union[str, UnsetType] = unset,
verified: Union[bool, UnsetType] = unset,
**kwargs,
):
"""
Attributes of the created user.

:param created_at: The ``UserCreateAttributes`` ``created_at``.
:type created_at: datetime, optional

:param disabled: The ``UserCreateAttributes`` ``disabled``.
:type disabled: bool, optional

:param email: The email of the user.
:type email: str

:param handle: The ``UserCreateAttributes`` ``handle``.
:type handle: str, optional

:param modified_at: The ``UserCreateAttributes`` ``modified_at``.
:type modified_at: datetime, optional

:param name: The name of the user.
:type name: str, optional

:param service_account: The ``UserCreateAttributes`` ``service_account``.
:type service_account: bool, optional

:param title: The title of the user.
:type title: str, optional

:param verified: The ``UserCreateAttributes`` ``verified``.
:type verified: bool, optional
"""
if created_at is not unset:
kwargs["created_at"] = created_at
if disabled is not unset:
kwargs["disabled"] = disabled
if handle is not unset:
kwargs["handle"] = handle
if modified_at is not unset:
kwargs["modified_at"] = modified_at
if name is not unset:
kwargs["name"] = name
if service_account is not unset:
kwargs["service_account"] = service_account
if title is not unset:
kwargs["title"] = title
if verified is not unset:
kwargs["verified"] = verified
super().__init__(kwargs)

self_.email = email
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
ModelNormal,
cached_property,
datetime,
none_type,
unset,
UnsetType,
)
Expand All @@ -21,13 +22,15 @@ def openapi_types(_):
"created_at": (datetime,),
"expires_at": (datetime,),
"invite_type": (str,),
"login_method": (str, none_type),
"uuid": (str,),
}

attribute_map = {
"created_at": "created_at",
"expires_at": "expires_at",
"invite_type": "invite_type",
"login_method": "login_method",
"uuid": "uuid",
}

Expand All @@ -36,6 +39,7 @@ def __init__(
created_at: Union[datetime, UnsetType] = unset,
expires_at: Union[datetime, UnsetType] = unset,
invite_type: Union[str, UnsetType] = unset,
login_method: Union[str, none_type, UnsetType] = unset,
uuid: Union[str, UnsetType] = unset,
**kwargs,
):
Expand All @@ -51,6 +55,9 @@ def __init__(
:param invite_type: Type of invitation.
:type invite_type: str, optional

:param login_method: The ``UserInvitationDataAttributes`` ``login_method``.
:type login_method: str, none_type, optional

:param uuid: UUID of the user invitation.
:type uuid: str, optional
"""
Expand All @@ -60,6 +67,8 @@ def __init__(
kwargs["expires_at"] = expires_at
if invite_type is not unset:
kwargs["invite_type"] = invite_type
if login_method is not unset:
kwargs["login_method"] = login_method
if uuid is not unset:
kwargs["uuid"] = uuid
super().__init__(kwargs)
Loading
Loading