All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.monitoring.kotlin.GenericService.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.monitoring.kotlin

import com.pulumi.core.Output
import com.pulumi.gcp.monitoring.kotlin.outputs.GenericServiceBasicService
import com.pulumi.gcp.monitoring.kotlin.outputs.GenericServiceTelemetry
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import com.pulumi.gcp.monitoring.kotlin.outputs.GenericServiceBasicService.Companion.toKotlin as genericServiceBasicServiceToKotlin
import com.pulumi.gcp.monitoring.kotlin.outputs.GenericServiceTelemetry.Companion.toKotlin as genericServiceTelemetryToKotlin

/**
 * Builder for [GenericService].
 */
@PulumiTagMarker
public class GenericServiceResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: GenericServiceArgs = GenericServiceArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend GenericServiceArgsBuilder.() -> Unit) {
        val builder = GenericServiceArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): GenericService {
        val builtJavaResource = com.pulumi.gcp.monitoring.GenericService(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return GenericService(builtJavaResource)
    }
}

/**
 * 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:
 * * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services)
 * * How-to Guides
 *     * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
 *     * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
 *     * [Service-orientation on Wikipedia](https://en.wikipedia.org/wiki/Service-orientation)
 * ## Example Usage
 * ### Monitoring Service Example
 * 
 * ```typescript
 * 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",
 *         },
 *     },
 * });
 * ```
 * ```python
 * 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",
 *         },
 *     })
 * ```
 * ```csharp
 * 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" },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/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
 * 	})
 * }
 * ```
 * ```java
 * 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());
 *     }
 * }
 * ```
 * ```yaml
 * 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
 * ```
 * 
 * ## 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:
 * ```sh
 * $ pulumi import gcp:monitoring/genericService:GenericService default projects/{{project}}/services/{{service_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:monitoring/genericService:GenericService default {{project}}/{{service_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:monitoring/genericService:GenericService default {{service_id}}
 * ```
 */
public class GenericService internal constructor(
    override val javaResource: com.pulumi.gcp.monitoring.GenericService,
) : KotlinCustomResource(javaResource, GenericServiceMapper) {
    /**
     * 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.
     */
    public val basicService: Output?
        get() = javaResource.basicService().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    genericServiceBasicServiceToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * Name used for UI elements listing this Service.
     */
    public val displayName: Output?
        get() = javaResource.displayName().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The full resource name for this service. The syntax is:
     * projects/[PROJECT_ID]/services/[SERVICE_ID].
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    public val project: Output
        get() = javaResource.project().applyValue({ args0 -> args0 })

    /**
     * An optional service ID to use. If not given, the server will generate a
     * service ID.
     * - - -
     */
    public val serviceId: Output
        get() = javaResource.serviceId().applyValue({ args0 -> args0 })

    /**
     * Configuration for how to query telemetry on a Service.
     * Structure is documented below.
     */
    public val telemetries: Output>
        get() = javaResource.telemetries().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    genericServiceTelemetryToKotlin(args0)
                })
            })
        })

    /**
     * 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.
     */
    public val userLabels: Output>?
        get() = javaResource.userLabels().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })
}

public object GenericServiceMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.gcp.monitoring.GenericService::class == javaResource::class

    override fun map(javaResource: Resource): GenericService = GenericService(
        javaResource as
            com.pulumi.gcp.monitoring.GenericService,
    )
}

/**
 * @see [GenericService].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [GenericService].
 */
public suspend fun genericService(
    name: String,
    block: suspend GenericServiceResourceBuilder.() -> Unit,
): GenericService {
    val builder = GenericServiceResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [GenericService].
 * @param name The _unique_ name of the resulting resource.
 */
public fun genericService(name: String): GenericService {
    val builder = GenericServiceResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy