1. Packages
  2. SignalFx
  3. API Docs
  4. pagerduty
  5. Integration
SignalFx v7.2.1 published on Tuesday, Sep 17, 2024 by Pulumi

signalfx.pagerduty.Integration

Explore with Pulumi AI

signalfx logo
SignalFx v7.2.1 published on Tuesday, Sep 17, 2024 by Pulumi

    Splunk Observability Cloud PagerDuty integrations.

    NOTE When managing integrations, use a session token of an administrator to authenticate the Splunk 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 pagerdutyMyteam = new signalfx.pagerduty.Integration("pagerduty_myteam", {
        name: "PD - My Team",
        enabled: true,
        apiKey: "1234567890",
    });
    
    import pulumi
    import pulumi_signalfx as signalfx
    
    pagerduty_myteam = signalfx.pagerduty.Integration("pagerduty_myteam",
        name="PD - My Team",
        enabled=True,
        api_key="1234567890")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-signalfx/sdk/v7/go/signalfx/pagerduty"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := pagerduty.NewIntegration(ctx, "pagerduty_myteam", &pagerduty.IntegrationArgs{
    			Name:    pulumi.String("PD - My Team"),
    			Enabled: pulumi.Bool(true),
    			ApiKey:  pulumi.String("1234567890"),
    		})
    		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 pagerdutyMyteam = new SignalFx.PagerDuty.Integration("pagerduty_myteam", new()
        {
            Name = "PD - My Team",
            Enabled = true,
            ApiKey = "1234567890",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.signalfx.pagerduty.Integration;
    import com.pulumi.signalfx.pagerduty.IntegrationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var pagerdutyMyteam = new Integration("pagerdutyMyteam", IntegrationArgs.builder()
                .name("PD - My Team")
                .enabled(true)
                .apiKey("1234567890")
                .build());
    
        }
    }
    
    resources:
      pagerdutyMyteam:
        type: signalfx:pagerduty:Integration
        name: pagerduty_myteam
        properties:
          name: PD - My Team
          enabled: true
          apiKey: '1234567890'
    

    Create Integration Resource

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

    Constructor syntax

    new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def Integration(resource_name: str,
                    args: IntegrationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Integration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    enabled: Optional[bool] = None,
                    api_key: Optional[str] = None,
                    name: Optional[str] = None)
    func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)
    public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
    public Integration(String name, IntegrationArgs args)
    public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
    
    type: signalfx:pagerduty:Integration
    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 IntegrationArgs
    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 IntegrationArgs
    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 IntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationArgs
    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 exampleintegrationResourceResourceFromPagerdutyintegration = new SignalFx.PagerDuty.Integration("exampleintegrationResourceResourceFromPagerdutyintegration", new()
    {
        Enabled = false,
        ApiKey = "string",
        Name = "string",
    });
    
    example, err := pagerduty.NewIntegration(ctx, "exampleintegrationResourceResourceFromPagerdutyintegration", &pagerduty.IntegrationArgs{
    	Enabled: pulumi.Bool(false),
    	ApiKey:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    })
    
    var exampleintegrationResourceResourceFromPagerdutyintegration = new Integration("exampleintegrationResourceResourceFromPagerdutyintegration", IntegrationArgs.builder()
        .enabled(false)
        .apiKey("string")
        .name("string")
        .build());
    
    exampleintegration_resource_resource_from_pagerdutyintegration = signalfx.pagerduty.Integration("exampleintegrationResourceResourceFromPagerdutyintegration",
        enabled=False,
        api_key="string",
        name="string")
    
    const exampleintegrationResourceResourceFromPagerdutyintegration = new signalfx.pagerduty.Integration("exampleintegrationResourceResourceFromPagerdutyintegration", {
        enabled: false,
        apiKey: "string",
        name: "string",
    });
    
    type: signalfx:pagerduty:Integration
    properties:
        apiKey: string
        enabled: false
        name: string
    

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

    Enabled bool
    Whether the integration is enabled.
    ApiKey string
    PagerDuty API key.
    Name string
    Name of the integration.
    Enabled bool
    Whether the integration is enabled.
    ApiKey string
    PagerDuty API key.
    Name string
    Name of the integration.
    enabled Boolean
    Whether the integration is enabled.
    apiKey String
    PagerDuty API key.
    name String
    Name of the integration.
    enabled boolean
    Whether the integration is enabled.
    apiKey string
    PagerDuty API key.
    name string
    Name of the integration.
    enabled bool
    Whether the integration is enabled.
    api_key str
    PagerDuty API key.
    name str
    Name of the integration.
    enabled Boolean
    Whether the integration is enabled.
    apiKey String
    PagerDuty API key.
    name String
    Name of the integration.

    Outputs

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

    Get an existing Integration 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?: IntegrationState, opts?: CustomResourceOptions): Integration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_key: Optional[str] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None) -> Integration
    func GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)
    public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)
    public static Integration get(String name, Output<String> id, IntegrationState 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:
    ApiKey string
    PagerDuty API key.
    Enabled bool
    Whether the integration is enabled.
    Name string
    Name of the integration.
    ApiKey string
    PagerDuty API key.
    Enabled bool
    Whether the integration is enabled.
    Name string
    Name of the integration.
    apiKey String
    PagerDuty API key.
    enabled Boolean
    Whether the integration is enabled.
    name String
    Name of the integration.
    apiKey string
    PagerDuty API key.
    enabled boolean
    Whether the integration is enabled.
    name string
    Name of the integration.
    api_key str
    PagerDuty API key.
    enabled bool
    Whether the integration is enabled.
    name str
    Name of the integration.
    apiKey String
    PagerDuty API key.
    enabled Boolean
    Whether the integration is enabled.
    name String
    Name of the integration.

    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.2.1 published on Tuesday, Sep 17, 2024 by Pulumi