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

com.pulumi.cloudflare.kotlin.ObservatoryScheduledTestArgs.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin

import com.pulumi.cloudflare.ObservatoryScheduledTestArgs.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 Observatory Scheduled Test resource.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.ObservatoryScheduledTest("example", {
 *     zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
 *     url: "example.com",
 *     region: "us-central1",
 *     frequency: "WEEKLY",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.ObservatoryScheduledTest("example",
 *     zone_id="0da42c8d2132a9ddaf714f9e7c920711",
 *     url="example.com",
 *     region="us-central1",
 *     frequency="WEEKLY")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.ObservatoryScheduledTest("example", new()
 *     {
 *         ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
 *         Url = "example.com",
 *         Region = "us-central1",
 *         Frequency = "WEEKLY",
 *     });
 * });
 * ```
 * ```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.NewObservatoryScheduledTest(ctx, "example", &cloudflare.ObservatoryScheduledTestArgs{
 * 			ZoneId:    pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			Url:       pulumi.String("example.com"),
 * 			Region:    pulumi.String("us-central1"),
 * 			Frequency: pulumi.String("WEEKLY"),
 * 		})
 * 		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.ObservatoryScheduledTest;
 * import com.pulumi.cloudflare.ObservatoryScheduledTestArgs;
 * 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 ObservatoryScheduledTest("example", ObservatoryScheduledTestArgs.builder()
 *             .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
 *             .url("example.com")
 *             .region("us-central1")
 *             .frequency("WEEKLY")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:ObservatoryScheduledTest
 *     properties:
 *       zoneId: 0da42c8d2132a9ddaf714f9e7c920711
 *       url: example.com
 *       region: us-central1
 *       frequency: WEEKLY
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/observatoryScheduledTest:ObservatoryScheduledTest example ::
 * ```
 * @property frequency The frequency to run the test. Available values: `DAILY`, `WEEKLY`. **Modifying this attribute will force creation of a new resource.**
 * @property region The region to run the test in. Available values: `us-central1`, `us-east1`, `us-east4`, `us-south1`, `us-west1`, `southamerica-east1`, `europe-north1`, `europe-southwest1`, `europe-west1`, `europe-west2`, `europe-west3`, `europe-west4`, `europe-west8`, `europe-west9`, `asia-east1`, `asia-south1`, `asia-southeast1`, `me-west1`, `australia-southeast1`. **Modifying this attribute will force creation of a new resource.**
 * @property url The page to run the test on. **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 ObservatoryScheduledTestArgs(
    public val frequency: Output? = null,
    public val region: Output? = null,
    public val url: Output? = null,
    public val zoneId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.ObservatoryScheduledTestArgs =
        com.pulumi.cloudflare.ObservatoryScheduledTestArgs.builder()
            .frequency(frequency?.applyValue({ args0 -> args0 }))
            .region(region?.applyValue({ args0 -> args0 }))
            .url(url?.applyValue({ args0 -> args0 }))
            .zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ObservatoryScheduledTestArgs].
 */
@PulumiTagMarker
public class ObservatoryScheduledTestArgsBuilder internal constructor() {
    private var frequency: Output? = null

    private var region: Output? = null

    private var url: Output? = null

    private var zoneId: Output? = null

    /**
     * @param value The frequency to run the test. Available values: `DAILY`, `WEEKLY`. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("svcnlhltsaorryus")
    public suspend fun frequency(`value`: Output) {
        this.frequency = value
    }

    /**
     * @param value The region to run the test in. Available values: `us-central1`, `us-east1`, `us-east4`, `us-south1`, `us-west1`, `southamerica-east1`, `europe-north1`, `europe-southwest1`, `europe-west1`, `europe-west2`, `europe-west3`, `europe-west4`, `europe-west8`, `europe-west9`, `asia-east1`, `asia-south1`, `asia-southeast1`, `me-west1`, `australia-southeast1`. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("opykboysssgrsobj")
    public suspend fun region(`value`: Output) {
        this.region = value
    }

    /**
     * @param value The page to run the test on. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("enqvrlexmmisgxfx")
    public suspend fun url(`value`: Output) {
        this.url = value
    }

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

    /**
     * @param value The frequency to run the test. Available values: `DAILY`, `WEEKLY`. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("rkpkwdpcablncixu")
    public suspend fun frequency(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.frequency = mapped
    }

    /**
     * @param value The region to run the test in. Available values: `us-central1`, `us-east1`, `us-east4`, `us-south1`, `us-west1`, `southamerica-east1`, `europe-north1`, `europe-southwest1`, `europe-west1`, `europe-west2`, `europe-west3`, `europe-west4`, `europe-west8`, `europe-west9`, `asia-east1`, `asia-south1`, `asia-southeast1`, `me-west1`, `australia-southeast1`. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("xwbuerpyrcrnmpbh")
    public suspend fun region(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.region = mapped
    }

    /**
     * @param value The page to run the test on. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("nxvirrimqtwaqvwb")
    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. **Modifying this attribute will force creation of a new resource.**
     */
    @JvmName("gqklfejcqaddialc")
    public suspend fun zoneId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zoneId = mapped
    }

    internal fun build(): ObservatoryScheduledTestArgs = ObservatoryScheduledTestArgs(
        frequency = frequency,
        region = region,
        url = url,
        zoneId = zoneId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy