Skip to content

Remove default value of is_column_break layout property of dashboard #431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.4.1.dev6",
"regenerated": "2021-05-11 08:04:56.875189",
"spec_repo_commit": "8d8238a"
"regenerated": "2021-05-12 08:12:46.355942",
"spec_repo_commit": "9b7eac3"
},
"v2": {
"apigentools_version": "1.4.1.dev6",
"regenerated": "2021-05-11 08:05:25.253365",
"spec_repo_commit": "8d8238a"
"regenerated": "2021-05-12 08:13:15.277569",
"spec_repo_commit": "9b7eac3"
}
}
}
4 changes: 2 additions & 2 deletions docs/v1/DashboardsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ with ApiClient(configuration) as api_client:
id=1,
layout=WidgetLayout(
height=0,
is_column_break=False,
is_column_break=True,
width=0,
x=0,
y=0,
Expand Down Expand Up @@ -384,7 +384,7 @@ with ApiClient(configuration) as api_client:
id=1,
layout=WidgetLayout(
height=0,
is_column_break=False,
is_column_break=True,
width=0,
x=0,
y=0,
Expand Down
2 changes: 1 addition & 1 deletion docs/v1/WidgetLayout.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
**width** | **int** | The width of the widget. Should be a non-negative integer. |
**x** | **int** | The position of the widget on the x (horizontal) axis. Should be a non-negative integer. |
**y** | **int** | The position of the widget on the y (vertical) axis. Should be a non-negative integer. |
**is_column_break** | **bool** | Whether the widget should be the first one on the second column in high density or not. **Note**: Only for the **new dashboard layout** and only one widget in the dashboard should have this property set to `true`. | [optional] if omitted the server will use the default value of False
**is_column_break** | **bool** | Whether the widget should be the first one on the second column in high density or not. **Note**: Only for the **new dashboard layout** and only one widget in the dashboard should have this property set to `true`. | [optional]

[[Back to Model list]](README.md#documentation-for-models) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to README]](README.md)

Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v1/model/widget_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def __init__(self, height, width, x, y, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
is_column_break (bool): Whether the widget should be the first one on the second column in high density or not. **Note**: Only for the **new dashboard layout** and only one widget in the dashboard should have this property set to `true`.. [optional] if omitted the server will use the default value of False # noqa: E501
is_column_break (bool): Whether the widget should be the first one on the second column in high density or not. **Note**: Only for the **new dashboard layout** and only one widget in the dashboard should have this property set to `true`.. [optional] # noqa: E501
"""

_check_type = kwargs.pop("_check_type", True)
Expand Down
1 change: 0 additions & 1 deletion src/datadog_api_client/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11638,7 +11638,6 @@ components:
minimum: 0
type: integer
is_column_break:
default: false
description: 'Whether the widget should be the first one on the second column
in high density or not.

Expand Down