diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 4fc8dbe3785..9586d509592 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -35649,7 +35649,7 @@ paths: - apiKeyAuth: [] appKeyAuth: [] - AuthZ: [] - summary: Get Tags + summary: Get All Hosts Tags tags: - Tags x-permission: diff --git a/examples/v1/tags/ListHostTags.java b/examples/v1/tags/ListHostTags.java index a63fe39f365..dc987b07c5b 100644 --- a/examples/v1/tags/ListHostTags.java +++ b/examples/v1/tags/ListHostTags.java @@ -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; diff --git a/src/main/java/com/datadog/api/client/v1/api/TagsApi.java b/src/main/java/com/datadog/api/client/v1/api/TagsApi.java index bb99d2b0979..4b8f2b75a8b 100644 --- a/src/main/java/com/datadog/api/client/v1/api/TagsApi.java +++ b/src/main/java/com/datadog/api/client/v1/api/TagsApi.java @@ -690,7 +690,7 @@ public ListHostTagsOptionalParameters source(String source) { } /** - * Get Tags. + * Get All Hosts Tags. * *

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

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

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

See {@link #listHostTagsWithHttpInfoAsync}. * @@ -795,7 +795,7 @@ public ApiResponse listHostTagsWithHttpInfo(ListHostTagsOptionalPara } /** - * Get Tags. + * Get All Hosts Tags. * *

See {@link #listHostTagsWithHttpInfo}. * diff --git a/src/test/resources/com/datadog/api/client/v1/api/tags.feature b/src/test/resources/com/datadog/api/client/v1/api/tags.feature index 36e1eabfdc2..bc705c8ea56 100644 --- a/src/test/resources/com/datadog/api/client/v1/api/tags.feature +++ b/src/test/resources/com/datadog/api/client/v1/api/tags.feature @@ -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