From a5b1835e90880b251b0ccfedace9572eab5a0934 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 25 Sep 2026 08:27:17 +0000 Subject: [PATCH] Regenerate client from commit 6271596 of spec repo --- .generator/schemas/v2/openapi.yaml | 3 +++ .../v2/models/dashboard_usage_user.rb | 16 +++++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 12847a964d06..4bae31783cae 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -31726,6 +31726,9 @@ components: description: Display name of the user. example: Jane Doe type: string + test: + description: just testing generation + type: boolean type: object DataAttributesRulesItemsIfTagExists: description: The behavior when the tag already exists. diff --git a/lib/datadog_api_client/v2/models/dashboard_usage_user.rb b/lib/datadog_api_client/v2/models/dashboard_usage_user.rb index 9693747a8694..03d6beba4458 100644 --- a/lib/datadog_api_client/v2/models/dashboard_usage_user.rb +++ b/lib/datadog_api_client/v2/models/dashboard_usage_user.rb @@ -33,6 +33,9 @@ class DashboardUsageUser # Display name of the user. attr_accessor :name + # just testing generation + attr_accessor :test + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. @@ -42,7 +45,8 @@ def self.attribute_map :'handle' => :'handle', :'id' => :'id', :'is_disabled' => :'is_disabled', - :'name' => :'name' + :'name' => :'name', + :'test' => :'test' } end @@ -53,7 +57,8 @@ def self.openapi_types :'handle' => :'String', :'id' => :'String', :'is_disabled' => :'Boolean', - :'name' => :'String' + :'name' => :'String', + :'test' => :'Boolean' } end @@ -90,6 +95,10 @@ def initialize(attributes = {}) if attributes.key?(:'name') self.name = attributes[:'name'] end + + if attributes.key?(:'test') + self.test = attributes[:'test'] + end end # Returns the object in the form of hash, with additionalProperties support. @@ -122,6 +131,7 @@ def ==(o) id == o.id && is_disabled == o.is_disabled && name == o.name && + test == o.test && additional_properties == o.additional_properties end @@ -129,7 +139,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [handle, id, is_disabled, name, additional_properties].hash + [handle, id, is_disabled, name, test, additional_properties].hash end end end