com.pulumi.cloudflare.kotlin.CustomPagesArgs.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.CustomPagesArgs.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 resource which manages Cloudflare custom error pages.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const example = new cloudflare.CustomPages("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* type: "basic_challenge",
* url: "https://example.com/challenge.html",
* state: "customized",
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.CustomPages("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* type="basic_challenge",
* url="https://example.com/challenge.html",
* state="customized")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.CustomPages("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* Type = "basic_challenge",
* Url = "https://example.com/challenge.html",
* State = "customized",
* });
* });
* ```
* ```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.NewCustomPages(ctx, "example", &cloudflare.CustomPagesArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* Type: pulumi.String("basic_challenge"),
* Url: pulumi.String("https://example.com/challenge.html"),
* State: pulumi.String("customized"),
* })
* 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.CustomPages;
* import com.pulumi.cloudflare.CustomPagesArgs;
* 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 CustomPages("example", CustomPagesArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .type("basic_challenge")
* .url("https://example.com/challenge.html")
* .state("customized")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:CustomPages
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* type: basic_challenge
* url: https://example.com/challenge.html
* state: customized
* ```
*
* ## Import
* ```sh
* $ pulumi import cloudflare:index/customPages:CustomPages example //
* ```
* @property accountId The account identifier to target for the resource. Conflicts with `zone_id`.
* @property state Managed state of the custom page. Available values: `default`, `customized`.
* @property type The type of custom page you wish to update. Available values: `basic_challenge`, `waf_challenge`, `waf_block`, `ratelimit_block`, `country_challenge`, `ip_block`, `under_attack`, `500_errors`, `1000_errors`, `managed_challenge`.
* @property url URL of where the custom page source is located.
* @property zoneId The zone identifier to target for the resource. Conflicts with `account_id`.
*/
public data class CustomPagesArgs(
public val accountId: Output? = null,
public val state: Output? = null,
public val type: Output? = null,
public val url: Output? = null,
public val zoneId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.CustomPagesArgs =
com.pulumi.cloudflare.CustomPagesArgs.builder()
.accountId(accountId?.applyValue({ args0 -> args0 }))
.state(state?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 }))
.url(url?.applyValue({ args0 -> args0 }))
.zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CustomPagesArgs].
*/
@PulumiTagMarker
public class CustomPagesArgsBuilder internal constructor() {
private var accountId: Output? = null
private var state: Output? = null
private var type: Output? = null
private var url: Output? = null
private var zoneId: Output? = null
/**
* @param value The account identifier to target for the resource. Conflicts with `zone_id`.
*/
@JvmName("auvahbvjodrcdpvv")
public suspend fun accountId(`value`: Output) {
this.accountId = value
}
/**
* @param value Managed state of the custom page. Available values: `default`, `customized`.
*/
@JvmName("qwrdgcnbqdjbpjht")
public suspend fun state(`value`: Output) {
this.state = value
}
/**
* @param value The type of custom page you wish to update. Available values: `basic_challenge`, `waf_challenge`, `waf_block`, `ratelimit_block`, `country_challenge`, `ip_block`, `under_attack`, `500_errors`, `1000_errors`, `managed_challenge`.
*/
@JvmName("qdkriraptffrbood")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value URL of where the custom page source is located.
*/
@JvmName("nfpnqovioyfakkcb")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The zone identifier to target for the resource. Conflicts with `account_id`.
*/
@JvmName("ehgdhjhmwhxrvofg")
public suspend fun zoneId(`value`: Output) {
this.zoneId = value
}
/**
* @param value The account identifier to target for the resource. Conflicts with `zone_id`.
*/
@JvmName("rpyjddxfnbiodbij")
public suspend fun accountId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.accountId = mapped
}
/**
* @param value Managed state of the custom page. Available values: `default`, `customized`.
*/
@JvmName("xbysxgaigcyevply")
public suspend fun state(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.state = mapped
}
/**
* @param value The type of custom page you wish to update. Available values: `basic_challenge`, `waf_challenge`, `waf_block`, `ratelimit_block`, `country_challenge`, `ip_block`, `under_attack`, `500_errors`, `1000_errors`, `managed_challenge`.
*/
@JvmName("afxpbhsrdtramddt")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
/**
* @param value URL of where the custom page source is located.
*/
@JvmName("elawgkffpfhdlndr")
public suspend fun url(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.url = mapped
}
/**
* @param value The zone identifier to target for the resource. Conflicts with `account_id`.
*/
@JvmName("wlmchlhnpnekwnay")
public suspend fun zoneId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.zoneId = mapped
}
internal fun build(): CustomPagesArgs = CustomPagesArgs(
accountId = accountId,
state = state,
type = type,
url = url,
zoneId = zoneId,
)
}