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

com.pulumi.cloudflare.kotlin.KeylessCertificate.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 5.40.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit

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

    public var args: KeylessCertificateArgs = KeylessCertificateArgs()

    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 KeylessCertificateArgsBuilder.() -> Unit) {
        val builder = KeylessCertificateArgsBuilder()
        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(): KeylessCertificate {
        val builtJavaResource = com.pulumi.cloudflare.KeylessCertificate(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return KeylessCertificate(builtJavaResource)
    }
}

/**
 * Provides a resource, that manages Keyless certificates.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.KeylessCertificate("example", {
 *     zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
 *     bundleMethod: "ubiquitous",
 *     name: "example.com Keyless SSL",
 *     host: "example.com",
 *     port: 24008,
 *     enabled: true,
 *     certificate: "-----INSERT CERTIFICATE-----",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.KeylessCertificate("example",
 *     zone_id="0da42c8d2132a9ddaf714f9e7c920711",
 *     bundle_method="ubiquitous",
 *     name="example.com Keyless SSL",
 *     host="example.com",
 *     port=24008,
 *     enabled=True,
 *     certificate="-----INSERT CERTIFICATE-----")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.KeylessCertificate("example", new()
 *     {
 *         ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
 *         BundleMethod = "ubiquitous",
 *         Name = "example.com Keyless SSL",
 *         Host = "example.com",
 *         Port = 24008,
 *         Enabled = true,
 *         Certificate = "-----INSERT CERTIFICATE-----",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := cloudflare.NewKeylessCertificate(ctx, "example", &cloudflare.KeylessCertificateArgs{
 * 			ZoneId:       pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			BundleMethod: pulumi.String("ubiquitous"),
 * 			Name:         pulumi.String("example.com Keyless SSL"),
 * 			Host:         pulumi.String("example.com"),
 * 			Port:         pulumi.Int(24008),
 * 			Enabled:      pulumi.Bool(true),
 * 			Certificate:  pulumi.String("-----INSERT CERTIFICATE-----"),
 * 		})
 * 		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.cloudflare.KeylessCertificate;
 * import com.pulumi.cloudflare.KeylessCertificateArgs;
 * 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 example = new KeylessCertificate("example", KeylessCertificateArgs.builder()
 *             .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
 *             .bundleMethod("ubiquitous")
 *             .name("example.com Keyless SSL")
 *             .host("example.com")
 *             .port(24008)
 *             .enabled(true)
 *             .certificate("-----INSERT CERTIFICATE-----")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:KeylessCertificate
 *     properties:
 *       zoneId: 0da42c8d2132a9ddaf714f9e7c920711
 *       bundleMethod: ubiquitous
 *       name: example.com Keyless SSL
 *       host: example.com
 *       port: 24008
 *       enabled: true
 *       certificate: '-----INSERT CERTIFICATE-----'
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/keylessCertificate:KeylessCertificate example /
 * ```
 */
public class KeylessCertificate internal constructor(
    override val javaResource: com.pulumi.cloudflare.KeylessCertificate,
) : KotlinCustomResource(javaResource, KeylessCertificateMapper) {
    /**
     * A ubiquitous bundle has the highest probability of being verified everywhere, even by clients using outdated or unusual trust stores. An optimal bundle uses the shortest chain and newest intermediates. And the force bundle verifies the chain, but does not otherwise modify it. Available values: `ubiquitous`, `optimal`, `force`. Defaults to `ubiquitous`. **Modifying this attribute will force creation of a new resource.**
     */
    public val bundleMethod: Output?
        get() = javaResource.bundleMethod().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The zone's SSL certificate or SSL certificate and intermediate(s). **Modifying this attribute will force creation of a new resource.**
     */
    public val certificate: Output
        get() = javaResource.certificate().applyValue({ args0 -> args0 })

    /**
     * Whether the KeyLess SSL is on.
     */
    public val enabled: Output?
        get() = javaResource.enabled().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * The KeyLess SSL host.
     */
    public val host: Output
        get() = javaResource.host().applyValue({ args0 -> args0 })

    /**
     * The KeyLess SSL name.
     */
    public val name: Output?
        get() = javaResource.name().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * The KeyLess SSL port used to communicate between Cloudflare and the client's KeyLess SSL server. Defaults to `24008`.
     */
    public val port: Output?
        get() = javaResource.port().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * Status of the KeyLess SSL.
     */
    public val status: Output
        get() = javaResource.status().applyValue({ args0 -> args0 })

    /**
     * The zone identifier to target for the resource.
     */
    public val zoneId: Output
        get() = javaResource.zoneId().applyValue({ args0 -> args0 })
}

public object KeylessCertificateMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.cloudflare.KeylessCertificate::class == javaResource::class

    override fun map(javaResource: Resource): KeylessCertificate = KeylessCertificate(
        javaResource as
            com.pulumi.cloudflare.KeylessCertificate,
    )
}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy