1. Packages
  2. SignalFx
  3. API Docs
  4. gcp
  5. Integration
SignalFx v7.1.1 published on Tuesday, Feb 27, 2024 by Pulumi

signalfx.gcp.Integration

Explore with Pulumi AI

signalfx logo
SignalFx v7.1.1 published on Tuesday, Feb 27, 2024 by Pulumi

    Splunk Observability Cloud GCP Integration.

    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 fs from "fs";
    import * as signalfx from "@pulumi/signalfx";
    
    const gcpMyteam = new signalfx.gcp.Integration("gcpMyteam", {
        customMetricTypeDomains: ["istio.io"],
        enabled: true,
        importGcpMetrics: true,
        pollRate: 300,
        projectServiceKeys: [
            {
                projectId: "gcp_project_id_1",
                projectKey: fs.readFileSync("/path/to/gcp_credentials_1.json", "utf8"),
            },
            {
                projectId: "gcp_project_id_2",
                projectKey: fs.readFileSync("/path/to/gcp_credentials_2.json", "utf8"),
            },
        ],
        services: ["compute"],
    });
    
    import pulumi
    import pulumi_signalfx as signalfx
    
    gcp_myteam = signalfx.gcp.Integration("gcpMyteam",
        custom_metric_type_domains=["istio.io"],
        enabled=True,
        import_gcp_metrics=True,
        poll_rate=300,
        project_service_keys=[
            signalfx.gcp.IntegrationProjectServiceKeyArgs(
                project_id="gcp_project_id_1",
                project_key=(lambda path: open(path).read())("/path/to/gcp_credentials_1.json"),
            ),
            signalfx.gcp.IntegrationProjectServiceKeyArgs(
                project_id="gcp_project_id_2",
                project_key=(lambda path: open(path).read())("/path/to/gcp_credentials_2.json"),
            ),
        ],
        services=["compute"])
    
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using Pulumi;
    using SignalFx = Pulumi.SignalFx;
    
    return await Deployment.RunAsync(() => 
    {
        var gcpMyteam = new SignalFx.Gcp.Integration("gcpMyteam", new()
        {
            CustomMetricTypeDomains = new[]
            {
                "istio.io",
            },
            Enabled = true,
            ImportGcpMetrics = true,
            PollRate = 300,
            ProjectServiceKeys = new[]
            {
                new SignalFx.Gcp.Inputs.IntegrationProjectServiceKeyArgs
                {
                    ProjectId = "gcp_project_id_1",
                    ProjectKey = File.ReadAllText("/path/to/gcp_credentials_1.json"),
                },
                new SignalFx.Gcp.Inputs.IntegrationProjectServiceKeyArgs
                {
                    ProjectId = "gcp_project_id_2",
                    ProjectKey = File.ReadAllText("/path/to/gcp_credentials_2.json"),
                },
            },
            Services = new[]
            {
                "compute",
            },
        });
    
    });
    
    package main
    
    import (
    	"os"
    
    	"github.com/pulumi/pulumi-signalfx/sdk/v7/go/signalfx/gcp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func readFileOrPanic(path string) pulumi.StringPtrInput {
    	data, err := os.ReadFile(path)
    	if err != nil {
    		panic(err.Error())
    	}
    	return pulumi.String(string(data))
    }
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gcp.NewIntegration(ctx, "gcpMyteam", &gcp.IntegrationArgs{
    			CustomMetricTypeDomains: pulumi.StringArray{
    				pulumi.String("istio.io"),
    			},
    			Enabled:          pulumi.Bool(true),
    			ImportGcpMetrics: pulumi.Bool(true),
    			PollRate:         pulumi.Int(300),
    			ProjectServiceKeys: gcp.IntegrationProjectServiceKeyArray{
    				&gcp.IntegrationProjectServiceKeyArgs{
    					ProjectId:  pulumi.String("gcp_project_id_1"),
    					ProjectKey: readFileOrPanic("/path/to/gcp_credentials_1.json"),
    				},
    				&gcp.IntegrationProjectServiceKeyArgs{
    					ProjectId:  pulumi.String("gcp_project_id_2"),
    					ProjectKey: readFileOrPanic("/path/to/gcp_credentials_2.json"),
    				},
    			},
    			Services: pulumi.StringArray{
    				pulumi.String("compute"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.signalfx.gcp.Integration;
    import com.pulumi.signalfx.gcp.IntegrationArgs;
    import com.pulumi.signalfx.gcp.inputs.IntegrationProjectServiceKeyArgs;
    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 gcpMyteam = new Integration("gcpMyteam", IntegrationArgs.builder()        
                .customMetricTypeDomains("istio.io")
                .enabled(true)
                .importGcpMetrics(true)
                .pollRate(300)
                .projectServiceKeys(            
                    IntegrationProjectServiceKeyArgs.builder()
                        .projectId("gcp_project_id_1")
                        .projectKey(Files.readString(Paths.get("/path/to/gcp_credentials_1.json")))
                        .build(),
                    IntegrationProjectServiceKeyArgs.builder()
                        .projectId("gcp_project_id_2")
                        .projectKey(Files.readString(Paths.get("/path/to/gcp_credentials_2.json")))
                        .build())
                .services("compute")
                .build());
    
        }
    }
    
    resources:
      gcpMyteam:
        type: signalfx:gcp:Integration
        properties:
          customMetricTypeDomains:
            - istio.io
          enabled: true
          importGcpMetrics: true
          pollRate: 300
          projectServiceKeys:
            - projectId: gcp_project_id_1
              projectKey:
                fn::readFile: /path/to/gcp_credentials_1.json
            - projectId: gcp_project_id_2
              projectKey:
                fn::readFile: /path/to/gcp_credentials_2.json
          services:
            - compute
    

    Arguments

    • custom_metric_type_domains - (Optional) List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
    • enabled - (Required) Whether the integration is enabled.
    • import_gcp_metrics - (Optional) If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    • include_list - (Optional) Compute Metadata Include List.
    • name - (Required) Name of the integration.
    • named_token - (Optional) Name of the org token to be used for data ingestion. If not specified then default access token is used.
    • poll_rate - (Optional) GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
    • project_service_keys - (Required) GCP projects to add.
    • services - (Optional) GCP service metrics to import. Can be an empty list, or not included, to import ‘All services’. See Google Cloud Platform services for a list of valid values.
    • use_metric_source_project_for_quota - (Optional) When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.

    Attributes

    In addition to all arguments above, the following attributes are exported:

    • id - The ID of the integration.

    Create Integration Resource

    new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def Integration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    custom_metric_type_domains: Optional[Sequence[str]] = None,
                    enabled: Optional[bool] = None,
                    import_gcp_metrics: Optional[bool] = None,
                    include_lists: Optional[Sequence[str]] = None,
                    name: Optional[str] = None,
                    named_token: Optional[str] = None,
                    poll_rate: Optional[int] = None,
                    project_service_keys: Optional[Sequence[IntegrationProjectServiceKeyArgs]] = None,
                    services: Optional[Sequence[str]] = None,
                    use_metric_source_project_for_quota: Optional[bool] = None)
    @overload
    def Integration(resource_name: str,
                    args: IntegrationArgs,
                    opts: Optional[ResourceOptions] = 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:gcp:Integration
    properties: # The arguments to resource properties.
    options: # 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.
    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.

    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 or not
    CustomMetricTypeDomains List<string>
    List of additional GCP service domain names that you want to monitor
    ImportGcpMetrics bool
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    IncludeLists List<string>
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    Name string
    Name of the integration
    NamedToken string
    A named token to use for ingest
    PollRate int
    GCP poll rate (in seconds). Between 60 and 600.
    ProjectServiceKeys List<Pulumi.SignalFx.Gcp.Inputs.IntegrationProjectServiceKey>
    GCP project service keys
    Services List<string>
    GCP enabled services
    UseMetricSourceProjectForQuota bool
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    Enabled bool
    Whether the integration is enabled or not
    CustomMetricTypeDomains []string
    List of additional GCP service domain names that you want to monitor
    ImportGcpMetrics bool
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    IncludeLists []string
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    Name string
    Name of the integration
    NamedToken string
    A named token to use for ingest
    PollRate int
    GCP poll rate (in seconds). Between 60 and 600.
    ProjectServiceKeys []IntegrationProjectServiceKeyArgs
    GCP project service keys
    Services []string
    GCP enabled services
    UseMetricSourceProjectForQuota bool
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    enabled Boolean
    Whether the integration is enabled or not
    customMetricTypeDomains List<String>
    List of additional GCP service domain names that you want to monitor
    importGcpMetrics Boolean
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    includeLists List<String>
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name String
    Name of the integration
    namedToken String
    A named token to use for ingest
    pollRate Integer
    GCP poll rate (in seconds). Between 60 and 600.
    projectServiceKeys List<IntegrationProjectServiceKey>
    GCP project service keys
    services List<String>
    GCP enabled services
    useMetricSourceProjectForQuota Boolean
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    enabled boolean
    Whether the integration is enabled or not
    customMetricTypeDomains string[]
    List of additional GCP service domain names that you want to monitor
    importGcpMetrics boolean
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    includeLists string[]
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name string
    Name of the integration
    namedToken string
    A named token to use for ingest
    pollRate number
    GCP poll rate (in seconds). Between 60 and 600.
    projectServiceKeys IntegrationProjectServiceKey[]
    GCP project service keys
    services string[]
    GCP enabled services
    useMetricSourceProjectForQuota boolean
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    enabled bool
    Whether the integration is enabled or not
    custom_metric_type_domains Sequence[str]
    List of additional GCP service domain names that you want to monitor
    import_gcp_metrics bool
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    include_lists Sequence[str]
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name str
    Name of the integration
    named_token str
    A named token to use for ingest
    poll_rate int
    GCP poll rate (in seconds). Between 60 and 600.
    project_service_keys Sequence[IntegrationProjectServiceKeyArgs]
    GCP project service keys
    services Sequence[str]
    GCP enabled services
    use_metric_source_project_for_quota bool
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    enabled Boolean
    Whether the integration is enabled or not
    customMetricTypeDomains List<String>
    List of additional GCP service domain names that you want to monitor
    importGcpMetrics Boolean
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    includeLists List<String>
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name String
    Name of the integration
    namedToken String
    A named token to use for ingest
    pollRate Number
    GCP poll rate (in seconds). Between 60 and 600.
    projectServiceKeys List<Property Map>
    GCP project service keys
    services List<String>
    GCP enabled services
    useMetricSourceProjectForQuota Boolean
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.

    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,
            custom_metric_type_domains: Optional[Sequence[str]] = None,
            enabled: Optional[bool] = None,
            import_gcp_metrics: Optional[bool] = None,
            include_lists: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            named_token: Optional[str] = None,
            poll_rate: Optional[int] = None,
            project_service_keys: Optional[Sequence[IntegrationProjectServiceKeyArgs]] = None,
            services: Optional[Sequence[str]] = None,
            use_metric_source_project_for_quota: Optional[bool] = 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:
    CustomMetricTypeDomains List<string>
    List of additional GCP service domain names that you want to monitor
    Enabled bool
    Whether the integration is enabled or not
    ImportGcpMetrics bool
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    IncludeLists List<string>
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    Name string
    Name of the integration
    NamedToken string
    A named token to use for ingest
    PollRate int
    GCP poll rate (in seconds). Between 60 and 600.
    ProjectServiceKeys List<Pulumi.SignalFx.Gcp.Inputs.IntegrationProjectServiceKey>
    GCP project service keys
    Services List<string>
    GCP enabled services
    UseMetricSourceProjectForQuota bool
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    CustomMetricTypeDomains []string
    List of additional GCP service domain names that you want to monitor
    Enabled bool
    Whether the integration is enabled or not
    ImportGcpMetrics bool
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    IncludeLists []string
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    Name string
    Name of the integration
    NamedToken string
    A named token to use for ingest
    PollRate int
    GCP poll rate (in seconds). Between 60 and 600.
    ProjectServiceKeys []IntegrationProjectServiceKeyArgs
    GCP project service keys
    Services []string
    GCP enabled services
    UseMetricSourceProjectForQuota bool
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    customMetricTypeDomains List<String>
    List of additional GCP service domain names that you want to monitor
    enabled Boolean
    Whether the integration is enabled or not
    importGcpMetrics Boolean
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    includeLists List<String>
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name String
    Name of the integration
    namedToken String
    A named token to use for ingest
    pollRate Integer
    GCP poll rate (in seconds). Between 60 and 600.
    projectServiceKeys List<IntegrationProjectServiceKey>
    GCP project service keys
    services List<String>
    GCP enabled services
    useMetricSourceProjectForQuota Boolean
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    customMetricTypeDomains string[]
    List of additional GCP service domain names that you want to monitor
    enabled boolean
    Whether the integration is enabled or not
    importGcpMetrics boolean
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    includeLists string[]
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name string
    Name of the integration
    namedToken string
    A named token to use for ingest
    pollRate number
    GCP poll rate (in seconds). Between 60 and 600.
    projectServiceKeys IntegrationProjectServiceKey[]
    GCP project service keys
    services string[]
    GCP enabled services
    useMetricSourceProjectForQuota boolean
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    custom_metric_type_domains Sequence[str]
    List of additional GCP service domain names that you want to monitor
    enabled bool
    Whether the integration is enabled or not
    import_gcp_metrics bool
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    include_lists Sequence[str]
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name str
    Name of the integration
    named_token str
    A named token to use for ingest
    poll_rate int
    GCP poll rate (in seconds). Between 60 and 600.
    project_service_keys Sequence[IntegrationProjectServiceKeyArgs]
    GCP project service keys
    services Sequence[str]
    GCP enabled services
    use_metric_source_project_for_quota bool
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.
    customMetricTypeDomains List<String>
    List of additional GCP service domain names that you want to monitor
    enabled Boolean
    Whether the integration is enabled or not
    importGcpMetrics Boolean
    If enabled, Splunk Observability Cloud will sync also Google Cloud Metrics data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
    includeLists List<String>
    List of custom metadata keys that you want Observability Cloud to collect for Compute Engine instances.
    name String
    Name of the integration
    namedToken String
    A named token to use for ingest
    pollRate Number
    GCP poll rate (in seconds). Between 60 and 600.
    projectServiceKeys List<Property Map>
    GCP project service keys
    services List<String>
    GCP enabled services
    useMetricSourceProjectForQuota Boolean
    When this value is set to true Observability Cloud will force usage of a quota from the project where metrics are stored. For this to work the service account provided for the project needs to be provided with serviceusage.services.use permission or Service Usage Consumer role in this project. When set to false default quota settings are used.

    Supporting Types

    IntegrationProjectServiceKey, IntegrationProjectServiceKeyArgs

    ProjectId string
    ProjectKey string
    ProjectId string
    ProjectKey string
    projectId String
    projectKey String
    projectId string
    projectKey string
    projectId String
    projectKey String

    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.1 published on Tuesday, Feb 27, 2024 by Pulumi