# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019-Present Datadog, Inc.
from __future__ import annotations

from typing import Union, TYPE_CHECKING

from datadog_api_client.model_utils import (
    ModelNormal,
    cached_property,
    unset,
    UnsetType,
)


if TYPE_CHECKING:
    from datadog_api_client.v2.model.powerpack_data import PowerpackData


class Powerpack(ModelNormal):
    @cached_property
    def openapi_types(_):
        from datadog_api_client.v2.model.powerpack_data import PowerpackData

        return {
            "data": (PowerpackData,),
        }

    attribute_map = {
        "data": "data",
    }

    def __init__(self_, data: Union[PowerpackData, UnsetType] = unset, **kwargs):
        """
        Powerpacks are templated groups of dashboard widgets you can save from an existing dashboard and turn into reusable packs in the widget tray.

        :param data: Powerpack data object.
        :type data: PowerpackData, optional
        """
        if data is not unset:
            kwargs["data"] = data
        super().__init__(kwargs)
