vantage.Dashboard
Explore with Pulumi AI
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:
- Date
Bin string - Determines how to group costs in the Dashboard.
- Date
Interval string - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- End
Date string - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- Saved
Filter List<string>Tokens - The tokens of the Saved Filters used in the Dashboard.
- Start
Date 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<Dashboard
Widget> - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- Workspace
Token string - The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
- Date
Bin string - Determines how to group costs in the Dashboard.
- Date
Interval string - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- End
Date string - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- Saved
Filter []stringTokens - The tokens of the Saved Filters used in the Dashboard.
- Start
Date 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
[]Dashboard
Widget Args - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- Workspace
Token string - The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
- date
Bin String - Determines how to group costs in the Dashboard.
- date
Interval String - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- end
Date String - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- saved
Filter List<String>Tokens - The tokens of the Saved Filters used in the Dashboard.
- start
Date 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<Dashboard
Widget> - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- workspace
Token String - The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
- date
Bin string - Determines how to group costs in the Dashboard.
- date
Interval string - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- end
Date string - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- saved
Filter string[]Tokens - The tokens of the Saved Filters used in the Dashboard.
- start
Date 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
Dashboard
Widget[] - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- workspace
Token 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_ Sequence[str]tokens - 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[Dashboard
Widget Args] - 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.
- date
Bin String - Determines how to group costs in the Dashboard.
- date
Interval String - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- end
Date String - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- saved
Filter List<String>Tokens - The tokens of the Saved Filters used in the Dashboard.
- start
Date 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.
- workspace
Token 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:
- 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.
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.
- Created
At string - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- Date
Bin string - Determines how to group costs in the Dashboard.
- Date
Interval string - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- End
Date string - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- Saved
Filter List<string>Tokens - The tokens of the Saved Filters used in the Dashboard.
- Start
Date 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
- Updated
At string - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- Widgets
List<Dashboard
Widget> - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- Workspace
Token string - The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
- Created
At string - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- Date
Bin string - Determines how to group costs in the Dashboard.
- Date
Interval string - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- End
Date string - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- Saved
Filter []stringTokens - The tokens of the Saved Filters used in the Dashboard.
- Start
Date 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
- Updated
At string - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- Widgets
[]Dashboard
Widget Args - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- Workspace
Token string - The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
- created
At String - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- date
Bin String - Determines how to group costs in the Dashboard.
- date
Interval String - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- end
Date String - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- saved
Filter List<String>Tokens - The tokens of the Saved Filters used in the Dashboard.
- start
Date 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
- updated
At String - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- widgets
List<Dashboard
Widget> - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- workspace
Token String - The token of the Workspace to add the Dashboard to. Required if the API token is associated with multiple Workspaces.
- created
At string - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- date
Bin string - Determines how to group costs in the Dashboard.
- date
Interval string - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- end
Date string - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- saved
Filter string[]Tokens - The tokens of the Saved Filters used in the Dashboard.
- start
Date 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
- updated
At string - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- widgets
Dashboard
Widget[] - The widgets to add to the Dashboard. Currently supports CostReport, ResourceReport, KubernetesEfficiencyReport, and FinancialCommitmentReport.
- workspace
Token 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_ Sequence[str]tokens - 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[Dashboard
Widget Args] - 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.
- created
At String - The date and time, in UTC, the Dashboard was created. ISO 8601 Formatted.
- date
Bin String - Determines how to group costs in the Dashboard.
- date
Interval String - Determines the date range in the Dashboard. Incompatible with 'startdate' and 'enddate' parameters.
- end
Date String - The end date for the date range for costs in the Dashboard. ISO 8601 Formatted. Incompatible with 'date_interval' parameter.
- saved
Filter List<String>Tokens - The tokens of the Saved Filters used in the Dashboard.
- start
Date 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
- updated
At 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.
- workspace
Token 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
- Widgetable
Token string - The token of the represented Resource.
- Settings
Dashboard
Widget Settings - The settings for the DashboardWidget.
- Title string
- The title of the Widget (defaults to the title of the Resource).
- Widgetable
Token string - The token of the represented Resource.
- Settings
Dashboard
Widget Settings - The settings for the DashboardWidget.
- Title string
- The title of the Widget (defaults to the title of the Resource).
- widgetable
Token String - The token of the represented Resource.
- settings
Dashboard
Widget Settings - The settings for the DashboardWidget.
- title String
- The title of the Widget (defaults to the title of the Resource).
- widgetable
Token string - The token of the represented Resource.
- settings
Dashboard
Widget Settings - 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
Dashboard
Widget Settings - The settings for the DashboardWidget.
- title str
- The title of the Widget (defaults to the title of the Resource).
- widgetable
Token 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
- Display
Type string
- Display
Type string
- display
Type String
- display
Type string
- display_
type str
- display
Type String
Package Details
- Repository
- vantage vantage-sh/terraform-provider-vantage
- License
- Notes
- This Pulumi package is based on the
vantage
Terraform Provider.