azuredevops.Dashboard
Explore with Pulumi AI
Manages Dashboard within Azure DevOps project.
NOTE: Project level Dashboard allows to be created with the same name. Dashboard held by a team must have a different name.
Example Usage
Manage Project dashboard
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = new azuredevops.Project("example", {
name: "Example Project",
description: "Managed by Pulumi",
});
const exampleDashboard = new azuredevops.Dashboard("example", {
projectId: example.id,
name: "Example dashboard",
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.Project("example",
name="Example Project",
description="Managed by Pulumi")
example_dashboard = azuredevops.Dashboard("example",
project_id=example.id,
name="Example dashboard")
package main
import (
"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
Name: pulumi.String("Example Project"),
Description: pulumi.String("Managed by Pulumi"),
})
if err != nil {
return err
}
_, err = azuredevops.NewDashboard(ctx, "example", &azuredevops.DashboardArgs{
ProjectId: example.ID(),
Name: pulumi.String("Example dashboard"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;
return await Deployment.RunAsync(() =>
{
var example = new AzureDevOps.Project("example", new()
{
Name = "Example Project",
Description = "Managed by Pulumi",
});
var exampleDashboard = new AzureDevOps.Dashboard("example", new()
{
ProjectId = example.Id,
Name = "Example dashboard",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.Project;
import com.pulumi.azuredevops.ProjectArgs;
import com.pulumi.azuredevops.Dashboard;
import com.pulumi.azuredevops.DashboardArgs;
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 example = new Project("example", ProjectArgs.builder()
.name("Example Project")
.description("Managed by Pulumi")
.build());
var exampleDashboard = new Dashboard("exampleDashboard", DashboardArgs.builder()
.projectId(example.id())
.name("Example dashboard")
.build());
}
}
resources:
example:
type: azuredevops:Project
properties:
name: Example Project
description: Managed by Pulumi
exampleDashboard:
type: azuredevops:Dashboard
name: example
properties:
projectId: ${example.id}
name: Example dashboard
Manage Team dashboard
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = new azuredevops.Project("example", {
name: "Example Project",
description: "Managed by Pulumi",
});
const exampleTeam = new azuredevops.Team("example", {
projectId: example.id,
name: "Example team",
});
const exampleDashboard = new azuredevops.Dashboard("example", {
projectId: example.id,
name: "Example dashboard",
teamId: exampleTeam.id,
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.Project("example",
name="Example Project",
description="Managed by Pulumi")
example_team = azuredevops.Team("example",
project_id=example.id,
name="Example team")
example_dashboard = azuredevops.Dashboard("example",
project_id=example.id,
name="Example dashboard",
team_id=example_team.id)
package main
import (
"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := azuredevops.NewProject(ctx, "example", &azuredevops.ProjectArgs{
Name: pulumi.String("Example Project"),
Description: pulumi.String("Managed by Pulumi"),
})
if err != nil {
return err
}
exampleTeam, err := azuredevops.NewTeam(ctx, "example", &azuredevops.TeamArgs{
ProjectId: example.ID(),
Name: pulumi.String("Example team"),
})
if err != nil {
return err
}
_, err = azuredevops.NewDashboard(ctx, "example", &azuredevops.DashboardArgs{
ProjectId: example.ID(),
Name: pulumi.String("Example dashboard"),
TeamId: exampleTeam.ID(),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;
return await Deployment.RunAsync(() =>
{
var example = new AzureDevOps.Project("example", new()
{
Name = "Example Project",
Description = "Managed by Pulumi",
});
var exampleTeam = new AzureDevOps.Team("example", new()
{
ProjectId = example.Id,
Name = "Example team",
});
var exampleDashboard = new AzureDevOps.Dashboard("example", new()
{
ProjectId = example.Id,
Name = "Example dashboard",
TeamId = exampleTeam.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.Project;
import com.pulumi.azuredevops.ProjectArgs;
import com.pulumi.azuredevops.Team;
import com.pulumi.azuredevops.TeamArgs;
import com.pulumi.azuredevops.Dashboard;
import com.pulumi.azuredevops.DashboardArgs;
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 example = new Project("example", ProjectArgs.builder()
.name("Example Project")
.description("Managed by Pulumi")
.build());
var exampleTeam = new Team("exampleTeam", TeamArgs.builder()
.projectId(example.id())
.name("Example team")
.build());
var exampleDashboard = new Dashboard("exampleDashboard", DashboardArgs.builder()
.projectId(example.id())
.name("Example dashboard")
.teamId(exampleTeam.id())
.build());
}
}
resources:
example:
type: azuredevops:Project
properties:
name: Example Project
description: Managed by Pulumi
exampleTeam:
type: azuredevops:Team
name: example
properties:
projectId: ${example.id}
name: Example team
exampleDashboard:
type: azuredevops:Dashboard
name: example
properties:
projectId: ${example.id}
name: Example dashboard
teamId: ${exampleTeam.id}
Relevant Links
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: DashboardArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Dashboard(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
refresh_interval: Optional[int] = None,
team_id: Optional[str] = None)
func NewDashboard(ctx *Context, name string, args DashboardArgs, opts ...ResourceOption) (*Dashboard, error)
public Dashboard(string name, DashboardArgs args, CustomResourceOptions? opts = null)
public Dashboard(String name, DashboardArgs args)
public Dashboard(String name, DashboardArgs args, CustomResourceOptions options)
type: azuredevops: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 AzureDevOps.Dashboard("dashboardResource", new()
{
ProjectId = "string",
Description = "string",
Name = "string",
RefreshInterval = 0,
TeamId = "string",
});
example, err := azuredevops.NewDashboard(ctx, "dashboardResource", &azuredevops.DashboardArgs{
ProjectId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
RefreshInterval: pulumi.Int(0),
TeamId: pulumi.String("string"),
})
var dashboardResource = new Dashboard("dashboardResource", DashboardArgs.builder()
.projectId("string")
.description("string")
.name("string")
.refreshInterval(0)
.teamId("string")
.build());
dashboard_resource = azuredevops.Dashboard("dashboardResource",
project_id="string",
description="string",
name="string",
refresh_interval=0,
team_id="string")
const dashboardResource = new azuredevops.Dashboard("dashboardResource", {
projectId: "string",
description: "string",
name: "string",
refreshInterval: 0,
teamId: "string",
});
type: azuredevops:Dashboard
properties:
description: string
name: string
projectId: string
refreshInterval: 0
teamId: 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:
- Project
Id string - The ID of the Project. Changing this forces a new resource to be created.
- Description string
- The description of the dashboard.
- Name string
- The name of the Dashboard.
- Refresh
Interval int - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - Team
Id string - The ID of the Team.
- Project
Id string - The ID of the Project. Changing this forces a new resource to be created.
- Description string
- The description of the dashboard.
- Name string
- The name of the Dashboard.
- Refresh
Interval int - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - Team
Id string - The ID of the Team.
- project
Id String - The ID of the Project. Changing this forces a new resource to be created.
- description String
- The description of the dashboard.
- name String
- The name of the Dashboard.
- refresh
Interval Integer - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team
Id String - The ID of the Team.
- project
Id string - The ID of the Project. Changing this forces a new resource to be created.
- description string
- The description of the dashboard.
- name string
- The name of the Dashboard.
- refresh
Interval number - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team
Id string - The ID of the Team.
- project_
id str - The ID of the Project. Changing this forces a new resource to be created.
- description str
- The description of the dashboard.
- name str
- The name of the Dashboard.
- refresh_
interval int - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team_
id str - The ID of the Team.
- project
Id String - The ID of the Project. Changing this forces a new resource to be created.
- description String
- The description of the dashboard.
- name String
- The name of the Dashboard.
- refresh
Interval Number - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team
Id String - The ID of the Team.
Outputs
All input properties are implicitly available as output properties. Additionally, the Dashboard resource produces the following output properties:
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,
description: Optional[str] = None,
name: Optional[str] = None,
owner_id: Optional[str] = None,
project_id: Optional[str] = None,
refresh_interval: Optional[int] = None,
team_id: 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: azuredevops: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.
- Description string
- The description of the dashboard.
- Name string
- The name of the Dashboard.
- Owner
Id string - The owner of the Dashboard, could be the project or a team.
- Project
Id string - The ID of the Project. Changing this forces a new resource to be created.
- Refresh
Interval int - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - Team
Id string - The ID of the Team.
- Description string
- The description of the dashboard.
- Name string
- The name of the Dashboard.
- Owner
Id string - The owner of the Dashboard, could be the project or a team.
- Project
Id string - The ID of the Project. Changing this forces a new resource to be created.
- Refresh
Interval int - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - Team
Id string - The ID of the Team.
- description String
- The description of the dashboard.
- name String
- The name of the Dashboard.
- owner
Id String - The owner of the Dashboard, could be the project or a team.
- project
Id String - The ID of the Project. Changing this forces a new resource to be created.
- refresh
Interval Integer - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team
Id String - The ID of the Team.
- description string
- The description of the dashboard.
- name string
- The name of the Dashboard.
- owner
Id string - The owner of the Dashboard, could be the project or a team.
- project
Id string - The ID of the Project. Changing this forces a new resource to be created.
- refresh
Interval number - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team
Id string - The ID of the Team.
- description str
- The description of the dashboard.
- name str
- The name of the Dashboard.
- owner_
id str - The owner of the Dashboard, could be the project or a team.
- project_
id str - The ID of the Project. Changing this forces a new resource to be created.
- refresh_
interval int - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team_
id str - The ID of the Team.
- description String
- The description of the dashboard.
- name String
- The name of the Dashboard.
- owner
Id String - The owner of the Dashboard, could be the project or a team.
- project
Id String - The ID of the Project. Changing this forces a new resource to be created.
- refresh
Interval Number - The interval for client to automatically refresh the dashboard. Expressed in minutes. Possible values are:
0
,5
.Defaults to0
. - team
Id String - The ID of the Team.
Import
Azure DevOps Dashboard can be imported using the projectId/dasboardId
or projectId/teamId/dasboardId
$ pulumi import azuredevops:index/dashboard:Dashboard dashboard 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
or
$ pulumi import azuredevops:index/dashboard:Dashboard dashboard 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure DevOps pulumi/pulumi-azuredevops
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azuredevops
Terraform Provider.