Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.projects.kotlin
import com.pulumi.core.Output
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
/**
* Builder for [Service].
*/
@PulumiTagMarker
public class ServiceResourceBuilder internal constructor() {
public var name: String? = null
public var args: ServiceArgs = ServiceArgs()
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 ServiceArgsBuilder.() -> Unit) {
val builder = ServiceArgsBuilder()
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(): Service {
val builtJavaResource = com.pulumi.gcp.projects.Service(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Service(builtJavaResource)
}
}
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const project = new gcp.projects.Service("project", {
* project: "your-project-id",
* service: "iam.googleapis.com",
* disableOnDestroy: false,
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* project = gcp.projects.Service("project",
* project="your-project-id",
* service="iam.googleapis.com",
* disable_on_destroy=False)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var project = new Gcp.Projects.Service("project", new()
* {
* Project = "your-project-id",
* ServiceName = "iam.googleapis.com",
* DisableOnDestroy = false,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := projects.NewService(ctx, "project", &projects.ServiceArgs{
* Project: pulumi.String("your-project-id"),
* Service: pulumi.String("iam.googleapis.com"),
* DisableOnDestroy: pulumi.Bool(false),
* })
* 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.projects.Service;
* import com.pulumi.gcp.projects.ServiceArgs;
* 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 project = new Service("project", ServiceArgs.builder()
* .project("your-project-id")
* .service("iam.googleapis.com")
* .disableOnDestroy(false)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* project:
* type: gcp:projects:Service
* properties:
* project: your-project-id
* service: iam.googleapis.com
* disableOnDestroy: false
* ```
*
* ## Import
* Project services can be imported using the `project_id` and `service`, e.g.
* * `{{project_id}}/{{service}}`
* When using the `pulumi import` command, project services can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:projects/service:Service default {{project_id}}/{{service}}
* ```
* Note that unlike other resources that fail if they already exist,
* `pulumi up` can be successfully used to verify already enabled services.
* This means that when importing existing resources into Terraform, you can either
* import the `google_project_service` resources or treat them as new
* infrastructure and run `pulumi up` to add them to state.
*/
public class Service internal constructor(
override val javaResource: com.pulumi.gcp.projects.Service,
) : KotlinCustomResource(javaResource, ServiceMapper) {
/**
* Beta
* If `true`, the usage of the service to be disabled will be checked and an error
* will be returned if the service to be disabled has usage in last 30 days.
* Defaults to `false`.
*/
public val checkIfServiceHasUsageOnDestroy: Output?
get() = javaResource.checkIfServiceHasUsageOnDestroy().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* If `true`, services that are enabled
* and which depend on this service should also be disabled when this service is
* destroyed. If `false` or unset, an error will be generated if any enabled
* services depend on this service when destroying it.
*/
public val disableDependentServices: Output?
get() = javaResource.disableDependentServices().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
public val disableOnDestroy: Output?
get() = javaResource.disableOnDestroy().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The project ID. If not provided, the provider project
* is used.
*/
public val project: Output
get() = javaResource.project().applyValue({ args0 -> args0 })
/**
* The service to enable.
*/
public val service: Output
get() = javaResource.service().applyValue({ args0 -> args0 })
}
public object ServiceMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.gcp.projects.Service::class == javaResource::class
override fun map(javaResource: Resource): Service = Service(
javaResource as
com.pulumi.gcp.projects.Service,
)
}
/**
* @see [Service].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Service].
*/
public suspend fun service(name: String, block: suspend ServiceResourceBuilder.() -> Unit): Service {
val builder = ServiceResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Service].
* @param name The _unique_ name of the resulting resource.
*/
public fun service(name: String): Service {
val builder = ServiceResourceBuilder()
builder.name(name)
return builder.build()
}