![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.cloudflare.kotlin.HostnameTlsSettingCiphers.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.
@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
import kotlin.collections.List
/**
* Builder for [HostnameTlsSettingCiphers].
*/
@PulumiTagMarker
public class HostnameTlsSettingCiphersResourceBuilder internal constructor() {
public var name: String? = null
public var args: HostnameTlsSettingCiphersArgs = HostnameTlsSettingCiphersArgs()
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 HostnameTlsSettingCiphersArgsBuilder.() -> Unit) {
val builder = HostnameTlsSettingCiphersArgsBuilder()
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(): HostnameTlsSettingCiphers {
val builtJavaResource = com.pulumi.cloudflare.HostnameTlsSettingCiphers(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return HostnameTlsSettingCiphers(builtJavaResource)
}
}
/**
* 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 /
* ```
*/
public class HostnameTlsSettingCiphers internal constructor(
override val javaResource: com.pulumi.cloudflare.HostnameTlsSettingCiphers,
) : KotlinCustomResource(javaResource, HostnameTlsSettingCiphersMapper) {
public val createdAt: Output
get() = javaResource.createdAt().applyValue({ args0 -> args0 })
/**
* Hostname that belongs to this zone name. **Modifying this attribute will force creation of a new resource.**
*/
public val hostname: Output
get() = javaResource.hostname().applyValue({ args0 -> args0 })
/**
* Ports to use within the IP rule.
*/
public val ports: Output>?
get() = javaResource.ports().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0
})
}).orElse(null)
})
public val updatedAt: Output
get() = javaResource.updatedAt().applyValue({ args0 -> args0 })
/**
* Ciphers suites value.
*/
public val values: Output>
get() = javaResource.values().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
public val zoneId: Output
get() = javaResource.zoneId().applyValue({ args0 -> args0 })
}
public object HostnameTlsSettingCiphersMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.HostnameTlsSettingCiphers::class == javaResource::class
override fun map(javaResource: Resource): HostnameTlsSettingCiphers =
HostnameTlsSettingCiphers(javaResource as com.pulumi.cloudflare.HostnameTlsSettingCiphers)
}
/**
* @see [HostnameTlsSettingCiphers].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [HostnameTlsSettingCiphers].
*/
public suspend fun hostnameTlsSettingCiphers(
name: String,
block: suspend HostnameTlsSettingCiphersResourceBuilder.() -> Unit,
): HostnameTlsSettingCiphers {
val builder = HostnameTlsSettingCiphersResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [HostnameTlsSettingCiphers].
* @param name The _unique_ name of the resulting resource.
*/
public fun hostnameTlsSettingCiphers(name: String): HostnameTlsSettingCiphers {
val builder = HostnameTlsSettingCiphersResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy