1. Packages
  2. Signalfx Provider
  3. API Docs
  4. gcp
  5. Integration
SignalFx v7.9.0 published on Wednesday, Mar 26, 2025 by Pulumi

signalfx.gcp.Integration

Explore with Pulumi AI

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.

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,
                named_token: Optional[str] = None,
                custom_metric_type_domains: Optional[Sequence[str]] = None,
                import_gcp_metrics: Optional[bool] = None,
                include_lists: Optional[Sequence[str]] = None,
                name: Optional[str] = None,
                auth_method: Optional[str] = None,
                poll_rate: Optional[int] = None,
                project_service_keys: Optional[Sequence[IntegrationProjectServiceKeyArgs]] = None,
                project_wif_configs: Optional[Sequence[IntegrationProjectWifConfigArgs]] = None,
                services: Optional[Sequence[str]] = None,
                use_metric_source_project_for_quota: Optional[bool] = None,
                wif_splunk_identity: Optional[Mapping[str, 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:gcp:Integration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IntegrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. IntegrationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 exampleintegrationResourceResourceFromGcpintegration = new SignalFx.Gcp.Integration("exampleintegrationResourceResourceFromGcpintegration", new()
{
    Enabled = false,
    NamedToken = "string",
    CustomMetricTypeDomains = new[]
    {
        "string",
    },
    ImportGcpMetrics = false,
    IncludeLists = new[]
    {
        "string",
    },
    Name = "string",
    AuthMethod = "string",
    PollRate = 0,
    ProjectServiceKeys = new[]
    {
        new SignalFx.Gcp.Inputs.IntegrationProjectServiceKeyArgs
        {
            ProjectId = "string",
            ProjectKey = "string",
        },
    },
    ProjectWifConfigs = new[]
    {
        new SignalFx.Gcp.Inputs.IntegrationProjectWifConfigArgs
        {
            ProjectId = "string",
            WifConfig = "string",
        },
    },
    Services = new[]
    {
        "string",
    },
    UseMetricSourceProjectForQuota = false,
    WifSplunkIdentity = 
    {
        { "string", "string" },
    },
});
Copy
example, err := gcp.NewIntegration(ctx, "exampleintegrationResourceResourceFromGcpintegration", &gcp.IntegrationArgs{
	Enabled:    pulumi.Bool(false),
	NamedToken: pulumi.String("string"),
	CustomMetricTypeDomains: pulumi.StringArray{
		pulumi.String("string"),
	},
	ImportGcpMetrics: pulumi.Bool(false),
	IncludeLists: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:       pulumi.String("string"),
	AuthMethod: pulumi.String("string"),
	PollRate:   pulumi.Int(0),
	ProjectServiceKeys: gcp.IntegrationProjectServiceKeyArray{
		&gcp.IntegrationProjectServiceKeyArgs{
			ProjectId:  pulumi.String("string"),
			ProjectKey: pulumi.String("string"),
		},
	},
	ProjectWifConfigs: gcp.IntegrationProjectWifConfigArray{
		&gcp.IntegrationProjectWifConfigArgs{
			ProjectId: pulumi.String("string"),
			WifConfig: pulumi.String("string"),
		},
	},
	Services: pulumi.StringArray{
		pulumi.String("string"),
	},
	UseMetricSourceProjectForQuota: pulumi.Bool(false),
	WifSplunkIdentity: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var exampleintegrationResourceResourceFromGcpintegration = new com.pulumi.signalfx.gcp.Integration("exampleintegrationResourceResourceFromGcpintegration", com.pulumi.signalfx.gcp.IntegrationArgs.builder()
    .enabled(false)
    .namedToken("string")
    .customMetricTypeDomains("string")
    .importGcpMetrics(false)
    .includeLists("string")
    .name("string")
    .authMethod("string")
    .pollRate(0)
    .projectServiceKeys(IntegrationProjectServiceKeyArgs.builder()
        .projectId("string")
        .projectKey("string")
        .build())
    .projectWifConfigs(IntegrationProjectWifConfigArgs.builder()
        .projectId("string")
        .wifConfig("string")
        .build())
    .services("string")
    .useMetricSourceProjectForQuota(false)
    .wifSplunkIdentity(Map.of("string", "string"))
    .build());
Copy
exampleintegration_resource_resource_from_gcpintegration = signalfx.gcp.Integration("exampleintegrationResourceResourceFromGcpintegration",
    enabled=False,
    named_token="string",
    custom_metric_type_domains=["string"],
    import_gcp_metrics=False,
    include_lists=["string"],
    name="string",
    auth_method="string",
    poll_rate=0,
    project_service_keys=[{
        "project_id": "string",
        "project_key": "string",
    }],
    project_wif_configs=[{
        "project_id": "string",
        "wif_config": "string",
    }],
    services=["string"],
    use_metric_source_project_for_quota=False,
    wif_splunk_identity={
        "string": "string",
    })
Copy
const exampleintegrationResourceResourceFromGcpintegration = new signalfx.gcp.Integration("exampleintegrationResourceResourceFromGcpintegration", {
    enabled: false,
    namedToken: "string",
    customMetricTypeDomains: ["string"],
    importGcpMetrics: false,
    includeLists: ["string"],
    name: "string",
    authMethod: "string",
    pollRate: 0,
    projectServiceKeys: [{
        projectId: "string",
        projectKey: "string",
    }],
    projectWifConfigs: [{
        projectId: "string",
        wifConfig: "string",
    }],
    services: ["string"],
    useMetricSourceProjectForQuota: false,
    wifSplunkIdentity: {
        string: "string",
    },
});
Copy
type: signalfx:gcp:Integration
properties:
    authMethod: string
    customMetricTypeDomains:
        - string
    enabled: false
    importGcpMetrics: false
    includeLists:
        - string
    name: string
    namedToken: string
    pollRate: 0
    projectServiceKeys:
        - projectId: string
          projectKey: string
    projectWifConfigs:
        - projectId: string
          wifConfig: string
    services:
        - string
    useMetricSourceProjectForQuota: false
    wifSplunkIdentity:
        string: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Integration resource accepts the following input properties:

Enabled This property is required. bool
Whether the integration is enabled.
AuthMethod string
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
CustomMetricTypeDomains List<string>
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
ImportGcpMetrics bool
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
IncludeLists List<string>
Compute Metadata Include List.
Name string
Name of the integration.
NamedToken Changes to this property will trigger replacement. string
Name of the org token to be used for data ingestion. If not specified then default access token is used.
PollRate int
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
ProjectServiceKeys List<Pulumi.SignalFx.Gcp.Inputs.IntegrationProjectServiceKey>
GCP projects to add.
ProjectWifConfigs List<Pulumi.SignalFx.Gcp.Inputs.IntegrationProjectWifConfig>
GCP WIF configs
Services List<string>
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.
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.
WifSplunkIdentity Dictionary<string, string>
The Splunk Observability GCP identity to include in GCP WIF provider definition.
Enabled This property is required. bool
Whether the integration is enabled.
AuthMethod string
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
CustomMetricTypeDomains []string
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
ImportGcpMetrics bool
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
IncludeLists []string
Compute Metadata Include List.
Name string
Name of the integration.
NamedToken Changes to this property will trigger replacement. string
Name of the org token to be used for data ingestion. If not specified then default access token is used.
PollRate int
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
ProjectServiceKeys []IntegrationProjectServiceKeyArgs
GCP projects to add.
ProjectWifConfigs []IntegrationProjectWifConfigArgs
GCP WIF configs
Services []string
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.
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.
WifSplunkIdentity map[string]string
The Splunk Observability GCP identity to include in GCP WIF provider definition.
enabled This property is required. Boolean
Whether the integration is enabled.
authMethod String
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
customMetricTypeDomains List<String>
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
importGcpMetrics Boolean
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
includeLists List<String>
Compute Metadata Include List.
name String
Name of the integration.
namedToken Changes to this property will trigger replacement. String
Name of the org token to be used for data ingestion. If not specified then default access token is used.
pollRate Integer
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
projectServiceKeys List<IntegrationProjectServiceKey>
GCP projects to add.
projectWifConfigs List<IntegrationProjectWifConfig>
GCP WIF configs
services List<String>
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.
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.
wifSplunkIdentity Map<String,String>
The Splunk Observability GCP identity to include in GCP WIF provider definition.
enabled This property is required. boolean
Whether the integration is enabled.
authMethod string
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
customMetricTypeDomains string[]
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
importGcpMetrics boolean
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
includeLists string[]
Compute Metadata Include List.
name string
Name of the integration.
namedToken Changes to this property will trigger replacement. string
Name of the org token to be used for data ingestion. If not specified then default access token is used.
pollRate number
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
projectServiceKeys IntegrationProjectServiceKey[]
GCP projects to add.
projectWifConfigs IntegrationProjectWifConfig[]
GCP WIF configs
services string[]
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.
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.
wifSplunkIdentity {[key: string]: string}
The Splunk Observability GCP identity to include in GCP WIF provider definition.
enabled This property is required. bool
Whether the integration is enabled.
auth_method str
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
custom_metric_type_domains Sequence[str]
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
import_gcp_metrics bool
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_lists Sequence[str]
Compute Metadata Include List.
name str
Name of the integration.
named_token Changes to this property will trigger replacement. str
Name of the org token to be used for data ingestion. If not specified then default access token is used.
poll_rate int
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
project_service_keys Sequence[IntegrationProjectServiceKeyArgs]
GCP projects to add.
project_wif_configs Sequence[IntegrationProjectWifConfigArgs]
GCP WIF configs
services Sequence[str]
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 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.
wif_splunk_identity Mapping[str, str]
The Splunk Observability GCP identity to include in GCP WIF provider definition.
enabled This property is required. Boolean
Whether the integration is enabled.
authMethod String
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
customMetricTypeDomains List<String>
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
importGcpMetrics Boolean
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
includeLists List<String>
Compute Metadata Include List.
name String
Name of the integration.
namedToken Changes to this property will trigger replacement. String
Name of the org token to be used for data ingestion. If not specified then default access token is used.
pollRate Number
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
projectServiceKeys List<Property Map>
GCP projects to add.
projectWifConfigs List<Property Map>
GCP WIF configs
services List<String>
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.
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.
wifSplunkIdentity Map<String>
The Splunk Observability GCP identity to include in GCP WIF provider definition.

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,
        auth_method: Optional[str] = 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,
        project_wif_configs: Optional[Sequence[IntegrationProjectWifConfigArgs]] = None,
        services: Optional[Sequence[str]] = None,
        use_metric_source_project_for_quota: Optional[bool] = None,
        wif_splunk_identity: Optional[Mapping[str, 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)
resources:  _:    type: signalfx:gcp:Integration    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AuthMethod string
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
CustomMetricTypeDomains List<string>
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
Enabled bool
Whether the integration is enabled.
ImportGcpMetrics bool
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
IncludeLists List<string>
Compute Metadata Include List.
Name string
Name of the integration.
NamedToken Changes to this property will trigger replacement. string
Name of the org token to be used for data ingestion. If not specified then default access token is used.
PollRate int
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
ProjectServiceKeys List<Pulumi.SignalFx.Gcp.Inputs.IntegrationProjectServiceKey>
GCP projects to add.
ProjectWifConfigs List<Pulumi.SignalFx.Gcp.Inputs.IntegrationProjectWifConfig>
GCP WIF configs
Services List<string>
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.
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.
WifSplunkIdentity Dictionary<string, string>
The Splunk Observability GCP identity to include in GCP WIF provider definition.
AuthMethod string
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
CustomMetricTypeDomains []string
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
Enabled bool
Whether the integration is enabled.
ImportGcpMetrics bool
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
IncludeLists []string
Compute Metadata Include List.
Name string
Name of the integration.
NamedToken Changes to this property will trigger replacement. string
Name of the org token to be used for data ingestion. If not specified then default access token is used.
PollRate int
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
ProjectServiceKeys []IntegrationProjectServiceKeyArgs
GCP projects to add.
ProjectWifConfigs []IntegrationProjectWifConfigArgs
GCP WIF configs
Services []string
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.
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.
WifSplunkIdentity map[string]string
The Splunk Observability GCP identity to include in GCP WIF provider definition.
authMethod String
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
customMetricTypeDomains List<String>
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
enabled Boolean
Whether the integration is enabled.
importGcpMetrics Boolean
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
includeLists List<String>
Compute Metadata Include List.
name String
Name of the integration.
namedToken Changes to this property will trigger replacement. String
Name of the org token to be used for data ingestion. If not specified then default access token is used.
pollRate Integer
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
projectServiceKeys List<IntegrationProjectServiceKey>
GCP projects to add.
projectWifConfigs List<IntegrationProjectWifConfig>
GCP WIF configs
services List<String>
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.
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.
wifSplunkIdentity Map<String,String>
The Splunk Observability GCP identity to include in GCP WIF provider definition.
authMethod string
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
customMetricTypeDomains string[]
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
enabled boolean
Whether the integration is enabled.
importGcpMetrics boolean
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
includeLists string[]
Compute Metadata Include List.
name string
Name of the integration.
namedToken Changes to this property will trigger replacement. string
Name of the org token to be used for data ingestion. If not specified then default access token is used.
pollRate number
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
projectServiceKeys IntegrationProjectServiceKey[]
GCP projects to add.
projectWifConfigs IntegrationProjectWifConfig[]
GCP WIF configs
services string[]
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.
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.
wifSplunkIdentity {[key: string]: string}
The Splunk Observability GCP identity to include in GCP WIF provider definition.
auth_method str
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
custom_metric_type_domains Sequence[str]
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
enabled bool
Whether the integration is enabled.
import_gcp_metrics bool
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_lists Sequence[str]
Compute Metadata Include List.
name str
Name of the integration.
named_token Changes to this property will trigger replacement. str
Name of the org token to be used for data ingestion. If not specified then default access token is used.
poll_rate int
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
project_service_keys Sequence[IntegrationProjectServiceKeyArgs]
GCP projects to add.
project_wif_configs Sequence[IntegrationProjectWifConfigArgs]
GCP WIF configs
services Sequence[str]
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 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.
wif_splunk_identity Mapping[str, str]
The Splunk Observability GCP identity to include in GCP WIF provider definition.
authMethod String
Authentication method to use in this integration. If empty, Splunk Observability backend defaults to SERVICE_ACCOUNT_KEY
customMetricTypeDomains List<String>
List of additional GCP service domain names that Splunk Observability Cloud will monitor. See Custom Metric Type Domains documentation
enabled Boolean
Whether the integration is enabled.
importGcpMetrics Boolean
If enabled, Splunk Observability Cloud will sync also Google Cloud Monitoring data. If disabled, Splunk Observability Cloud will import only metadata. Defaults to true.
includeLists List<String>
Compute Metadata Include List.
name String
Name of the integration.
namedToken Changes to this property will trigger replacement. String
Name of the org token to be used for data ingestion. If not specified then default access token is used.
pollRate Number
GCP integration poll rate (in seconds). Value between 60 and 600. Default: 300.
projectServiceKeys List<Property Map>
GCP projects to add.
projectWifConfigs List<Property Map>
GCP WIF configs
services List<String>
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.
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.
wifSplunkIdentity Map<String>
The Splunk Observability GCP identity to include in GCP WIF provider definition.

Supporting Types

IntegrationProjectServiceKey
, IntegrationProjectServiceKeyArgs

ProjectId This property is required. string
ProjectKey This property is required. string
ProjectId This property is required. string
ProjectKey This property is required. string
projectId This property is required. String
projectKey This property is required. String
projectId This property is required. string
projectKey This property is required. string
project_id This property is required. str
project_key This property is required. str
projectId This property is required. String
projectKey This property is required. String

IntegrationProjectWifConfig
, IntegrationProjectWifConfigArgs

ProjectId This property is required. string
WifConfig This property is required. string
ProjectId This property is required. string
WifConfig This property is required. string
projectId This property is required. String
wifConfig This property is required. String
projectId This property is required. string
wifConfig This property is required. string
project_id This property is required. str
wif_config This property is required. str
projectId This property is required. String
wifConfig This property is required. String

Package Details

Repository
SignalFx pulumi/pulumi-signalfx
License
Apache-2.0
Notes
This Pulumi package is based on the signalfx Terraform Provider.