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

com.pulumi.cloudflare.kotlin.WaitingRoomRulesArgs.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.47.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin

import com.pulumi.cloudflare.WaitingRoomRulesArgs.builder
import com.pulumi.cloudflare.kotlin.inputs.WaitingRoomRulesRuleArgs
import com.pulumi.cloudflare.kotlin.inputs.WaitingRoomRulesRuleArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * Provides a Cloudflare Waiting Room Rules resource.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.WaitingRoomRules("example", {
 *     zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
 *     waitingRoomId: "d41d8cd98f00b204e9800998ecf8427e",
 *     rules: [
 *         {
 *             description: "bypass ip list",
 *             expression: "src.ip in {192.0.2.0 192.0.2.1}",
 *             action: "bypass_waiting_room",
 *             status: "enabled",
 *         },
 *         {
 *             description: "bypass query string",
 *             expression: "http.request.uri.query contains \"bypass=true\"",
 *             action: "bypass_waiting_room",
 *             status: "enabled",
 *         },
 *     ],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.WaitingRoomRules("example",
 *     zone_id="0da42c8d2132a9ddaf714f9e7c920711",
 *     waiting_room_id="d41d8cd98f00b204e9800998ecf8427e",
 *     rules=[
 *         {
 *             "description": "bypass ip list",
 *             "expression": "src.ip in {192.0.2.0 192.0.2.1}",
 *             "action": "bypass_waiting_room",
 *             "status": "enabled",
 *         },
 *         {
 *             "description": "bypass query string",
 *             "expression": "http.request.uri.query contains \"bypass=true\"",
 *             "action": "bypass_waiting_room",
 *             "status": "enabled",
 *         },
 *     ])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.WaitingRoomRules("example", new()
 *     {
 *         ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
 *         WaitingRoomId = "d41d8cd98f00b204e9800998ecf8427e",
 *         Rules = new[]
 *         {
 *             new Cloudflare.Inputs.WaitingRoomRulesRuleArgs
 *             {
 *                 Description = "bypass ip list",
 *                 Expression = "src.ip in {192.0.2.0 192.0.2.1}",
 *                 Action = "bypass_waiting_room",
 *                 Status = "enabled",
 *             },
 *             new Cloudflare.Inputs.WaitingRoomRulesRuleArgs
 *             {
 *                 Description = "bypass query string",
 *                 Expression = "http.request.uri.query contains \"bypass=true\"",
 *                 Action = "bypass_waiting_room",
 *                 Status = "enabled",
 *             },
 *         },
 *     });
 * });
 * ```
 * ```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.NewWaitingRoomRules(ctx, "example", &cloudflare.WaitingRoomRulesArgs{
 * 			ZoneId:        pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			WaitingRoomId: pulumi.String("d41d8cd98f00b204e9800998ecf8427e"),
 * 			Rules: cloudflare.WaitingRoomRulesRuleArray{
 * 				&cloudflare.WaitingRoomRulesRuleArgs{
 * 					Description: pulumi.String("bypass ip list"),
 * 					Expression:  pulumi.String("src.ip in {192.0.2.0 192.0.2.1}"),
 * 					Action:      pulumi.String("bypass_waiting_room"),
 * 					Status:      pulumi.String("enabled"),
 * 				},
 * 				&cloudflare.WaitingRoomRulesRuleArgs{
 * 					Description: pulumi.String("bypass query string"),
 * 					Expression:  pulumi.String("http.request.uri.query contains \"bypass=true\""),
 * 					Action:      pulumi.String("bypass_waiting_room"),
 * 					Status:      pulumi.String("enabled"),
 * 				},
 * 			},
 * 		})
 * 		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.WaitingRoomRules;
 * import com.pulumi.cloudflare.WaitingRoomRulesArgs;
 * import com.pulumi.cloudflare.inputs.WaitingRoomRulesRuleArgs;
 * 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 WaitingRoomRules("example", WaitingRoomRulesArgs.builder()
 *             .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
 *             .waitingRoomId("d41d8cd98f00b204e9800998ecf8427e")
 *             .rules(
 *                 WaitingRoomRulesRuleArgs.builder()
 *                     .description("bypass ip list")
 *                     .expression("src.ip in {192.0.2.0 192.0.2.1}")
 *                     .action("bypass_waiting_room")
 *                     .status("enabled")
 *                     .build(),
 *                 WaitingRoomRulesRuleArgs.builder()
 *                     .description("bypass query string")
 *                     .expression("http.request.uri.query contains \"bypass=true\"")
 *                     .action("bypass_waiting_room")
 *                     .status("enabled")
 *                     .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:WaitingRoomRules
 *     properties:
 *       zoneId: 0da42c8d2132a9ddaf714f9e7c920711
 *       waitingRoomId: d41d8cd98f00b204e9800998ecf8427e
 *       rules:
 *         - description: bypass ip list
 *           expression: src.ip in {192.0.2.0 192.0.2.1}
 *           action: bypass_waiting_room
 *           status: enabled
 *         - description: bypass query string
 *           expression: http.request.uri.query contains "bypass=true"
 *           action: bypass_waiting_room
 *           status: enabled
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/waitingRoomRules:WaitingRoomRules default /
 * ```
 * @property rules List of rules to apply to the ruleset.
 * @property waitingRoomId The Waiting Room ID the rules should apply to. **Modifying this attribute will force creation of a new resource.**
 * @property zoneId The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
 */
public data class WaitingRoomRulesArgs(
    public val rules: Output>? = null,
    public val waitingRoomId: Output? = null,
    public val zoneId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.WaitingRoomRulesArgs =
        com.pulumi.cloudflare.WaitingRoomRulesArgs.builder()
            .rules(rules?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .waitingRoomId(waitingRoomId?.applyValue({ args0 -> args0 }))
            .zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [WaitingRoomRulesArgs].
 */
@PulumiTagMarker
public class WaitingRoomRulesArgsBuilder internal constructor() {
    private var rules: Output>? = null

    private var waitingRoomId: Output? = null

    private var zoneId: Output? = null

    /**
     * @param value List of rules to apply to the ruleset.
     */
    @JvmName("opujucunlhgbncep")
    public suspend fun rules(`value`: Output>) {
        this.rules = value
    }

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

    /**
     * @param values List of rules to apply to the ruleset.
     */
    @JvmName("xsbkdahyycoqrxuq")
    public suspend fun rules(values: List>) {
        this.rules = Output.all(values)
    }

    /**
     * @param value The Waiting Room ID the rules should apply to. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("dxfjfmnyqhqormal")
    public suspend fun waitingRoomId(`value`: Output) {
        this.waitingRoomId = value
    }

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

    /**
     * @param value List of rules to apply to the ruleset.
     */
    @JvmName("dsnrngiwivoxvqaj")
    public suspend fun rules(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.rules = mapped
    }

    /**
     * @param argument List of rules to apply to the ruleset.
     */
    @JvmName("vrvkcjkxvgyuhixg")
    public suspend fun rules(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            WaitingRoomRulesRuleArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param argument List of rules to apply to the ruleset.
     */
    @JvmName("blmpihscmljueivn")
    public suspend fun rules(vararg argument: suspend WaitingRoomRulesRuleArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            WaitingRoomRulesRuleArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param argument List of rules to apply to the ruleset.
     */
    @JvmName("jukiaiuaexhtfirf")
    public suspend fun rules(argument: suspend WaitingRoomRulesRuleArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(WaitingRoomRulesRuleArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.rules = mapped
    }

    /**
     * @param values List of rules to apply to the ruleset.
     */
    @JvmName("gcsduybmfgsqranp")
    public suspend fun rules(vararg values: WaitingRoomRulesRuleArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.rules = mapped
    }

    /**
     * @param value The Waiting Room ID the rules should apply to. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("mhnjosfvajxhswyq")
    public suspend fun waitingRoomId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.waitingRoomId = mapped
    }

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

    internal fun build(): WaitingRoomRulesArgs = WaitingRoomRulesArgs(
        rules = rules,
        waitingRoomId = waitingRoomId,
        zoneId = zoneId,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy