com.pulumi.cloudflare.kotlin.HostnameTlsSettingArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-kotlin Show documentation
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.HostnameTlsSettingArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Provides a Cloudflare per-hostname TLS setting resource. Used to set TLS settings 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.HostnameTlsSetting("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* hostname: "sub.example.com",
* setting: "min_tls_version",
* value: "1.2",
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.HostnameTlsSetting("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* hostname="sub.example.com",
* setting="min_tls_version",
* value="1.2")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.HostnameTlsSetting("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* Hostname = "sub.example.com",
* Setting = "min_tls_version",
* Value = "1.2",
* });
* });
* ```
* ```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.NewHostnameTlsSetting(ctx, "example", &cloudflare.HostnameTlsSettingArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* Hostname: pulumi.String("sub.example.com"),
* Setting: pulumi.String("min_tls_version"),
* Value: pulumi.String("1.2"),
* })
* 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.HostnameTlsSetting;
* import com.pulumi.cloudflare.HostnameTlsSettingArgs;
* 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 HostnameTlsSetting("example", HostnameTlsSettingArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .hostname("sub.example.com")
* .setting("min_tls_version")
* .value("1.2")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:HostnameTlsSetting
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* hostname: sub.example.com
* setting: min_tls_version
* value: '1.2'
* ```
*
* ## Import
* ```sh
* $ pulumi import cloudflare:index/hostnameTlsSetting:HostnameTlsSetting example //
* ```
* @property hostname Hostname that belongs to this zone name. **Modifying this attribute will force creation of a new resource.**
* @property setting TLS setting name. **Modifying this attribute will force creation of a new resource.**
* @property value TLS setting value.
* @property zoneId The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
public data class HostnameTlsSettingArgs(
public val hostname: Output? = null,
public val setting: Output? = null,
public val `value`: Output? = null,
public val zoneId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.HostnameTlsSettingArgs =
com.pulumi.cloudflare.HostnameTlsSettingArgs.builder()
.hostname(hostname?.applyValue({ args0 -> args0 }))
.setting(setting?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 }))
.zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HostnameTlsSettingArgs].
*/
@PulumiTagMarker
public class HostnameTlsSettingArgsBuilder internal constructor() {
private var hostname: Output? = null
private var setting: Output? = null
private var `value`: 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("fieduqfkjadrxpnm")
public suspend fun hostname(`value`: Output) {
this.hostname = value
}
/**
* @param value TLS setting name. **Modifying this attribute will force creation of a new resource.**
*/
@JvmName("tkehgcwnknpdrinv")
public suspend fun setting(`value`: Output) {
this.setting = value
}
/**
* @param value TLS setting value.
*/
@JvmName("kefwqxbqcrrnkkux")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
@JvmName("sokojotcabdqnftg")
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("owcapqxukmehwinh")
public suspend fun hostname(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.hostname = mapped
}
/**
* @param value TLS setting name. **Modifying this attribute will force creation of a new resource.**
*/
@JvmName("uxceuwuqdpakxocd")
public suspend fun setting(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.setting = mapped
}
/**
* @param value TLS setting value.
*/
@JvmName("mhcxdtodjecpgdhy")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
/**
* @param value The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
@JvmName("qdndhdpugtcnvnct")
public suspend fun zoneId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.zoneId = mapped
}
internal fun build(): HostnameTlsSettingArgs = HostnameTlsSettingArgs(
hostname = hostname,
setting = setting,
`value` = `value`,
zoneId = zoneId,
)
}