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

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

/**
 * Cloudflare Access can replace traditional SSH key models with
 * short-lived certificates issued to your users based on the token
 * generated by their Access login.
 * > It's required that an `account_id` or `zone_id` is provided and in
 *    most cases using either is fine. However, if you're using a scoped
 *    access token, you must provide the argument that matches the token's
 *    scope. For example, an access token that is scoped to the "example.com"
 *    zone needs to use the `zone_id` argument.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * // account level
 * const example = new cloudflare.AccessCaCertificate("example", {
 *     accountId: "f037e56e89293a057740de681ac9abbe",
 *     applicationId: "6cd6cea3-3ef2-4542-9aea-85a0bbcd5414",
 * });
 * // zone level
 * const anotherExample = new cloudflare.AccessCaCertificate("another_example", {
 *     zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
 *     applicationId: "fe2be0ff-7f13-4350-8c8e-a9b9795fe3c2",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * # account level
 * example = cloudflare.AccessCaCertificate("example",
 *     account_id="f037e56e89293a057740de681ac9abbe",
 *     application_id="6cd6cea3-3ef2-4542-9aea-85a0bbcd5414")
 * # zone level
 * another_example = cloudflare.AccessCaCertificate("another_example",
 *     zone_id="0da42c8d2132a9ddaf714f9e7c920711",
 *     application_id="fe2be0ff-7f13-4350-8c8e-a9b9795fe3c2")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     // account level
 *     var example = new Cloudflare.AccessCaCertificate("example", new()
 *     {
 *         AccountId = "f037e56e89293a057740de681ac9abbe",
 *         ApplicationId = "6cd6cea3-3ef2-4542-9aea-85a0bbcd5414",
 *     });
 *     // zone level
 *     var anotherExample = new Cloudflare.AccessCaCertificate("another_example", new()
 *     {
 *         ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
 *         ApplicationId = "fe2be0ff-7f13-4350-8c8e-a9b9795fe3c2",
 *     });
 * });
 * ```
 * ```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 {
 * 		// account level
 * 		_, err := cloudflare.NewAccessCaCertificate(ctx, "example", &cloudflare.AccessCaCertificateArgs{
 * 			AccountId:     pulumi.String("f037e56e89293a057740de681ac9abbe"),
 * 			ApplicationId: pulumi.String("6cd6cea3-3ef2-4542-9aea-85a0bbcd5414"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		// zone level
 * 		_, err = cloudflare.NewAccessCaCertificate(ctx, "another_example", &cloudflare.AccessCaCertificateArgs{
 * 			ZoneId:        pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			ApplicationId: pulumi.String("fe2be0ff-7f13-4350-8c8e-a9b9795fe3c2"),
 * 		})
 * 		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.AccessCaCertificate;
 * import com.pulumi.cloudflare.AccessCaCertificateArgs;
 * 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) {
 *         // account level
 *         var example = new AccessCaCertificate("example", AccessCaCertificateArgs.builder()
 *             .accountId("f037e56e89293a057740de681ac9abbe")
 *             .applicationId("6cd6cea3-3ef2-4542-9aea-85a0bbcd5414")
 *             .build());
 *         // zone level
 *         var anotherExample = new AccessCaCertificate("anotherExample", AccessCaCertificateArgs.builder()
 *             .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
 *             .applicationId("fe2be0ff-7f13-4350-8c8e-a9b9795fe3c2")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   # account level
 *   example:
 *     type: cloudflare:AccessCaCertificate
 *     properties:
 *       accountId: f037e56e89293a057740de681ac9abbe
 *       applicationId: 6cd6cea3-3ef2-4542-9aea-85a0bbcd5414
 *   # zone level
 *   anotherExample:
 *     type: cloudflare:AccessCaCertificate
 *     name: another_example
 *     properties:
 *       zoneId: 0da42c8d2132a9ddaf714f9e7c920711
 *       applicationId: fe2be0ff-7f13-4350-8c8e-a9b9795fe3c2
 * ```
 * 
 * ## Import
 * Account level CA certificate import.
 * ```sh
 * $ pulumi import cloudflare:index/accessCaCertificate:AccessCaCertificate example account//
 * ```
 * Zone level CA certificate import.
 * ```sh
 * $ pulumi import cloudflare:index/accessCaCertificate:AccessCaCertificate example account//
 * ```
 * @property accountId The account identifier to target for the resource. Conflicts with `zone_id`.
 * @property applicationId The Access Application ID to associate with the CA certificate.
 * @property zoneId The zone identifier to target for the resource. Conflicts with `account_id`.
 */
public data class AccessCaCertificateArgs(
    public val accountId: Output? = null,
    public val applicationId: Output? = null,
    public val zoneId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.AccessCaCertificateArgs =
        com.pulumi.cloudflare.AccessCaCertificateArgs.builder()
            .accountId(accountId?.applyValue({ args0 -> args0 }))
            .applicationId(applicationId?.applyValue({ args0 -> args0 }))
            .zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AccessCaCertificateArgs].
 */
@PulumiTagMarker
public class AccessCaCertificateArgsBuilder internal constructor() {
    private var accountId: Output? = null

    private var applicationId: Output? = null

    private var zoneId: Output? = null

    /**
     * @param value The account identifier to target for the resource. Conflicts with `zone_id`.
     */
    @JvmName("gbhurohskmevkhci")
    public suspend fun accountId(`value`: Output) {
        this.accountId = value
    }

    /**
     * @param value The Access Application ID to associate with the CA certificate.
     */
    @JvmName("hfuvoucspcdbglfm")
    public suspend fun applicationId(`value`: Output) {
        this.applicationId = value
    }

    /**
     * @param value The zone identifier to target for the resource. Conflicts with `account_id`.
     */
    @JvmName("yrqvpidjfpsrvcgw")
    public suspend fun zoneId(`value`: Output) {
        this.zoneId = value
    }

    /**
     * @param value The account identifier to target for the resource. Conflicts with `zone_id`.
     */
    @JvmName("fhybdlcklvgqxpkk")
    public suspend fun accountId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.accountId = mapped
    }

    /**
     * @param value The Access Application ID to associate with the CA certificate.
     */
    @JvmName("mnmfxtfiecosxrrx")
    public suspend fun applicationId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.applicationId = mapped
    }

    /**
     * @param value The zone identifier to target for the resource. Conflicts with `account_id`.
     */
    @JvmName("faxnpwbyefxmhehy")
    public suspend fun zoneId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zoneId = mapped
    }

    internal fun build(): AccessCaCertificateArgs = AccessCaCertificateArgs(
        accountId = accountId,
        applicationId = applicationId,
        zoneId = zoneId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy