SignalFx
DashboardGroup
In the SignalFx web UI, a dashboard group is a collection of dashboards.
NOTE Dashboard groups cannot be accessed directly, but just via a dashboard contained in them. This is the reason why make show won’t show any of yours dashboard groups.
Example Usage
using Pulumi;
using SignalFx = Pulumi.SignalFx;
class MyStack : Stack
{
public MyStack()
{
var mydashboardgroup0 = new SignalFx.DashboardGroup("mydashboardgroup0", new SignalFx.DashboardGroupArgs
{
Description = "Cool dashboard group",
AuthorizedWriterTeams =
{
signalfx_team.Mycoolteam.Id,
},
AuthorizedWriterUsers =
{
"abc123",
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-signalfx/sdk/v5/go/signalfx"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := signalfx.NewDashboardGroup(ctx, "mydashboardgroup0", &signalfx.DashboardGroupArgs{
Description: pulumi.String("Cool dashboard group"),
AuthorizedWriterTeams: pulumi.StringArray{
pulumi.Any(signalfx_team.Mycoolteam.Id),
},
AuthorizedWriterUsers: pulumi.StringArray{
pulumi.String("abc123"),
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_signalfx as signalfx
mydashboardgroup0 = signalfx.DashboardGroup("mydashboardgroup0",
description="Cool dashboard group",
authorized_writer_teams=[signalfx_team["mycoolteam"]["id"]],
authorized_writer_users=["abc123"])
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const mydashboardgroup0 = new signalfx.DashboardGroup("mydashboardgroup0", {
description: "Cool dashboard group",
authorizedWriterTeams: [signalfx_team.mycoolteam.id],
authorizedWriterUsers: ["abc123"],
});
Coming soon!
With Permissions
using Pulumi;
using SignalFx = Pulumi.SignalFx;
class MyStack : Stack
{
public MyStack()
{
var mydashboardgroupWithpermissions = new SignalFx.DashboardGroup("mydashboardgroupWithpermissions", new SignalFx.DashboardGroupArgs
{
Description = "Cool dashboard group",
Permissions =
{
new SignalFx.Inputs.DashboardGroupPermissionArgs
{
Actions =
{
"READ",
},
PrincipalId = "abc123",
PrincipalType = "ORG",
},
new SignalFx.Inputs.DashboardGroupPermissionArgs
{
Actions =
{
"READ",
"WRITE",
},
PrincipalId = "abc456",
PrincipalType = "USER",
},
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-signalfx/sdk/v5/go/signalfx"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := signalfx.NewDashboardGroup(ctx, "mydashboardgroupWithpermissions", &signalfx.DashboardGroupArgs{
Description: pulumi.String("Cool dashboard group"),
Permissions: DashboardGroupPermissionArray{
&DashboardGroupPermissionArgs{
Actions: pulumi.StringArray{
pulumi.String("READ"),
},
PrincipalId: pulumi.String("abc123"),
PrincipalType: pulumi.String("ORG"),
},
&DashboardGroupPermissionArgs{
Actions: pulumi.StringArray{
pulumi.String("READ"),
pulumi.String("WRITE"),
},
PrincipalId: pulumi.String("abc456"),
PrincipalType: pulumi.String("USER"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_signalfx as signalfx
mydashboardgroup_withpermissions = signalfx.DashboardGroup("mydashboardgroupWithpermissions",
description="Cool dashboard group",
permissions=[
signalfx.DashboardGroupPermissionArgs(
actions=["READ"],
principal_id="abc123",
principal_type="ORG",
),
signalfx.DashboardGroupPermissionArgs(
actions=[
"READ",
"WRITE",
],
principal_id="abc456",
principal_type="USER",
),
])
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const mydashboardgroupWithpermissions = new signalfx.DashboardGroup("mydashboardgroup_withpermissions", {
description: "Cool dashboard group",
permissions: [
// You can add up to 25 of entries for permission configurations.
// Make sure your account supports this feature!
{
actions: ["READ"],
principalId: "abc123",
principalType: "ORG",
},
{
actions: [
"READ",
"WRITE",
],
principalId: "abc456",
principalType: "USER",
},
],
});
Coming soon!
With Mirrored Dashboards
using Pulumi;
using SignalFx = Pulumi.SignalFx;
class MyStack : Stack
{
public MyStack()
{
var mydashboardgroupWithmirrors = new SignalFx.DashboardGroup("mydashboardgroupWithmirrors", new SignalFx.DashboardGroupArgs
{
Description = "Cool dashboard group",
Dashboards =
{
new SignalFx.Inputs.DashboardGroupDashboardArgs
{
DashboardId = signalfx_dashboard.Gc_dashboard.Id,
NameOverride = "GC For My Service",
DescriptionOverride = "Garbage Collection dashboard maintained by JVM team",
FilterOverrides =
{
new SignalFx.Inputs.DashboardGroupDashboardFilterOverrideArgs
{
Property = "service",
Values =
{
"myservice",
},
Negated = false,
},
},
VariableOverrides =
{
new SignalFx.Inputs.DashboardGroupDashboardVariableOverrideArgs
{
Property = "region",
Values =
{
"us-west1",
},
ValuesSuggesteds =
{
"us-west-1",
"us-east-1",
},
},
},
},
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-signalfx/sdk/v5/go/signalfx"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := signalfx.NewDashboardGroup(ctx, "mydashboardgroupWithmirrors", &signalfx.DashboardGroupArgs{
Description: pulumi.String("Cool dashboard group"),
Dashboards: DashboardGroupDashboardArray{
&DashboardGroupDashboardArgs{
DashboardId: pulumi.Any(signalfx_dashboard.Gc_dashboard.Id),
NameOverride: pulumi.String("GC For My Service"),
DescriptionOverride: pulumi.String("Garbage Collection dashboard maintained by JVM team"),
FilterOverrides: DashboardGroupDashboardFilterOverrideArray{
&DashboardGroupDashboardFilterOverrideArgs{
Property: pulumi.String("service"),
Values: pulumi.StringArray{
pulumi.String("myservice"),
},
Negated: pulumi.Bool(false),
},
},
VariableOverrides: DashboardGroupDashboardVariableOverrideArray{
&DashboardGroupDashboardVariableOverrideArgs{
Property: pulumi.String("region"),
Values: pulumi.StringArray{
pulumi.String("us-west1"),
},
ValuesSuggesteds: pulumi.StringArray{
pulumi.String("us-west-1"),
pulumi.String("us-east-1"),
},
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_signalfx as signalfx
mydashboardgroup_withmirrors = signalfx.DashboardGroup("mydashboardgroupWithmirrors",
description="Cool dashboard group",
dashboards=[signalfx.DashboardGroupDashboardArgs(
dashboard_id=signalfx_dashboard["gc_dashboard"]["id"],
name_override="GC For My Service",
description_override="Garbage Collection dashboard maintained by JVM team",
filter_overrides=[signalfx.DashboardGroupDashboardFilterOverrideArgs(
property="service",
values=["myservice"],
negated=False,
)],
variable_overrides=[signalfx.DashboardGroupDashboardVariableOverrideArgs(
property="region",
values=["us-west1"],
values_suggesteds=[
"us-west-1",
"us-east-1",
],
)],
)])
import * as pulumi from "@pulumi/pulumi";
import * as signalfx from "@pulumi/signalfx";
const mydashboardgroupWithmirrors = new signalfx.DashboardGroup("mydashboardgroupWithmirrors", {
description: "Cool dashboard group",
dashboards: [{
dashboardId: signalfx_dashboard.gc_dashboard.id,
nameOverride: "GC For My Service",
descriptionOverride: "Garbage Collection dashboard maintained by JVM team",
filterOverrides: [{
property: "service",
values: ["myservice"],
negated: false,
}],
variableOverrides: [{
property: "region",
values: ["us-west1"],
valuesSuggesteds: [
"us-west-1",
"us-east-1",
],
}],
}],
});
Coming soon!
Create a DashboardGroup Resource
new DashboardGroup(name: string, args?: DashboardGroupArgs, opts?: CustomResourceOptions);
@overload
def DashboardGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
authorized_writer_teams: Optional[Sequence[str]] = None,
authorized_writer_users: Optional[Sequence[str]] = None,
dashboards: Optional[Sequence[DashboardGroupDashboardArgs]] = None,
description: Optional[str] = None,
import_qualifiers: Optional[Sequence[DashboardGroupImportQualifierArgs]] = None,
name: Optional[str] = None,
permissions: Optional[Sequence[DashboardGroupPermissionArgs]] = None,
teams: Optional[Sequence[str]] = None)
@overload
def DashboardGroup(resource_name: str,
args: Optional[DashboardGroupArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewDashboardGroup(ctx *Context, name string, args *DashboardGroupArgs, opts ...ResourceOption) (*DashboardGroup, error)
public DashboardGroup(string name, DashboardGroupArgs? args = null, CustomResourceOptions? opts = null)
public DashboardGroup(String name, DashboardGroupArgs args)
public DashboardGroup(String name, DashboardGroupArgs args, CustomResourceOptions options)
type: signalfx:DashboardGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DashboardGroupArgs
- 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 DashboardGroupArgs
- 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 DashboardGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DashboardGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DashboardGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DashboardGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DashboardGroup resource accepts the following input properties:
- List<string>
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- List<string>
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- Dashboards
List<Pulumi.
Signal Fx. Inputs. Dashboard Group Dashboard Args> Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Description string
Description of the dashboard group.
- Import
Qualifiers List<Pulumi.Signal Fx. Inputs. Dashboard Group Import Qualifier Args> - Name string
Name of the dashboard group.
- Permissions
List<Pulumi.
Signal Fx. Inputs. Dashboard Group Permission Args> Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Teams List<string>
Team IDs to associate the dashboard group to.
- []string
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- []string
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- Dashboards
[]Dashboard
Group Dashboard Args Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Description string
Description of the dashboard group.
- Import
Qualifiers []DashboardGroup Import Qualifier Args - Name string
Name of the dashboard group.
- Permissions
[]Dashboard
Group Permission Args Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Teams []string
Team IDs to associate the dashboard group to.
- List<String>
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- List<String>
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards
List<Dashboard
Group Dashboard Args> Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description String
Description of the dashboard group.
- import
Qualifiers List<DashboardGroup Import Qualifier Args> - name String
Name of the dashboard group.
- permissions
List<Dashboard
Group Permission Args> Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams List<String>
Team IDs to associate the dashboard group to.
- string[]
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- string[]
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards
Dashboard
Group Dashboard Args[] Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description string
Description of the dashboard group.
- import
Qualifiers DashboardGroup Import Qualifier Args[] - name string
Name of the dashboard group.
- permissions
Dashboard
Group Permission Args[] Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams string[]
Team IDs to associate the dashboard group to.
- Sequence[str]
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- Sequence[str]
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards
Sequence[Dashboard
Group Dashboard Args] Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description str
Description of the dashboard group.
- import_
qualifiers Sequence[DashboardGroup Import Qualifier Args] - name str
Name of the dashboard group.
- permissions
Sequence[Dashboard
Group Permission Args] Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams Sequence[str]
Team IDs to associate the dashboard group to.
- List<String>
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- List<String>
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards List<Property Map>
Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description String
Description of the dashboard group.
- import
Qualifiers List<Property Map> - name String
Name of the dashboard group.
- permissions List<Property Map>
Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams List<String>
Team IDs to associate the dashboard group to.
Outputs
All input properties are implicitly available as output properties. Additionally, the DashboardGroup resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up an Existing DashboardGroup Resource
Get an existing DashboardGroup 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?: DashboardGroupState, opts?: CustomResourceOptions): DashboardGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authorized_writer_teams: Optional[Sequence[str]] = None,
authorized_writer_users: Optional[Sequence[str]] = None,
dashboards: Optional[Sequence[DashboardGroupDashboardArgs]] = None,
description: Optional[str] = None,
import_qualifiers: Optional[Sequence[DashboardGroupImportQualifierArgs]] = None,
name: Optional[str] = None,
permissions: Optional[Sequence[DashboardGroupPermissionArgs]] = None,
teams: Optional[Sequence[str]] = None) -> DashboardGroup
func GetDashboardGroup(ctx *Context, name string, id IDInput, state *DashboardGroupState, opts ...ResourceOption) (*DashboardGroup, error)
public static DashboardGroup Get(string name, Input<string> id, DashboardGroupState? state, CustomResourceOptions? opts = null)
public static DashboardGroup get(String name, Output<String> id, DashboardGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- List<string>
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- List<string>
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- Dashboards
List<Pulumi.
Signal Fx. Inputs. Dashboard Group Dashboard Args> Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Description string
Description of the dashboard group.
- Import
Qualifiers List<Pulumi.Signal Fx. Inputs. Dashboard Group Import Qualifier Args> - Name string
Name of the dashboard group.
- Permissions
List<Pulumi.
Signal Fx. Inputs. Dashboard Group Permission Args> Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Teams List<string>
Team IDs to associate the dashboard group to.
- []string
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- []string
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- Dashboards
[]Dashboard
Group Dashboard Args Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Description string
Description of the dashboard group.
- Import
Qualifiers []DashboardGroup Import Qualifier Args - Name string
Name of the dashboard group.
- Permissions
[]Dashboard
Group Permission Args Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- Teams []string
Team IDs to associate the dashboard group to.
- List<String>
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- List<String>
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards
List<Dashboard
Group Dashboard Args> Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description String
Description of the dashboard group.
- import
Qualifiers List<DashboardGroup Import Qualifier Args> - name String
Name of the dashboard group.
- permissions
List<Dashboard
Group Permission Args> Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams List<String>
Team IDs to associate the dashboard group to.
- string[]
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- string[]
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards
Dashboard
Group Dashboard Args[] Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description string
Description of the dashboard group.
- import
Qualifiers DashboardGroup Import Qualifier Args[] - name string
Name of the dashboard group.
- permissions
Dashboard
Group Permission Args[] Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams string[]
Team IDs to associate the dashboard group to.
- Sequence[str]
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- Sequence[str]
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards
Sequence[Dashboard
Group Dashboard Args] Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description str
Description of the dashboard group.
- import_
qualifiers Sequence[DashboardGroup Import Qualifier Args] - name str
Name of the dashboard group.
- permissions
Sequence[Dashboard
Group Permission Args] Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams Sequence[str]
Team IDs to associate the dashboard group to.
- List<String>
Team IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's team (or user id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- List<String>
User IDs that have write access to this dashboard group. Remember to use an admin's token if using this feature and to include that admin's user id (or team id in
authorized_writer_teams
). Note: Deprecated usepermissions
instead.Please use permissions field now
- dashboards List<Property Map>
Mirrored dashboards in this dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- description String
Description of the dashboard group.
- import
Qualifiers List<Property Map> - name String
Name of the dashboard group.
- permissions List<Property Map>
Permissions List of read and write permission configuration to specify which user, team, and organization can view and/or edit your dashboard group. Note: This feature is not present in all accounts. Please contact support if you are unsure.
- teams List<String>
Team IDs to associate the dashboard group to.
Supporting Types
DashboardGroupDashboard
- Dashboard
Id string The dashboard id to mirror
- Description
Override string The description that will override the original dashboards's description.
- Filter
Overrides List<Pulumi.Signal Fx. Inputs. Dashboard Group Dashboard Filter Override> The description that will override the original dashboards's description.
- Name
Override string The name that will override the original dashboards's name.
- Variable
Overrides List<Pulumi.Signal Fx. Inputs. Dashboard Group Dashboard Variable Override>
- Dashboard
Id string The dashboard id to mirror
- Description
Override string The description that will override the original dashboards's description.
- Filter
Overrides []DashboardGroup Dashboard Filter Override The description that will override the original dashboards's description.
- Name
Override string The name that will override the original dashboards's name.
- Variable
Overrides []DashboardGroup Dashboard Variable Override
- dashboard
Id String The dashboard id to mirror
- description
Override String The description that will override the original dashboards's description.
- filter
Overrides List<DashboardGroup Dashboard Filter Override> The description that will override the original dashboards's description.
- name
Override String The name that will override the original dashboards's name.
- variable
Overrides List<DashboardGroup Dashboard Variable Override>
- dashboard
Id string The dashboard id to mirror
- description
Override string The description that will override the original dashboards's description.
- filter
Overrides DashboardGroup Dashboard Filter Override[] The description that will override the original dashboards's description.
- name
Override string The name that will override the original dashboards's name.
- variable
Overrides DashboardGroup Dashboard Variable Override[]
- dashboard_
id str The dashboard id to mirror
- description_
override str The description that will override the original dashboards's description.
- filter_
overrides Sequence[DashboardGroup Dashboard Filter Override] The description that will override the original dashboards's description.
- name_
override str The name that will override the original dashboards's name.
- variable_
overrides Sequence[DashboardGroup Dashboard Variable Override]
- dashboard
Id String The dashboard id to mirror
- description
Override String The description that will override the original dashboards's description.
- filter
Overrides List<Property Map> The description that will override the original dashboards's description.
- name
Override String The name that will override the original dashboards's name.
- variable
Overrides List<Property Map>
DashboardGroupDashboardFilterOverride
- Property string
A metric time series dimension or property name.
- Values List<string>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- Negated bool
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- Property string
A metric time series dimension or property name.
- Values []string
(Optional) List of of strings (which will be treated as an OR filter on the property).
- Negated bool
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property String
A metric time series dimension or property name.
- values List<String>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated Boolean
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property string
A metric time series dimension or property name.
- values string[]
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated boolean
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property str
A metric time series dimension or property name.
- values Sequence[str]
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated bool
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property String
A metric time series dimension or property name.
- values List<String>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated Boolean
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
DashboardGroupDashboardVariableOverride
- Property string
A metric time series dimension or property name.
- Values List<string>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- Values
Suggesteds List<string> A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
- Property string
A metric time series dimension or property name.
- Values []string
(Optional) List of of strings (which will be treated as an OR filter on the property).
- Values
Suggesteds []string A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
- property String
A metric time series dimension or property name.
- values List<String>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- values
Suggesteds List<String> A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
- property string
A metric time series dimension or property name.
- values string[]
(Optional) List of of strings (which will be treated as an OR filter on the property).
- values
Suggesteds string[] A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
- property str
A metric time series dimension or property name.
- values Sequence[str]
(Optional) List of of strings (which will be treated as an OR filter on the property).
- values_
suggesteds Sequence[str] A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
- property String
A metric time series dimension or property name.
- values List<String>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- values
Suggesteds List<String> A list of strings of suggested values for this variable; these suggestions will receive priority when values are autosuggested for this variable.
DashboardGroupImportQualifier
- filters List<Property Map>
- metric String
DashboardGroupImportQualifierFilter
- Property string
A metric time series dimension or property name.
- Values List<string>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- Negated bool
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- Property string
A metric time series dimension or property name.
- Values []string
(Optional) List of of strings (which will be treated as an OR filter on the property).
- Negated bool
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property String
A metric time series dimension or property name.
- values List<String>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated Boolean
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property string
A metric time series dimension or property name.
- values string[]
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated boolean
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property str
A metric time series dimension or property name.
- values Sequence[str]
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated bool
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
- property String
A metric time series dimension or property name.
- values List<String>
(Optional) List of of strings (which will be treated as an OR filter on the property).
- negated Boolean
If true, only data that does not match the specified value of the specified property appear in the event overlay. Defaults to
false
.
DashboardGroupPermission
- Principal
Id string ID of the user, team, or organization for which you're granting permissions.
- Principal
Type string Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
- Actions List<string>
Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
- Principal
Id string ID of the user, team, or organization for which you're granting permissions.
- Principal
Type string Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
- Actions []string
Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
- principal
Id String ID of the user, team, or organization for which you're granting permissions.
- principal
Type String Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
- actions List<String>
Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
- principal
Id string ID of the user, team, or organization for which you're granting permissions.
- principal
Type string Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
- actions string[]
Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
- principal_
id str ID of the user, team, or organization for which you're granting permissions.
- principal_
type str Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
- actions Sequence[str]
Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
- principal
Id String ID of the user, team, or organization for which you're granting permissions.
- principal
Type String Clarify whether this permission configuration is for a user, a team, or an organization. Value can be one of "USER", "TEAM", or "ORG".
- actions List<String>
Action the user, team, or organization can take with the dashboard group. List of values (value can be "READ" or "WRITE").
Package Details
- Repository
- https://github.com/pulumi/pulumi-signalfx
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
signalfx
Terraform Provider.