published on Wednesday, Aug 12, 2026 by Pulumi
published on Wednesday, Aug 12, 2026 by Pulumi
Use this resource to configure which GCP services New Relic polls as part of the GCP Dimensional Metrics integration. Each service is enabled by adding the corresponding block; omit a block to disable polling for that service.
Prerequisite
This resource requires a linked GCP account created with newrelic.cloud.GcpLinkAccount using its keyless (WIF) mode — set useWorkloadIdentityFederation = true along with audience and serviceAccountEmail on that resource. See the full GCP Dimensional Metrics guide for complete setup instructions including the required GCP Workload Identity Federation infrastructure.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as newrelic from "@pulumi/newrelic";
const example = new newrelic.cloud.GcpLinkAccount("example", {
accountId: newrelicAccountId,
name: "my-gcp-project",
projectId: "my-gcp-project-id",
useWorkloadIdentityFederation: true,
audience: "//iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID",
serviceAccountEmail: "newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com",
});
const exampleGcpDmIntegrations = new newrelic.cloud.GcpDmIntegrations("example", {
accountId: newrelicAccountId,
linkedAccountId: example.id,
aiPlatform: {
metricsPollingInterval: 300,
},
apiGateway: {
metricsPollingInterval: 300,
},
appEngine: {
metricsPollingInterval: 300,
},
bigTable: {
metricsPollingInterval: 300,
},
composer: {
metricsPollingInterval: 300,
},
dataStore: {
metricsPollingInterval: 300,
},
firebaseAuth: {
metricsPollingInterval: 300,
},
firebaseDatabase: {
metricsPollingInterval: 300,
},
firebaseHosting: {
metricsPollingInterval: 300,
},
firebaseStorage: {
metricsPollingInterval: 300,
},
firestore: {
metricsPollingInterval: 300,
},
functions: {
metricsPollingInterval: 300,
},
interconnect: {
metricsPollingInterval: 300,
},
istio: {
metricsPollingInterval: 300,
},
memCache: {
metricsPollingInterval: 300,
},
memoryStore: {
metricsPollingInterval: 300,
},
redis: {
metricsPollingInterval: 300,
},
router: {
metricsPollingInterval: 300,
},
run: {
metricsPollingInterval: 300,
},
sql: {
metricsPollingInterval: 300,
},
virtualMachines: {
metricsPollingInterval: 300,
},
vpcAccess: {
metricsPollingInterval: 300,
},
firebaseAppHosting: {
metricsPollingInterval: 300,
},
firebaseVertexAi: {
metricsPollingInterval: 300,
},
alloyDb: {
metricsPollingInterval: 60,
},
bigQuery: {
metricsPollingInterval: 60,
},
dataFlow: {
metricsPollingInterval: 60,
},
dataProc: {
metricsPollingInterval: 60,
},
kubernetes: {
metricsPollingInterval: 60,
},
loadBalancing: {
metricsPollingInterval: 60,
},
managedKafka: {
metricsPollingInterval: 60,
},
pubSub: {
metricsPollingInterval: 60,
},
spanner: {
metricsPollingInterval: 60,
},
storage: {
metricsPollingInterval: 300,
},
});
import pulumi
import pulumi_newrelic as newrelic
example = newrelic.cloud.GcpLinkAccount("example",
account_id=newrelic_account_id,
name="my-gcp-project",
project_id="my-gcp-project-id",
use_workload_identity_federation=True,
audience="//iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID",
service_account_email="newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com")
example_gcp_dm_integrations = newrelic.cloud.GcpDmIntegrations("example",
account_id=newrelic_account_id,
linked_account_id=example.id,
ai_platform={
"metrics_polling_interval": 300,
},
api_gateway={
"metrics_polling_interval": 300,
},
app_engine={
"metrics_polling_interval": 300,
},
big_table={
"metrics_polling_interval": 300,
},
composer={
"metrics_polling_interval": 300,
},
data_store={
"metrics_polling_interval": 300,
},
firebase_auth={
"metrics_polling_interval": 300,
},
firebase_database={
"metrics_polling_interval": 300,
},
firebase_hosting={
"metrics_polling_interval": 300,
},
firebase_storage={
"metrics_polling_interval": 300,
},
firestore={
"metrics_polling_interval": 300,
},
functions={
"metrics_polling_interval": 300,
},
interconnect={
"metrics_polling_interval": 300,
},
istio={
"metrics_polling_interval": 300,
},
mem_cache={
"metrics_polling_interval": 300,
},
memory_store={
"metrics_polling_interval": 300,
},
redis={
"metrics_polling_interval": 300,
},
router={
"metrics_polling_interval": 300,
},
run={
"metrics_polling_interval": 300,
},
sql={
"metrics_polling_interval": 300,
},
virtual_machines={
"metrics_polling_interval": 300,
},
vpc_access={
"metrics_polling_interval": 300,
},
firebase_app_hosting={
"metrics_polling_interval": 300,
},
firebase_vertex_ai={
"metrics_polling_interval": 300,
},
alloy_db={
"metrics_polling_interval": 60,
},
big_query={
"metrics_polling_interval": 60,
},
data_flow={
"metrics_polling_interval": 60,
},
data_proc={
"metrics_polling_interval": 60,
},
kubernetes={
"metrics_polling_interval": 60,
},
load_balancing={
"metrics_polling_interval": 60,
},
managed_kafka={
"metrics_polling_interval": 60,
},
pub_sub={
"metrics_polling_interval": 60,
},
spanner={
"metrics_polling_interval": 60,
},
storage={
"metrics_polling_interval": 300,
})
package main
import (
"github.com/pulumi/pulumi-newrelic/sdk/v5/go/newrelic/cloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := cloud.NewGcpLinkAccount(ctx, "example", &cloud.GcpLinkAccountArgs{
AccountId: pulumi.Any(newrelicAccountId),
Name: pulumi.String("my-gcp-project"),
ProjectId: pulumi.String("my-gcp-project-id"),
UseWorkloadIdentityFederation: pulumi.Bool(true),
Audience: pulumi.String("//iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID"),
ServiceAccountEmail: pulumi.String("newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com"),
})
if err != nil {
return err
}
_, err = cloud.NewGcpDmIntegrations(ctx, "example", &cloud.GcpDmIntegrationsArgs{
AccountId: pulumi.Any(newrelicAccountId),
LinkedAccountId: example.ID().ToIDOutput().ToStringOutput(),
AiPlatform: &cloud.GcpDmIntegrationsAiPlatformArgs{
MetricsPollingInterval: pulumi.Int(300),
},
ApiGateway: &cloud.GcpDmIntegrationsApiGatewayArgs{
MetricsPollingInterval: pulumi.Int(300),
},
AppEngine: &cloud.GcpDmIntegrationsAppEngineArgs{
MetricsPollingInterval: pulumi.Int(300),
},
BigTable: &cloud.GcpDmIntegrationsBigTableArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Composer: &cloud.GcpDmIntegrationsComposerArgs{
MetricsPollingInterval: pulumi.Int(300),
},
DataStore: &cloud.GcpDmIntegrationsDataStoreArgs{
MetricsPollingInterval: pulumi.Int(300),
},
FirebaseAuth: &cloud.GcpDmIntegrationsFirebaseAuthArgs{
MetricsPollingInterval: pulumi.Int(300),
},
FirebaseDatabase: &cloud.GcpDmIntegrationsFirebaseDatabaseArgs{
MetricsPollingInterval: pulumi.Int(300),
},
FirebaseHosting: &cloud.GcpDmIntegrationsFirebaseHostingArgs{
MetricsPollingInterval: pulumi.Int(300),
},
FirebaseStorage: &cloud.GcpDmIntegrationsFirebaseStorageArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Firestore: &cloud.GcpDmIntegrationsFirestoreArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Functions: &cloud.GcpDmIntegrationsFunctionsArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Interconnect: &cloud.GcpDmIntegrationsInterconnectArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Istio: &cloud.GcpDmIntegrationsIstioArgs{
MetricsPollingInterval: pulumi.Int(300),
},
MemCache: &cloud.GcpDmIntegrationsMemCacheArgs{
MetricsPollingInterval: pulumi.Int(300),
},
MemoryStore: &cloud.GcpDmIntegrationsMemoryStoreArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Redis: &cloud.GcpDmIntegrationsRedisArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Router: &cloud.GcpDmIntegrationsRouterArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Run: &cloud.GcpDmIntegrationsRunArgs{
MetricsPollingInterval: pulumi.Int(300),
},
Sql: &cloud.GcpDmIntegrationsSqlArgs{
MetricsPollingInterval: pulumi.Int(300),
},
VirtualMachines: &cloud.GcpDmIntegrationsVirtualMachinesArgs{
MetricsPollingInterval: pulumi.Int(300),
},
VpcAccess: &cloud.GcpDmIntegrationsVpcAccessArgs{
MetricsPollingInterval: pulumi.Int(300),
},
FirebaseAppHosting: &cloud.GcpDmIntegrationsFirebaseAppHostingArgs{
MetricsPollingInterval: pulumi.Int(300),
},
FirebaseVertexAi: &cloud.GcpDmIntegrationsFirebaseVertexAiArgs{
MetricsPollingInterval: pulumi.Int(300),
},
AlloyDb: &cloud.GcpDmIntegrationsAlloyDbArgs{
MetricsPollingInterval: pulumi.Int(60),
},
BigQuery: &cloud.GcpDmIntegrationsBigQueryArgs{
MetricsPollingInterval: pulumi.Int(60),
},
DataFlow: &cloud.GcpDmIntegrationsDataFlowArgs{
MetricsPollingInterval: pulumi.Int(60),
},
DataProc: &cloud.GcpDmIntegrationsDataProcArgs{
MetricsPollingInterval: pulumi.Int(60),
},
Kubernetes: &cloud.GcpDmIntegrationsKubernetesArgs{
MetricsPollingInterval: pulumi.Int(60),
},
LoadBalancing: &cloud.GcpDmIntegrationsLoadBalancingArgs{
MetricsPollingInterval: pulumi.Int(60),
},
ManagedKafka: &cloud.GcpDmIntegrationsManagedKafkaArgs{
MetricsPollingInterval: pulumi.Int(60),
},
PubSub: &cloud.GcpDmIntegrationsPubSubArgs{
MetricsPollingInterval: pulumi.Int(60),
},
Spanner: &cloud.GcpDmIntegrationsSpannerArgs{
MetricsPollingInterval: pulumi.Int(60),
},
Storage: &cloud.GcpDmIntegrationsStorageArgs{
MetricsPollingInterval: pulumi.Int(300),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using NewRelic = Pulumi.NewRelic;
return await Deployment.RunAsync(() =>
{
var example = new NewRelic.Cloud.GcpLinkAccount("example", new()
{
AccountId = newrelicAccountId,
Name = "my-gcp-project",
ProjectId = "my-gcp-project-id",
UseWorkloadIdentityFederation = true,
Audience = "//iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID",
ServiceAccountEmail = "newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com",
});
var exampleGcpDmIntegrations = new NewRelic.Cloud.GcpDmIntegrations("example", new()
{
AccountId = newrelicAccountId,
LinkedAccountId = example.Id,
AiPlatform = new NewRelic.Cloud.Inputs.GcpDmIntegrationsAiPlatformArgs
{
MetricsPollingInterval = 300,
},
ApiGateway = new NewRelic.Cloud.Inputs.GcpDmIntegrationsApiGatewayArgs
{
MetricsPollingInterval = 300,
},
AppEngine = new NewRelic.Cloud.Inputs.GcpDmIntegrationsAppEngineArgs
{
MetricsPollingInterval = 300,
},
BigTable = new NewRelic.Cloud.Inputs.GcpDmIntegrationsBigTableArgs
{
MetricsPollingInterval = 300,
},
Composer = new NewRelic.Cloud.Inputs.GcpDmIntegrationsComposerArgs
{
MetricsPollingInterval = 300,
},
DataStore = new NewRelic.Cloud.Inputs.GcpDmIntegrationsDataStoreArgs
{
MetricsPollingInterval = 300,
},
FirebaseAuth = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseAuthArgs
{
MetricsPollingInterval = 300,
},
FirebaseDatabase = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseDatabaseArgs
{
MetricsPollingInterval = 300,
},
FirebaseHosting = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseHostingArgs
{
MetricsPollingInterval = 300,
},
FirebaseStorage = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseStorageArgs
{
MetricsPollingInterval = 300,
},
Firestore = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirestoreArgs
{
MetricsPollingInterval = 300,
},
Functions = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFunctionsArgs
{
MetricsPollingInterval = 300,
},
Interconnect = new NewRelic.Cloud.Inputs.GcpDmIntegrationsInterconnectArgs
{
MetricsPollingInterval = 300,
},
Istio = new NewRelic.Cloud.Inputs.GcpDmIntegrationsIstioArgs
{
MetricsPollingInterval = 300,
},
MemCache = new NewRelic.Cloud.Inputs.GcpDmIntegrationsMemCacheArgs
{
MetricsPollingInterval = 300,
},
MemoryStore = new NewRelic.Cloud.Inputs.GcpDmIntegrationsMemoryStoreArgs
{
MetricsPollingInterval = 300,
},
Redis = new NewRelic.Cloud.Inputs.GcpDmIntegrationsRedisArgs
{
MetricsPollingInterval = 300,
},
Router = new NewRelic.Cloud.Inputs.GcpDmIntegrationsRouterArgs
{
MetricsPollingInterval = 300,
},
Run = new NewRelic.Cloud.Inputs.GcpDmIntegrationsRunArgs
{
MetricsPollingInterval = 300,
},
Sql = new NewRelic.Cloud.Inputs.GcpDmIntegrationsSqlArgs
{
MetricsPollingInterval = 300,
},
VirtualMachines = new NewRelic.Cloud.Inputs.GcpDmIntegrationsVirtualMachinesArgs
{
MetricsPollingInterval = 300,
},
VpcAccess = new NewRelic.Cloud.Inputs.GcpDmIntegrationsVpcAccessArgs
{
MetricsPollingInterval = 300,
},
FirebaseAppHosting = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseAppHostingArgs
{
MetricsPollingInterval = 300,
},
FirebaseVertexAi = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseVertexAiArgs
{
MetricsPollingInterval = 300,
},
AlloyDb = new NewRelic.Cloud.Inputs.GcpDmIntegrationsAlloyDbArgs
{
MetricsPollingInterval = 60,
},
BigQuery = new NewRelic.Cloud.Inputs.GcpDmIntegrationsBigQueryArgs
{
MetricsPollingInterval = 60,
},
DataFlow = new NewRelic.Cloud.Inputs.GcpDmIntegrationsDataFlowArgs
{
MetricsPollingInterval = 60,
},
DataProc = new NewRelic.Cloud.Inputs.GcpDmIntegrationsDataProcArgs
{
MetricsPollingInterval = 60,
},
Kubernetes = new NewRelic.Cloud.Inputs.GcpDmIntegrationsKubernetesArgs
{
MetricsPollingInterval = 60,
},
LoadBalancing = new NewRelic.Cloud.Inputs.GcpDmIntegrationsLoadBalancingArgs
{
MetricsPollingInterval = 60,
},
ManagedKafka = new NewRelic.Cloud.Inputs.GcpDmIntegrationsManagedKafkaArgs
{
MetricsPollingInterval = 60,
},
PubSub = new NewRelic.Cloud.Inputs.GcpDmIntegrationsPubSubArgs
{
MetricsPollingInterval = 60,
},
Spanner = new NewRelic.Cloud.Inputs.GcpDmIntegrationsSpannerArgs
{
MetricsPollingInterval = 60,
},
Storage = new NewRelic.Cloud.Inputs.GcpDmIntegrationsStorageArgs
{
MetricsPollingInterval = 300,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.newrelic.cloud.GcpLinkAccount;
import com.pulumi.newrelic.cloud.GcpLinkAccountArgs;
import com.pulumi.newrelic.cloud.GcpDmIntegrations;
import com.pulumi.newrelic.cloud.GcpDmIntegrationsArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsAiPlatformArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsApiGatewayArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsAppEngineArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsBigTableArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsComposerArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsDataStoreArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirebaseAuthArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirebaseDatabaseArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirebaseHostingArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirebaseStorageArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirestoreArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFunctionsArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsInterconnectArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsIstioArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsMemCacheArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsMemoryStoreArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsRedisArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsRouterArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsRunArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsSqlArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsVirtualMachinesArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsVpcAccessArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirebaseAppHostingArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsFirebaseVertexAiArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsAlloyDbArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsBigQueryArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsDataFlowArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsDataProcArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsKubernetesArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsLoadBalancingArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsManagedKafkaArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsPubSubArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsSpannerArgs;
import com.pulumi.newrelic.cloud.inputs.GcpDmIntegrationsStorageArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new GcpLinkAccount("example", GcpLinkAccountArgs.builder()
.accountId(newrelicAccountId)
.name("my-gcp-project")
.projectId("my-gcp-project-id")
.useWorkloadIdentityFederation(true)
.audience("//iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID")
.serviceAccountEmail("newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com")
.build());
var exampleGcpDmIntegrations = new GcpDmIntegrations("exampleGcpDmIntegrations", GcpDmIntegrationsArgs.builder()
.accountId(newrelicAccountId)
.linkedAccountId(example.id())
.aiPlatform(GcpDmIntegrationsAiPlatformArgs.builder()
.metricsPollingInterval(300)
.build())
.apiGateway(GcpDmIntegrationsApiGatewayArgs.builder()
.metricsPollingInterval(300)
.build())
.appEngine(GcpDmIntegrationsAppEngineArgs.builder()
.metricsPollingInterval(300)
.build())
.bigTable(GcpDmIntegrationsBigTableArgs.builder()
.metricsPollingInterval(300)
.build())
.composer(GcpDmIntegrationsComposerArgs.builder()
.metricsPollingInterval(300)
.build())
.dataStore(GcpDmIntegrationsDataStoreArgs.builder()
.metricsPollingInterval(300)
.build())
.firebaseAuth(GcpDmIntegrationsFirebaseAuthArgs.builder()
.metricsPollingInterval(300)
.build())
.firebaseDatabase(GcpDmIntegrationsFirebaseDatabaseArgs.builder()
.metricsPollingInterval(300)
.build())
.firebaseHosting(GcpDmIntegrationsFirebaseHostingArgs.builder()
.metricsPollingInterval(300)
.build())
.firebaseStorage(GcpDmIntegrationsFirebaseStorageArgs.builder()
.metricsPollingInterval(300)
.build())
.firestore(GcpDmIntegrationsFirestoreArgs.builder()
.metricsPollingInterval(300)
.build())
.functions(GcpDmIntegrationsFunctionsArgs.builder()
.metricsPollingInterval(300)
.build())
.interconnect(GcpDmIntegrationsInterconnectArgs.builder()
.metricsPollingInterval(300)
.build())
.istio(GcpDmIntegrationsIstioArgs.builder()
.metricsPollingInterval(300)
.build())
.memCache(GcpDmIntegrationsMemCacheArgs.builder()
.metricsPollingInterval(300)
.build())
.memoryStore(GcpDmIntegrationsMemoryStoreArgs.builder()
.metricsPollingInterval(300)
.build())
.redis(GcpDmIntegrationsRedisArgs.builder()
.metricsPollingInterval(300)
.build())
.router(GcpDmIntegrationsRouterArgs.builder()
.metricsPollingInterval(300)
.build())
.run(GcpDmIntegrationsRunArgs.builder()
.metricsPollingInterval(300)
.build())
.sql(GcpDmIntegrationsSqlArgs.builder()
.metricsPollingInterval(300)
.build())
.virtualMachines(GcpDmIntegrationsVirtualMachinesArgs.builder()
.metricsPollingInterval(300)
.build())
.vpcAccess(GcpDmIntegrationsVpcAccessArgs.builder()
.metricsPollingInterval(300)
.build())
.firebaseAppHosting(GcpDmIntegrationsFirebaseAppHostingArgs.builder()
.metricsPollingInterval(300)
.build())
.firebaseVertexAi(GcpDmIntegrationsFirebaseVertexAiArgs.builder()
.metricsPollingInterval(300)
.build())
.alloyDb(GcpDmIntegrationsAlloyDbArgs.builder()
.metricsPollingInterval(60)
.build())
.bigQuery(GcpDmIntegrationsBigQueryArgs.builder()
.metricsPollingInterval(60)
.build())
.dataFlow(GcpDmIntegrationsDataFlowArgs.builder()
.metricsPollingInterval(60)
.build())
.dataProc(GcpDmIntegrationsDataProcArgs.builder()
.metricsPollingInterval(60)
.build())
.kubernetes(GcpDmIntegrationsKubernetesArgs.builder()
.metricsPollingInterval(60)
.build())
.loadBalancing(GcpDmIntegrationsLoadBalancingArgs.builder()
.metricsPollingInterval(60)
.build())
.managedKafka(GcpDmIntegrationsManagedKafkaArgs.builder()
.metricsPollingInterval(60)
.build())
.pubSub(GcpDmIntegrationsPubSubArgs.builder()
.metricsPollingInterval(60)
.build())
.spanner(GcpDmIntegrationsSpannerArgs.builder()
.metricsPollingInterval(60)
.build())
.storage(GcpDmIntegrationsStorageArgs.builder()
.metricsPollingInterval(300)
.build())
.build());
}
}
resources:
example:
type: newrelic:cloud:GcpLinkAccount
properties:
accountId: ${newrelicAccountId}
name: my-gcp-project
projectId: my-gcp-project-id
useWorkloadIdentityFederation: true
audience: //iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID
serviceAccountEmail: newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com
exampleGcpDmIntegrations:
type: newrelic:cloud:GcpDmIntegrations
name: example
properties:
accountId: ${newrelicAccountId}
linkedAccountId: ${example.id}
aiPlatform:
metricsPollingInterval: 300
apiGateway:
metricsPollingInterval: 300
appEngine:
metricsPollingInterval: 300
bigTable:
metricsPollingInterval: 300
composer:
metricsPollingInterval: 300
dataStore:
metricsPollingInterval: 300
firebaseAuth:
metricsPollingInterval: 300
firebaseDatabase:
metricsPollingInterval: 300
firebaseHosting:
metricsPollingInterval: 300
firebaseStorage:
metricsPollingInterval: 300
firestore:
metricsPollingInterval: 300
functions:
metricsPollingInterval: 300
interconnect:
metricsPollingInterval: 300
istio:
metricsPollingInterval: 300
memCache:
metricsPollingInterval: 300
memoryStore:
metricsPollingInterval: 300
redis:
metricsPollingInterval: 300
router:
metricsPollingInterval: 300
run:
metricsPollingInterval: 300
sql:
metricsPollingInterval: 300
virtualMachines:
metricsPollingInterval: 300
vpcAccess:
metricsPollingInterval: 300
firebaseAppHosting:
metricsPollingInterval: 300
firebaseVertexAi:
metricsPollingInterval: 300
alloyDb:
metricsPollingInterval: 60
bigQuery:
metricsPollingInterval: 60
dataFlow:
metricsPollingInterval: 60
dataProc:
metricsPollingInterval: 60
kubernetes:
metricsPollingInterval: 60
loadBalancing:
metricsPollingInterval: 60
managedKafka:
metricsPollingInterval: 60
pubSub:
metricsPollingInterval: 60
spanner:
metricsPollingInterval: 60
storage:
metricsPollingInterval: 300
pulumi {
required_providers {
newrelic = {
source = "pulumi/newrelic"
}
}
}
resource "newrelic_cloud_gcplinkaccount" "example" {
account_id = newrelicAccountId
name = "my-gcp-project"
project_id = "my-gcp-project-id"
use_workload_identity_federation = true
audience = "//iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/PROVIDER_ID"
service_account_email = "newrelic-integration@my-gcp-project-id.iam.gserviceaccount.com"
}
resource "newrelic_cloud_gcpdmintegrations" "example" {
account_id = newrelicAccountId
linked_account_id = newrelic_cloud_gcplinkaccount.example.id
ai_platform = {
metrics_polling_interval = 300
}
api_gateway = {
metrics_polling_interval = 300
}
app_engine = {
metrics_polling_interval = 300
}
big_table = {
metrics_polling_interval = 300
}
composer = {
metrics_polling_interval = 300
}
data_store = {
metrics_polling_interval = 300
}
firebase_auth = {
metrics_polling_interval = 300
}
firebase_database = {
metrics_polling_interval = 300
}
firebase_hosting = {
metrics_polling_interval = 300
}
firebase_storage = {
metrics_polling_interval = 300
}
firestore = {
metrics_polling_interval = 300
}
functions = {
metrics_polling_interval = 300
}
interconnect = {
metrics_polling_interval = 300
}
istio = {
metrics_polling_interval = 300
}
mem_cache = {
metrics_polling_interval = 300
}
memory_store = {
metrics_polling_interval = 300
}
redis = {
metrics_polling_interval = 300
}
router = {
metrics_polling_interval = 300
}
run = {
metrics_polling_interval = 300
}
sql = {
metrics_polling_interval = 300
}
virtual_machines = {
metrics_polling_interval = 300
}
vpc_access = {
metrics_polling_interval = 300
}
firebase_app_hosting = {
metrics_polling_interval = 300
}
firebase_vertex_ai = {
metrics_polling_interval = 300
}
alloy_db = {
metrics_polling_interval = 60
}
big_query = {
metrics_polling_interval = 60
}
data_flow = {
metrics_polling_interval = 60
}
data_proc = {
metrics_polling_interval = 60
}
kubernetes = {
metrics_polling_interval = 60
}
load_balancing = {
metrics_polling_interval = 60
}
managed_kafka = {
metrics_polling_interval = 60
}
pub_sub = {
metrics_polling_interval = 60
}
spanner = {
metrics_polling_interval = 60
}
storage = {
metrics_polling_interval = 300
}
}
Create GcpDmIntegrations Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GcpDmIntegrations(name: string, args: GcpDmIntegrationsArgs, opts?: CustomResourceOptions);@overload
def GcpDmIntegrations(resource_name: str,
args: GcpDmIntegrationsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GcpDmIntegrations(resource_name: str,
opts: Optional[ResourceOptions] = None,
linked_account_id: Optional[str] = None,
functions: Optional[GcpDmIntegrationsFunctionsArgs] = None,
account_id: Optional[str] = None,
api_gateway: Optional[GcpDmIntegrationsApiGatewayArgs] = None,
app_engine: Optional[GcpDmIntegrationsAppEngineArgs] = None,
big_query: Optional[GcpDmIntegrationsBigQueryArgs] = None,
big_table: Optional[GcpDmIntegrationsBigTableArgs] = None,
composer: Optional[GcpDmIntegrationsComposerArgs] = None,
data_flow: Optional[GcpDmIntegrationsDataFlowArgs] = None,
data_proc: Optional[GcpDmIntegrationsDataProcArgs] = None,
data_store: Optional[GcpDmIntegrationsDataStoreArgs] = None,
firebase_app_hosting: Optional[GcpDmIntegrationsFirebaseAppHostingArgs] = None,
firebase_auth: Optional[GcpDmIntegrationsFirebaseAuthArgs] = None,
firebase_database: Optional[GcpDmIntegrationsFirebaseDatabaseArgs] = None,
firebase_hosting: Optional[GcpDmIntegrationsFirebaseHostingArgs] = None,
firebase_storage: Optional[GcpDmIntegrationsFirebaseStorageArgs] = None,
firebase_vertex_ai: Optional[GcpDmIntegrationsFirebaseVertexAiArgs] = None,
alloy_db: Optional[GcpDmIntegrationsAlloyDbArgs] = None,
firestore: Optional[GcpDmIntegrationsFirestoreArgs] = None,
interconnect: Optional[GcpDmIntegrationsInterconnectArgs] = None,
istio: Optional[GcpDmIntegrationsIstioArgs] = None,
kubernetes: Optional[GcpDmIntegrationsKubernetesArgs] = None,
ai_platform: Optional[GcpDmIntegrationsAiPlatformArgs] = None,
load_balancing: Optional[GcpDmIntegrationsLoadBalancingArgs] = None,
managed_kafka: Optional[GcpDmIntegrationsManagedKafkaArgs] = None,
mem_cache: Optional[GcpDmIntegrationsMemCacheArgs] = None,
memory_store: Optional[GcpDmIntegrationsMemoryStoreArgs] = None,
pub_sub: Optional[GcpDmIntegrationsPubSubArgs] = None,
redis: Optional[GcpDmIntegrationsRedisArgs] = None,
router: Optional[GcpDmIntegrationsRouterArgs] = None,
run: Optional[GcpDmIntegrationsRunArgs] = None,
spanner: Optional[GcpDmIntegrationsSpannerArgs] = None,
sql: Optional[GcpDmIntegrationsSqlArgs] = None,
storage: Optional[GcpDmIntegrationsStorageArgs] = None,
virtual_machines: Optional[GcpDmIntegrationsVirtualMachinesArgs] = None,
vpc_access: Optional[GcpDmIntegrationsVpcAccessArgs] = None)func NewGcpDmIntegrations(ctx *Context, name string, args GcpDmIntegrationsArgs, opts ...ResourceOption) (*GcpDmIntegrations, error)public GcpDmIntegrations(string name, GcpDmIntegrationsArgs args, CustomResourceOptions? opts = null)
public GcpDmIntegrations(String name, GcpDmIntegrationsArgs args)
public GcpDmIntegrations(String name, GcpDmIntegrationsArgs args, CustomResourceOptions options)
type: newrelic:cloud:GcpDmIntegrations
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "newrelic_cloud_gcp_dm_integrations" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GcpDmIntegrationsArgs
- 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 GcpDmIntegrationsArgs
- 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 GcpDmIntegrationsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GcpDmIntegrationsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GcpDmIntegrationsArgs
- 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 gcpDmIntegrationsResource = new NewRelic.Cloud.GcpDmIntegrations("gcpDmIntegrationsResource", new()
{
LinkedAccountId = "string",
Functions = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFunctionsArgs
{
MetricsPollingInterval = 0,
},
AccountId = "string",
ApiGateway = new NewRelic.Cloud.Inputs.GcpDmIntegrationsApiGatewayArgs
{
MetricsPollingInterval = 0,
},
AppEngine = new NewRelic.Cloud.Inputs.GcpDmIntegrationsAppEngineArgs
{
MetricsPollingInterval = 0,
},
BigQuery = new NewRelic.Cloud.Inputs.GcpDmIntegrationsBigQueryArgs
{
MetricsPollingInterval = 0,
},
BigTable = new NewRelic.Cloud.Inputs.GcpDmIntegrationsBigTableArgs
{
MetricsPollingInterval = 0,
},
Composer = new NewRelic.Cloud.Inputs.GcpDmIntegrationsComposerArgs
{
MetricsPollingInterval = 0,
},
DataFlow = new NewRelic.Cloud.Inputs.GcpDmIntegrationsDataFlowArgs
{
MetricsPollingInterval = 0,
},
DataProc = new NewRelic.Cloud.Inputs.GcpDmIntegrationsDataProcArgs
{
MetricsPollingInterval = 0,
},
DataStore = new NewRelic.Cloud.Inputs.GcpDmIntegrationsDataStoreArgs
{
MetricsPollingInterval = 0,
},
FirebaseAppHosting = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseAppHostingArgs
{
MetricsPollingInterval = 0,
},
FirebaseAuth = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseAuthArgs
{
MetricsPollingInterval = 0,
},
FirebaseDatabase = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseDatabaseArgs
{
MetricsPollingInterval = 0,
},
FirebaseHosting = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseHostingArgs
{
MetricsPollingInterval = 0,
},
FirebaseStorage = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseStorageArgs
{
MetricsPollingInterval = 0,
},
FirebaseVertexAi = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirebaseVertexAiArgs
{
MetricsPollingInterval = 0,
},
AlloyDb = new NewRelic.Cloud.Inputs.GcpDmIntegrationsAlloyDbArgs
{
MetricsPollingInterval = 0,
},
Firestore = new NewRelic.Cloud.Inputs.GcpDmIntegrationsFirestoreArgs
{
MetricsPollingInterval = 0,
},
Interconnect = new NewRelic.Cloud.Inputs.GcpDmIntegrationsInterconnectArgs
{
MetricsPollingInterval = 0,
},
Istio = new NewRelic.Cloud.Inputs.GcpDmIntegrationsIstioArgs
{
MetricsPollingInterval = 0,
},
Kubernetes = new NewRelic.Cloud.Inputs.GcpDmIntegrationsKubernetesArgs
{
MetricsPollingInterval = 0,
},
AiPlatform = new NewRelic.Cloud.Inputs.GcpDmIntegrationsAiPlatformArgs
{
MetricsPollingInterval = 0,
},
LoadBalancing = new NewRelic.Cloud.Inputs.GcpDmIntegrationsLoadBalancingArgs
{
MetricsPollingInterval = 0,
},
ManagedKafka = new NewRelic.Cloud.Inputs.GcpDmIntegrationsManagedKafkaArgs
{
MetricsPollingInterval = 0,
},
MemCache = new NewRelic.Cloud.Inputs.GcpDmIntegrationsMemCacheArgs
{
MetricsPollingInterval = 0,
},
MemoryStore = new NewRelic.Cloud.Inputs.GcpDmIntegrationsMemoryStoreArgs
{
MetricsPollingInterval = 0,
},
PubSub = new NewRelic.Cloud.Inputs.GcpDmIntegrationsPubSubArgs
{
MetricsPollingInterval = 0,
},
Redis = new NewRelic.Cloud.Inputs.GcpDmIntegrationsRedisArgs
{
MetricsPollingInterval = 0,
},
Router = new NewRelic.Cloud.Inputs.GcpDmIntegrationsRouterArgs
{
MetricsPollingInterval = 0,
},
Run = new NewRelic.Cloud.Inputs.GcpDmIntegrationsRunArgs
{
MetricsPollingInterval = 0,
},
Spanner = new NewRelic.Cloud.Inputs.GcpDmIntegrationsSpannerArgs
{
MetricsPollingInterval = 0,
},
Sql = new NewRelic.Cloud.Inputs.GcpDmIntegrationsSqlArgs
{
MetricsPollingInterval = 0,
},
Storage = new NewRelic.Cloud.Inputs.GcpDmIntegrationsStorageArgs
{
MetricsPollingInterval = 0,
},
VirtualMachines = new NewRelic.Cloud.Inputs.GcpDmIntegrationsVirtualMachinesArgs
{
MetricsPollingInterval = 0,
},
VpcAccess = new NewRelic.Cloud.Inputs.GcpDmIntegrationsVpcAccessArgs
{
MetricsPollingInterval = 0,
},
});
example, err := cloud.NewGcpDmIntegrations(ctx, "gcpDmIntegrationsResource", &cloud.GcpDmIntegrationsArgs{
LinkedAccountId: pulumi.String("string"),
Functions: &cloud.GcpDmIntegrationsFunctionsArgs{
MetricsPollingInterval: pulumi.Int(0),
},
AccountId: pulumi.String("string"),
ApiGateway: &cloud.GcpDmIntegrationsApiGatewayArgs{
MetricsPollingInterval: pulumi.Int(0),
},
AppEngine: &cloud.GcpDmIntegrationsAppEngineArgs{
MetricsPollingInterval: pulumi.Int(0),
},
BigQuery: &cloud.GcpDmIntegrationsBigQueryArgs{
MetricsPollingInterval: pulumi.Int(0),
},
BigTable: &cloud.GcpDmIntegrationsBigTableArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Composer: &cloud.GcpDmIntegrationsComposerArgs{
MetricsPollingInterval: pulumi.Int(0),
},
DataFlow: &cloud.GcpDmIntegrationsDataFlowArgs{
MetricsPollingInterval: pulumi.Int(0),
},
DataProc: &cloud.GcpDmIntegrationsDataProcArgs{
MetricsPollingInterval: pulumi.Int(0),
},
DataStore: &cloud.GcpDmIntegrationsDataStoreArgs{
MetricsPollingInterval: pulumi.Int(0),
},
FirebaseAppHosting: &cloud.GcpDmIntegrationsFirebaseAppHostingArgs{
MetricsPollingInterval: pulumi.Int(0),
},
FirebaseAuth: &cloud.GcpDmIntegrationsFirebaseAuthArgs{
MetricsPollingInterval: pulumi.Int(0),
},
FirebaseDatabase: &cloud.GcpDmIntegrationsFirebaseDatabaseArgs{
MetricsPollingInterval: pulumi.Int(0),
},
FirebaseHosting: &cloud.GcpDmIntegrationsFirebaseHostingArgs{
MetricsPollingInterval: pulumi.Int(0),
},
FirebaseStorage: &cloud.GcpDmIntegrationsFirebaseStorageArgs{
MetricsPollingInterval: pulumi.Int(0),
},
FirebaseVertexAi: &cloud.GcpDmIntegrationsFirebaseVertexAiArgs{
MetricsPollingInterval: pulumi.Int(0),
},
AlloyDb: &cloud.GcpDmIntegrationsAlloyDbArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Firestore: &cloud.GcpDmIntegrationsFirestoreArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Interconnect: &cloud.GcpDmIntegrationsInterconnectArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Istio: &cloud.GcpDmIntegrationsIstioArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Kubernetes: &cloud.GcpDmIntegrationsKubernetesArgs{
MetricsPollingInterval: pulumi.Int(0),
},
AiPlatform: &cloud.GcpDmIntegrationsAiPlatformArgs{
MetricsPollingInterval: pulumi.Int(0),
},
LoadBalancing: &cloud.GcpDmIntegrationsLoadBalancingArgs{
MetricsPollingInterval: pulumi.Int(0),
},
ManagedKafka: &cloud.GcpDmIntegrationsManagedKafkaArgs{
MetricsPollingInterval: pulumi.Int(0),
},
MemCache: &cloud.GcpDmIntegrationsMemCacheArgs{
MetricsPollingInterval: pulumi.Int(0),
},
MemoryStore: &cloud.GcpDmIntegrationsMemoryStoreArgs{
MetricsPollingInterval: pulumi.Int(0),
},
PubSub: &cloud.GcpDmIntegrationsPubSubArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Redis: &cloud.GcpDmIntegrationsRedisArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Router: &cloud.GcpDmIntegrationsRouterArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Run: &cloud.GcpDmIntegrationsRunArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Spanner: &cloud.GcpDmIntegrationsSpannerArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Sql: &cloud.GcpDmIntegrationsSqlArgs{
MetricsPollingInterval: pulumi.Int(0),
},
Storage: &cloud.GcpDmIntegrationsStorageArgs{
MetricsPollingInterval: pulumi.Int(0),
},
VirtualMachines: &cloud.GcpDmIntegrationsVirtualMachinesArgs{
MetricsPollingInterval: pulumi.Int(0),
},
VpcAccess: &cloud.GcpDmIntegrationsVpcAccessArgs{
MetricsPollingInterval: pulumi.Int(0),
},
})
resource "newrelic_cloud_gcp_dm_integrations" "gcpDmIntegrationsResource" {
lifecycle {
create_before_destroy = true
}
linked_account_id = "string"
functions = {
metrics_polling_interval = 0
}
account_id = "string"
api_gateway = {
metrics_polling_interval = 0
}
app_engine = {
metrics_polling_interval = 0
}
big_query = {
metrics_polling_interval = 0
}
big_table = {
metrics_polling_interval = 0
}
composer = {
metrics_polling_interval = 0
}
data_flow = {
metrics_polling_interval = 0
}
data_proc = {
metrics_polling_interval = 0
}
data_store = {
metrics_polling_interval = 0
}
firebase_app_hosting = {
metrics_polling_interval = 0
}
firebase_auth = {
metrics_polling_interval = 0
}
firebase_database = {
metrics_polling_interval = 0
}
firebase_hosting = {
metrics_polling_interval = 0
}
firebase_storage = {
metrics_polling_interval = 0
}
firebase_vertex_ai = {
metrics_polling_interval = 0
}
alloy_db = {
metrics_polling_interval = 0
}
firestore = {
metrics_polling_interval = 0
}
interconnect = {
metrics_polling_interval = 0
}
istio = {
metrics_polling_interval = 0
}
kubernetes = {
metrics_polling_interval = 0
}
ai_platform = {
metrics_polling_interval = 0
}
load_balancing = {
metrics_polling_interval = 0
}
managed_kafka = {
metrics_polling_interval = 0
}
mem_cache = {
metrics_polling_interval = 0
}
memory_store = {
metrics_polling_interval = 0
}
pub_sub = {
metrics_polling_interval = 0
}
redis = {
metrics_polling_interval = 0
}
router = {
metrics_polling_interval = 0
}
run = {
metrics_polling_interval = 0
}
spanner = {
metrics_polling_interval = 0
}
sql = {
metrics_polling_interval = 0
}
storage = {
metrics_polling_interval = 0
}
virtual_machines = {
metrics_polling_interval = 0
}
vpc_access = {
metrics_polling_interval = 0
}
}
var gcpDmIntegrationsResource = new GcpDmIntegrations("gcpDmIntegrationsResource", GcpDmIntegrationsArgs.builder()
.linkedAccountId("string")
.functions(GcpDmIntegrationsFunctionsArgs.builder()
.metricsPollingInterval(0)
.build())
.accountId("string")
.apiGateway(GcpDmIntegrationsApiGatewayArgs.builder()
.metricsPollingInterval(0)
.build())
.appEngine(GcpDmIntegrationsAppEngineArgs.builder()
.metricsPollingInterval(0)
.build())
.bigQuery(GcpDmIntegrationsBigQueryArgs.builder()
.metricsPollingInterval(0)
.build())
.bigTable(GcpDmIntegrationsBigTableArgs.builder()
.metricsPollingInterval(0)
.build())
.composer(GcpDmIntegrationsComposerArgs.builder()
.metricsPollingInterval(0)
.build())
.dataFlow(GcpDmIntegrationsDataFlowArgs.builder()
.metricsPollingInterval(0)
.build())
.dataProc(GcpDmIntegrationsDataProcArgs.builder()
.metricsPollingInterval(0)
.build())
.dataStore(GcpDmIntegrationsDataStoreArgs.builder()
.metricsPollingInterval(0)
.build())
.firebaseAppHosting(GcpDmIntegrationsFirebaseAppHostingArgs.builder()
.metricsPollingInterval(0)
.build())
.firebaseAuth(GcpDmIntegrationsFirebaseAuthArgs.builder()
.metricsPollingInterval(0)
.build())
.firebaseDatabase(GcpDmIntegrationsFirebaseDatabaseArgs.builder()
.metricsPollingInterval(0)
.build())
.firebaseHosting(GcpDmIntegrationsFirebaseHostingArgs.builder()
.metricsPollingInterval(0)
.build())
.firebaseStorage(GcpDmIntegrationsFirebaseStorageArgs.builder()
.metricsPollingInterval(0)
.build())
.firebaseVertexAi(GcpDmIntegrationsFirebaseVertexAiArgs.builder()
.metricsPollingInterval(0)
.build())
.alloyDb(GcpDmIntegrationsAlloyDbArgs.builder()
.metricsPollingInterval(0)
.build())
.firestore(GcpDmIntegrationsFirestoreArgs.builder()
.metricsPollingInterval(0)
.build())
.interconnect(GcpDmIntegrationsInterconnectArgs.builder()
.metricsPollingInterval(0)
.build())
.istio(GcpDmIntegrationsIstioArgs.builder()
.metricsPollingInterval(0)
.build())
.kubernetes(GcpDmIntegrationsKubernetesArgs.builder()
.metricsPollingInterval(0)
.build())
.aiPlatform(GcpDmIntegrationsAiPlatformArgs.builder()
.metricsPollingInterval(0)
.build())
.loadBalancing(GcpDmIntegrationsLoadBalancingArgs.builder()
.metricsPollingInterval(0)
.build())
.managedKafka(GcpDmIntegrationsManagedKafkaArgs.builder()
.metricsPollingInterval(0)
.build())
.memCache(GcpDmIntegrationsMemCacheArgs.builder()
.metricsPollingInterval(0)
.build())
.memoryStore(GcpDmIntegrationsMemoryStoreArgs.builder()
.metricsPollingInterval(0)
.build())
.pubSub(GcpDmIntegrationsPubSubArgs.builder()
.metricsPollingInterval(0)
.build())
.redis(GcpDmIntegrationsRedisArgs.builder()
.metricsPollingInterval(0)
.build())
.router(GcpDmIntegrationsRouterArgs.builder()
.metricsPollingInterval(0)
.build())
.run(GcpDmIntegrationsRunArgs.builder()
.metricsPollingInterval(0)
.build())
.spanner(GcpDmIntegrationsSpannerArgs.builder()
.metricsPollingInterval(0)
.build())
.sql(GcpDmIntegrationsSqlArgs.builder()
.metricsPollingInterval(0)
.build())
.storage(GcpDmIntegrationsStorageArgs.builder()
.metricsPollingInterval(0)
.build())
.virtualMachines(GcpDmIntegrationsVirtualMachinesArgs.builder()
.metricsPollingInterval(0)
.build())
.vpcAccess(GcpDmIntegrationsVpcAccessArgs.builder()
.metricsPollingInterval(0)
.build())
.build());
gcp_dm_integrations_resource = newrelic.cloud.GcpDmIntegrations("gcpDmIntegrationsResource",
linked_account_id="string",
functions={
"metrics_polling_interval": 0,
},
account_id="string",
api_gateway={
"metrics_polling_interval": 0,
},
app_engine={
"metrics_polling_interval": 0,
},
big_query={
"metrics_polling_interval": 0,
},
big_table={
"metrics_polling_interval": 0,
},
composer={
"metrics_polling_interval": 0,
},
data_flow={
"metrics_polling_interval": 0,
},
data_proc={
"metrics_polling_interval": 0,
},
data_store={
"metrics_polling_interval": 0,
},
firebase_app_hosting={
"metrics_polling_interval": 0,
},
firebase_auth={
"metrics_polling_interval": 0,
},
firebase_database={
"metrics_polling_interval": 0,
},
firebase_hosting={
"metrics_polling_interval": 0,
},
firebase_storage={
"metrics_polling_interval": 0,
},
firebase_vertex_ai={
"metrics_polling_interval": 0,
},
alloy_db={
"metrics_polling_interval": 0,
},
firestore={
"metrics_polling_interval": 0,
},
interconnect={
"metrics_polling_interval": 0,
},
istio={
"metrics_polling_interval": 0,
},
kubernetes={
"metrics_polling_interval": 0,
},
ai_platform={
"metrics_polling_interval": 0,
},
load_balancing={
"metrics_polling_interval": 0,
},
managed_kafka={
"metrics_polling_interval": 0,
},
mem_cache={
"metrics_polling_interval": 0,
},
memory_store={
"metrics_polling_interval": 0,
},
pub_sub={
"metrics_polling_interval": 0,
},
redis={
"metrics_polling_interval": 0,
},
router={
"metrics_polling_interval": 0,
},
run={
"metrics_polling_interval": 0,
},
spanner={
"metrics_polling_interval": 0,
},
sql={
"metrics_polling_interval": 0,
},
storage={
"metrics_polling_interval": 0,
},
virtual_machines={
"metrics_polling_interval": 0,
},
vpc_access={
"metrics_polling_interval": 0,
})
const gcpDmIntegrationsResource = new newrelic.cloud.GcpDmIntegrations("gcpDmIntegrationsResource", {
linkedAccountId: "string",
functions: {
metricsPollingInterval: 0,
},
accountId: "string",
apiGateway: {
metricsPollingInterval: 0,
},
appEngine: {
metricsPollingInterval: 0,
},
bigQuery: {
metricsPollingInterval: 0,
},
bigTable: {
metricsPollingInterval: 0,
},
composer: {
metricsPollingInterval: 0,
},
dataFlow: {
metricsPollingInterval: 0,
},
dataProc: {
metricsPollingInterval: 0,
},
dataStore: {
metricsPollingInterval: 0,
},
firebaseAppHosting: {
metricsPollingInterval: 0,
},
firebaseAuth: {
metricsPollingInterval: 0,
},
firebaseDatabase: {
metricsPollingInterval: 0,
},
firebaseHosting: {
metricsPollingInterval: 0,
},
firebaseStorage: {
metricsPollingInterval: 0,
},
firebaseVertexAi: {
metricsPollingInterval: 0,
},
alloyDb: {
metricsPollingInterval: 0,
},
firestore: {
metricsPollingInterval: 0,
},
interconnect: {
metricsPollingInterval: 0,
},
istio: {
metricsPollingInterval: 0,
},
kubernetes: {
metricsPollingInterval: 0,
},
aiPlatform: {
metricsPollingInterval: 0,
},
loadBalancing: {
metricsPollingInterval: 0,
},
managedKafka: {
metricsPollingInterval: 0,
},
memCache: {
metricsPollingInterval: 0,
},
memoryStore: {
metricsPollingInterval: 0,
},
pubSub: {
metricsPollingInterval: 0,
},
redis: {
metricsPollingInterval: 0,
},
router: {
metricsPollingInterval: 0,
},
run: {
metricsPollingInterval: 0,
},
spanner: {
metricsPollingInterval: 0,
},
sql: {
metricsPollingInterval: 0,
},
storage: {
metricsPollingInterval: 0,
},
virtualMachines: {
metricsPollingInterval: 0,
},
vpcAccess: {
metricsPollingInterval: 0,
},
});
type: newrelic:cloud:GcpDmIntegrations
properties:
accountId: string
aiPlatform:
metricsPollingInterval: 0
alloyDb:
metricsPollingInterval: 0
apiGateway:
metricsPollingInterval: 0
appEngine:
metricsPollingInterval: 0
bigQuery:
metricsPollingInterval: 0
bigTable:
metricsPollingInterval: 0
composer:
metricsPollingInterval: 0
dataFlow:
metricsPollingInterval: 0
dataProc:
metricsPollingInterval: 0
dataStore:
metricsPollingInterval: 0
firebaseAppHosting:
metricsPollingInterval: 0
firebaseAuth:
metricsPollingInterval: 0
firebaseDatabase:
metricsPollingInterval: 0
firebaseHosting:
metricsPollingInterval: 0
firebaseStorage:
metricsPollingInterval: 0
firebaseVertexAi:
metricsPollingInterval: 0
firestore:
metricsPollingInterval: 0
functions:
metricsPollingInterval: 0
interconnect:
metricsPollingInterval: 0
istio:
metricsPollingInterval: 0
kubernetes:
metricsPollingInterval: 0
linkedAccountId: string
loadBalancing:
metricsPollingInterval: 0
managedKafka:
metricsPollingInterval: 0
memCache:
metricsPollingInterval: 0
memoryStore:
metricsPollingInterval: 0
pubSub:
metricsPollingInterval: 0
redis:
metricsPollingInterval: 0
router:
metricsPollingInterval: 0
run:
metricsPollingInterval: 0
spanner:
metricsPollingInterval: 0
sql:
metricsPollingInterval: 0
storage:
metricsPollingInterval: 0
virtualMachines:
metricsPollingInterval: 0
vpcAccess:
metricsPollingInterval: 0
GcpDmIntegrations 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 GcpDmIntegrations resource accepts the following input properties:
- Linked
Account stringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - Account
Id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - Ai
Platform Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Ai Platform - GCP Vertex AI / AI Platform.
- Alloy
Db Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Alloy Db - GCP AlloyDB.
- Api
Gateway Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Api Gateway - GCP API Gateway (Dimensional Metrics only).
- App
Engine Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations App Engine - GCP App Engine.
- Big
Query Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Big Query - GCP BigQuery.
- Big
Table Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Big Table - GCP Bigtable.
- Composer
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Composer - GCP Cloud Composer.
- Data
Flow Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Data Flow - GCP Cloud Dataflow.
- Data
Proc Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Data Proc - GCP Cloud Dataproc.
- Data
Store Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Data Store - GCP Cloud Datastore.
- Firebase
App Pulumi.Hosting New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase App Hosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- Firebase
Auth Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Auth - Firebase Authentication (Dimensional Metrics only).
- Firebase
Database Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Database - GCP Firebase Realtime Database.
- Firebase
Hosting Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Hosting - GCP Firebase Hosting.
- Firebase
Storage Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Storage - GCP Firebase Storage.
- Firebase
Vertex Pulumi.Ai New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Vertex Ai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- Firestore
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Firestore - GCP Firestore.
- Functions
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Functions - GCP Cloud Functions.
- Interconnect
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Interconnect - GCP Cloud Interconnect.
- Istio
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Istio - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- Kubernetes
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Kubernetes - GCP Google Kubernetes Engine (GKE).
- Load
Balancing Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Load Balancing - GCP Cloud Load Balancing.
- Managed
Kafka Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Managed Kafka - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- Mem
Cache Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Mem Cache - GCP Memcache.
- Memory
Store Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Memory Store - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- Pub
Sub Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Pub Sub - GCP Cloud Pub/Sub.
- Redis
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Redis - GCP Memorystore for Redis (legacy).
- Router
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Router - GCP Cloud Router.
- Run
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Run - GCP Cloud Run.
- Spanner
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Spanner - GCP Cloud Spanner.
- Sql
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Sql - GCP Cloud SQL.
- Storage
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Storage - GCP Cloud Storage.
- Virtual
Machines Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Virtual Machines - GCP Compute Engine VMs.
- Vpc
Access Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Vpc Access - GCP Serverless VPC Access.
- Linked
Account stringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - Account
Id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - Ai
Platform GcpDm Integrations Ai Platform Args - GCP Vertex AI / AI Platform.
- Alloy
Db GcpDm Integrations Alloy Db Args - GCP AlloyDB.
- Api
Gateway GcpDm Integrations Api Gateway Args - GCP API Gateway (Dimensional Metrics only).
- App
Engine GcpDm Integrations App Engine Args - GCP App Engine.
- Big
Query GcpDm Integrations Big Query Args - GCP BigQuery.
- Big
Table GcpDm Integrations Big Table Args - GCP Bigtable.
- Composer
Gcp
Dm Integrations Composer Args - GCP Cloud Composer.
- Data
Flow GcpDm Integrations Data Flow Args - GCP Cloud Dataflow.
- Data
Proc GcpDm Integrations Data Proc Args - GCP Cloud Dataproc.
- Data
Store GcpDm Integrations Data Store Args - GCP Cloud Datastore.
- Firebase
App GcpHosting Dm Integrations Firebase App Hosting Args - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- Firebase
Auth GcpDm Integrations Firebase Auth Args - Firebase Authentication (Dimensional Metrics only).
- Firebase
Database GcpDm Integrations Firebase Database Args - GCP Firebase Realtime Database.
- Firebase
Hosting GcpDm Integrations Firebase Hosting Args - GCP Firebase Hosting.
- Firebase
Storage GcpDm Integrations Firebase Storage Args - GCP Firebase Storage.
- Firebase
Vertex GcpAi Dm Integrations Firebase Vertex Ai Args - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- Firestore
Gcp
Dm Integrations Firestore Args - GCP Firestore.
- Functions
Gcp
Dm Integrations Functions Args - GCP Cloud Functions.
- Interconnect
Gcp
Dm Integrations Interconnect Args - GCP Cloud Interconnect.
- Istio
Gcp
Dm Integrations Istio Args - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- Kubernetes
Gcp
Dm Integrations Kubernetes Args - GCP Google Kubernetes Engine (GKE).
- Load
Balancing GcpDm Integrations Load Balancing Args - GCP Cloud Load Balancing.
- Managed
Kafka GcpDm Integrations Managed Kafka Args - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- Mem
Cache GcpDm Integrations Mem Cache Args - GCP Memcache.
- Memory
Store GcpDm Integrations Memory Store Args - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- Pub
Sub GcpDm Integrations Pub Sub Args - GCP Cloud Pub/Sub.
- Redis
Gcp
Dm Integrations Redis Args - GCP Memorystore for Redis (legacy).
- Router
Gcp
Dm Integrations Router Args - GCP Cloud Router.
- Run
Gcp
Dm Integrations Run Args - GCP Cloud Run.
- Spanner
Gcp
Dm Integrations Spanner Args - GCP Cloud Spanner.
- Sql
Gcp
Dm Integrations Sql Args - GCP Cloud SQL.
- Storage
Gcp
Dm Integrations Storage Args - GCP Cloud Storage.
- Virtual
Machines GcpDm Integrations Virtual Machines Args - GCP Compute Engine VMs.
- Vpc
Access GcpDm Integrations Vpc Access Args - GCP Serverless VPC Access.
- linked_
account_ stringid - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - account_
id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai_
platform object - GCP Vertex AI / AI Platform.
- alloy_
db object - GCP AlloyDB.
- api_
gateway object - GCP API Gateway (Dimensional Metrics only).
- app_
engine object - GCP App Engine.
- big_
query object - GCP BigQuery.
- big_
table object - GCP Bigtable.
- composer object
- GCP Cloud Composer.
- data_
flow object - GCP Cloud Dataflow.
- data_
proc object - GCP Cloud Dataproc.
- data_
store object - GCP Cloud Datastore.
- firebase_
app_ objecthosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase_
auth object - Firebase Authentication (Dimensional Metrics only).
- firebase_
database object - GCP Firebase Realtime Database.
- firebase_
hosting object - GCP Firebase Hosting.
- firebase_
storage object - GCP Firebase Storage.
- firebase_
vertex_ objectai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore object
- GCP Firestore.
- functions object
- GCP Cloud Functions.
- interconnect object
- GCP Cloud Interconnect.
- istio object
- GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes object
- GCP Google Kubernetes Engine (GKE).
- load_
balancing object - GCP Cloud Load Balancing.
- managed_
kafka object - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem_
cache object - GCP Memcache.
- memory_
store object - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub_
sub object - GCP Cloud Pub/Sub.
- redis object
- GCP Memorystore for Redis (legacy).
- router object
- GCP Cloud Router.
- run object
- GCP Cloud Run.
- spanner object
- GCP Cloud Spanner.
- sql object
- GCP Cloud SQL.
- storage object
- GCP Cloud Storage.
- virtual_
machines object - GCP Compute Engine VMs.
- vpc_
access object - GCP Serverless VPC Access.
- linked
Account StringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - account
Id String - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai
Platform GcpDm Integrations Ai Platform - GCP Vertex AI / AI Platform.
- alloy
Db GcpDm Integrations Alloy Db - GCP AlloyDB.
- api
Gateway GcpDm Integrations Api Gateway - GCP API Gateway (Dimensional Metrics only).
- app
Engine GcpDm Integrations App Engine - GCP App Engine.
- big
Query GcpDm Integrations Big Query - GCP BigQuery.
- big
Table GcpDm Integrations Big Table - GCP Bigtable.
- composer
Gcp
Dm Integrations Composer - GCP Cloud Composer.
- data
Flow GcpDm Integrations Data Flow - GCP Cloud Dataflow.
- data
Proc GcpDm Integrations Data Proc - GCP Cloud Dataproc.
- data
Store GcpDm Integrations Data Store - GCP Cloud Datastore.
- firebase
App GcpHosting Dm Integrations Firebase App Hosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase
Auth GcpDm Integrations Firebase Auth - Firebase Authentication (Dimensional Metrics only).
- firebase
Database GcpDm Integrations Firebase Database - GCP Firebase Realtime Database.
- firebase
Hosting GcpDm Integrations Firebase Hosting - GCP Firebase Hosting.
- firebase
Storage GcpDm Integrations Firebase Storage - GCP Firebase Storage.
- firebase
Vertex GcpAi Dm Integrations Firebase Vertex Ai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore
Gcp
Dm Integrations Firestore - GCP Firestore.
- functions
Gcp
Dm Integrations Functions - GCP Cloud Functions.
- interconnect
Gcp
Dm Integrations Interconnect - GCP Cloud Interconnect.
- istio
Gcp
Dm Integrations Istio - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes
Gcp
Dm Integrations Kubernetes - GCP Google Kubernetes Engine (GKE).
- load
Balancing GcpDm Integrations Load Balancing - GCP Cloud Load Balancing.
- managed
Kafka GcpDm Integrations Managed Kafka - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem
Cache GcpDm Integrations Mem Cache - GCP Memcache.
- memory
Store GcpDm Integrations Memory Store - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub
Sub GcpDm Integrations Pub Sub - GCP Cloud Pub/Sub.
- redis
Gcp
Dm Integrations Redis - GCP Memorystore for Redis (legacy).
- router
Gcp
Dm Integrations Router - GCP Cloud Router.
- run
Gcp
Dm Integrations Run - GCP Cloud Run.
- spanner
Gcp
Dm Integrations Spanner - GCP Cloud Spanner.
- sql
Gcp
Dm Integrations Sql - GCP Cloud SQL.
- storage
Gcp
Dm Integrations Storage - GCP Cloud Storage.
- virtual
Machines GcpDm Integrations Virtual Machines - GCP Compute Engine VMs.
- vpc
Access GcpDm Integrations Vpc Access - GCP Serverless VPC Access.
- linked
Account stringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - account
Id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai
Platform GcpDm Integrations Ai Platform - GCP Vertex AI / AI Platform.
- alloy
Db GcpDm Integrations Alloy Db - GCP AlloyDB.
- api
Gateway GcpDm Integrations Api Gateway - GCP API Gateway (Dimensional Metrics only).
- app
Engine GcpDm Integrations App Engine - GCP App Engine.
- big
Query GcpDm Integrations Big Query - GCP BigQuery.
- big
Table GcpDm Integrations Big Table - GCP Bigtable.
- composer
Gcp
Dm Integrations Composer - GCP Cloud Composer.
- data
Flow GcpDm Integrations Data Flow - GCP Cloud Dataflow.
- data
Proc GcpDm Integrations Data Proc - GCP Cloud Dataproc.
- data
Store GcpDm Integrations Data Store - GCP Cloud Datastore.
- firebase
App GcpHosting Dm Integrations Firebase App Hosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase
Auth GcpDm Integrations Firebase Auth - Firebase Authentication (Dimensional Metrics only).
- firebase
Database GcpDm Integrations Firebase Database - GCP Firebase Realtime Database.
- firebase
Hosting GcpDm Integrations Firebase Hosting - GCP Firebase Hosting.
- firebase
Storage GcpDm Integrations Firebase Storage - GCP Firebase Storage.
- firebase
Vertex GcpAi Dm Integrations Firebase Vertex Ai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore
Gcp
Dm Integrations Firestore - GCP Firestore.
- functions
Gcp
Dm Integrations Functions - GCP Cloud Functions.
- interconnect
Gcp
Dm Integrations Interconnect - GCP Cloud Interconnect.
- istio
Gcp
Dm Integrations Istio - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes
Gcp
Dm Integrations Kubernetes - GCP Google Kubernetes Engine (GKE).
- load
Balancing GcpDm Integrations Load Balancing - GCP Cloud Load Balancing.
- managed
Kafka GcpDm Integrations Managed Kafka - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem
Cache GcpDm Integrations Mem Cache - GCP Memcache.
- memory
Store GcpDm Integrations Memory Store - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub
Sub GcpDm Integrations Pub Sub - GCP Cloud Pub/Sub.
- redis
Gcp
Dm Integrations Redis - GCP Memorystore for Redis (legacy).
- router
Gcp
Dm Integrations Router - GCP Cloud Router.
- run
Gcp
Dm Integrations Run - GCP Cloud Run.
- spanner
Gcp
Dm Integrations Spanner - GCP Cloud Spanner.
- sql
Gcp
Dm Integrations Sql - GCP Cloud SQL.
- storage
Gcp
Dm Integrations Storage - GCP Cloud Storage.
- virtual
Machines GcpDm Integrations Virtual Machines - GCP Compute Engine VMs.
- vpc
Access GcpDm Integrations Vpc Access - GCP Serverless VPC Access.
- linked_
account_ strid - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - account_
id str - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai_
platform GcpDm Integrations Ai Platform Args - GCP Vertex AI / AI Platform.
- alloy_
db GcpDm Integrations Alloy Db Args - GCP AlloyDB.
- api_
gateway GcpDm Integrations Api Gateway Args - GCP API Gateway (Dimensional Metrics only).
- app_
engine GcpDm Integrations App Engine Args - GCP App Engine.
- big_
query GcpDm Integrations Big Query Args - GCP BigQuery.
- big_
table GcpDm Integrations Big Table Args - GCP Bigtable.
- composer
Gcp
Dm Integrations Composer Args - GCP Cloud Composer.
- data_
flow GcpDm Integrations Data Flow Args - GCP Cloud Dataflow.
- data_
proc GcpDm Integrations Data Proc Args - GCP Cloud Dataproc.
- data_
store GcpDm Integrations Data Store Args - GCP Cloud Datastore.
- firebase_
app_ Gcphosting Dm Integrations Firebase App Hosting Args - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase_
auth GcpDm Integrations Firebase Auth Args - Firebase Authentication (Dimensional Metrics only).
- firebase_
database GcpDm Integrations Firebase Database Args - GCP Firebase Realtime Database.
- firebase_
hosting GcpDm Integrations Firebase Hosting Args - GCP Firebase Hosting.
- firebase_
storage GcpDm Integrations Firebase Storage Args - GCP Firebase Storage.
- firebase_
vertex_ Gcpai Dm Integrations Firebase Vertex Ai Args - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore
Gcp
Dm Integrations Firestore Args - GCP Firestore.
- functions
Gcp
Dm Integrations Functions Args - GCP Cloud Functions.
- interconnect
Gcp
Dm Integrations Interconnect Args - GCP Cloud Interconnect.
- istio
Gcp
Dm Integrations Istio Args - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes
Gcp
Dm Integrations Kubernetes Args - GCP Google Kubernetes Engine (GKE).
- load_
balancing GcpDm Integrations Load Balancing Args - GCP Cloud Load Balancing.
- managed_
kafka GcpDm Integrations Managed Kafka Args - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem_
cache GcpDm Integrations Mem Cache Args - GCP Memcache.
- memory_
store GcpDm Integrations Memory Store Args - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub_
sub GcpDm Integrations Pub Sub Args - GCP Cloud Pub/Sub.
- redis
Gcp
Dm Integrations Redis Args - GCP Memorystore for Redis (legacy).
- router
Gcp
Dm Integrations Router Args - GCP Cloud Router.
- run
Gcp
Dm Integrations Run Args - GCP Cloud Run.
- spanner
Gcp
Dm Integrations Spanner Args - GCP Cloud Spanner.
- sql
Gcp
Dm Integrations Sql Args - GCP Cloud SQL.
- storage
Gcp
Dm Integrations Storage Args - GCP Cloud Storage.
- virtual_
machines GcpDm Integrations Virtual Machines Args - GCP Compute Engine VMs.
- vpc_
access GcpDm Integrations Vpc Access Args - GCP Serverless VPC Access.
- linked
Account StringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - account
Id String - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai
Platform Property Map - GCP Vertex AI / AI Platform.
- alloy
Db Property Map - GCP AlloyDB.
- api
Gateway Property Map - GCP API Gateway (Dimensional Metrics only).
- app
Engine Property Map - GCP App Engine.
- big
Query Property Map - GCP BigQuery.
- big
Table Property Map - GCP Bigtable.
- composer Property Map
- GCP Cloud Composer.
- data
Flow Property Map - GCP Cloud Dataflow.
- data
Proc Property Map - GCP Cloud Dataproc.
- data
Store Property Map - GCP Cloud Datastore.
- firebase
App Property MapHosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase
Auth Property Map - Firebase Authentication (Dimensional Metrics only).
- firebase
Database Property Map - GCP Firebase Realtime Database.
- firebase
Hosting Property Map - GCP Firebase Hosting.
- firebase
Storage Property Map - GCP Firebase Storage.
- firebase
Vertex Property MapAi - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore Property Map
- GCP Firestore.
- functions Property Map
- GCP Cloud Functions.
- interconnect Property Map
- GCP Cloud Interconnect.
- istio Property Map
- GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes Property Map
- GCP Google Kubernetes Engine (GKE).
- load
Balancing Property Map - GCP Cloud Load Balancing.
- managed
Kafka Property Map - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem
Cache Property Map - GCP Memcache.
- memory
Store Property Map - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub
Sub Property Map - GCP Cloud Pub/Sub.
- redis Property Map
- GCP Memorystore for Redis (legacy).
- router Property Map
- GCP Cloud Router.
- run Property Map
- GCP Cloud Run.
- spanner Property Map
- GCP Cloud Spanner.
- sql Property Map
- GCP Cloud SQL.
- storage Property Map
- GCP Cloud Storage.
- virtual
Machines Property Map - GCP Compute Engine VMs.
- vpc
Access Property Map - GCP Serverless VPC Access.
Outputs
All input properties are implicitly available as output properties. Additionally, the GcpDmIntegrations resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GcpDmIntegrations Resource
Get an existing GcpDmIntegrations 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?: GcpDmIntegrationsState, opts?: CustomResourceOptions): GcpDmIntegrations@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
ai_platform: Optional[GcpDmIntegrationsAiPlatformArgs] = None,
alloy_db: Optional[GcpDmIntegrationsAlloyDbArgs] = None,
api_gateway: Optional[GcpDmIntegrationsApiGatewayArgs] = None,
app_engine: Optional[GcpDmIntegrationsAppEngineArgs] = None,
big_query: Optional[GcpDmIntegrationsBigQueryArgs] = None,
big_table: Optional[GcpDmIntegrationsBigTableArgs] = None,
composer: Optional[GcpDmIntegrationsComposerArgs] = None,
data_flow: Optional[GcpDmIntegrationsDataFlowArgs] = None,
data_proc: Optional[GcpDmIntegrationsDataProcArgs] = None,
data_store: Optional[GcpDmIntegrationsDataStoreArgs] = None,
firebase_app_hosting: Optional[GcpDmIntegrationsFirebaseAppHostingArgs] = None,
firebase_auth: Optional[GcpDmIntegrationsFirebaseAuthArgs] = None,
firebase_database: Optional[GcpDmIntegrationsFirebaseDatabaseArgs] = None,
firebase_hosting: Optional[GcpDmIntegrationsFirebaseHostingArgs] = None,
firebase_storage: Optional[GcpDmIntegrationsFirebaseStorageArgs] = None,
firebase_vertex_ai: Optional[GcpDmIntegrationsFirebaseVertexAiArgs] = None,
firestore: Optional[GcpDmIntegrationsFirestoreArgs] = None,
functions: Optional[GcpDmIntegrationsFunctionsArgs] = None,
interconnect: Optional[GcpDmIntegrationsInterconnectArgs] = None,
istio: Optional[GcpDmIntegrationsIstioArgs] = None,
kubernetes: Optional[GcpDmIntegrationsKubernetesArgs] = None,
linked_account_id: Optional[str] = None,
load_balancing: Optional[GcpDmIntegrationsLoadBalancingArgs] = None,
managed_kafka: Optional[GcpDmIntegrationsManagedKafkaArgs] = None,
mem_cache: Optional[GcpDmIntegrationsMemCacheArgs] = None,
memory_store: Optional[GcpDmIntegrationsMemoryStoreArgs] = None,
pub_sub: Optional[GcpDmIntegrationsPubSubArgs] = None,
redis: Optional[GcpDmIntegrationsRedisArgs] = None,
router: Optional[GcpDmIntegrationsRouterArgs] = None,
run: Optional[GcpDmIntegrationsRunArgs] = None,
spanner: Optional[GcpDmIntegrationsSpannerArgs] = None,
sql: Optional[GcpDmIntegrationsSqlArgs] = None,
storage: Optional[GcpDmIntegrationsStorageArgs] = None,
virtual_machines: Optional[GcpDmIntegrationsVirtualMachinesArgs] = None,
vpc_access: Optional[GcpDmIntegrationsVpcAccessArgs] = None) -> GcpDmIntegrationsfunc GetGcpDmIntegrations(ctx *Context, name string, id IDInput, state *GcpDmIntegrationsState, opts ...ResourceOption) (*GcpDmIntegrations, error)public static GcpDmIntegrations Get(string name, Input<string> id, GcpDmIntegrationsState? state, CustomResourceOptions? opts = null)public static GcpDmIntegrations get(String name, Output<String> id, GcpDmIntegrationsState state, CustomResourceOptions options)resources: _: type: newrelic:cloud:GcpDmIntegrations get: id: ${id}import {
to = newrelic_cloud_gcp_dm_integrations.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - Ai
Platform Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Ai Platform - GCP Vertex AI / AI Platform.
- Alloy
Db Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Alloy Db - GCP AlloyDB.
- Api
Gateway Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Api Gateway - GCP API Gateway (Dimensional Metrics only).
- App
Engine Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations App Engine - GCP App Engine.
- Big
Query Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Big Query - GCP BigQuery.
- Big
Table Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Big Table - GCP Bigtable.
- Composer
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Composer - GCP Cloud Composer.
- Data
Flow Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Data Flow - GCP Cloud Dataflow.
- Data
Proc Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Data Proc - GCP Cloud Dataproc.
- Data
Store Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Data Store - GCP Cloud Datastore.
- Firebase
App Pulumi.Hosting New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase App Hosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- Firebase
Auth Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Auth - Firebase Authentication (Dimensional Metrics only).
- Firebase
Database Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Database - GCP Firebase Realtime Database.
- Firebase
Hosting Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Hosting - GCP Firebase Hosting.
- Firebase
Storage Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Storage - GCP Firebase Storage.
- Firebase
Vertex Pulumi.Ai New Relic. Cloud. Inputs. Gcp Dm Integrations Firebase Vertex Ai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- Firestore
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Firestore - GCP Firestore.
- Functions
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Functions - GCP Cloud Functions.
- Interconnect
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Interconnect - GCP Cloud Interconnect.
- Istio
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Istio - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- Kubernetes
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Kubernetes - GCP Google Kubernetes Engine (GKE).
- Linked
Account stringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - Load
Balancing Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Load Balancing - GCP Cloud Load Balancing.
- Managed
Kafka Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Managed Kafka - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- Mem
Cache Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Mem Cache - GCP Memcache.
- Memory
Store Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Memory Store - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- Pub
Sub Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Pub Sub - GCP Cloud Pub/Sub.
- Redis
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Redis - GCP Memorystore for Redis (legacy).
- Router
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Router - GCP Cloud Router.
- Run
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Run - GCP Cloud Run.
- Spanner
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Spanner - GCP Cloud Spanner.
- Sql
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Sql - GCP Cloud SQL.
- Storage
Pulumi.
New Relic. Cloud. Inputs. Gcp Dm Integrations Storage - GCP Cloud Storage.
- Virtual
Machines Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Virtual Machines - GCP Compute Engine VMs.
- Vpc
Access Pulumi.New Relic. Cloud. Inputs. Gcp Dm Integrations Vpc Access - GCP Serverless VPC Access.
- Account
Id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - Ai
Platform GcpDm Integrations Ai Platform Args - GCP Vertex AI / AI Platform.
- Alloy
Db GcpDm Integrations Alloy Db Args - GCP AlloyDB.
- Api
Gateway GcpDm Integrations Api Gateway Args - GCP API Gateway (Dimensional Metrics only).
- App
Engine GcpDm Integrations App Engine Args - GCP App Engine.
- Big
Query GcpDm Integrations Big Query Args - GCP BigQuery.
- Big
Table GcpDm Integrations Big Table Args - GCP Bigtable.
- Composer
Gcp
Dm Integrations Composer Args - GCP Cloud Composer.
- Data
Flow GcpDm Integrations Data Flow Args - GCP Cloud Dataflow.
- Data
Proc GcpDm Integrations Data Proc Args - GCP Cloud Dataproc.
- Data
Store GcpDm Integrations Data Store Args - GCP Cloud Datastore.
- Firebase
App GcpHosting Dm Integrations Firebase App Hosting Args - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- Firebase
Auth GcpDm Integrations Firebase Auth Args - Firebase Authentication (Dimensional Metrics only).
- Firebase
Database GcpDm Integrations Firebase Database Args - GCP Firebase Realtime Database.
- Firebase
Hosting GcpDm Integrations Firebase Hosting Args - GCP Firebase Hosting.
- Firebase
Storage GcpDm Integrations Firebase Storage Args - GCP Firebase Storage.
- Firebase
Vertex GcpAi Dm Integrations Firebase Vertex Ai Args - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- Firestore
Gcp
Dm Integrations Firestore Args - GCP Firestore.
- Functions
Gcp
Dm Integrations Functions Args - GCP Cloud Functions.
- Interconnect
Gcp
Dm Integrations Interconnect Args - GCP Cloud Interconnect.
- Istio
Gcp
Dm Integrations Istio Args - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- Kubernetes
Gcp
Dm Integrations Kubernetes Args - GCP Google Kubernetes Engine (GKE).
- Linked
Account stringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - Load
Balancing GcpDm Integrations Load Balancing Args - GCP Cloud Load Balancing.
- Managed
Kafka GcpDm Integrations Managed Kafka Args - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- Mem
Cache GcpDm Integrations Mem Cache Args - GCP Memcache.
- Memory
Store GcpDm Integrations Memory Store Args - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- Pub
Sub GcpDm Integrations Pub Sub Args - GCP Cloud Pub/Sub.
- Redis
Gcp
Dm Integrations Redis Args - GCP Memorystore for Redis (legacy).
- Router
Gcp
Dm Integrations Router Args - GCP Cloud Router.
- Run
Gcp
Dm Integrations Run Args - GCP Cloud Run.
- Spanner
Gcp
Dm Integrations Spanner Args - GCP Cloud Spanner.
- Sql
Gcp
Dm Integrations Sql Args - GCP Cloud SQL.
- Storage
Gcp
Dm Integrations Storage Args - GCP Cloud Storage.
- Virtual
Machines GcpDm Integrations Virtual Machines Args - GCP Compute Engine VMs.
- Vpc
Access GcpDm Integrations Vpc Access Args - GCP Serverless VPC Access.
- account_
id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai_
platform object - GCP Vertex AI / AI Platform.
- alloy_
db object - GCP AlloyDB.
- api_
gateway object - GCP API Gateway (Dimensional Metrics only).
- app_
engine object - GCP App Engine.
- big_
query object - GCP BigQuery.
- big_
table object - GCP Bigtable.
- composer object
- GCP Cloud Composer.
- data_
flow object - GCP Cloud Dataflow.
- data_
proc object - GCP Cloud Dataproc.
- data_
store object - GCP Cloud Datastore.
- firebase_
app_ objecthosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase_
auth object - Firebase Authentication (Dimensional Metrics only).
- firebase_
database object - GCP Firebase Realtime Database.
- firebase_
hosting object - GCP Firebase Hosting.
- firebase_
storage object - GCP Firebase Storage.
- firebase_
vertex_ objectai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore object
- GCP Firestore.
- functions object
- GCP Cloud Functions.
- interconnect object
- GCP Cloud Interconnect.
- istio object
- GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes object
- GCP Google Kubernetes Engine (GKE).
- linked_
account_ stringid - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - load_
balancing object - GCP Cloud Load Balancing.
- managed_
kafka object - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem_
cache object - GCP Memcache.
- memory_
store object - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub_
sub object - GCP Cloud Pub/Sub.
- redis object
- GCP Memorystore for Redis (legacy).
- router object
- GCP Cloud Router.
- run object
- GCP Cloud Run.
- spanner object
- GCP Cloud Spanner.
- sql object
- GCP Cloud SQL.
- storage object
- GCP Cloud Storage.
- virtual_
machines object - GCP Compute Engine VMs.
- vpc_
access object - GCP Serverless VPC Access.
- account
Id String - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai
Platform GcpDm Integrations Ai Platform - GCP Vertex AI / AI Platform.
- alloy
Db GcpDm Integrations Alloy Db - GCP AlloyDB.
- api
Gateway GcpDm Integrations Api Gateway - GCP API Gateway (Dimensional Metrics only).
- app
Engine GcpDm Integrations App Engine - GCP App Engine.
- big
Query GcpDm Integrations Big Query - GCP BigQuery.
- big
Table GcpDm Integrations Big Table - GCP Bigtable.
- composer
Gcp
Dm Integrations Composer - GCP Cloud Composer.
- data
Flow GcpDm Integrations Data Flow - GCP Cloud Dataflow.
- data
Proc GcpDm Integrations Data Proc - GCP Cloud Dataproc.
- data
Store GcpDm Integrations Data Store - GCP Cloud Datastore.
- firebase
App GcpHosting Dm Integrations Firebase App Hosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase
Auth GcpDm Integrations Firebase Auth - Firebase Authentication (Dimensional Metrics only).
- firebase
Database GcpDm Integrations Firebase Database - GCP Firebase Realtime Database.
- firebase
Hosting GcpDm Integrations Firebase Hosting - GCP Firebase Hosting.
- firebase
Storage GcpDm Integrations Firebase Storage - GCP Firebase Storage.
- firebase
Vertex GcpAi Dm Integrations Firebase Vertex Ai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore
Gcp
Dm Integrations Firestore - GCP Firestore.
- functions
Gcp
Dm Integrations Functions - GCP Cloud Functions.
- interconnect
Gcp
Dm Integrations Interconnect - GCP Cloud Interconnect.
- istio
Gcp
Dm Integrations Istio - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes
Gcp
Dm Integrations Kubernetes - GCP Google Kubernetes Engine (GKE).
- linked
Account StringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - load
Balancing GcpDm Integrations Load Balancing - GCP Cloud Load Balancing.
- managed
Kafka GcpDm Integrations Managed Kafka - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem
Cache GcpDm Integrations Mem Cache - GCP Memcache.
- memory
Store GcpDm Integrations Memory Store - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub
Sub GcpDm Integrations Pub Sub - GCP Cloud Pub/Sub.
- redis
Gcp
Dm Integrations Redis - GCP Memorystore for Redis (legacy).
- router
Gcp
Dm Integrations Router - GCP Cloud Router.
- run
Gcp
Dm Integrations Run - GCP Cloud Run.
- spanner
Gcp
Dm Integrations Spanner - GCP Cloud Spanner.
- sql
Gcp
Dm Integrations Sql - GCP Cloud SQL.
- storage
Gcp
Dm Integrations Storage - GCP Cloud Storage.
- virtual
Machines GcpDm Integrations Virtual Machines - GCP Compute Engine VMs.
- vpc
Access GcpDm Integrations Vpc Access - GCP Serverless VPC Access.
- account
Id string - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai
Platform GcpDm Integrations Ai Platform - GCP Vertex AI / AI Platform.
- alloy
Db GcpDm Integrations Alloy Db - GCP AlloyDB.
- api
Gateway GcpDm Integrations Api Gateway - GCP API Gateway (Dimensional Metrics only).
- app
Engine GcpDm Integrations App Engine - GCP App Engine.
- big
Query GcpDm Integrations Big Query - GCP BigQuery.
- big
Table GcpDm Integrations Big Table - GCP Bigtable.
- composer
Gcp
Dm Integrations Composer - GCP Cloud Composer.
- data
Flow GcpDm Integrations Data Flow - GCP Cloud Dataflow.
- data
Proc GcpDm Integrations Data Proc - GCP Cloud Dataproc.
- data
Store GcpDm Integrations Data Store - GCP Cloud Datastore.
- firebase
App GcpHosting Dm Integrations Firebase App Hosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase
Auth GcpDm Integrations Firebase Auth - Firebase Authentication (Dimensional Metrics only).
- firebase
Database GcpDm Integrations Firebase Database - GCP Firebase Realtime Database.
- firebase
Hosting GcpDm Integrations Firebase Hosting - GCP Firebase Hosting.
- firebase
Storage GcpDm Integrations Firebase Storage - GCP Firebase Storage.
- firebase
Vertex GcpAi Dm Integrations Firebase Vertex Ai - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore
Gcp
Dm Integrations Firestore - GCP Firestore.
- functions
Gcp
Dm Integrations Functions - GCP Cloud Functions.
- interconnect
Gcp
Dm Integrations Interconnect - GCP Cloud Interconnect.
- istio
Gcp
Dm Integrations Istio - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes
Gcp
Dm Integrations Kubernetes - GCP Google Kubernetes Engine (GKE).
- linked
Account stringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - load
Balancing GcpDm Integrations Load Balancing - GCP Cloud Load Balancing.
- managed
Kafka GcpDm Integrations Managed Kafka - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem
Cache GcpDm Integrations Mem Cache - GCP Memcache.
- memory
Store GcpDm Integrations Memory Store - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub
Sub GcpDm Integrations Pub Sub - GCP Cloud Pub/Sub.
- redis
Gcp
Dm Integrations Redis - GCP Memorystore for Redis (legacy).
- router
Gcp
Dm Integrations Router - GCP Cloud Router.
- run
Gcp
Dm Integrations Run - GCP Cloud Run.
- spanner
Gcp
Dm Integrations Spanner - GCP Cloud Spanner.
- sql
Gcp
Dm Integrations Sql - GCP Cloud SQL.
- storage
Gcp
Dm Integrations Storage - GCP Cloud Storage.
- virtual
Machines GcpDm Integrations Virtual Machines - GCP Compute Engine VMs.
- vpc
Access GcpDm Integrations Vpc Access - GCP Serverless VPC Access.
- account_
id str - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai_
platform GcpDm Integrations Ai Platform Args - GCP Vertex AI / AI Platform.
- alloy_
db GcpDm Integrations Alloy Db Args - GCP AlloyDB.
- api_
gateway GcpDm Integrations Api Gateway Args - GCP API Gateway (Dimensional Metrics only).
- app_
engine GcpDm Integrations App Engine Args - GCP App Engine.
- big_
query GcpDm Integrations Big Query Args - GCP BigQuery.
- big_
table GcpDm Integrations Big Table Args - GCP Bigtable.
- composer
Gcp
Dm Integrations Composer Args - GCP Cloud Composer.
- data_
flow GcpDm Integrations Data Flow Args - GCP Cloud Dataflow.
- data_
proc GcpDm Integrations Data Proc Args - GCP Cloud Dataproc.
- data_
store GcpDm Integrations Data Store Args - GCP Cloud Datastore.
- firebase_
app_ Gcphosting Dm Integrations Firebase App Hosting Args - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase_
auth GcpDm Integrations Firebase Auth Args - Firebase Authentication (Dimensional Metrics only).
- firebase_
database GcpDm Integrations Firebase Database Args - GCP Firebase Realtime Database.
- firebase_
hosting GcpDm Integrations Firebase Hosting Args - GCP Firebase Hosting.
- firebase_
storage GcpDm Integrations Firebase Storage Args - GCP Firebase Storage.
- firebase_
vertex_ Gcpai Dm Integrations Firebase Vertex Ai Args - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore
Gcp
Dm Integrations Firestore Args - GCP Firestore.
- functions
Gcp
Dm Integrations Functions Args - GCP Cloud Functions.
- interconnect
Gcp
Dm Integrations Interconnect Args - GCP Cloud Interconnect.
- istio
Gcp
Dm Integrations Istio Args - GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes
Gcp
Dm Integrations Kubernetes Args - GCP Google Kubernetes Engine (GKE).
- linked_
account_ strid - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - load_
balancing GcpDm Integrations Load Balancing Args - GCP Cloud Load Balancing.
- managed_
kafka GcpDm Integrations Managed Kafka Args - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem_
cache GcpDm Integrations Mem Cache Args - GCP Memcache.
- memory_
store GcpDm Integrations Memory Store Args - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub_
sub GcpDm Integrations Pub Sub Args - GCP Cloud Pub/Sub.
- redis
Gcp
Dm Integrations Redis Args - GCP Memorystore for Redis (legacy).
- router
Gcp
Dm Integrations Router Args - GCP Cloud Router.
- run
Gcp
Dm Integrations Run Args - GCP Cloud Run.
- spanner
Gcp
Dm Integrations Spanner Args - GCP Cloud Spanner.
- sql
Gcp
Dm Integrations Sql Args - GCP Cloud SQL.
- storage
Gcp
Dm Integrations Storage Args - GCP Cloud Storage.
- virtual_
machines GcpDm Integrations Virtual Machines Args - GCP Compute Engine VMs.
- vpc_
access GcpDm Integrations Vpc Access Args - GCP Serverless VPC Access.
- account
Id String - The New Relic account ID to operate on. Defaults to the
accountIdset on the provider. - ai
Platform Property Map - GCP Vertex AI / AI Platform.
- alloy
Db Property Map - GCP AlloyDB.
- api
Gateway Property Map - GCP API Gateway (Dimensional Metrics only).
- app
Engine Property Map - GCP App Engine.
- big
Query Property Map - GCP BigQuery.
- big
Table Property Map - GCP Bigtable.
- composer Property Map
- GCP Cloud Composer.
- data
Flow Property Map - GCP Cloud Dataflow.
- data
Proc Property Map - GCP Cloud Dataproc.
- data
Store Property Map - GCP Cloud Datastore.
- firebase
App Property MapHosting - Firebase App Hosting (Dimensional Metrics only; no entity synthesis).
- firebase
Auth Property Map - Firebase Authentication (Dimensional Metrics only).
- firebase
Database Property Map - GCP Firebase Realtime Database.
- firebase
Hosting Property Map - GCP Firebase Hosting.
- firebase
Storage Property Map - GCP Firebase Storage.
- firebase
Vertex Property MapAi - Firebase Vertex AI (Dimensional Metrics only; no entity synthesis).
- firestore Property Map
- GCP Firestore.
- functions Property Map
- GCP Cloud Functions.
- interconnect Property Map
- GCP Cloud Interconnect.
- istio Property Map
- GCP Istio Service Mesh (Dimensional Metrics only; no entity synthesis).
- kubernetes Property Map
- GCP Google Kubernetes Engine (GKE).
- linked
Account StringId - The ID of the linked GCP account created by
newrelic.cloud.GcpLinkAccount(in keyless/WIF mode). - load
Balancing Property Map - GCP Cloud Load Balancing.
- managed
Kafka Property Map - GCP Managed Service for Apache Kafka (Dimensional Metrics only).
- mem
Cache Property Map - GCP Memcache.
- memory
Store Property Map - GCP Memorystore for Redis/Memcached (Dimensional Metrics only).
- pub
Sub Property Map - GCP Cloud Pub/Sub.
- redis Property Map
- GCP Memorystore for Redis (legacy).
- router Property Map
- GCP Cloud Router.
- run Property Map
- GCP Cloud Run.
- spanner Property Map
- GCP Cloud Spanner.
- sql Property Map
- GCP Cloud SQL.
- storage Property Map
- GCP Cloud Storage.
- virtual
Machines Property Map - GCP Compute Engine VMs.
- vpc
Access Property Map - GCP Serverless VPC Access.
Supporting Types
GcpDmIntegrationsAiPlatform, GcpDmIntegrationsAiPlatformArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsAlloyDb, GcpDmIntegrationsAlloyDbArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsApiGateway, GcpDmIntegrationsApiGatewayArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsAppEngine, GcpDmIntegrationsAppEngineArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsBigQuery, GcpDmIntegrationsBigQueryArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsBigTable, GcpDmIntegrationsBigTableArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsComposer, GcpDmIntegrationsComposerArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsDataFlow, GcpDmIntegrationsDataFlowArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsDataProc, GcpDmIntegrationsDataProcArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsDataStore, GcpDmIntegrationsDataStoreArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirebaseAppHosting, GcpDmIntegrationsFirebaseAppHostingArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirebaseAuth, GcpDmIntegrationsFirebaseAuthArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirebaseDatabase, GcpDmIntegrationsFirebaseDatabaseArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirebaseHosting, GcpDmIntegrationsFirebaseHostingArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirebaseStorage, GcpDmIntegrationsFirebaseStorageArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirebaseVertexAi, GcpDmIntegrationsFirebaseVertexAiArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFirestore, GcpDmIntegrationsFirestoreArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsFunctions, GcpDmIntegrationsFunctionsArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsInterconnect, GcpDmIntegrationsInterconnectArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsIstio, GcpDmIntegrationsIstioArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsKubernetes, GcpDmIntegrationsKubernetesArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsLoadBalancing, GcpDmIntegrationsLoadBalancingArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsManagedKafka, GcpDmIntegrationsManagedKafkaArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsMemCache, GcpDmIntegrationsMemCacheArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsMemoryStore, GcpDmIntegrationsMemoryStoreArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsPubSub, GcpDmIntegrationsPubSubArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsRedis, GcpDmIntegrationsRedisArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsRouter, GcpDmIntegrationsRouterArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsRun, GcpDmIntegrationsRunArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsSpanner, GcpDmIntegrationsSpannerArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsSql, GcpDmIntegrationsSqlArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsStorage, GcpDmIntegrationsStorageArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsVirtualMachines, GcpDmIntegrationsVirtualMachinesArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
GcpDmIntegrationsVpcAccess, GcpDmIntegrationsVpcAccessArgs
- Metrics
Polling intInterval - The data polling interval in seconds.
- Metrics
Polling intInterval - The data polling interval in seconds.
- metrics_
polling_ numberinterval - The data polling interval in seconds.
- metrics
Polling IntegerInterval - The data polling interval in seconds.
- metrics
Polling numberInterval - The data polling interval in seconds.
- metrics_
polling_ intinterval - The data polling interval in seconds.
- metrics
Polling NumberInterval - The data polling interval in seconds.
Import
GCP DM integrations can be imported using the id:
$ pulumi import newrelic:cloud/gcpDmIntegrations:GcpDmIntegrations example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- New Relic pulumi/pulumi-newrelic
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
newrelicTerraform Provider.
published on Wednesday, Aug 12, 2026 by Pulumi