diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 4fc8dbe378..9586d50959 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.py b/examples/v1/tags/ListHostTags.py index ec1b394f6e..a6352ad2c6 100644 --- a/examples/v1/tags/ListHostTags.py +++ b/examples/v1/tags/ListHostTags.py @@ -1,5 +1,5 @@ """ -Get Tags returns "OK" response +Get All Hosts Tags returns "OK" response """ from datadog_api_client import ApiClient, Configuration diff --git a/src/datadog_api_client/v1/api/tags_api.py b/src/datadog_api_client/v1/api/tags_api.py index 8d030ab309..5141dc2e8a 100644 --- a/src/datadog_api_client/v1/api/tags_api.py +++ b/src/datadog_api_client/v1/api/tags_api.py @@ -261,7 +261,7 @@ def list_host_tags( *, source: Union[str, UnsetType] = unset, ) -> TagToHosts: - """Get Tags. + """Get All Hosts Tags. Return a mapping of tags to hosts for your whole infrastructure. diff --git a/tests/v1/features/tags.feature b/tests/v1/features/tags.feature index 36e1eabfdc..bc705c8ea5 100644 --- a/tests/v1/features/tags.feature +++ b/tests/v1/features/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