1. Packages
  2. SignalFx
  3. API Docs
  4. DashboardGroup
SignalFx v7.1.5 published on Wednesday, May 29, 2024 by Pulumi

signalfx.DashboardGroup

Explore with Pulumi AI

signalfx logo
SignalFx v7.1.5 published on Wednesday, May 29, 2024 by Pulumi

    In the Splunk Observability Cloud web UI, a dashboard group is a collection of dashboards.

    Dashboard groups cannot be accessed directly. You can access them through a dashboard within a group.

    NOTE When you want to change or remove write permissions for a user other than yourself regarding dashboard groups, use a session token of an administrator to authenticate the Splunk Observability Cloud provider. See Operations that require a session token for an administrator.

    Example

    resource "signalfx_dashboard_group" "mydashboardgroup0" {
      name        = "My team dashboard group"
      description = "Cool dashboard group"
    
      # Note that if you use these features, you must use a user's
      # admin key to authenticate the provider, lest Terraform not be able
      # to modify the dashboard group in the future!
      authorized_writer_teams = [signalfx_team.mycoolteam.id]
      authorized_writer_users = ["abc123"]
    }
    

    Example with permissions

    resource "signalfx_dashboard_group" "mydashboardgroup_withpermissions" {
      name        = "My team dashboard group"
      description = "Cool dashboard group"
    
      // You can add up to 25 of entries for permission configurations. 
      // Make sure your account supports this feature!
      permissions {
        principal_id    = "abc123"
        principal_type  = "ORG"
        actions         = ["READ"]
      }
      permissions {
        principal_id    = "abc456"
        principal_type  = "USER"
        actions         = ["READ", "WRITE"]
      }
    }
    

    Example With mirrored dashboards

    resource "signalfx_dashboard_group" "mydashboardgroup_withmirrors" {
      name        = "My team dashboard group"
      description = "Cool dashboard group"
    
      // You can add as many of these as you like. Make sure your account
      // supports this feature!
      dashboard {
        dashboard_id         = signalfx_dashboard.gc_dashboard.id
        name_override        = "GC For My Service"
        description_override = "Garbage Collection dashboard maintained by JVM team"
    
        filter_override {
          property = "service"
          values   = ["myservice"]
          negated  = false
        }
    
        variable_override {
          property         = "region"
          values           = ["us-west1"]
          values_suggested = ["us-west-1", "us-east-1"]
        }
      }
    }
    

    Create DashboardGroup Resource

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

    Constructor syntax

    new DashboardGroup(name: string, args?: DashboardGroupArgs, opts?: CustomResourceOptions);
    @overload
    def DashboardGroup(resource_name: str,
                       args: Optional[DashboardGroupArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @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)
    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.
    
    

    Parameters

    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.

    Example

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

    var dashboardGroupResource = new SignalFx.DashboardGroup("dashboardGroupResource", new()
    {
        Dashboards = new[]
        {
            new SignalFx.Inputs.DashboardGroupDashboardArgs
            {
                DashboardId = "string",
                ConfigId = "string",
                DescriptionOverride = "string",
                FilterOverrides = new[]
                {
                    new SignalFx.Inputs.DashboardGroupDashboardFilterOverrideArgs
                    {
                        Property = "string",
                        Values = new[]
                        {
                            "string",
                        },
                        Negated = false,
                    },
                },
                NameOverride = "string",
                VariableOverrides = new[]
                {
                    new SignalFx.Inputs.DashboardGroupDashboardVariableOverrideArgs
                    {
                        Property = "string",
                        Values = new[]
                        {
                            "string",
                        },
                        ValuesSuggesteds = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        Description = "string",
        ImportQualifiers = new[]
        {
            new SignalFx.Inputs.DashboardGroupImportQualifierArgs
            {
                Filters = new[]
                {
                    new SignalFx.Inputs.DashboardGroupImportQualifierFilterArgs
                    {
                        Property = "string",
                        Values = new[]
                        {
                            "string",
                        },
                        Negated = false,
                    },
                },
                Metric = "string",
            },
        },
        Name = "string",
        Permissions = new[]
        {
            new SignalFx.Inputs.DashboardGroupPermissionArgs
            {
                PrincipalId = "string",
                PrincipalType = "string",
                Actions = new[]
                {
                    "string",
                },
            },
        },
        Teams = new[]
        {
            "string",
        },
    });
    
    example, err := signalfx.NewDashboardGroup(ctx, "dashboardGroupResource", &signalfx.DashboardGroupArgs{
    	Dashboards: signalfx.DashboardGroupDashboardArray{
    		&signalfx.DashboardGroupDashboardArgs{
    			DashboardId:         pulumi.String("string"),
    			ConfigId:            pulumi.String("string"),
    			DescriptionOverride: pulumi.String("string"),
    			FilterOverrides: signalfx.DashboardGroupDashboardFilterOverrideArray{
    				&signalfx.DashboardGroupDashboardFilterOverrideArgs{
    					Property: pulumi.String("string"),
    					Values: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Negated: pulumi.Bool(false),
    				},
    			},
    			NameOverride: pulumi.String("string"),
    			VariableOverrides: signalfx.DashboardGroupDashboardVariableOverrideArray{
    				&signalfx.DashboardGroupDashboardVariableOverrideArgs{
    					Property: pulumi.String("string"),
    					Values: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					ValuesSuggesteds: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    	},
    	Description: pulumi.String("string"),
    	ImportQualifiers: signalfx.DashboardGroupImportQualifierArray{
    		&signalfx.DashboardGroupImportQualifierArgs{
    			Filters: signalfx.DashboardGroupImportQualifierFilterArray{
    				&signalfx.DashboardGroupImportQualifierFilterArgs{
    					Property: pulumi.String("string"),
    					Values: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Negated: pulumi.Bool(false),
    				},
    			},
    			Metric: pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Permissions: signalfx.DashboardGroupPermissionArray{
    		&signalfx.DashboardGroupPermissionArgs{
    			PrincipalId:   pulumi.String("string"),
    			PrincipalType: pulumi.String("string"),
    			Actions: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Teams: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var dashboardGroupResource = new DashboardGroup("dashboardGroupResource", DashboardGroupArgs.builder()
        .dashboards(DashboardGroupDashboardArgs.builder()
            .dashboardId("string")
            .configId("string")
            .descriptionOverride("string")
            .filterOverrides(DashboardGroupDashboardFilterOverrideArgs.builder()
                .property("string")
                .values("string")
                .negated(false)
                .build())
            .nameOverride("string")
            .variableOverrides(DashboardGroupDashboardVariableOverrideArgs.builder()
                .property("string")
                .values("string")
                .valuesSuggesteds("string")
                .build())
            .build())
        .description("string")
        .importQualifiers(DashboardGroupImportQualifierArgs.builder()
            .filters(DashboardGroupImportQualifierFilterArgs.builder()
                .property("string")
                .values("string")
                .negated(false)
                .build())
            .metric("string")
            .build())
        .name("string")
        .permissions(DashboardGroupPermissionArgs.builder()
            .principalId("string")
            .principalType("string")
            .actions("string")
            .build())
        .teams("string")
        .build());
    
    dashboard_group_resource = signalfx.DashboardGroup("dashboardGroupResource",
        dashboards=[signalfx.DashboardGroupDashboardArgs(
            dashboard_id="string",
            config_id="string",
            description_override="string",
            filter_overrides=[signalfx.DashboardGroupDashboardFilterOverrideArgs(
                property="string",
                values=["string"],
                negated=False,
            )],
            name_override="string",
            variable_overrides=[signalfx.DashboardGroupDashboardVariableOverrideArgs(
                property="string",
                values=["string"],
                values_suggesteds=["string"],
            )],
        )],
        description="string",
        import_qualifiers=[signalfx.DashboardGroupImportQualifierArgs(
            filters=[signalfx.DashboardGroupImportQualifierFilterArgs(
                property="string",
                values=["string"],
                negated=False,
            )],
            metric="string",
        )],
        name="string",
        permissions=[signalfx.DashboardGroupPermissionArgs(
            principal_id="string",
            principal_type="string",
            actions=["string"],
        )],
        teams=["string"])
    
    const dashboardGroupResource = new signalfx.DashboardGroup("dashboardGroupResource", {
        dashboards: [{
            dashboardId: "string",
            configId: "string",
            descriptionOverride: "string",
            filterOverrides: [{
                property: "string",
                values: ["string"],
                negated: false,
            }],
            nameOverride: "string",
            variableOverrides: [{
                property: "string",
                values: ["string"],
                valuesSuggesteds: ["string"],
            }],
        }],
        description: "string",
        importQualifiers: [{
            filters: [{
                property: "string",
                values: ["string"],
                negated: false,
            }],
            metric: "string",
        }],
        name: "string",
        permissions: [{
            principalId: "string",
            principalType: "string",
            actions: ["string"],
        }],
        teams: ["string"],
    });
    
    type: signalfx:DashboardGroup
    properties:
        dashboards:
            - configId: string
              dashboardId: string
              descriptionOverride: string
              filterOverrides:
                - negated: false
                  property: string
                  values:
                    - string
              nameOverride: string
              variableOverrides:
                - property: string
                  values:
                    - string
                  valuesSuggesteds:
                    - string
        description: string
        importQualifiers:
            - filters:
                - negated: false
                  property: string
                  values:
                    - string
              metric: string
        name: string
        permissions:
            - actions:
                - string
              principalId: string
              principalType: string
        teams:
            - string
    

    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:

    AuthorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    AuthorizedWriterUsers 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 use permissions instead.

    Deprecated: Please use permissions field now

    Dashboards List<Pulumi.SignalFx.Inputs.DashboardGroupDashboard>
    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.
    ImportQualifiers List<Pulumi.SignalFx.Inputs.DashboardGroupImportQualifier>
    Name string
    Name of the dashboard group.
    Permissions List<Pulumi.SignalFx.Inputs.DashboardGroupPermission>
    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.
    AuthorizedWriterTeams []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 use permissions instead.

    Deprecated: Please use permissions field now

    AuthorizedWriterUsers []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 use permissions instead.

    Deprecated: Please use permissions field now

    Dashboards []DashboardGroupDashboardArgs
    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.
    ImportQualifiers []DashboardGroupImportQualifierArgs
    Name string
    Name of the dashboard group.
    Permissions []DashboardGroupPermissionArgs
    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.
    authorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorizedWriterUsers 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 use permissions instead.

    Deprecated: Please use permissions field now

    dashboards List<DashboardGroupDashboard>
    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.
    importQualifiers List<DashboardGroupImportQualifier>
    name String
    Name of the dashboard group.
    permissions List<DashboardGroupPermission>
    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.
    authorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorizedWriterUsers 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 use permissions instead.

    Deprecated: Please use permissions field now

    dashboards DashboardGroupDashboard[]
    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.
    importQualifiers DashboardGroupImportQualifier[]
    name string
    Name of the dashboard group.
    permissions DashboardGroupPermission[]
    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.
    authorized_writer_teams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorized_writer_users 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 use permissions instead.

    Deprecated: Please use permissions field now

    dashboards Sequence[DashboardGroupDashboardArgs]
    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[DashboardGroupImportQualifierArgs]
    name str
    Name of the dashboard group.
    permissions Sequence[DashboardGroupPermissionArgs]
    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.
    authorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorizedWriterUsers 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 use permissions instead.

    Deprecated: 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.
    importQualifiers 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 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.
    The following state arguments are supported:
    AuthorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    AuthorizedWriterUsers 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 use permissions instead.

    Deprecated: Please use permissions field now

    Dashboards List<Pulumi.SignalFx.Inputs.DashboardGroupDashboard>
    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.
    ImportQualifiers List<Pulumi.SignalFx.Inputs.DashboardGroupImportQualifier>
    Name string
    Name of the dashboard group.
    Permissions List<Pulumi.SignalFx.Inputs.DashboardGroupPermission>
    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.
    AuthorizedWriterTeams []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 use permissions instead.

    Deprecated: Please use permissions field now

    AuthorizedWriterUsers []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 use permissions instead.

    Deprecated: Please use permissions field now

    Dashboards []DashboardGroupDashboardArgs
    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.
    ImportQualifiers []DashboardGroupImportQualifierArgs
    Name string
    Name of the dashboard group.
    Permissions []DashboardGroupPermissionArgs
    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.
    authorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorizedWriterUsers 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 use permissions instead.

    Deprecated: Please use permissions field now

    dashboards List<DashboardGroupDashboard>
    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.
    importQualifiers List<DashboardGroupImportQualifier>
    name String
    Name of the dashboard group.
    permissions List<DashboardGroupPermission>
    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.
    authorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorizedWriterUsers 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 use permissions instead.

    Deprecated: Please use permissions field now

    dashboards DashboardGroupDashboard[]
    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.
    importQualifiers DashboardGroupImportQualifier[]
    name string
    Name of the dashboard group.
    permissions DashboardGroupPermission[]
    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.
    authorized_writer_teams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorized_writer_users 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 use permissions instead.

    Deprecated: Please use permissions field now

    dashboards Sequence[DashboardGroupDashboardArgs]
    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[DashboardGroupImportQualifierArgs]
    name str
    Name of the dashboard group.
    permissions Sequence[DashboardGroupPermissionArgs]
    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.
    authorizedWriterTeams 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 use permissions instead.

    Deprecated: Please use permissions field now

    authorizedWriterUsers 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 use permissions instead.

    Deprecated: 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.
    importQualifiers 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, DashboardGroupDashboardArgs

    DashboardId string
    The dashboard id to mirror
    ConfigId string
    The ID of the association between the dashboard group and the dashboard
    DescriptionOverride string
    The description that will override the original dashboards's description.
    FilterOverrides List<Pulumi.SignalFx.Inputs.DashboardGroupDashboardFilterOverride>
    The description that will override the original dashboards's description.
    NameOverride string
    The name that will override the original dashboards's name.
    VariableOverrides List<Pulumi.SignalFx.Inputs.DashboardGroupDashboardVariableOverride>
    Dashboard variable to apply to each chart in the dashboard
    DashboardId string
    The dashboard id to mirror
    ConfigId string
    The ID of the association between the dashboard group and the dashboard
    DescriptionOverride string
    The description that will override the original dashboards's description.
    FilterOverrides []DashboardGroupDashboardFilterOverride
    The description that will override the original dashboards's description.
    NameOverride string
    The name that will override the original dashboards's name.
    VariableOverrides []DashboardGroupDashboardVariableOverride
    Dashboard variable to apply to each chart in the dashboard
    dashboardId String
    The dashboard id to mirror
    configId String
    The ID of the association between the dashboard group and the dashboard
    descriptionOverride String
    The description that will override the original dashboards's description.
    filterOverrides List<DashboardGroupDashboardFilterOverride>
    The description that will override the original dashboards's description.
    nameOverride String
    The name that will override the original dashboards's name.
    variableOverrides List<DashboardGroupDashboardVariableOverride>
    Dashboard variable to apply to each chart in the dashboard
    dashboardId string
    The dashboard id to mirror
    configId string
    The ID of the association between the dashboard group and the dashboard
    descriptionOverride string
    The description that will override the original dashboards's description.
    filterOverrides DashboardGroupDashboardFilterOverride[]
    The description that will override the original dashboards's description.
    nameOverride string
    The name that will override the original dashboards's name.
    variableOverrides DashboardGroupDashboardVariableOverride[]
    Dashboard variable to apply to each chart in the dashboard
    dashboard_id str
    The dashboard id to mirror
    config_id str
    The ID of the association between the dashboard group and the dashboard
    description_override str
    The description that will override the original dashboards's description.
    filter_overrides Sequence[DashboardGroupDashboardFilterOverride]
    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[DashboardGroupDashboardVariableOverride]
    Dashboard variable to apply to each chart in the dashboard
    dashboardId String
    The dashboard id to mirror
    configId String
    The ID of the association between the dashboard group and the dashboard
    descriptionOverride String
    The description that will override the original dashboards's description.
    filterOverrides List<Property Map>
    The description that will override the original dashboards's description.
    nameOverride String
    The name that will override the original dashboards's name.
    variableOverrides List<Property Map>
    Dashboard variable to apply to each chart in the dashboard

    DashboardGroupDashboardFilterOverride, DashboardGroupDashboardFilterOverrideArgs

    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, DashboardGroupDashboardVariableOverrideArgs

    Property string
    A metric time series dimension or property name
    Values List<string>
    List of strings (which will be treated as an OR filter on the property)
    ValuesSuggesteds 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
    List of strings (which will be treated as an OR filter on the property)
    ValuesSuggesteds []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>
    List of strings (which will be treated as an OR filter on the property)
    valuesSuggesteds 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[]
    List of strings (which will be treated as an OR filter on the property)
    valuesSuggesteds 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]
    List 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>
    List of strings (which will be treated as an OR filter on the property)
    valuesSuggesteds 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, DashboardGroupImportQualifierArgs

    Filters List<Pulumi.SignalFx.Inputs.DashboardGroupImportQualifierFilter>
    Filter to apply to each chart in the dashboard
    Metric string
    Filters []DashboardGroupImportQualifierFilter
    Filter to apply to each chart in the dashboard
    Metric string
    filters List<DashboardGroupImportQualifierFilter>
    Filter to apply to each chart in the dashboard
    metric String
    filters DashboardGroupImportQualifierFilter[]
    Filter to apply to each chart in the dashboard
    metric string
    filters Sequence[DashboardGroupImportQualifierFilter]
    Filter to apply to each chart in the dashboard
    metric str
    filters List<Property Map>
    Filter to apply to each chart in the dashboard
    metric String

    DashboardGroupImportQualifierFilter, DashboardGroupImportQualifierFilterArgs

    Property string
    A metric time series dimension or property name
    Values List<string>
    List of strings (which will be treated as an OR filter on the property)
    Negated bool
    (false by default) Whether this filter should be a "not" filter
    Property string
    A metric time series dimension or property name
    Values []string
    List of strings (which will be treated as an OR filter on the property)
    Negated bool
    (false by default) Whether this filter should be a "not" filter
    property String
    A metric time series dimension or property name
    values List<String>
    List of strings (which will be treated as an OR filter on the property)
    negated Boolean
    (false by default) Whether this filter should be a "not" filter
    property string
    A metric time series dimension or property name
    values string[]
    List of strings (which will be treated as an OR filter on the property)
    negated boolean
    (false by default) Whether this filter should be a "not" filter
    property str
    A metric time series dimension or property name
    values Sequence[str]
    List of strings (which will be treated as an OR filter on the property)
    negated bool
    (false by default) Whether this filter should be a "not" filter
    property String
    A metric time series dimension or property name
    values List<String>
    List of strings (which will be treated as an OR filter on the property)
    negated Boolean
    (false by default) Whether this filter should be a "not" filter

    DashboardGroupPermission, DashboardGroupPermissionArgs

    PrincipalId string
    ID of the user, team, or organization for which you're granting permissions.
    PrincipalType 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").
    PrincipalId string
    ID of the user, team, or organization for which you're granting permissions.
    PrincipalType 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").
    principalId String
    ID of the user, team, or organization for which you're granting permissions.
    principalType 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").
    principalId string
    ID of the user, team, or organization for which you're granting permissions.
    principalType 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").
    principalId String
    ID of the user, team, or organization for which you're granting permissions.
    principalType 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
    SignalFx pulumi/pulumi-signalfx
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the signalfx Terraform Provider.
    signalfx logo
    SignalFx v7.1.5 published on Wednesday, May 29, 2024 by Pulumi