From 425e7ff71b4f623e7aec5fcdd1a0022626dac896 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 5 Dec 2025 15:30:51 +0000 Subject: [PATCH] Regenerate client from commit 4bce651 of spec repo --- .generator/schemas/v1/openapi.yaml | 2 +- examples/v1/tags/ListHostTags.py | 2 +- src/datadog_api_client/v1/api/tags_api.py | 2 +- tests/v1/features/tags.feature | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) 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