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

com.pulumi.cloudflare.kotlin.HostnameTlsSettingCiphersArgs.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin

import com.pulumi.cloudflare.HostnameTlsSettingCiphersArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * Provides a Cloudflare per-hostname TLS setting resource, specifically for ciphers suites. Used to set ciphers suites for hostnames under the specified zone.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.HostnameTlsSettingCiphers("example", {
 *     zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
 *     hostname: "sub.example.com",
 *     values: ["ECDHE-RSA-AES128-GCM-SHA256"],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.HostnameTlsSettingCiphers("example",
 *     zone_id="0da42c8d2132a9ddaf714f9e7c920711",
 *     hostname="sub.example.com",
 *     values=["ECDHE-RSA-AES128-GCM-SHA256"])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.HostnameTlsSettingCiphers("example", new()
 *     {
 *         ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
 *         Hostname = "sub.example.com",
 *         Values = new[]
 *         {
 *             "ECDHE-RSA-AES128-GCM-SHA256",
 *         },
 *     });
 * });
 * ```
 * ```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.NewHostnameTlsSettingCiphers(ctx, "example", &cloudflare.HostnameTlsSettingCiphersArgs{
 * 			ZoneId:   pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			Hostname: pulumi.String("sub.example.com"),
 * 			Values: pulumi.StringArray{
 * 				pulumi.String("ECDHE-RSA-AES128-GCM-SHA256"),
 * 			},
 * 		})
 * 		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.HostnameTlsSettingCiphers;
 * import com.pulumi.cloudflare.HostnameTlsSettingCiphersArgs;
 * 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 HostnameTlsSettingCiphers("example", HostnameTlsSettingCiphersArgs.builder()
 *             .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
 *             .hostname("sub.example.com")
 *             .values("ECDHE-RSA-AES128-GCM-SHA256")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:HostnameTlsSettingCiphers
 *     properties:
 *       zoneId: 0da42c8d2132a9ddaf714f9e7c920711
 *       hostname: sub.example.com
 *       values:
 *         - ECDHE-RSA-AES128-GCM-SHA256
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/hostnameTlsSettingCiphers:HostnameTlsSettingCiphers example /
 * ```
 * @property hostname Hostname that belongs to this zone name. **Modifying this attribute will force creation of a new resource.**
 * @property ports Ports to use within the IP rule.
 * @property values Ciphers suites value.
 * @property zoneId The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
 */
public data class HostnameTlsSettingCiphersArgs(
    public val hostname: Output? = null,
    public val ports: Output>? = null,
    public val values: Output>? = null,
    public val zoneId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.HostnameTlsSettingCiphersArgs =
        com.pulumi.cloudflare.HostnameTlsSettingCiphersArgs.builder()
            .hostname(hostname?.applyValue({ args0 -> args0 }))
            .ports(ports?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .values(values?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [HostnameTlsSettingCiphersArgs].
 */
@PulumiTagMarker
public class HostnameTlsSettingCiphersArgsBuilder internal constructor() {
    private var hostname: Output? = null

    private var ports: Output>? = null

    private var values: Output>? = null

    private var zoneId: Output? = null

    /**
     * @param value Hostname that belongs to this zone name. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("qtjwrfllqtbiskjw")
    public suspend fun hostname(`value`: Output) {
        this.hostname = value
    }

    /**
     * @param value Ports to use within the IP rule.
     */
    @JvmName("fbkhdtwytqrgcxmi")
    public suspend fun ports(`value`: Output>) {
        this.ports = value
    }

    @JvmName("fijtrbrnjcsvaydw")
    public suspend fun ports(vararg values: Output) {
        this.ports = Output.all(values.asList())
    }

    /**
     * @param values Ports to use within the IP rule.
     */
    @JvmName("fygdqbmtpnywvdfh")
    public suspend fun ports(values: List>) {
        this.ports = Output.all(values)
    }

    /**
     * @param value Ciphers suites value.
     */
    @JvmName("gafflmsneopwpxoq")
    public suspend fun values(`value`: Output>) {
        this.values = value
    }

    @JvmName("yvdrqfymlcbcwcyt")
    public suspend fun values(vararg values: Output) {
        this.values = Output.all(values.asList())
    }

    /**
     * @param values Ciphers suites value.
     */
    @JvmName("uqwdkdroukthieqq")
    public suspend fun values(values: List>) {
        this.values = Output.all(values)
    }

    /**
     * @param value The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("cvveoegtpkthrkso")
    public suspend fun zoneId(`value`: Output) {
        this.zoneId = value
    }

    /**
     * @param value Hostname that belongs to this zone name. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("mvbnmskrbakphjus")
    public suspend fun hostname(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.hostname = mapped
    }

    /**
     * @param value Ports to use within the IP rule.
     */
    @JvmName("kaeurbfvpoljuufp")
    public suspend fun ports(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ports = mapped
    }

    /**
     * @param values Ports to use within the IP rule.
     */
    @JvmName("pqiyqrsalfajlwgm")
    public suspend fun ports(vararg values: Int) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.ports = mapped
    }

    /**
     * @param value Ciphers suites value.
     */
    @JvmName("cgjseidndegrhgpi")
    public suspend fun values(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.values = mapped
    }

    /**
     * @param values Ciphers suites value.
     */
    @JvmName("pxefnptqaskmjlmn")
    public suspend fun values(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.values = mapped
    }

    /**
     * @param value The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("hhknpvvbnjkbandt")
    public suspend fun zoneId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zoneId = mapped
    }

    internal fun build(): HostnameTlsSettingCiphersArgs = HostnameTlsSettingCiphersArgs(
        hostname = hostname,
        ports = ports,
        values = values,
        zoneId = zoneId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy