ServiceArgs

data class ServiceArgs(val metadata: Output<Map<String, String>>? = null, val namespace: Output<String>? = null, val serviceId: Output<String>? = null) : ConvertibleToJava<ServiceArgs>

An individual service. A service contains a name and optional metadata. To get more information about Service, see:

Example Usage

Service Directory Service Basic

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.servicedirectory.Namespace;
import com.pulumi.gcp.servicedirectory.NamespaceArgs;
import com.pulumi.gcp.servicedirectory.Service;
import com.pulumi.gcp.servicedirectory.ServiceArgs;
import com.pulumi.resources.CustomResourceOptions;
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 exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
.namespaceId("example-namespace")
.location("us-central1")
.build(), CustomResourceOptions.builder()
.provider(google_beta)
.build());
var exampleService = new Service("exampleService", ServiceArgs.builder()
.serviceId("example-service")
.namespace(exampleNamespace.id())
.metadata(Map.ofEntries(
Map.entry("stage", "prod"),
Map.entry("region", "us-central1")
))
.build(), CustomResourceOptions.builder()
.provider(google_beta)
.build());
}
}

Import

Service can be imported using any of these accepted formats

$ pulumi import gcp:servicedirectory/service:Service default projects/{{project}}/locations/{{location}}/namespaces/{{namespace_id}}/services/{{service_id}}
$ pulumi import gcp:servicedirectory/service:Service default {{project}}/{{location}}/{{namespace_id}}/{{service_id}}
$ pulumi import gcp:servicedirectory/service:Service default {{location}}/{{namespace_id}}/{{service_id}}

Constructors

Link copied to clipboard
constructor(metadata: Output<Map<String, String>>? = null, namespace: Output<String>? = null, serviceId: Output<String>? = null)

Properties

Link copied to clipboard
val metadata: Output<Map<String, String>>? = null

Metadata for the service. This data can be consumed by service clients. The entire metadata dictionary may contain up to 2000 characters, spread across all key-value pairs. Metadata that goes beyond any these limits will be rejected.

Link copied to clipboard
val namespace: Output<String>? = null

The resource name of the namespace this service will belong to.

Link copied to clipboard
val serviceId: Output<String>? = null

The Resource ID must be 1-63 characters long, including digits, lowercase letters or the hyphen character.

Functions

Link copied to clipboard
open override fun toJava(): ServiceArgs