1. Packages
  2. Wavefront
  3. API Docs
  4. CloudIntegrationGcp
Wavefront v3.1.1 published on Monday, Mar 11, 2024 by Pulumi

wavefront.CloudIntegrationGcp

Explore with Pulumi AI

wavefront logo
Wavefront v3.1.1 published on Monday, Mar 11, 2024 by Pulumi

    Provides a Wavefront Cloud Integration for Google Cloud Platform. This allows Google Cloud Platform cloud integrations to be created, updated, and deleted.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as wavefront from "@pulumi/wavefront";
    
    const gcp = new wavefront.CloudIntegrationGcp("gcp", {
        jsonKey: `{...your gcp key ...}
    
    `,
        projectId: "example-gcp-project",
    });
    
    import pulumi
    import pulumi_wavefront as wavefront
    
    gcp = wavefront.CloudIntegrationGcp("gcp",
        json_key="""{...your gcp key ...}
    
    """,
        project_id="example-gcp-project")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-wavefront/sdk/v3/go/wavefront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := wavefront.NewCloudIntegrationGcp(ctx, "gcp", &wavefront.CloudIntegrationGcpArgs{
    			JsonKey:   pulumi.String("{...your gcp key ...}\n\n"),
    			ProjectId: pulumi.String("example-gcp-project"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Wavefront = Pulumi.Wavefront;
    
    return await Deployment.RunAsync(() => 
    {
        var gcp = new Wavefront.CloudIntegrationGcp("gcp", new()
        {
            JsonKey = @"{...your gcp key ...}
    
    ",
            ProjectId = "example-gcp-project",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.wavefront.CloudIntegrationGcp;
    import com.pulumi.wavefront.CloudIntegrationGcpArgs;
    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 gcp = new CloudIntegrationGcp("gcp", CloudIntegrationGcpArgs.builder()        
                .jsonKey("""
    {...your gcp key ...}
    
                """)
                .projectId("example-gcp-project")
                .build());
    
        }
    }
    
    resources:
      gcp:
        type: wavefront:CloudIntegrationGcp
        properties:
          jsonKey: |+
            {...your gcp key ...}        
    
          projectId: example-gcp-project
    

    Create CloudIntegrationGcp Resource

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

    Constructor syntax

    new CloudIntegrationGcp(name: string, args: CloudIntegrationGcpArgs, opts?: CustomResourceOptions);
    @overload
    def CloudIntegrationGcp(resource_name: str,
                            args: CloudIntegrationGcpArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudIntegrationGcp(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            json_key: Optional[str] = None,
                            project_id: Optional[str] = None,
                            service: Optional[str] = None,
                            additional_tags: Optional[Mapping[str, str]] = None,
                            categories: Optional[Sequence[str]] = None,
                            force_save: Optional[bool] = None,
                            metric_filter_regex: Optional[str] = None,
                            name: Optional[str] = None,
                            service_refresh_rate_in_minutes: Optional[int] = None)
    func NewCloudIntegrationGcp(ctx *Context, name string, args CloudIntegrationGcpArgs, opts ...ResourceOption) (*CloudIntegrationGcp, error)
    public CloudIntegrationGcp(string name, CloudIntegrationGcpArgs args, CustomResourceOptions? opts = null)
    public CloudIntegrationGcp(String name, CloudIntegrationGcpArgs args)
    public CloudIntegrationGcp(String name, CloudIntegrationGcpArgs args, CustomResourceOptions options)
    
    type: wavefront:CloudIntegrationGcp
    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 CloudIntegrationGcpArgs
    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 CloudIntegrationGcpArgs
    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 CloudIntegrationGcpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudIntegrationGcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudIntegrationGcpArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var cloudIntegrationGcpResource = new Wavefront.CloudIntegrationGcp("cloudIntegrationGcpResource", new()
    {
        JsonKey = "string",
        ProjectId = "string",
        Service = "string",
        AdditionalTags = 
        {
            { "string", "string" },
        },
        Categories = new[]
        {
            "string",
        },
        ForceSave = false,
        MetricFilterRegex = "string",
        Name = "string",
        ServiceRefreshRateInMinutes = 0,
    });
    
    example, err := wavefront.NewCloudIntegrationGcp(ctx, "cloudIntegrationGcpResource", &wavefront.CloudIntegrationGcpArgs{
    	JsonKey:   pulumi.String("string"),
    	ProjectId: pulumi.String("string"),
    	Service:   pulumi.String("string"),
    	AdditionalTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Categories: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ForceSave:                   pulumi.Bool(false),
    	MetricFilterRegex:           pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	ServiceRefreshRateInMinutes: pulumi.Int(0),
    })
    
    var cloudIntegrationGcpResource = new CloudIntegrationGcp("cloudIntegrationGcpResource", CloudIntegrationGcpArgs.builder()        
        .jsonKey("string")
        .projectId("string")
        .service("string")
        .additionalTags(Map.of("string", "string"))
        .categories("string")
        .forceSave(false)
        .metricFilterRegex("string")
        .name("string")
        .serviceRefreshRateInMinutes(0)
        .build());
    
    cloud_integration_gcp_resource = wavefront.CloudIntegrationGcp("cloudIntegrationGcpResource",
        json_key="string",
        project_id="string",
        service="string",
        additional_tags={
            "string": "string",
        },
        categories=["string"],
        force_save=False,
        metric_filter_regex="string",
        name="string",
        service_refresh_rate_in_minutes=0)
    
    const cloudIntegrationGcpResource = new wavefront.CloudIntegrationGcp("cloudIntegrationGcpResource", {
        jsonKey: "string",
        projectId: "string",
        service: "string",
        additionalTags: {
            string: "string",
        },
        categories: ["string"],
        forceSave: false,
        metricFilterRegex: "string",
        name: "string",
        serviceRefreshRateInMinutes: 0,
    });
    
    type: wavefront:CloudIntegrationGcp
    properties:
        additionalTags:
            string: string
        categories:
            - string
        forceSave: false
        jsonKey: string
        metricFilterRegex: string
        name: string
        projectId: string
        service: string
        serviceRefreshRateInMinutes: 0
    

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

    JsonKey string
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    ProjectId string
    The Google Cloud Platform (GCP) Project ID.
    Service string
    A value denoting which cloud service this service integrates with.
    AdditionalTags Dictionary<string, string>
    A list of point tag key-values to add to every point ingested using this integration.
    Categories List<string>
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    ForceSave bool
    Forces this resource to save, even if errors are present.
    MetricFilterRegex string
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    ServiceRefreshRateInMinutes int
    How often, in minutes, to refresh the service.
    JsonKey string
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    ProjectId string
    The Google Cloud Platform (GCP) Project ID.
    Service string
    A value denoting which cloud service this service integrates with.
    AdditionalTags map[string]string
    A list of point tag key-values to add to every point ingested using this integration.
    Categories []string
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    ForceSave bool
    Forces this resource to save, even if errors are present.
    MetricFilterRegex string
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    ServiceRefreshRateInMinutes int
    How often, in minutes, to refresh the service.
    jsonKey String
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    projectId String
    The Google Cloud Platform (GCP) Project ID.
    service String
    A value denoting which cloud service this service integrates with.
    additionalTags Map<String,String>
    A list of point tag key-values to add to every point ingested using this integration.
    categories List<String>
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    metricFilterRegex String
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    serviceRefreshRateInMinutes Integer
    How often, in minutes, to refresh the service.
    jsonKey string
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    projectId string
    The Google Cloud Platform (GCP) Project ID.
    service string
    A value denoting which cloud service this service integrates with.
    additionalTags {[key: string]: string}
    A list of point tag key-values to add to every point ingested using this integration.
    categories string[]
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    forceSave boolean
    Forces this resource to save, even if errors are present.
    metricFilterRegex string
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name string
    The human-readable name of this integration.
    serviceRefreshRateInMinutes number
    How often, in minutes, to refresh the service.
    json_key str
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    project_id str
    The Google Cloud Platform (GCP) Project ID.
    service str
    A value denoting which cloud service this service integrates with.
    additional_tags Mapping[str, str]
    A list of point tag key-values to add to every point ingested using this integration.
    categories Sequence[str]
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    force_save bool
    Forces this resource to save, even if errors are present.
    metric_filter_regex str
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name str
    The human-readable name of this integration.
    service_refresh_rate_in_minutes int
    How often, in minutes, to refresh the service.
    jsonKey String
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    projectId String
    The Google Cloud Platform (GCP) Project ID.
    service String
    A value denoting which cloud service this service integrates with.
    additionalTags Map<String>
    A list of point tag key-values to add to every point ingested using this integration.
    categories List<String>
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    metricFilterRegex String
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    serviceRefreshRateInMinutes Number
    How often, in minutes, to refresh the service.

    Outputs

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

    Get an existing CloudIntegrationGcp 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?: CloudIntegrationGcpState, opts?: CustomResourceOptions): CloudIntegrationGcp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_tags: Optional[Mapping[str, str]] = None,
            categories: Optional[Sequence[str]] = None,
            force_save: Optional[bool] = None,
            json_key: Optional[str] = None,
            metric_filter_regex: Optional[str] = None,
            name: Optional[str] = None,
            project_id: Optional[str] = None,
            service: Optional[str] = None,
            service_refresh_rate_in_minutes: Optional[int] = None) -> CloudIntegrationGcp
    func GetCloudIntegrationGcp(ctx *Context, name string, id IDInput, state *CloudIntegrationGcpState, opts ...ResourceOption) (*CloudIntegrationGcp, error)
    public static CloudIntegrationGcp Get(string name, Input<string> id, CloudIntegrationGcpState? state, CustomResourceOptions? opts = null)
    public static CloudIntegrationGcp get(String name, Output<String> id, CloudIntegrationGcpState 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:
    AdditionalTags Dictionary<string, string>
    A list of point tag key-values to add to every point ingested using this integration.
    Categories List<string>
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    ForceSave bool
    Forces this resource to save, even if errors are present.
    JsonKey string
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    MetricFilterRegex string
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    ProjectId string
    The Google Cloud Platform (GCP) Project ID.
    Service string
    A value denoting which cloud service this service integrates with.
    ServiceRefreshRateInMinutes int
    How often, in minutes, to refresh the service.
    AdditionalTags map[string]string
    A list of point tag key-values to add to every point ingested using this integration.
    Categories []string
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    ForceSave bool
    Forces this resource to save, even if errors are present.
    JsonKey string
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    MetricFilterRegex string
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    Name string
    The human-readable name of this integration.
    ProjectId string
    The Google Cloud Platform (GCP) Project ID.
    Service string
    A value denoting which cloud service this service integrates with.
    ServiceRefreshRateInMinutes int
    How often, in minutes, to refresh the service.
    additionalTags Map<String,String>
    A list of point tag key-values to add to every point ingested using this integration.
    categories List<String>
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    jsonKey String
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    metricFilterRegex String
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    projectId String
    The Google Cloud Platform (GCP) Project ID.
    service String
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes Integer
    How often, in minutes, to refresh the service.
    additionalTags {[key: string]: string}
    A list of point tag key-values to add to every point ingested using this integration.
    categories string[]
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    forceSave boolean
    Forces this resource to save, even if errors are present.
    jsonKey string
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    metricFilterRegex string
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name string
    The human-readable name of this integration.
    projectId string
    The Google Cloud Platform (GCP) Project ID.
    service string
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes number
    How often, in minutes, to refresh the service.
    additional_tags Mapping[str, str]
    A list of point tag key-values to add to every point ingested using this integration.
    categories Sequence[str]
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    force_save bool
    Forces this resource to save, even if errors are present.
    json_key str
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    metric_filter_regex str
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name str
    The human-readable name of this integration.
    project_id str
    The Google Cloud Platform (GCP) Project ID.
    service str
    A value denoting which cloud service this service integrates with.
    service_refresh_rate_in_minutes int
    How often, in minutes, to refresh the service.
    additionalTags Map<String>
    A list of point tag key-values to add to every point ingested using this integration.
    categories List<String>
    A list of Google Cloud Platform (GCP) services. Valid values are APPENGINE, BIGQUERY, BIGTABLE, CLOUDFUNCTIONS, CLOUDIOT, CLOUDSQL, CLOUDTASKS, COMPUTE, CONTAINER, DATAFLOW, DATAPROC, DATASTORE, FIREBASEDATABASE, FIREBASEHOSTING, FIRESTORE, INTERCONNECT, LOADBALANCING, LOGGING, ML, MONITORING, PUBSUB, REDIS, ROUTER, SERVICERUNTIME, SPANNER, STORAGE, TPU, and VPN.
    forceSave Boolean
    Forces this resource to save, even if errors are present.
    jsonKey String
    Private key for a Google Cloud Platform (GCP) service account within your project. The account must have at least Viewer permissions. This key must be in the JSON format generated by GCP.
    metricFilterRegex String
    A regular expression that a metric name must match (case-insensitively) in order to be ingested.
    name String
    The human-readable name of this integration.
    projectId String
    The Google Cloud Platform (GCP) Project ID.
    service String
    A value denoting which cloud service this service integrates with.
    serviceRefreshRateInMinutes Number
    How often, in minutes, to refresh the service.

    Import

    GCP Cloud Integrations can be imported by using the id, e.g.:

    $ pulumi import wavefront:index/cloudIntegrationGcp:CloudIntegrationGcp gcp a411c16b-3cf7-4f03-bf11-8ca05aab898d
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Wavefront pulumi/pulumi-wavefront
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the wavefront Terraform Provider.
    wavefront logo
    Wavefront v3.1.1 published on Monday, Mar 11, 2024 by Pulumi