1. Packages
  2. Vantage Provider
  3. API Docs
  4. Dashboard
vantage 0.1.48 published on Tuesday, Mar 18, 2025 by vantage-sh

vantage.Dashboard

Explore with Pulumi AI

vantage logo
vantage 0.1.48 published on Tuesday, Mar 18, 2025 by vantage-sh

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as vantage from "@pulumi/vantage";
    
    const demoDashboard = new vantage.Dashboard("demoDashboard", {
        dateInterval: "last_month",
        title: "Demo Dashboard",
        widgets: [{
            settings: {
                displayType: "chart",
            },
            widgetableToken: "rprt_a2846903070824f4",
        }],
        workspaceToken: "wrkspc_47c3254c790e9351",
    });
    
    import pulumi
    import pulumi_vantage as vantage
    
    demo_dashboard = vantage.Dashboard("demoDashboard",
        date_interval="last_month",
        title="Demo Dashboard",
        widgets=[{
            "settings": {
                "display_type": "chart",
            },
            "widgetable_token": "rprt_a2846903070824f4",
        }],
        workspace_token="wrkspc_47c3254c790e9351")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vantage/vantage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vantage.NewDashboard(ctx, "demoDashboard", &vantage.DashboardArgs{
    			DateInterval: pulumi.String("last_month"),
    			Title:        pulumi.String("Demo Dashboard"),
    			Widgets: vantage.DashboardWidgetArray{
    				&vantage.DashboardWidgetArgs{
    					Settings: &vantage.DashboardWidgetSettingsArgs{
    						DisplayType: pulumi.String("chart"),
    					},
    					WidgetableToken: pulumi.String("rprt_a2846903070824f4"),
    				},
    			},
    			WorkspaceToken: pulumi.String("wrkspc_47c3254c790e9351"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vantage = Pulumi.Vantage;
    
    return await Deployment.RunAsync(() => 
    {
        var demoDashboard = new Vantage.Dashboard("demoDashboard", new()
        {
            DateInterval = "last_month",
            Title = "Demo Dashboard",
            Widgets = new[]
            {
                new Vantage.Inputs.DashboardWidgetArgs
                {
                    Settings = new Vantage.Inputs.DashboardWidgetSettingsArgs
                    {
                        DisplayType = "chart",
                    },
                    WidgetableToken = "rprt_a2846903070824f4",
                },
            },
            WorkspaceToken = "wrkspc_47c3254c790e9351",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vantage.Dashboard;
    import com.pulumi.vantage.DashboardArgs;
    import com.pulumi.vantage.inputs.DashboardWidgetArgs;
    import com.pulumi.vantage.inputs.DashboardWidgetSettingsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var demoDashboard = new Dashboard("demoDashboard", DashboardArgs.builder()
                .dateInterval("last_month")
                .title("Demo Dashboard")
                .widgets(DashboardWidgetArgs.builder()
                    .settings(DashboardWidgetSettingsArgs.builder()
                        .displayType("chart")
                        .build())
                    .widgetableToken("rprt_a2846903070824f4")
                    .build())
                .workspaceToken("wrkspc_47c3254c790e9351")
                .build());
    
        }
    }
    
    resources:
      demoDashboard:
        type: vantage:Dashboard
        properties:
          dateInterval: last_month
          title: Demo Dashboard
          widgets:
            - settings:
                displayType: chart
              widgetableToken: rprt_a2846903070824f4
          workspaceToken: wrkspc_47c3254c790e9351
    

    Create Dashboard Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Dashboard(name: string, args?: DashboardArgs, opts?: CustomResourceOptions);
    @overload
    def Dashboard(resource_name: str,
                  args: Optional[DashboardArgs] = None,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Dashboard(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  date_bin: Optional[str] = None,
                  date_interval: Optional[str] = None,
                  end_date: Optional[str] = None,
                  saved_filter_tokens: Optional[Sequence[str]] = None,
                  start_date: Optional[str] = None,
                  title: Optional[str] = None,
                  widgets: Optional[Sequence[DashboardWidgetArgs]] = None,
                  workspace_token: Optional[str] = None)
    func NewDashboard(ctx *Context, name string, args *DashboardArgs, opts ...ResourceOption) (*Dashboard, error)
    public Dashboard(string name, DashboardArgs? args = null, CustomResourceOptions? opts = null)
    public Dashboard(String name, DashboardArgs args)
    public Dashboard(String name, DashboardArgs args, CustomResourceOptions options)
    
    type: vantage:Dashboard
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dashboardResource = new Vantage.Dashboard("dashboardResource", new()
    {
        DateBin = "string",
        DateInterval = "string",
        EndDate = "string",
        SavedFilterTokens = new[]
        {
            "string",
        },
        StartDate = "string",
        Title = "string",
        Widgets = new[]
        {
            new Vantage.Inputs.DashboardWidgetArgs
            {
                WidgetableToken = "string",
                Settings = new Vantage.Inputs.DashboardWidgetSettingsArgs
                {
                    DisplayType = "string",
                },
                Title = "string",
            },
        },
        WorkspaceToken = "string",
    });
    
    example, err := vantage.NewDashboard(ctx, "dashboardResource", &vantage.DashboardArgs{
    DateBin: pulumi.String("string"),
    DateInterval: pulumi.String("string"),
    EndDate: pulumi.String("string"),
    SavedFilterTokens: pulumi.StringArray{
    pulumi.String("string"),
    },
    StartDate: pulumi.String("string"),
    Title: pulumi.String("string"),
    Widgets: .DashboardWidgetArray{
    &.DashboardWidgetArgs{
    WidgetableToken: pulumi.String("string"),
    Settings: &.DashboardWidgetSettingsArgs{
    DisplayType: pulumi.String("string"),
    },
    Title: pulumi.String("string"),
    },
    },
    WorkspaceToken: pulumi.String("string"),
    })
    
    var dashboardResource = new Dashboard("dashboardResource", DashboardArgs.builder()
        .dateBin("string")
        .dateInterval("string")
        .endDate("string")
        .savedFilterTokens("string")
        .startDate("string")
        .title("string")
        .widgets(DashboardWidgetArgs.builder()
            .widgetableToken("string")
            .settings(DashboardWidgetSettingsArgs.builder()
                .displayType("string")
                .build())
            .title("string")
            .build())
        .workspaceToken("string")
        .build());
    
    dashboard_resource = vantage.Dashboard("dashboardResource",
        date_bin="string",
        date_interval="string",
        end_date="string",
        saved_filter_tokens=["string"],
        start_date="string",
        title="string",
        widgets=[{
            "widgetable_token": "string",
            "settings": {
                "display_type": "string",
            },
            "title": "string",
        }],
        workspace_token="string")
    
    const dashboardResource = new vantage.Dashboard("dashboardResource", {
        dateBin: "string",
        dateInterval: "string",
        endDate: "string",
        savedFilterTokens: ["string"],
        startDate: "string",
        title: "string",
        widgets: [{
            widgetableToken: "string",
            settings: {
                displayType: "string",
            },
            title: "string",
        }],
        workspaceToken: "string",
    });
    
    type: vantage:Dashboard
    properties:
        dateBin: string
        dateInterval: string
        endDate: string
        savedFilterTokens:
            - string
        startDate: string
        title: string
        widgets:
            - settings:
                displayType: string
              title: string
              widgetableToken: string
        workspaceToken: string
    

    Dashboard Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Dashboard resource accepts the following input properties:

    DateBin string
    Determines how to group costs in the Dashboard.
    DateInterval string
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    EndDate string
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    SavedFilterTokens List<string>
    The tokens of the Saved Filters used in the Dashboard.
    StartDate string
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    Title string
    The title of the Dashboard.
    Widgets List<DashboardWidget>
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    WorkspaceToken string
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    DateBin string
    Determines how to group costs in the Dashboard.
    DateInterval string
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    EndDate string
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    SavedFilterTokens []string
    The tokens of the Saved Filters used in the Dashboard.
    StartDate string
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    Title string
    The title of the Dashboard.
    Widgets []DashboardWidgetArgs
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    WorkspaceToken string
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    dateBin String
    Determines how to group costs in the Dashboard.
    dateInterval String
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    endDate String
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    savedFilterTokens List<String>
    The tokens of the Saved Filters used in the Dashboard.
    startDate String
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title String
    The title of the Dashboard.
    widgets List<DashboardWidget>
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspaceToken String
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    dateBin string
    Determines how to group costs in the Dashboard.
    dateInterval string
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    endDate string
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    savedFilterTokens string[]
    The tokens of the Saved Filters used in the Dashboard.
    startDate string
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title string
    The title of the Dashboard.
    widgets DashboardWidget[]
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspaceToken string
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    date_bin str
    Determines how to group costs in the Dashboard.
    date_interval str
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    end_date str
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    saved_filter_tokens Sequence[str]
    The tokens of the Saved Filters used in the Dashboard.
    start_date str
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title str
    The title of the Dashboard.
    widgets Sequence[DashboardWidgetArgs]
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspace_token str
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    dateBin String
    Determines how to group costs in the Dashboard.
    dateInterval String
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    endDate String
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    savedFilterTokens List<String>
    The tokens of the Saved Filters used in the Dashboard.
    startDate String
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title String
    The title of the Dashboard.
    widgets List<Property Map>
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspaceToken String
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Dashboard resource produces the following output properties:

    CreatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    Id string
    The provider-assigned unique ID for this managed resource.
    Token string
    The token of the dashboard
    UpdatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    CreatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    Id string
    The provider-assigned unique ID for this managed resource.
    Token string
    The token of the dashboard
    UpdatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    createdAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    id String
    The provider-assigned unique ID for this managed resource.
    token String
    The token of the dashboard
    updatedAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    createdAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    id string
    The provider-assigned unique ID for this managed resource.
    token string
    The token of the dashboard
    updatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    created_at str
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    id str
    The provider-assigned unique ID for this managed resource.
    token str
    The token of the dashboard
    updated_at str
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    createdAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    id String
    The provider-assigned unique ID for this managed resource.
    token String
    The token of the dashboard
    updatedAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.

    Look up Existing Dashboard Resource

    Get an existing Dashboard resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DashboardState, opts?: CustomResourceOptions): Dashboard
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            date_bin: Optional[str] = None,
            date_interval: Optional[str] = None,
            end_date: Optional[str] = None,
            saved_filter_tokens: Optional[Sequence[str]] = None,
            start_date: Optional[str] = None,
            title: Optional[str] = None,
            token: Optional[str] = None,
            updated_at: Optional[str] = None,
            widgets: Optional[Sequence[DashboardWidgetArgs]] = None,
            workspace_token: Optional[str] = None) -> Dashboard
    func GetDashboard(ctx *Context, name string, id IDInput, state *DashboardState, opts ...ResourceOption) (*Dashboard, error)
    public static Dashboard Get(string name, Input<string> id, DashboardState? state, CustomResourceOptions? opts = null)
    public static Dashboard get(String name, Output<String> id, DashboardState state, CustomResourceOptions options)
    resources:  _:    type: vantage:Dashboard    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    DateBin string
    Determines how to group costs in the Dashboard.
    DateInterval string
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    EndDate string
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    SavedFilterTokens List<string>
    The tokens of the Saved Filters used in the Dashboard.
    StartDate string
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    Title string
    The title of the Dashboard.
    Token string
    The token of the dashboard
    UpdatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    Widgets List<DashboardWidget>
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    WorkspaceToken string
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    CreatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    DateBin string
    Determines how to group costs in the Dashboard.
    DateInterval string
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    EndDate string
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    SavedFilterTokens []string
    The tokens of the Saved Filters used in the Dashboard.
    StartDate string
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    Title string
    The title of the Dashboard.
    Token string
    The token of the dashboard
    UpdatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    Widgets []DashboardWidgetArgs
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    WorkspaceToken string
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    createdAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    dateBin String
    Determines how to group costs in the Dashboard.
    dateInterval String
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    endDate String
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    savedFilterTokens List<String>
    The tokens of the Saved Filters used in the Dashboard.
    startDate String
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title String
    The title of the Dashboard.
    token String
    The token of the dashboard
    updatedAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    widgets List<DashboardWidget>
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspaceToken String
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    createdAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    dateBin string
    Determines how to group costs in the Dashboard.
    dateInterval string
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    endDate string
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    savedFilterTokens string[]
    The tokens of the Saved Filters used in the Dashboard.
    startDate string
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title string
    The title of the Dashboard.
    token string
    The token of the dashboard
    updatedAt string
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    widgets DashboardWidget[]
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspaceToken string
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    created_at str
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    date_bin str
    Determines how to group costs in the Dashboard.
    date_interval str
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    end_date str
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    saved_filter_tokens Sequence[str]
    The tokens of the Saved Filters used in the Dashboard.
    start_date str
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title str
    The title of the Dashboard.
    token str
    The token of the dashboard
    updated_at str
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    widgets Sequence[DashboardWidgetArgs]
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspace_token str
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
    createdAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    dateBin String
    Determines how to group costs in the Dashboard.
    dateInterval String
    Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
    endDate String
    The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    savedFilterTokens List<String>
    The tokens of the Saved Filters used in the Dashboard.
    startDate String
    The start date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
    title String
    The title of the Dashboard.
    token String
    The token of the dashboard
    updatedAt String
    The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
    widgets List<Property Map>
    The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
    workspaceToken String
    The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.

    Supporting Types

    DashboardWidget, DashboardWidgetArgs

    WidgetableToken string
    The token of the represented Resource.
    Settings DashboardWidgetSettings
    The settings for the DashboardWidget.
    Title string
    The title of the Widget (defaults to the title of the Resource).
    WidgetableToken string
    The token of the represented Resource.
    Settings DashboardWidgetSettings
    The settings for the DashboardWidget.
    Title string
    The title of the Widget (defaults to the title of the Resource).
    widgetableToken String
    The token of the represented Resource.
    settings DashboardWidgetSettings
    The settings for the DashboardWidget.
    title String
    The title of the Widget (defaults to the title of the Resource).
    widgetableToken string
    The token of the represented Resource.
    settings DashboardWidgetSettings
    The settings for the DashboardWidget.
    title string
    The title of the Widget (defaults to the title of the Resource).
    widgetable_token str
    The token of the represented Resource.
    settings DashboardWidgetSettings
    The settings for the DashboardWidget.
    title str
    The title of the Widget (defaults to the title of the Resource).
    widgetableToken String
    The token of the represented Resource.
    settings Property Map
    The settings for the DashboardWidget.
    title String
    The title of the Widget (defaults to the title of the Resource).

    DashboardWidgetSettings, DashboardWidgetSettingsArgs

    Package Details

    Repository
    vantage vantage-sh/terraform-provider-vantage
    License
    Notes
    This Pulumi package is based on the vantage Terraform Provider.
    vantage logo
    vantage 0.1.48 published on Tuesday, Mar 18, 2025 by vantage-sh