1. Registry
  2. Packages
  3. Signalfx Provider
  4. API Docs
  5. BigPandaIntegration
Viewing docs for SignalFx v7.29.0
published on Tuesday, Aug 25, 2026 by Pulumi
signalfx logo signalfx logo
Viewing docs for SignalFx v7.29.0
published on Tuesday, Aug 25, 2026 by Pulumi

    BigPanda integrations. For help with this integration see Integration with BigPanda.

    NOTE When managing integrations, use a session token of an administrator to authenticate the Observability Cloud provider. See Operations that require a session token for an administrator. Otherwise you’ll receive a 4xx error.

    Example

    import * as pulumi from "@pulumi/pulumi";
    import * as signalfx from "@pulumi/signalfx";
    
    const bigPandaMyteam = new signalfx.BigPandaIntegration("big_panda_myteam", {
        name: "BigPanda - My Team",
        enabled: true,
        appKey: "my-app-key",
        token: "my-token",
        alertTriggeredPayloadTemplate: "{\"status\":\"critical\",\"summary\":\"{{{messageTitle}}}\"}",
        alertResolvedPayloadTemplate: "{\"status\":\"ok\",\"summary\":\"{{{messageTitle}}}\"}",
    });
    
    import pulumi
    import pulumi_signalfx as signalfx
    
    big_panda_myteam = signalfx.BigPandaIntegration("big_panda_myteam",
        name="BigPanda - My Team",
        enabled=True,
        app_key="my-app-key",
        token="my-token",
        alert_triggered_payload_template="{\"status\":\"critical\",\"summary\":\"{{{messageTitle}}}\"}",
        alert_resolved_payload_template="{\"status\":\"ok\",\"summary\":\"{{{messageTitle}}}\"}")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-signalfx/sdk/v7/go/signalfx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := signalfx.NewBigPandaIntegration(ctx, "big_panda_myteam", &signalfx.BigPandaIntegrationArgs{
    			Name:                          pulumi.String("BigPanda - My Team"),
    			Enabled:                       pulumi.Bool(true),
    			AppKey:                        pulumi.String("my-app-key"),
    			Token:                         pulumi.String("my-token"),
    			AlertTriggeredPayloadTemplate: pulumi.String("{\"status\":\"critical\",\"summary\":\"{{{messageTitle}}}\"}"),
    			AlertResolvedPayloadTemplate:  pulumi.String("{\"status\":\"ok\",\"summary\":\"{{{messageTitle}}}\"}"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using SignalFx = Pulumi.SignalFx;
    
    return await Deployment.RunAsync(() => 
    {
        var bigPandaMyteam = new SignalFx.BigPandaIntegration("big_panda_myteam", new()
        {
            Name = "BigPanda - My Team",
            Enabled = true,
            AppKey = "my-app-key",
            Token = "my-token",
            AlertTriggeredPayloadTemplate = "{\"status\":\"critical\",\"summary\":\"{{{messageTitle}}}\"}",
            AlertResolvedPayloadTemplate = "{\"status\":\"ok\",\"summary\":\"{{{messageTitle}}}\"}",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.signalfx.BigPandaIntegration;
    import com.pulumi.signalfx.BigPandaIntegrationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 bigPandaMyteam = new BigPandaIntegration("bigPandaMyteam", BigPandaIntegrationArgs.builder()
                .name("BigPanda - My Team")
                .enabled(true)
                .appKey("my-app-key")
                .token("my-token")
                .alertTriggeredPayloadTemplate("{\"status\":\"critical\",\"summary\":\"{{{messageTitle}}}\"}")
                .alertResolvedPayloadTemplate("{\"status\":\"ok\",\"summary\":\"{{{messageTitle}}}\"}")
                .build());
    
        }
    }
    
    resources:
      bigPandaMyteam:
        type: signalfx:BigPandaIntegration
        name: big_panda_myteam
        properties:
          name: BigPanda - My Team
          enabled: true
          appKey: my-app-key
          token: my-token
          alertTriggeredPayloadTemplate: '{"status":"critical","summary":"{{{messageTitle}}}"}'
          alertResolvedPayloadTemplate: '{"status":"ok","summary":"{{{messageTitle}}}"}'
    
    pulumi {
      required_providers {
        signalfx = {
          source = "pulumi/signalfx"
        }
      }
    }
    
    resource "signalfx_bigpandaintegration" "big_panda_myteam" {
      name                             = "BigPanda - My Team"
      enabled                          = true
      app_key                          = "my-app-key"
      token                            = "my-token"
      alert_triggered_payload_template = "{\"status\":\"critical\",\"summary\":\"{{{messageTitle}}}\"}"
      alert_resolved_payload_template  = "{\"status\":\"ok\",\"summary\":\"{{{messageTitle}}}\"}"
    }
    

    Create BigPandaIntegration Resource

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

    Constructor syntax

    new BigPandaIntegration(name: string, args: BigPandaIntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def BigPandaIntegration(resource_name: str,
                            args: BigPandaIntegrationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def BigPandaIntegration(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            app_key: Optional[str] = None,
                            enabled: Optional[bool] = None,
                            token: Optional[str] = None,
                            alert_resolved_payload_template: Optional[str] = None,
                            alert_triggered_payload_template: Optional[str] = None,
                            name: Optional[str] = None)
    func NewBigPandaIntegration(ctx *Context, name string, args BigPandaIntegrationArgs, opts ...ResourceOption) (*BigPandaIntegration, error)
    public BigPandaIntegration(string name, BigPandaIntegrationArgs args, CustomResourceOptions? opts = null)
    public BigPandaIntegration(String name, BigPandaIntegrationArgs args)
    public BigPandaIntegration(String name, BigPandaIntegrationArgs args, CustomResourceOptions options)
    
    type: signalfx:BigPandaIntegration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "signalfx_big_panda_integration" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args BigPandaIntegrationArgs
    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 BigPandaIntegrationArgs
    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 BigPandaIntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BigPandaIntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BigPandaIntegrationArgs
    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 bigPandaIntegrationResource = new SignalFx.BigPandaIntegration("bigPandaIntegrationResource", new()
    {
        AppKey = "string",
        Enabled = false,
        Token = "string",
        AlertResolvedPayloadTemplate = "string",
        AlertTriggeredPayloadTemplate = "string",
        Name = "string",
    });
    
    example, err := signalfx.NewBigPandaIntegration(ctx, "bigPandaIntegrationResource", &signalfx.BigPandaIntegrationArgs{
    	AppKey:                        pulumi.String("string"),
    	Enabled:                       pulumi.Bool(false),
    	Token:                         pulumi.String("string"),
    	AlertResolvedPayloadTemplate:  pulumi.String("string"),
    	AlertTriggeredPayloadTemplate: pulumi.String("string"),
    	Name:                          pulumi.String("string"),
    })
    
    resource "signalfx_big_panda_integration" "bigPandaIntegrationResource" {
      lifecycle {
        create_before_destroy = true
      }
      app_key                          = "string"
      enabled                          = false
      token                            = "string"
      alert_resolved_payload_template  = "string"
      alert_triggered_payload_template = "string"
      name                             = "string"
    }
    
    var bigPandaIntegrationResource = new BigPandaIntegration("bigPandaIntegrationResource", BigPandaIntegrationArgs.builder()
        .appKey("string")
        .enabled(false)
        .token("string")
        .alertResolvedPayloadTemplate("string")
        .alertTriggeredPayloadTemplate("string")
        .name("string")
        .build());
    
    big_panda_integration_resource = signalfx.BigPandaIntegration("bigPandaIntegrationResource",
        app_key="string",
        enabled=False,
        token="string",
        alert_resolved_payload_template="string",
        alert_triggered_payload_template="string",
        name="string")
    
    const bigPandaIntegrationResource = new signalfx.BigPandaIntegration("bigPandaIntegrationResource", {
        appKey: "string",
        enabled: false,
        token: "string",
        alertResolvedPayloadTemplate: "string",
        alertTriggeredPayloadTemplate: "string",
        name: "string",
    });
    
    type: signalfx:BigPandaIntegration
    properties:
        alertResolvedPayloadTemplate: string
        alertTriggeredPayloadTemplate: string
        appKey: string
        enabled: false
        name: string
        token: string
    

    BigPandaIntegration 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 BigPandaIntegration resource accepts the following input properties:

    AppKey string
    Application key you get from BigPanda.
    Enabled bool
    Whether the integration is enabled.
    Token string
    Token you get from BigPanda.
    AlertResolvedPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    AlertTriggeredPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    Name string
    Name of the integration.
    AppKey string
    Application key you get from BigPanda.
    Enabled bool
    Whether the integration is enabled.
    Token string
    Token you get from BigPanda.
    AlertResolvedPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    AlertTriggeredPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    Name string
    Name of the integration.
    app_key string
    Application key you get from BigPanda.
    enabled bool
    Whether the integration is enabled.
    token string
    Token you get from BigPanda.
    alert_resolved_payload_template string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alert_triggered_payload_template string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    name string
    Name of the integration.
    appKey String
    Application key you get from BigPanda.
    enabled Boolean
    Whether the integration is enabled.
    token String
    Token you get from BigPanda.
    alertResolvedPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alertTriggeredPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    name String
    Name of the integration.
    appKey string
    Application key you get from BigPanda.
    enabled boolean
    Whether the integration is enabled.
    token string
    Token you get from BigPanda.
    alertResolvedPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alertTriggeredPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    name string
    Name of the integration.
    app_key str
    Application key you get from BigPanda.
    enabled bool
    Whether the integration is enabled.
    token str
    Token you get from BigPanda.
    alert_resolved_payload_template str
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alert_triggered_payload_template str
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    name str
    Name of the integration.
    appKey String
    Application key you get from BigPanda.
    enabled Boolean
    Whether the integration is enabled.
    token String
    Token you get from BigPanda.
    alertResolvedPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alertTriggeredPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    name String
    Name of the integration.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BigPandaIntegration 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 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 BigPandaIntegration Resource

    Get an existing BigPandaIntegration 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?: BigPandaIntegrationState, opts?: CustomResourceOptions): BigPandaIntegration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alert_resolved_payload_template: Optional[str] = None,
            alert_triggered_payload_template: Optional[str] = None,
            app_key: Optional[str] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            token: Optional[str] = None) -> BigPandaIntegration
    func GetBigPandaIntegration(ctx *Context, name string, id IDInput, state *BigPandaIntegrationState, opts ...ResourceOption) (*BigPandaIntegration, error)
    public static BigPandaIntegration Get(string name, Input<string> id, BigPandaIntegrationState? state, CustomResourceOptions? opts = null)
    public static BigPandaIntegration get(String name, Output<String> id, BigPandaIntegrationState state, CustomResourceOptions options)
    resources:  _:    type: signalfx:BigPandaIntegration    get:      id: ${id}
    import {
      to = signalfx_big_panda_integration.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AlertResolvedPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    AlertTriggeredPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    AppKey string
    Application key you get from BigPanda.
    Enabled bool
    Whether the integration is enabled.
    Name string
    Name of the integration.
    Token string
    Token you get from BigPanda.
    AlertResolvedPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    AlertTriggeredPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    AppKey string
    Application key you get from BigPanda.
    Enabled bool
    Whether the integration is enabled.
    Name string
    Name of the integration.
    Token string
    Token you get from BigPanda.
    alert_resolved_payload_template string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alert_triggered_payload_template string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    app_key string
    Application key you get from BigPanda.
    enabled bool
    Whether the integration is enabled.
    name string
    Name of the integration.
    token string
    Token you get from BigPanda.
    alertResolvedPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alertTriggeredPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    appKey String
    Application key you get from BigPanda.
    enabled Boolean
    Whether the integration is enabled.
    name String
    Name of the integration.
    token String
    Token you get from BigPanda.
    alertResolvedPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alertTriggeredPayloadTemplate string
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    appKey string
    Application key you get from BigPanda.
    enabled boolean
    Whether the integration is enabled.
    name string
    Name of the integration.
    token string
    Token you get from BigPanda.
    alert_resolved_payload_template str
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alert_triggered_payload_template str
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    app_key str
    Application key you get from BigPanda.
    enabled bool
    Whether the integration is enabled.
    name str
    Name of the integration.
    token str
    Token you get from BigPanda.
    alertResolvedPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a resolved notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    alertTriggeredPayloadTemplate String
    A template that Observability Cloud uses to create the BigPanda POST JSON payload when an alert sends a triggered notification to BigPanda. If omitted, Observability Cloud uses the default BigPanda payload.
    appKey String
    Application key you get from BigPanda.
    enabled Boolean
    Whether the integration is enabled.
    name String
    Name of the integration.
    token String
    Token you get from BigPanda.

    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 logo
    Viewing docs for SignalFx v7.29.0
    published on Tuesday, Aug 25, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial