Skip to content

Update team name and handle length restrictions #1493

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
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.4",
"regenerated": "2023-05-31 17:18:49.448507",
"spec_repo_commit": "3b710977"
"regenerated": "2023-05-31 18:24:48.311029",
"spec_repo_commit": "75f2b526"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-05-31 17:18:49.461560",
"spec_repo_commit": "3b710977"
"regenerated": "2023-05-31 18:24:48.325321",
"spec_repo_commit": "75f2b526"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13667,12 +13667,12 @@ components:
handle:
description: The team's identifier
example: example-team
maxLength: 64
maxLength: 195
type: string
name:
description: The name of the team
example: Example Team
maxLength: 64
maxLength: 200
type: string
required:
- handle
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v2/model/team_create_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
class TeamCreateAttributes(ModelNormal):
validations = {
"handle": {
"max_length": 64,
"max_length": 195,
},
"name": {
"max_length": 64,
"max_length": 200,
},
}

Expand Down