Skip to content

Commit

Permalink
Regenerate client from commit 8a2ddba0 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 1, 2024
1 parent 823f513 commit 9f05f8b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 14:24:23.747365",
"spec_repo_commit": "d90ee2ef"
"regenerated": "2024-10-01 16:08:37.365359",
"spec_repo_commit": "8a2ddba0"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 14:24:23.761793",
"spec_repo_commit": "d90ee2ef"
"regenerated": "2024-10-01 16:08:37.379783",
"spec_repo_commit": "8a2ddba0"
}
}
}
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22079,18 +22079,18 @@ components:
type: integer
x:
description: The position of the widget on the x (horizontal) axis. Should
be a non-negative integer.
be a non-negative number.
example: 0
format: int64
format: double
minimum: 0
type: integer
type: number
y:
description: The position of the widget on the y (vertical) axis. Should
be a non-negative integer.
be a non-negative number.
example: 0
format: int64
format: double
minimum: 0
type: integer
type: number
required:
- x
- y
Expand Down
8 changes: 4 additions & 4 deletions lib/datadog_api_client/v1/models/widget_layout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class WidgetLayout
# The width of the widget. Should be a non-negative integer.
attr_reader :width

# The position of the widget on the x (horizontal) axis. Should be a non-negative integer.
# The position of the widget on the x (horizontal) axis. Should be a non-negative number.
attr_reader :x

# The position of the widget on the y (vertical) axis. Should be a non-negative integer.
# The position of the widget on the y (vertical) axis. Should be a non-negative number.
attr_reader :y

attr_accessor :additional_properties
Expand All @@ -58,8 +58,8 @@ def self.openapi_types
:'height' => :'Integer',
:'is_column_break' => :'Boolean',
:'width' => :'Integer',
:'x' => :'Integer',
:'y' => :'Integer'
:'x' => :'Float',
:'y' => :'Float'
}
end

Expand Down

0 comments on commit 9f05f8b

Please sign in to comment.