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
2 changes: 1 addition & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35649,7 +35649,7 @@ paths:
- apiKeyAuth: []
appKeyAuth: []
- AuthZ: []
summary: Get Tags
summary: Get All Hosts Tags
tags:
- Tags
x-permission:
Expand Down
2 changes: 1 addition & 1 deletion examples/v1/tags/ListHostTags.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Get Tags returns "OK" response
// Get All Hosts Tags returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/datadog/api/client/v1/api/TagsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ public ListHostTagsOptionalParameters source(String source) {
}

/**
* Get Tags.
* Get All Hosts Tags.
*
* <p>See {@link #listHostTagsWithHttpInfo}.
*
Expand All @@ -702,7 +702,7 @@ public TagToHosts listHostTags() throws ApiException {
}

/**
* Get Tags.
* Get All Hosts Tags.
*
* <p>See {@link #listHostTagsWithHttpInfoAsync}.
*
Expand All @@ -717,7 +717,7 @@ public CompletableFuture<TagToHosts> listHostTagsAsync() {
}

/**
* Get Tags.
* Get All Hosts Tags.
*
* <p>See {@link #listHostTagsWithHttpInfo}.
*
Expand All @@ -730,7 +730,7 @@ public TagToHosts listHostTags(ListHostTagsOptionalParameters parameters) throws
}

/**
* Get Tags.
* Get All Hosts Tags.
*
* <p>See {@link #listHostTagsWithHttpInfoAsync}.
*
Expand Down Expand Up @@ -795,7 +795,7 @@ public ApiResponse<TagToHosts> listHostTagsWithHttpInfo(ListHostTagsOptionalPara
}

/**
* Get Tags.
* Get All Hosts Tags.
*
* <p>See {@link #listHostTagsWithHttpInfo}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ Feature: Tags
Then the response status is 404 Not Found

@generated @skip @team:DataDog/core-index
Scenario: Get Tags returns "Not Found" response
Scenario: Get All Hosts Tags returns "Not Found" response
Given new "ListHostTags" request
When the request is sent
Then the response status is 404 Not Found

@generated @skip @team:DataDog/core-index
Scenario: Get Tags returns "OK" response
Scenario: Get All Hosts Tags returns "OK" response
Given new "ListHostTags" request
When the request is sent
Then the response status is 200 OK
Expand Down
Loading