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

com.pulumi.gcp.recaptcha.kotlin.EnterpriseKey.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.recaptcha.kotlin

import com.pulumi.core.Output
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyAndroidSettings
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyIosSettings
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyTestingOptions
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyWafSettings
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyWebSettings
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Any
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyAndroidSettings.Companion.toKotlin as enterpriseKeyAndroidSettingsToKotlin
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyIosSettings.Companion.toKotlin as enterpriseKeyIosSettingsToKotlin
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyTestingOptions.Companion.toKotlin as enterpriseKeyTestingOptionsToKotlin
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyWafSettings.Companion.toKotlin as enterpriseKeyWafSettingsToKotlin
import com.pulumi.gcp.recaptcha.kotlin.outputs.EnterpriseKeyWebSettings.Companion.toKotlin as enterpriseKeyWebSettingsToKotlin

/**
 * Builder for [EnterpriseKey].
 */
@PulumiTagMarker
public class EnterpriseKeyResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: EnterpriseKeyArgs = EnterpriseKeyArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend EnterpriseKeyArgsBuilder.() -> Unit) {
        val builder = EnterpriseKeyArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): EnterpriseKey {
        val builtJavaResource = com.pulumi.gcp.recaptcha.EnterpriseKey(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return EnterpriseKey(builtJavaResource)
    }
}

/**
 * The RecaptchaEnterprise Key resource
 * ## Example Usage
 * ### Android_key
 * A basic test of recaptcha enterprise key that can be used by Android apps
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const primary = new gcp.recaptcha.EnterpriseKey("primary", {
 *     displayName: "display-name-one",
 *     androidSettings: {
 *         allowAllPackageNames: true,
 *         allowedPackageNames: [],
 *     },
 *     project: "my-project-name",
 *     testingOptions: {
 *         testingScore: 0.8,
 *     },
 *     labels: {
 *         "label-one": "value-one",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * primary = gcp.recaptcha.EnterpriseKey("primary",
 *     display_name="display-name-one",
 *     android_settings=gcp.recaptcha.EnterpriseKeyAndroidSettingsArgs(
 *         allow_all_package_names=True,
 *         allowed_package_names=[],
 *     ),
 *     project="my-project-name",
 *     testing_options=gcp.recaptcha.EnterpriseKeyTestingOptionsArgs(
 *         testing_score=0.8,
 *     ),
 *     labels={
 *         "label-one": "value-one",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var primary = new Gcp.Recaptcha.EnterpriseKey("primary", new()
 *     {
 *         DisplayName = "display-name-one",
 *         AndroidSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyAndroidSettingsArgs
 *         {
 *             AllowAllPackageNames = true,
 *             AllowedPackageNames = new() { },
 *         },
 *         Project = "my-project-name",
 *         TestingOptions = new Gcp.Recaptcha.Inputs.EnterpriseKeyTestingOptionsArgs
 *         {
 *             TestingScore = 0.8,
 *         },
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/recaptcha"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := recaptcha.NewEnterpriseKey(ctx, "primary", &recaptcha.EnterpriseKeyArgs{
 * 			DisplayName: pulumi.String("display-name-one"),
 * 			AndroidSettings: &recaptcha.EnterpriseKeyAndroidSettingsArgs{
 * 				AllowAllPackageNames: pulumi.Bool(true),
 * 				AllowedPackageNames:  pulumi.StringArray{},
 * 			},
 * 			Project: pulumi.String("my-project-name"),
 * 			TestingOptions: &recaptcha.EnterpriseKeyTestingOptionsArgs{
 * 				TestingScore: pulumi.Float64(0.8),
 * 			},
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 		})
 * 		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.gcp.recaptcha.EnterpriseKey;
 * import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyAndroidSettingsArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyTestingOptionsArgs;
 * 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 primary = new EnterpriseKey("primary", EnterpriseKeyArgs.builder()
 *             .displayName("display-name-one")
 *             .androidSettings(EnterpriseKeyAndroidSettingsArgs.builder()
 *                 .allowAllPackageNames(true)
 *                 .allowedPackageNames()
 *                 .build())
 *             .project("my-project-name")
 *             .testingOptions(EnterpriseKeyTestingOptionsArgs.builder()
 *                 .testingScore(0.8)
 *                 .build())
 *             .labels(Map.of("label-one", "value-one"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   primary:
 *     type: gcp:recaptcha:EnterpriseKey
 *     properties:
 *       displayName: display-name-one
 *       androidSettings:
 *         allowAllPackageNames: true
 *         allowedPackageNames: []
 *       project: my-project-name
 *       testingOptions:
 *         testingScore: 0.8
 *       labels:
 *         label-one: value-one
 * ```
 * 
 * ### Ios_key
 * A basic test of recaptcha enterprise key that can be used by iOS apps
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const primary = new gcp.recaptcha.EnterpriseKey("primary", {
 *     displayName: "display-name-one",
 *     iosSettings: {
 *         allowAllBundleIds: true,
 *         allowedBundleIds: [],
 *     },
 *     project: "my-project-name",
 *     testingOptions: {
 *         testingScore: 1,
 *     },
 *     labels: {
 *         "label-one": "value-one",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * primary = gcp.recaptcha.EnterpriseKey("primary",
 *     display_name="display-name-one",
 *     ios_settings=gcp.recaptcha.EnterpriseKeyIosSettingsArgs(
 *         allow_all_bundle_ids=True,
 *         allowed_bundle_ids=[],
 *     ),
 *     project="my-project-name",
 *     testing_options=gcp.recaptcha.EnterpriseKeyTestingOptionsArgs(
 *         testing_score=1,
 *     ),
 *     labels={
 *         "label-one": "value-one",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var primary = new Gcp.Recaptcha.EnterpriseKey("primary", new()
 *     {
 *         DisplayName = "display-name-one",
 *         IosSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyIosSettingsArgs
 *         {
 *             AllowAllBundleIds = true,
 *             AllowedBundleIds = new() { },
 *         },
 *         Project = "my-project-name",
 *         TestingOptions = new Gcp.Recaptcha.Inputs.EnterpriseKeyTestingOptionsArgs
 *         {
 *             TestingScore = 1,
 *         },
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/recaptcha"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := recaptcha.NewEnterpriseKey(ctx, "primary", &recaptcha.EnterpriseKeyArgs{
 * 			DisplayName: pulumi.String("display-name-one"),
 * 			IosSettings: &recaptcha.EnterpriseKeyIosSettingsArgs{
 * 				AllowAllBundleIds: pulumi.Bool(true),
 * 				AllowedBundleIds:  pulumi.StringArray{},
 * 			},
 * 			Project: pulumi.String("my-project-name"),
 * 			TestingOptions: &recaptcha.EnterpriseKeyTestingOptionsArgs{
 * 				TestingScore: pulumi.Float64(1),
 * 			},
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 		})
 * 		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.gcp.recaptcha.EnterpriseKey;
 * import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyIosSettingsArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyTestingOptionsArgs;
 * 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 primary = new EnterpriseKey("primary", EnterpriseKeyArgs.builder()
 *             .displayName("display-name-one")
 *             .iosSettings(EnterpriseKeyIosSettingsArgs.builder()
 *                 .allowAllBundleIds(true)
 *                 .allowedBundleIds()
 *                 .build())
 *             .project("my-project-name")
 *             .testingOptions(EnterpriseKeyTestingOptionsArgs.builder()
 *                 .testingScore(1)
 *                 .build())
 *             .labels(Map.of("label-one", "value-one"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   primary:
 *     type: gcp:recaptcha:EnterpriseKey
 *     properties:
 *       displayName: display-name-one
 *       iosSettings:
 *         allowAllBundleIds: true
 *         allowedBundleIds: []
 *       project: my-project-name
 *       testingOptions:
 *         testingScore: 1
 *       labels:
 *         label-one: value-one
 * ```
 * 
 * ### Minimal_key
 * A minimal test of recaptcha enterprise key
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const primary = new gcp.recaptcha.EnterpriseKey("primary", {
 *     displayName: "display-name-one",
 *     project: "my-project-name",
 *     webSettings: {
 *         integrationType: "SCORE",
 *         allowAllDomains: true,
 *     },
 *     labels: {},
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * primary = gcp.recaptcha.EnterpriseKey("primary",
 *     display_name="display-name-one",
 *     project="my-project-name",
 *     web_settings=gcp.recaptcha.EnterpriseKeyWebSettingsArgs(
 *         integration_type="SCORE",
 *         allow_all_domains=True,
 *     ),
 *     labels={})
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var primary = new Gcp.Recaptcha.EnterpriseKey("primary", new()
 *     {
 *         DisplayName = "display-name-one",
 *         Project = "my-project-name",
 *         WebSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyWebSettingsArgs
 *         {
 *             IntegrationType = "SCORE",
 *             AllowAllDomains = true,
 *         },
 *         Labels = null,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/recaptcha"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := recaptcha.NewEnterpriseKey(ctx, "primary", &recaptcha.EnterpriseKeyArgs{
 * 			DisplayName: pulumi.String("display-name-one"),
 * 			Project:     pulumi.String("my-project-name"),
 * 			WebSettings: &recaptcha.EnterpriseKeyWebSettingsArgs{
 * 				IntegrationType: pulumi.String("SCORE"),
 * 				AllowAllDomains: pulumi.Bool(true),
 * 			},
 * 			Labels: nil,
 * 		})
 * 		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.gcp.recaptcha.EnterpriseKey;
 * import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyWebSettingsArgs;
 * 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 primary = new EnterpriseKey("primary", EnterpriseKeyArgs.builder()
 *             .displayName("display-name-one")
 *             .project("my-project-name")
 *             .webSettings(EnterpriseKeyWebSettingsArgs.builder()
 *                 .integrationType("SCORE")
 *                 .allowAllDomains(true)
 *                 .build())
 *             .labels()
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   primary:
 *     type: gcp:recaptcha:EnterpriseKey
 *     properties:
 *       displayName: display-name-one
 *       project: my-project-name
 *       webSettings:
 *         integrationType: SCORE
 *         allowAllDomains: true
 *       labels: {}
 * ```
 * 
 * ### Waf_key
 * A basic test of recaptcha enterprise key that includes WAF settings
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const primary = new gcp.recaptcha.EnterpriseKey("primary", {
 *     displayName: "display-name-one",
 *     project: "my-project-name",
 *     testingOptions: {
 *         testingChallenge: "NOCAPTCHA",
 *         testingScore: 0.5,
 *     },
 *     wafSettings: {
 *         wafFeature: "CHALLENGE_PAGE",
 *         wafService: "CA",
 *     },
 *     webSettings: {
 *         integrationType: "INVISIBLE",
 *         allowAllDomains: true,
 *         allowedDomains: [],
 *         challengeSecurityPreference: "USABILITY",
 *     },
 *     labels: {
 *         "label-one": "value-one",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * primary = gcp.recaptcha.EnterpriseKey("primary",
 *     display_name="display-name-one",
 *     project="my-project-name",
 *     testing_options=gcp.recaptcha.EnterpriseKeyTestingOptionsArgs(
 *         testing_challenge="NOCAPTCHA",
 *         testing_score=0.5,
 *     ),
 *     waf_settings=gcp.recaptcha.EnterpriseKeyWafSettingsArgs(
 *         waf_feature="CHALLENGE_PAGE",
 *         waf_service="CA",
 *     ),
 *     web_settings=gcp.recaptcha.EnterpriseKeyWebSettingsArgs(
 *         integration_type="INVISIBLE",
 *         allow_all_domains=True,
 *         allowed_domains=[],
 *         challenge_security_preference="USABILITY",
 *     ),
 *     labels={
 *         "label-one": "value-one",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var primary = new Gcp.Recaptcha.EnterpriseKey("primary", new()
 *     {
 *         DisplayName = "display-name-one",
 *         Project = "my-project-name",
 *         TestingOptions = new Gcp.Recaptcha.Inputs.EnterpriseKeyTestingOptionsArgs
 *         {
 *             TestingChallenge = "NOCAPTCHA",
 *             TestingScore = 0.5,
 *         },
 *         WafSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyWafSettingsArgs
 *         {
 *             WafFeature = "CHALLENGE_PAGE",
 *             WafService = "CA",
 *         },
 *         WebSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyWebSettingsArgs
 *         {
 *             IntegrationType = "INVISIBLE",
 *             AllowAllDomains = true,
 *             AllowedDomains = new() { },
 *             ChallengeSecurityPreference = "USABILITY",
 *         },
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/recaptcha"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := recaptcha.NewEnterpriseKey(ctx, "primary", &recaptcha.EnterpriseKeyArgs{
 * 			DisplayName: pulumi.String("display-name-one"),
 * 			Project:     pulumi.String("my-project-name"),
 * 			TestingOptions: &recaptcha.EnterpriseKeyTestingOptionsArgs{
 * 				TestingChallenge: pulumi.String("NOCAPTCHA"),
 * 				TestingScore:     pulumi.Float64(0.5),
 * 			},
 * 			WafSettings: &recaptcha.EnterpriseKeyWafSettingsArgs{
 * 				WafFeature: pulumi.String("CHALLENGE_PAGE"),
 * 				WafService: pulumi.String("CA"),
 * 			},
 * 			WebSettings: &recaptcha.EnterpriseKeyWebSettingsArgs{
 * 				IntegrationType:             pulumi.String("INVISIBLE"),
 * 				AllowAllDomains:             pulumi.Bool(true),
 * 				AllowedDomains:              pulumi.StringArray{},
 * 				ChallengeSecurityPreference: pulumi.String("USABILITY"),
 * 			},
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 		})
 * 		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.gcp.recaptcha.EnterpriseKey;
 * import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyTestingOptionsArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyWafSettingsArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyWebSettingsArgs;
 * 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 primary = new EnterpriseKey("primary", EnterpriseKeyArgs.builder()
 *             .displayName("display-name-one")
 *             .project("my-project-name")
 *             .testingOptions(EnterpriseKeyTestingOptionsArgs.builder()
 *                 .testingChallenge("NOCAPTCHA")
 *                 .testingScore(0.5)
 *                 .build())
 *             .wafSettings(EnterpriseKeyWafSettingsArgs.builder()
 *                 .wafFeature("CHALLENGE_PAGE")
 *                 .wafService("CA")
 *                 .build())
 *             .webSettings(EnterpriseKeyWebSettingsArgs.builder()
 *                 .integrationType("INVISIBLE")
 *                 .allowAllDomains(true)
 *                 .allowedDomains()
 *                 .challengeSecurityPreference("USABILITY")
 *                 .build())
 *             .labels(Map.of("label-one", "value-one"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   primary:
 *     type: gcp:recaptcha:EnterpriseKey
 *     properties:
 *       displayName: display-name-one
 *       project: my-project-name
 *       testingOptions:
 *         testingChallenge: NOCAPTCHA
 *         testingScore: 0.5
 *       wafSettings:
 *         wafFeature: CHALLENGE_PAGE
 *         wafService: CA
 *       webSettings:
 *         integrationType: INVISIBLE
 *         allowAllDomains: true
 *         allowedDomains: []
 *         challengeSecurityPreference: USABILITY
 *       labels:
 *         label-one: value-one
 * ```
 * 
 * ### Web_key
 * A basic test of recaptcha enterprise key that can be used by websites
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const primary = new gcp.recaptcha.EnterpriseKey("primary", {
 *     displayName: "display-name-one",
 *     project: "my-project-name",
 *     testingOptions: {
 *         testingChallenge: "NOCAPTCHA",
 *         testingScore: 0.5,
 *     },
 *     webSettings: {
 *         integrationType: "CHECKBOX",
 *         allowAllDomains: true,
 *         allowedDomains: [],
 *         challengeSecurityPreference: "USABILITY",
 *     },
 *     labels: {
 *         "label-one": "value-one",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * primary = gcp.recaptcha.EnterpriseKey("primary",
 *     display_name="display-name-one",
 *     project="my-project-name",
 *     testing_options=gcp.recaptcha.EnterpriseKeyTestingOptionsArgs(
 *         testing_challenge="NOCAPTCHA",
 *         testing_score=0.5,
 *     ),
 *     web_settings=gcp.recaptcha.EnterpriseKeyWebSettingsArgs(
 *         integration_type="CHECKBOX",
 *         allow_all_domains=True,
 *         allowed_domains=[],
 *         challenge_security_preference="USABILITY",
 *     ),
 *     labels={
 *         "label-one": "value-one",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var primary = new Gcp.Recaptcha.EnterpriseKey("primary", new()
 *     {
 *         DisplayName = "display-name-one",
 *         Project = "my-project-name",
 *         TestingOptions = new Gcp.Recaptcha.Inputs.EnterpriseKeyTestingOptionsArgs
 *         {
 *             TestingChallenge = "NOCAPTCHA",
 *             TestingScore = 0.5,
 *         },
 *         WebSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyWebSettingsArgs
 *         {
 *             IntegrationType = "CHECKBOX",
 *             AllowAllDomains = true,
 *             AllowedDomains = new() { },
 *             ChallengeSecurityPreference = "USABILITY",
 *         },
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/recaptcha"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := recaptcha.NewEnterpriseKey(ctx, "primary", &recaptcha.EnterpriseKeyArgs{
 * 			DisplayName: pulumi.String("display-name-one"),
 * 			Project:     pulumi.String("my-project-name"),
 * 			TestingOptions: &recaptcha.EnterpriseKeyTestingOptionsArgs{
 * 				TestingChallenge: pulumi.String("NOCAPTCHA"),
 * 				TestingScore:     pulumi.Float64(0.5),
 * 			},
 * 			WebSettings: &recaptcha.EnterpriseKeyWebSettingsArgs{
 * 				IntegrationType:             pulumi.String("CHECKBOX"),
 * 				AllowAllDomains:             pulumi.Bool(true),
 * 				AllowedDomains:              pulumi.StringArray{},
 * 				ChallengeSecurityPreference: pulumi.String("USABILITY"),
 * 			},
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 		})
 * 		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.gcp.recaptcha.EnterpriseKey;
 * import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyTestingOptionsArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyWebSettingsArgs;
 * 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 primary = new EnterpriseKey("primary", EnterpriseKeyArgs.builder()
 *             .displayName("display-name-one")
 *             .project("my-project-name")
 *             .testingOptions(EnterpriseKeyTestingOptionsArgs.builder()
 *                 .testingChallenge("NOCAPTCHA")
 *                 .testingScore(0.5)
 *                 .build())
 *             .webSettings(EnterpriseKeyWebSettingsArgs.builder()
 *                 .integrationType("CHECKBOX")
 *                 .allowAllDomains(true)
 *                 .allowedDomains()
 *                 .challengeSecurityPreference("USABILITY")
 *                 .build())
 *             .labels(Map.of("label-one", "value-one"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   primary:
 *     type: gcp:recaptcha:EnterpriseKey
 *     properties:
 *       displayName: display-name-one
 *       project: my-project-name
 *       testingOptions:
 *         testingChallenge: NOCAPTCHA
 *         testingScore: 0.5
 *       webSettings:
 *         integrationType: CHECKBOX
 *         allowAllDomains: true
 *         allowedDomains: []
 *         challengeSecurityPreference: USABILITY
 *       labels:
 *         label-one: value-one
 * ```
 * 
 * ### Web_score_key
 * A basic test of recaptcha enterprise key with score integration type that can be used by websites
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const primary = new gcp.recaptcha.EnterpriseKey("primary", {
 *     displayName: "display-name-one",
 *     project: "my-project-name",
 *     testingOptions: {
 *         testingScore: 0.5,
 *     },
 *     webSettings: {
 *         integrationType: "SCORE",
 *         allowAllDomains: true,
 *         allowAmpTraffic: false,
 *         allowedDomains: [],
 *     },
 *     labels: {
 *         "label-one": "value-one",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * primary = gcp.recaptcha.EnterpriseKey("primary",
 *     display_name="display-name-one",
 *     project="my-project-name",
 *     testing_options=gcp.recaptcha.EnterpriseKeyTestingOptionsArgs(
 *         testing_score=0.5,
 *     ),
 *     web_settings=gcp.recaptcha.EnterpriseKeyWebSettingsArgs(
 *         integration_type="SCORE",
 *         allow_all_domains=True,
 *         allow_amp_traffic=False,
 *         allowed_domains=[],
 *     ),
 *     labels={
 *         "label-one": "value-one",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var primary = new Gcp.Recaptcha.EnterpriseKey("primary", new()
 *     {
 *         DisplayName = "display-name-one",
 *         Project = "my-project-name",
 *         TestingOptions = new Gcp.Recaptcha.Inputs.EnterpriseKeyTestingOptionsArgs
 *         {
 *             TestingScore = 0.5,
 *         },
 *         WebSettings = new Gcp.Recaptcha.Inputs.EnterpriseKeyWebSettingsArgs
 *         {
 *             IntegrationType = "SCORE",
 *             AllowAllDomains = true,
 *             AllowAmpTraffic = false,
 *             AllowedDomains = new() { },
 *         },
 *         Labels =
 *         {
 *             { "label-one", "value-one" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/recaptcha"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := recaptcha.NewEnterpriseKey(ctx, "primary", &recaptcha.EnterpriseKeyArgs{
 * 			DisplayName: pulumi.String("display-name-one"),
 * 			Project:     pulumi.String("my-project-name"),
 * 			TestingOptions: &recaptcha.EnterpriseKeyTestingOptionsArgs{
 * 				TestingScore: pulumi.Float64(0.5),
 * 			},
 * 			WebSettings: &recaptcha.EnterpriseKeyWebSettingsArgs{
 * 				IntegrationType: pulumi.String("SCORE"),
 * 				AllowAllDomains: pulumi.Bool(true),
 * 				AllowAmpTraffic: pulumi.Bool(false),
 * 				AllowedDomains:  pulumi.StringArray{},
 * 			},
 * 			Labels: pulumi.StringMap{
 * 				"label-one": pulumi.String("value-one"),
 * 			},
 * 		})
 * 		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.gcp.recaptcha.EnterpriseKey;
 * import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyTestingOptionsArgs;
 * import com.pulumi.gcp.recaptcha.inputs.EnterpriseKeyWebSettingsArgs;
 * 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 primary = new EnterpriseKey("primary", EnterpriseKeyArgs.builder()
 *             .displayName("display-name-one")
 *             .project("my-project-name")
 *             .testingOptions(EnterpriseKeyTestingOptionsArgs.builder()
 *                 .testingScore(0.5)
 *                 .build())
 *             .webSettings(EnterpriseKeyWebSettingsArgs.builder()
 *                 .integrationType("SCORE")
 *                 .allowAllDomains(true)
 *                 .allowAmpTraffic(false)
 *                 .allowedDomains()
 *                 .build())
 *             .labels(Map.of("label-one", "value-one"))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   primary:
 *     type: gcp:recaptcha:EnterpriseKey
 *     properties:
 *       displayName: display-name-one
 *       project: my-project-name
 *       testingOptions:
 *         testingScore: 0.5
 *       webSettings:
 *         integrationType: SCORE
 *         allowAllDomains: true
 *         allowAmpTraffic: false
 *         allowedDomains: []
 *       labels:
 *         label-one: value-one
 * ```
 * 
 * ## Import
 * Key can be imported using any of these accepted formats:
 * * `projects/{{project}}/keys/{{name}}`
 * * `{{project}}/{{name}}`
 * * `{{name}}`
 * When using the `pulumi import` command, Key can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:recaptcha/enterpriseKey:EnterpriseKey default projects/{{project}}/keys/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:recaptcha/enterpriseKey:EnterpriseKey default {{project}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:recaptcha/enterpriseKey:EnterpriseKey default {{name}}
 * ```
 */
public class EnterpriseKey internal constructor(
    override val javaResource: com.pulumi.gcp.recaptcha.EnterpriseKey,
) : KotlinCustomResource(javaResource, EnterpriseKeyMapper) {
    /**
     * Settings for keys that can be used by Android apps.
     */
    public val androidSettings: Output?
        get() = javaResource.androidSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> enterpriseKeyAndroidSettingsToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * The timestamp corresponding to the creation of this Key.
     */
    public val createTime: Output
        get() = javaResource.createTime().applyValue({ args0 -> args0 })

    /**
     * Human-readable display name of this key. Modifiable by user.
     * - - -
     */
    public val displayName: Output
        get() = javaResource.displayName().applyValue({ args0 -> args0 })

    /**
     * All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
     */
    public val effectiveLabels: Output>
        get() = javaResource.effectiveLabels().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.key.to(args0.value)
            }).toMap()
        })

    /**
     * Settings for keys that can be used by iOS apps.
     */
    public val iosSettings: Output?
        get() = javaResource.iosSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    enterpriseKeyIosSettingsToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * See [Creating and managing labels](https://cloud.google.com/recaptcha-enterprise/docs/labels).
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    public val labels: Output>?
        get() = javaResource.labels().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    /**
     * The resource id for the Key, which is the same as the Site Key itself.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * The project for the resource
     */
    public val project: Output
        get() = javaResource.project().applyValue({ args0 -> args0 })

    /**
     * The combination of labels configured directly on the resource and default labels configured on the provider.
     */
    public val pulumiLabels: Output>
        get() = javaResource.pulumiLabels().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.key.to(args0.value)
            }).toMap()
        })

    /**
     * Options for user acceptance testing.
     */
    public val testingOptions: Output?
        get() = javaResource.testingOptions().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> enterpriseKeyTestingOptionsToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * Settings specific to keys that can be used for WAF (Web Application Firewall).
     */
    public val wafSettings: Output?
        get() = javaResource.wafSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    enterpriseKeyWafSettingsToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * Settings for keys that can be used by websites.
     */
    public val webSettings: Output?
        get() = javaResource.webSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    enterpriseKeyWebSettingsToKotlin(args0)
                })
            }).orElse(null)
        })
}

public object EnterpriseKeyMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.gcp.recaptcha.EnterpriseKey::class == javaResource::class

    override fun map(javaResource: Resource): EnterpriseKey = EnterpriseKey(
        javaResource as
            com.pulumi.gcp.recaptcha.EnterpriseKey,
    )
}

/**
 * @see [EnterpriseKey].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [EnterpriseKey].
 */
public suspend fun enterpriseKey(
    name: String,
    block: suspend EnterpriseKeyResourceBuilder.() -> Unit,
): EnterpriseKey {
    val builder = EnterpriseKeyResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [EnterpriseKey].
 * @param name The _unique_ name of the resulting resource.
 */
public fun enterpriseKey(name: String): EnterpriseKey {
    val builder = EnterpriseKeyResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy