com.pulumi.gcp.recaptcha.kotlin.EnterpriseKeyArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.recaptcha.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.recaptcha.EnterpriseKeyArgs.builder
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyAndroidSettingsArgs
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyAndroidSettingsArgsBuilder
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyIosSettingsArgs
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyIosSettingsArgsBuilder
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyTestingOptionsArgs
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyTestingOptionsArgsBuilder
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyWafSettingsArgs
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyWafSettingsArgsBuilder
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyWebSettingsArgs
import com.pulumi.gcp.recaptcha.kotlin.inputs.EnterpriseKeyWebSettingsArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* 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}}
* ```
* @property androidSettings Settings for keys that can be used by Android apps.
* @property displayName Human-readable display name of this key. Modifiable by user.
* - - -
* @property iosSettings Settings for keys that can be used by iOS apps.
* @property labels 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.
* @property project The project for the resource
* @property testingOptions Options for user acceptance testing.
* @property wafSettings Settings specific to keys that can be used for WAF (Web Application Firewall).
* @property webSettings Settings for keys that can be used by websites.
*/
public data class EnterpriseKeyArgs(
public val androidSettings: Output? = null,
public val displayName: Output? = null,
public val iosSettings: Output? = null,
public val labels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy