Skip to content

Add modified_at attribute to user response v2 schema #352

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

Merged
merged 1 commit into from
Mar 31, 2021
Merged
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.4.1.dev6",
"regenerated": "2021-03-30 15:15:15.278615",
"spec_repo_commit": "289b515"
"regenerated": "2021-03-31 10:26:00.839588",
"spec_repo_commit": "5e32bc9"
},
"v2": {
"apigentools_version": "1.4.1.dev6",
"regenerated": "2021-03-30 15:15:42.391195",
"spec_repo_commit": "289b515"
"regenerated": "2021-03-31 10:26:27.435866",
"spec_repo_commit": "5e32bc9"
}
}
}
1 change: 1 addition & 0 deletions docs/v2/UserAttributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**email** | **str** | Email of the user. | [optional]
**handle** | **str** | Handle of the user. | [optional]
**icon** | **str** | URL of the user's icon. | [optional]
**modified_at** | **datetime** | Time that the user was last modified. | [optional]
**name** | **str** | Name of the user. | [optional]
**status** | **str** | Status of the user. | [optional]
**title** | **str** | Title of the user. | [optional]
Expand Down
3 changes: 3 additions & 0 deletions src/datadog_api_client/v2/model/user_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def openapi_types():
"email": (str,), # noqa: E501
"handle": (str,), # noqa: E501
"icon": (str,), # noqa: E501
"modified_at": (datetime,), # noqa: E501
"name": (str,), # noqa: E501
"status": (str,), # noqa: E501
"title": (str,), # noqa: E501
Expand All @@ -86,6 +87,7 @@ def discriminator():
"email": "email", # noqa: E501
"handle": "handle", # noqa: E501
"icon": "icon", # noqa: E501
"modified_at": "modified_at", # noqa: E501
"name": "name", # noqa: E501
"status": "status", # noqa: E501
"title": "title", # noqa: E501
Expand Down Expand Up @@ -145,6 +147,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
email (str): Email of the user.. [optional] # noqa: E501
handle (str): Handle of the user.. [optional] # noqa: E501
icon (str): URL of the user's icon.. [optional] # noqa: E501
modified_at (datetime): Time that the user was last modified.. [optional] # noqa: E501
name (str): Name of the user.. [optional] # noqa: E501
status (str): Status of the user.. [optional] # noqa: E501
title (str): Title of the user.. [optional] # noqa: E501
Expand Down
4 changes: 4 additions & 0 deletions src/datadog_api_client/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4535,6 +4535,10 @@ components:
icon:
description: URL of the user's icon.
type: string
modified_at:
description: Time that the user was last modified.
format: date-time
type: string
name:
description: Name of the user.
type: string
Expand Down