com.pulumi.cloudflare.kotlin.UrlNormalizationSettingsArgs.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.UrlNormalizationSettingsArgs.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 to manage URL Normalization Settings.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const example = new cloudflare.UrlNormalizationSettings("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* type: "cloudflare",
* scope: "incoming",
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.UrlNormalizationSettings("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* type="cloudflare",
* scope="incoming")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.UrlNormalizationSettings("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* Type = "cloudflare",
* Scope = "incoming",
* });
* });
* ```
* ```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.NewUrlNormalizationSettings(ctx, "example", &cloudflare.UrlNormalizationSettingsArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* Type: pulumi.String("cloudflare"),
* Scope: pulumi.String("incoming"),
* })
* 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.UrlNormalizationSettings;
* import com.pulumi.cloudflare.UrlNormalizationSettingsArgs;
* 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 UrlNormalizationSettings("example", UrlNormalizationSettingsArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .type("cloudflare")
* .scope("incoming")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:UrlNormalizationSettings
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* type: cloudflare
* scope: incoming
* ```
*
* @property scope The scope of the URL normalization.
* @property type The type of URL normalization performed by Cloudflare.
* @property zoneId The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
public data class UrlNormalizationSettingsArgs(
public val scope: Output? = null,
public val type: Output? = null,
public val zoneId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.UrlNormalizationSettingsArgs =
com.pulumi.cloudflare.UrlNormalizationSettingsArgs.builder()
.scope(scope?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 }))
.zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [UrlNormalizationSettingsArgs].
*/
@PulumiTagMarker
public class UrlNormalizationSettingsArgsBuilder internal constructor() {
private var scope: Output? = null
private var type: Output? = null
private var zoneId: Output? = null
/**
* @param value The scope of the URL normalization.
*/
@JvmName("ancgmsmyqblerrdj")
public suspend fun scope(`value`: Output) {
this.scope = value
}
/**
* @param value The type of URL normalization performed by Cloudflare.
*/
@JvmName("ybtyhqxracnmdfty")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
@JvmName("cmhadlbforoiicuw")
public suspend fun zoneId(`value`: Output) {
this.zoneId = value
}
/**
* @param value The scope of the URL normalization.
*/
@JvmName("dqagnosypoxsdaoa")
public suspend fun scope(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.scope = mapped
}
/**
* @param value The type of URL normalization performed by Cloudflare.
*/
@JvmName("gijemgjtqftktfuv")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
/**
* @param value The zone identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
*/
@JvmName("pcylxuwffvixtvdt")
public suspend fun zoneId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.zoneId = mapped
}
internal fun build(): UrlNormalizationSettingsArgs = UrlNormalizationSettingsArgs(
scope = scope,
type = type,
zoneId = zoneId,
)
}