1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. monitoring
  5. GenericService
Google Cloud v8.27.0 published on Thursday, Apr 17, 2025 by Pulumi

gcp.monitoring.GenericService

Explore with Pulumi AI

A Service is a discrete, autonomous, and network-accessible unit, designed to solve an individual concern. In Cloud Monitoring, a Service acts as the root resource under which operational aspects of the service are accessible

To get more information about GenericService, see:

Example Usage

Monitoring Service Example

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const myService = new gcp.monitoring.GenericService("my_service", {
    serviceId: "my-service",
    displayName: "My Service my-service",
    userLabels: {
        my_key: "my_value",
        my_other_key: "my_other_value",
    },
    basicService: {
        serviceType: "APP_ENGINE",
        serviceLabels: {
            module_id: "another-module-id",
        },
    },
});
Copy
import pulumi
import pulumi_gcp as gcp

my_service = gcp.monitoring.GenericService("my_service",
    service_id="my-service",
    display_name="My Service my-service",
    user_labels={
        "my_key": "my_value",
        "my_other_key": "my_other_value",
    },
    basic_service={
        "service_type": "APP_ENGINE",
        "service_labels": {
            "module_id": "another-module-id",
        },
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/monitoring"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := monitoring.NewGenericService(ctx, "my_service", &monitoring.GenericServiceArgs{
			ServiceId:   pulumi.String("my-service"),
			DisplayName: pulumi.String("My Service my-service"),
			UserLabels: pulumi.StringMap{
				"my_key":       pulumi.String("my_value"),
				"my_other_key": pulumi.String("my_other_value"),
			},
			BasicService: &monitoring.GenericServiceBasicServiceArgs{
				ServiceType: pulumi.String("APP_ENGINE"),
				ServiceLabels: pulumi.StringMap{
					"module_id": pulumi.String("another-module-id"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var myService = new Gcp.Monitoring.GenericService("my_service", new()
    {
        ServiceId = "my-service",
        DisplayName = "My Service my-service",
        UserLabels = 
        {
            { "my_key", "my_value" },
            { "my_other_key", "my_other_value" },
        },
        BasicService = new Gcp.Monitoring.Inputs.GenericServiceBasicServiceArgs
        {
            ServiceType = "APP_ENGINE",
            ServiceLabels = 
            {
                { "module_id", "another-module-id" },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.monitoring.GenericService;
import com.pulumi.gcp.monitoring.GenericServiceArgs;
import com.pulumi.gcp.monitoring.inputs.GenericServiceBasicServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var myService = new GenericService("myService", GenericServiceArgs.builder()
            .serviceId("my-service")
            .displayName("My Service my-service")
            .userLabels(Map.ofEntries(
                Map.entry("my_key", "my_value"),
                Map.entry("my_other_key", "my_other_value")
            ))
            .basicService(GenericServiceBasicServiceArgs.builder()
                .serviceType("APP_ENGINE")
                .serviceLabels(Map.of("module_id", "another-module-id"))
                .build())
            .build());

    }
}
Copy
resources:
  myService:
    type: gcp:monitoring:GenericService
    name: my_service
    properties:
      serviceId: my-service
      displayName: My Service my-service
      userLabels:
        my_key: my_value
        my_other_key: my_other_value
      basicService:
        serviceType: APP_ENGINE
        serviceLabels:
          module_id: another-module-id
Copy

Create GenericService Resource

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

Constructor syntax

new GenericService(name: string, args: GenericServiceArgs, opts?: CustomResourceOptions);
@overload
def GenericService(resource_name: str,
                   args: GenericServiceArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def GenericService(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   service_id: Optional[str] = None,
                   basic_service: Optional[GenericServiceBasicServiceArgs] = None,
                   display_name: Optional[str] = None,
                   project: Optional[str] = None,
                   user_labels: Optional[Mapping[str, str]] = None)
func NewGenericService(ctx *Context, name string, args GenericServiceArgs, opts ...ResourceOption) (*GenericService, error)
public GenericService(string name, GenericServiceArgs args, CustomResourceOptions? opts = null)
public GenericService(String name, GenericServiceArgs args)
public GenericService(String name, GenericServiceArgs args, CustomResourceOptions options)
type: gcp:monitoring:GenericService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GenericServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GenericServiceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GenericServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GenericServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GenericServiceArgs
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 genericServiceResource = new Gcp.Monitoring.GenericService("genericServiceResource", new()
{
    ServiceId = "string",
    BasicService = new Gcp.Monitoring.Inputs.GenericServiceBasicServiceArgs
    {
        ServiceLabels = 
        {
            { "string", "string" },
        },
        ServiceType = "string",
    },
    DisplayName = "string",
    Project = "string",
    UserLabels = 
    {
        { "string", "string" },
    },
});
Copy
example, err := monitoring.NewGenericService(ctx, "genericServiceResource", &monitoring.GenericServiceArgs{
	ServiceId: pulumi.String("string"),
	BasicService: &monitoring.GenericServiceBasicServiceArgs{
		ServiceLabels: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
		ServiceType: pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	Project:     pulumi.String("string"),
	UserLabels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var genericServiceResource = new GenericService("genericServiceResource", GenericServiceArgs.builder()
    .serviceId("string")
    .basicService(GenericServiceBasicServiceArgs.builder()
        .serviceLabels(Map.of("string", "string"))
        .serviceType("string")
        .build())
    .displayName("string")
    .project("string")
    .userLabels(Map.of("string", "string"))
    .build());
Copy
generic_service_resource = gcp.monitoring.GenericService("genericServiceResource",
    service_id="string",
    basic_service={
        "service_labels": {
            "string": "string",
        },
        "service_type": "string",
    },
    display_name="string",
    project="string",
    user_labels={
        "string": "string",
    })
Copy
const genericServiceResource = new gcp.monitoring.GenericService("genericServiceResource", {
    serviceId: "string",
    basicService: {
        serviceLabels: {
            string: "string",
        },
        serviceType: "string",
    },
    displayName: "string",
    project: "string",
    userLabels: {
        string: "string",
    },
});
Copy
type: gcp:monitoring:GenericService
properties:
    basicService:
        serviceLabels:
            string: string
        serviceType: string
    displayName: string
    project: string
    serviceId: string
    userLabels:
        string: string
Copy

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

ServiceId
This property is required.
Changes to this property will trigger replacement.
string
An optional service ID to use. If not given, the server will generate a service ID.


BasicService Changes to this property will trigger replacement. GenericServiceBasicService
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
DisplayName string
Name used for UI elements listing this Service.
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
UserLabels Dictionary<string, string>
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
ServiceId
This property is required.
Changes to this property will trigger replacement.
string
An optional service ID to use. If not given, the server will generate a service ID.


BasicService Changes to this property will trigger replacement. GenericServiceBasicServiceArgs
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
DisplayName string
Name used for UI elements listing this Service.
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
UserLabels map[string]string
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
serviceId
This property is required.
Changes to this property will trigger replacement.
String
An optional service ID to use. If not given, the server will generate a service ID.


basicService Changes to this property will trigger replacement. GenericServiceBasicService
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
displayName String
Name used for UI elements listing this Service.
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
userLabels Map<String,String>
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
serviceId
This property is required.
Changes to this property will trigger replacement.
string
An optional service ID to use. If not given, the server will generate a service ID.


basicService Changes to this property will trigger replacement. GenericServiceBasicService
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
displayName string
Name used for UI elements listing this Service.
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
userLabels {[key: string]: string}
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
service_id
This property is required.
Changes to this property will trigger replacement.
str
An optional service ID to use. If not given, the server will generate a service ID.


basic_service Changes to this property will trigger replacement. GenericServiceBasicServiceArgs
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
display_name str
Name used for UI elements listing this Service.
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
user_labels Mapping[str, str]
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
serviceId
This property is required.
Changes to this property will trigger replacement.
String
An optional service ID to use. If not given, the server will generate a service ID.


basicService Changes to this property will trigger replacement. Property Map
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
displayName String
Name used for UI elements listing this Service.
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
userLabels Map<String>
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.

Outputs

All input properties are implicitly available as output properties. Additionally, the GenericService resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
Telemetries List<GenericServiceTelemetry>
Configuration for how to query telemetry on a Service. Structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
Telemetries []GenericServiceTelemetry
Configuration for how to query telemetry on a Service. Structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
name String
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
telemetries List<GenericServiceTelemetry>
Configuration for how to query telemetry on a Service. Structure is documented below.
id string
The provider-assigned unique ID for this managed resource.
name string
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
telemetries GenericServiceTelemetry[]
Configuration for how to query telemetry on a Service. Structure is documented below.
id str
The provider-assigned unique ID for this managed resource.
name str
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
telemetries Sequence[GenericServiceTelemetry]
Configuration for how to query telemetry on a Service. Structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
name String
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
telemetries List<Property Map>
Configuration for how to query telemetry on a Service. Structure is documented below.

Look up Existing GenericService Resource

Get an existing GenericService 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?: GenericServiceState, opts?: CustomResourceOptions): GenericService
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        basic_service: Optional[GenericServiceBasicServiceArgs] = None,
        display_name: Optional[str] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        service_id: Optional[str] = None,
        telemetries: Optional[Sequence[GenericServiceTelemetryArgs]] = None,
        user_labels: Optional[Mapping[str, str]] = None) -> GenericService
func GetGenericService(ctx *Context, name string, id IDInput, state *GenericServiceState, opts ...ResourceOption) (*GenericService, error)
public static GenericService Get(string name, Input<string> id, GenericServiceState? state, CustomResourceOptions? opts = null)
public static GenericService get(String name, Output<String> id, GenericServiceState state, CustomResourceOptions options)
resources:  _:    type: gcp:monitoring:GenericService    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
BasicService Changes to this property will trigger replacement. GenericServiceBasicService
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
DisplayName string
Name used for UI elements listing this Service.
Name string
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
ServiceId Changes to this property will trigger replacement. string
An optional service ID to use. If not given, the server will generate a service ID.


Telemetries List<GenericServiceTelemetry>
Configuration for how to query telemetry on a Service. Structure is documented below.
UserLabels Dictionary<string, string>
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
BasicService Changes to this property will trigger replacement. GenericServiceBasicServiceArgs
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
DisplayName string
Name used for UI elements listing this Service.
Name string
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
ServiceId Changes to this property will trigger replacement. string
An optional service ID to use. If not given, the server will generate a service ID.


Telemetries []GenericServiceTelemetryArgs
Configuration for how to query telemetry on a Service. Structure is documented below.
UserLabels map[string]string
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
basicService Changes to this property will trigger replacement. GenericServiceBasicService
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
displayName String
Name used for UI elements listing this Service.
name String
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
serviceId Changes to this property will trigger replacement. String
An optional service ID to use. If not given, the server will generate a service ID.


telemetries List<GenericServiceTelemetry>
Configuration for how to query telemetry on a Service. Structure is documented below.
userLabels Map<String,String>
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
basicService Changes to this property will trigger replacement. GenericServiceBasicService
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
displayName string
Name used for UI elements listing this Service.
name string
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
serviceId Changes to this property will trigger replacement. string
An optional service ID to use. If not given, the server will generate a service ID.


telemetries GenericServiceTelemetry[]
Configuration for how to query telemetry on a Service. Structure is documented below.
userLabels {[key: string]: string}
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
basic_service Changes to this property will trigger replacement. GenericServiceBasicServiceArgs
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
display_name str
Name used for UI elements listing this Service.
name str
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
service_id Changes to this property will trigger replacement. str
An optional service ID to use. If not given, the server will generate a service ID.


telemetries Sequence[GenericServiceTelemetryArgs]
Configuration for how to query telemetry on a Service. Structure is documented below.
user_labels Mapping[str, str]
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.
basicService Changes to this property will trigger replacement. Property Map
A well-known service type, defined by its service type and service labels. Valid values of service types and services labels are described at https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli Structure is documented below.
displayName String
Name used for UI elements listing this Service.
name String
The full resource name for this service. The syntax is: projects/[PROJECT_ID]/services/[SERVICE_ID].
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
serviceId Changes to this property will trigger replacement. String
An optional service ID to use. If not given, the server will generate a service ID.


telemetries List<Property Map>
Configuration for how to query telemetry on a Service. Structure is documented below.
userLabels Map<String>
Labels which have been used to annotate the service. Label keys must start with a letter. Label keys and values may contain lowercase letters, numbers, underscores, and dashes. Label keys and values have a maximum length of 63 characters, and must be less than 128 bytes in size. Up to 64 label entries may be stored. For labels which do not have a semantic value, the empty string may be supplied for the label value.

Supporting Types

GenericServiceBasicService
, GenericServiceBasicServiceArgs

ServiceLabels Changes to this property will trigger replacement. Dictionary<string, string>
Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service.
ServiceType string
The type of service that this basic service defines, e.g. APP_ENGINE service type
ServiceLabels Changes to this property will trigger replacement. map[string]string
Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service.
ServiceType string
The type of service that this basic service defines, e.g. APP_ENGINE service type
serviceLabels Changes to this property will trigger replacement. Map<String,String>
Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service.
serviceType String
The type of service that this basic service defines, e.g. APP_ENGINE service type
serviceLabels Changes to this property will trigger replacement. {[key: string]: string}
Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service.
serviceType string
The type of service that this basic service defines, e.g. APP_ENGINE service type
service_labels Changes to this property will trigger replacement. Mapping[str, str]
Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service.
service_type str
The type of service that this basic service defines, e.g. APP_ENGINE service type
serviceLabels Changes to this property will trigger replacement. Map<String>
Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service.
serviceType String
The type of service that this basic service defines, e.g. APP_ENGINE service type

GenericServiceTelemetry
, GenericServiceTelemetryArgs

ResourceName string
The full name of the resource that defines this service. Formatted as described in https://cloud.google.com/apis/design/resource_names.
ResourceName string
The full name of the resource that defines this service. Formatted as described in https://cloud.google.com/apis/design/resource_names.
resourceName String
The full name of the resource that defines this service. Formatted as described in https://cloud.google.com/apis/design/resource_names.
resourceName string
The full name of the resource that defines this service. Formatted as described in https://cloud.google.com/apis/design/resource_names.
resource_name str
The full name of the resource that defines this service. Formatted as described in https://cloud.google.com/apis/design/resource_names.
resourceName String
The full name of the resource that defines this service. Formatted as described in https://cloud.google.com/apis/design/resource_names.

Import

GenericService can be imported using any of these accepted formats:

  • projects/{{project}}/services/{{service_id}}

  • {{project}}/{{service_id}}

  • {{service_id}}

When using the pulumi import command, GenericService can be imported using one of the formats above. For example:

$ pulumi import gcp:monitoring/genericService:GenericService default projects/{{project}}/services/{{service_id}}
Copy
$ pulumi import gcp:monitoring/genericService:GenericService default {{project}}/{{service_id}}
Copy
$ pulumi import gcp:monitoring/genericService:GenericService default {{service_id}}
Copy

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

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.