diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 12847a964d..4bae31783c 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/src/datadog_api_client/v2/model/dashboard_usage_user.py b/src/datadog_api_client/v2/model/dashboard_usage_user.py index 70e925e588..e012e8b534 100644 --- a/src/datadog_api_client/v2/model/dashboard_usage_user.py +++ b/src/datadog_api_client/v2/model/dashboard_usage_user.py @@ -23,6 +23,7 @@ def openapi_types(_): "id": (str,), "is_disabled": (bool,), "name": (str,), + "test": (bool,), } attribute_map = { @@ -30,6 +31,7 @@ def openapi_types(_): "id": "id", "is_disabled": "is_disabled", "name": "name", + "test": "test", } def __init__( @@ -38,6 +40,7 @@ def __init__( id: Union[str, UnsetType] = unset, is_disabled: Union[bool, UnsetType] = unset, name: Union[str, UnsetType] = unset, + test: Union[bool, UnsetType] = unset, **kwargs, ): """ @@ -54,6 +57,9 @@ def __init__( :param name: Display name of the user. :type name: str, optional + + :param test: just testing generation + :type test: bool, optional """ if handle is not unset: kwargs["handle"] = handle @@ -63,4 +69,6 @@ def __init__( kwargs["is_disabled"] = is_disabled if name is not unset: kwargs["name"] = name + if test is not unset: + kwargs["test"] = test super().__init__(kwargs)