Skip to content
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.6",
"regenerated": "2023-09-28 06:45:55.666971",
"spec_repo_commit": "a10ce226"
"regenerated": "2023-09-28 11:39:13.978223",
"spec_repo_commit": "6bea2ad2"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2023-09-28 06:45:55.682395",
"spec_repo_commit": "a10ce226"
"regenerated": "2023-09-28 11:39:13.993886",
"spec_repo_commit": "6bea2ad2"
}
}
}
32 changes: 32 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26426,6 +26426,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamsResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'429':
$ref: '#/components/responses/TooManyRequestsResponse'
security:
Expand Down Expand Up @@ -26458,6 +26460,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamResponse'
description: CREATED
'403':
$ref: '#/components/responses/ForbiddenResponse'
'409':
content:
application/json:
Expand Down Expand Up @@ -26490,6 +26494,8 @@ paths:
responses:
'204':
description: No Content
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26524,6 +26530,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26573,6 +26581,8 @@ paths:
schema:
$ref: '#/components/schemas/APIErrorResponse'
description: API error response.
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26614,6 +26624,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamLinksResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26653,6 +26665,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamLinkResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26696,6 +26710,8 @@ paths:
responses:
'204':
description: No Content
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26735,6 +26751,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamLinkResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26780,6 +26798,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamLinkResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26827,6 +26847,8 @@ paths:
schema:
$ref: '#/components/schemas/UserTeamsResponse'
description: Represents a user's association to a team
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26866,6 +26888,8 @@ paths:
schema:
$ref: '#/components/schemas/UserTeamResponse'
description: Represents a user's association to a team
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26909,6 +26933,8 @@ paths:
responses:
'204':
description: No Content
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26954,6 +26980,8 @@ paths:
schema:
$ref: '#/components/schemas/UserTeamResponse'
description: Represents a user's association to a team
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -26989,6 +27017,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamPermissionSettingsResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down Expand Up @@ -27035,6 +27065,8 @@ paths:
schema:
$ref: '#/components/schemas/TeamPermissionSettingResponse'
description: OK
'403':
$ref: '#/components/responses/ForbiddenResponse'
'404':
content:
application/json:
Expand Down
16 changes: 16 additions & 0 deletions src/main/java/com/datadog/api/client/v2/api/TeamsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public CompletableFuture<TeamResponse> createTeamAsync(TeamCreateRequest body) {
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 201 </td><td> CREATED </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 409 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -237,6 +238,7 @@ public CompletableFuture<TeamLinkResponse> createTeamLinkAsync(
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 422 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
Expand Down Expand Up @@ -393,6 +395,7 @@ public CompletableFuture<UserTeamResponse> createTeamMembershipAsync(
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> Represents a user&#39;s association to a team </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 409 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
Expand Down Expand Up @@ -543,6 +546,7 @@ public CompletableFuture<Void> deleteTeamAsync(String teamId) {
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 204 </td><td> No Content </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -676,6 +680,7 @@ public CompletableFuture<Void> deleteTeamLinkAsync(String teamId, String linkId)
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 204 </td><td> No Content </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -830,6 +835,7 @@ public CompletableFuture<Void> deleteTeamMembershipAsync(String teamId, String u
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 204 </td><td> No Content </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -982,6 +988,7 @@ public CompletableFuture<TeamResponse> getTeamAsync(String teamId) {
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -1115,6 +1122,7 @@ public CompletableFuture<TeamLinkResponse> getTeamLinkAsync(String teamId, Strin
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -1267,6 +1275,7 @@ public CompletableFuture<TeamLinksResponse> getTeamLinksAsync(String teamId) {
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -1489,6 +1498,7 @@ public CompletableFuture<UserTeamsResponse> getTeamMembershipsAsync(
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> Represents a user&#39;s association to a team </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -1646,6 +1656,7 @@ public CompletableFuture<TeamPermissionSettingsResponse> getTeamPermissionSettin
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -2076,6 +2087,7 @@ public PaginationIterable<Team> listTeamsWithPagination(ListTeamsOptionalParamet
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*/
Expand Down Expand Up @@ -2224,6 +2236,7 @@ public CompletableFuture<TeamResponse> updateTeamAsync(String teamId, TeamUpdate
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 400 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 409 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
Expand Down Expand Up @@ -2380,6 +2393,7 @@ public CompletableFuture<TeamLinkResponse> updateTeamLinkAsync(
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -2556,6 +2570,7 @@ public CompletableFuture<UserTeamResponse> updateTeamMembershipAsync(
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> Represents a user&#39;s association to a team </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down Expand Up @@ -2732,6 +2747,7 @@ public CompletableFuture<TeamPermissionSettingResponse> updateTeamPermissionSett
* <caption>Response details</caption>
* <tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr>
* <tr><td> 200 </td><td> OK </td><td> - </td></tr>
* <tr><td> 403 </td><td> Forbidden </td><td> - </td></tr>
* <tr><td> 404 </td><td> API error response. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
Expand Down