Skip to content
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": "2025-04-30 13:01:33.893107",
"spec_repo_commit": "ca363d75"
"regenerated": "2025-04-30 14:12:48.623962",
"spec_repo_commit": "6e2d4035"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-30 13:01:33.909646",
"spec_repo_commit": "ca363d75"
"regenerated": "2025-04-30 14:12:48.640062",
"spec_repo_commit": "6e2d4035"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34159,7 +34159,7 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/HostTags'
description: Add tags to host
description: Add tags to host.
required: true
responses:
'201':
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/com/datadog/api/client/v1/api/TagsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ public UpdateHostTagsOptionalParameters source(String source) {
*
* @param hostName This endpoint allows you to update/replace all in an integration source with
* those supplied in the request. (required)
* @param body Add tags to host (required)
* @param body Add tags to host. (required)
* @return HostTags
* @throws ApiException if fails to make API call
*/
Expand All @@ -882,7 +882,7 @@ public HostTags updateHostTags(String hostName, HostTags body) throws ApiExcepti
*
* @param hostName This endpoint allows you to update/replace all in an integration source with
* those supplied in the request. (required)
* @param body Add tags to host (required)
* @param body Add tags to host. (required)
* @return CompletableFuture<HostTags>
*/
public CompletableFuture<HostTags> updateHostTagsAsync(String hostName, HostTags body) {
Expand All @@ -900,7 +900,7 @@ public CompletableFuture<HostTags> updateHostTagsAsync(String hostName, HostTags
*
* @param hostName This endpoint allows you to update/replace all in an integration source with
* those supplied in the request. (required)
* @param body Add tags to host (required)
* @param body Add tags to host. (required)
* @param parameters Optional parameters for the request.
* @return HostTags
* @throws ApiException if fails to make API call
Expand All @@ -918,7 +918,7 @@ public HostTags updateHostTags(
*
* @param hostName This endpoint allows you to update/replace all in an integration source with
* those supplied in the request. (required)
* @param body Add tags to host (required)
* @param body Add tags to host. (required)
* @param parameters Optional parameters for the request.
* @return CompletableFuture&lt;HostTags&gt;
*/
Expand All @@ -937,7 +937,7 @@ public CompletableFuture<HostTags> updateHostTagsAsync(
*
* @param hostName This endpoint allows you to update/replace all in an integration source with
* those supplied in the request. (required)
* @param body Add tags to host (required)
* @param body Add tags to host. (required)
* @param parameters Optional parameters for the request.
* @return ApiResponse&lt;HostTags&gt;
* @throws ApiException if fails to make API call
Expand Down Expand Up @@ -1005,7 +1005,7 @@ public ApiResponse<HostTags> updateHostTagsWithHttpInfo(
*
* @param hostName This endpoint allows you to update/replace all in an integration source with
* those supplied in the request. (required)
* @param body Add tags to host (required)
* @param body Add tags to host. (required)
* @param parameters Optional parameters for the request.
* @return CompletableFuture&lt;ApiResponse&lt;HostTags&gt;&gt;
*/
Expand Down
Loading