Skip to content

Commit b542412

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4bce651 of spec repo
1 parent 981a9b0 commit b542412

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35649,7 +35649,7 @@ paths:
3564935649
- apiKeyAuth: []
3565035650
appKeyAuth: []
3565135651
- AuthZ: []
35652-
summary: Get Tags
35652+
summary: Get All Hosts Tags
3565335653
tags:
3565435654
- Tags
3565535655
x-permission:

examples/v1/tags/ListHostTags.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Get Tags returns "OK" response
1+
# Get All Hosts Tags returns "OK" response
22

33
require "datadog_api_client"
44
api_instance = DatadogAPIClient::V1::TagsAPI.new

features/v1/tags.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ Feature: Tags
3131
Then the response status is 404 Not Found
3232

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

3939
@generated @skip @team:DataDog/core-index
40-
Scenario: Get Tags returns "OK" response
40+
Scenario: Get All Hosts Tags returns "OK" response
4141
Given new "ListHostTags" request
4242
When the request is sent
4343
Then the response status is 200 OK

lib/datadog_api_client/v1/api/tags_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,15 @@ def get_host_tags_with_http_info(host_name, opts = {})
233233
return data, status_code, headers
234234
end
235235

236-
# Get Tags.
236+
# Get All Hosts Tags.
237237
#
238238
# @see #list_host_tags_with_http_info
239239
def list_host_tags(opts = {})
240240
data, _status_code, _headers = list_host_tags_with_http_info(opts)
241241
data
242242
end
243243

244-
# Get Tags.
244+
# Get All Hosts Tags.
245245
#
246246
# Return a mapping of tags to hosts for your whole infrastructure.
247247
#

0 commit comments

Comments
 (0)