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

Fix org name maximum #1393

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.2",
"regenerated": "2022-03-16 20:24:56.087926",
"spec_repo_commit": "1289c722"
"regenerated": "2022-03-17 17:21:23.574759",
"spec_repo_commit": "31d44cb6"
},
"v2": {
"apigentools_version": "1.6.2",
"regenerated": "2022-03-16 20:24:56.103314",
"spec_repo_commit": "1289c722"
"regenerated": "2022-03-17 17:21:23.590260",
"spec_repo_commit": "31d44cb6"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7667,7 +7667,7 @@ components:
name:
description: The name of the new child-organization, limited to 32 characters.
example: New child org
maximum: 32
maxLength: 32
type: string
public_id:
description: The `public_id` of the organization you are operating within.
Expand Down Expand Up @@ -7696,7 +7696,7 @@ components:
name:
description: The name of the new child-organization, limited to 32 characters.
example: New child org
maximum: 32
maxLength: 32
type: string
subscription:
$ref: '#/components/schemas/OrganizationSubscription'
Expand Down
8 changes: 8 additions & 0 deletions tests/scenarios/features/v1/logs.feature
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Feature: Logs
When the request is sent
Then the response status is 400 Bad Request

@generated @skip @team:DataDog/logs-app
Scenario: Search logs returns "OK" response
Given a valid "appKeyAuth" key in the system
And new "ListLogs" request
And body with value {"index": "retention-3,retention-15", "limit": null, "query": "service:web* AND @http.status_code:[200 TO 299]", "sort": "asc", "startAt": null, "time": {"from": "2020-02-02T02:02:02Z", "timezone": null, "to": "2020-02-02T20:20:20Z"}}
When the request is sent
Then the response status is 200 OK

@team:DataDog/logs-app
Scenario: Search test logs returns "OK" response
Given a valid "appKeyAuth" key in the system
Expand Down