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

com.pulumi.gcp.compute.kotlin.BackendBucketArgs.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.compute.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.BackendBucketArgs.builder
import com.pulumi.gcp.compute.kotlin.inputs.BackendBucketCdnPolicyArgs
import com.pulumi.gcp.compute.kotlin.inputs.BackendBucketCdnPolicyArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * Backend buckets allow you to use Google Cloud Storage buckets with HTTP(S)
 * load balancing.
 * An HTTP(S) load balancer can direct traffic to specified URLs to a
 * backend bucket rather than a backend service. It can send requests for
 * static content to a Cloud Storage bucket and requests for dynamic content
 * to a virtual machine instance.
 * To get more information about BackendBucket, see:
 * * [API documentation](https://cloud.google.com/compute/docs/reference/v1/backendBuckets)
 * * How-to Guides
 *     * [Using a Cloud Storage bucket as a load balancer backend](https://cloud.google.com/compute/docs/load-balancing/http/backend-bucket)
 * ## Example Usage
 * ### Backend Bucket Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const imageBucket = new gcp.storage.Bucket("image_bucket", {
 *     name: "image-store-bucket",
 *     location: "EU",
 * });
 * const imageBackend = new gcp.compute.BackendBucket("image_backend", {
 *     name: "image-backend-bucket",
 *     description: "Contains beautiful images",
 *     bucketName: imageBucket.name,
 *     enableCdn: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * image_bucket = gcp.storage.Bucket("image_bucket",
 *     name="image-store-bucket",
 *     location="EU")
 * image_backend = gcp.compute.BackendBucket("image_backend",
 *     name="image-backend-bucket",
 *     description="Contains beautiful images",
 *     bucket_name=image_bucket.name,
 *     enable_cdn=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var imageBucket = new Gcp.Storage.Bucket("image_bucket", new()
 *     {
 *         Name = "image-store-bucket",
 *         Location = "EU",
 *     });
 *     var imageBackend = new Gcp.Compute.BackendBucket("image_backend", new()
 *     {
 *         Name = "image-backend-bucket",
 *         Description = "Contains beautiful images",
 *         BucketName = imageBucket.Name,
 *         EnableCdn = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/storage"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		imageBucket, err := storage.NewBucket(ctx, "image_bucket", &storage.BucketArgs{
 * 			Name:     pulumi.String("image-store-bucket"),
 * 			Location: pulumi.String("EU"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendBucket(ctx, "image_backend", &compute.BackendBucketArgs{
 * 			Name:        pulumi.String("image-backend-bucket"),
 * 			Description: pulumi.String("Contains beautiful images"),
 * 			BucketName:  imageBucket.Name,
 * 			EnableCdn:   pulumi.Bool(true),
 * 		})
 * 		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.storage.Bucket;
 * import com.pulumi.gcp.storage.BucketArgs;
 * import com.pulumi.gcp.compute.BackendBucket;
 * import com.pulumi.gcp.compute.BackendBucketArgs;
 * 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 imageBucket = new Bucket("imageBucket", BucketArgs.builder()
 *             .name("image-store-bucket")
 *             .location("EU")
 *             .build());
 *         var imageBackend = new BackendBucket("imageBackend", BackendBucketArgs.builder()
 *             .name("image-backend-bucket")
 *             .description("Contains beautiful images")
 *             .bucketName(imageBucket.name())
 *             .enableCdn(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   imageBackend:
 *     type: gcp:compute:BackendBucket
 *     name: image_backend
 *     properties:
 *       name: image-backend-bucket
 *       description: Contains beautiful images
 *       bucketName: ${imageBucket.name}
 *       enableCdn: true
 *   imageBucket:
 *     type: gcp:storage:Bucket
 *     name: image_bucket
 *     properties:
 *       name: image-store-bucket
 *       location: EU
 * ```
 * 
 * ### Backend Bucket Security Policy
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const imageBackendBucket = new gcp.storage.Bucket("image_backend", {
 *     name: "image-store-bucket",
 *     location: "EU",
 * });
 * const policy = new gcp.compute.SecurityPolicy("policy", {
 *     name: "image-store-bucket",
 *     description: "basic security policy",
 *     type: "CLOUD_ARMOR_EDGE",
 * });
 * const imageBackend = new gcp.compute.BackendBucket("image_backend", {
 *     name: "image-backend-bucket",
 *     description: "Contains beautiful images",
 *     bucketName: imageBackendBucket.name,
 *     enableCdn: true,
 *     edgeSecurityPolicy: policy.id,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * image_backend_bucket = gcp.storage.Bucket("image_backend",
 *     name="image-store-bucket",
 *     location="EU")
 * policy = gcp.compute.SecurityPolicy("policy",
 *     name="image-store-bucket",
 *     description="basic security policy",
 *     type="CLOUD_ARMOR_EDGE")
 * image_backend = gcp.compute.BackendBucket("image_backend",
 *     name="image-backend-bucket",
 *     description="Contains beautiful images",
 *     bucket_name=image_backend_bucket.name,
 *     enable_cdn=True,
 *     edge_security_policy=policy.id)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var imageBackendBucket = new Gcp.Storage.Bucket("image_backend", new()
 *     {
 *         Name = "image-store-bucket",
 *         Location = "EU",
 *     });
 *     var policy = new Gcp.Compute.SecurityPolicy("policy", new()
 *     {
 *         Name = "image-store-bucket",
 *         Description = "basic security policy",
 *         Type = "CLOUD_ARMOR_EDGE",
 *     });
 *     var imageBackend = new Gcp.Compute.BackendBucket("image_backend", new()
 *     {
 *         Name = "image-backend-bucket",
 *         Description = "Contains beautiful images",
 *         BucketName = imageBackendBucket.Name,
 *         EnableCdn = true,
 *         EdgeSecurityPolicy = policy.Id,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/storage"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		imageBackendBucket, err := storage.NewBucket(ctx, "image_backend", &storage.BucketArgs{
 * 			Name:     pulumi.String("image-store-bucket"),
 * 			Location: pulumi.String("EU"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		policy, err := compute.NewSecurityPolicy(ctx, "policy", &compute.SecurityPolicyArgs{
 * 			Name:        pulumi.String("image-store-bucket"),
 * 			Description: pulumi.String("basic security policy"),
 * 			Type:        pulumi.String("CLOUD_ARMOR_EDGE"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendBucket(ctx, "image_backend", &compute.BackendBucketArgs{
 * 			Name:               pulumi.String("image-backend-bucket"),
 * 			Description:        pulumi.String("Contains beautiful images"),
 * 			BucketName:         imageBackendBucket.Name,
 * 			EnableCdn:          pulumi.Bool(true),
 * 			EdgeSecurityPolicy: policy.ID(),
 * 		})
 * 		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.storage.Bucket;
 * import com.pulumi.gcp.storage.BucketArgs;
 * import com.pulumi.gcp.compute.SecurityPolicy;
 * import com.pulumi.gcp.compute.SecurityPolicyArgs;
 * import com.pulumi.gcp.compute.BackendBucket;
 * import com.pulumi.gcp.compute.BackendBucketArgs;
 * 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 imageBackendBucket = new Bucket("imageBackendBucket", BucketArgs.builder()
 *             .name("image-store-bucket")
 *             .location("EU")
 *             .build());
 *         var policy = new SecurityPolicy("policy", SecurityPolicyArgs.builder()
 *             .name("image-store-bucket")
 *             .description("basic security policy")
 *             .type("CLOUD_ARMOR_EDGE")
 *             .build());
 *         var imageBackend = new BackendBucket("imageBackend", BackendBucketArgs.builder()
 *             .name("image-backend-bucket")
 *             .description("Contains beautiful images")
 *             .bucketName(imageBackendBucket.name())
 *             .enableCdn(true)
 *             .edgeSecurityPolicy(policy.id())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   imageBackend:
 *     type: gcp:compute:BackendBucket
 *     name: image_backend
 *     properties:
 *       name: image-backend-bucket
 *       description: Contains beautiful images
 *       bucketName: ${imageBackendBucket.name}
 *       enableCdn: true
 *       edgeSecurityPolicy: ${policy.id}
 *   imageBackendBucket:
 *     type: gcp:storage:Bucket
 *     name: image_backend
 *     properties:
 *       name: image-store-bucket
 *       location: EU
 *   policy:
 *     type: gcp:compute:SecurityPolicy
 *     properties:
 *       name: image-store-bucket
 *       description: basic security policy
 *       type: CLOUD_ARMOR_EDGE
 * ```
 * 
 * ### Backend Bucket Query String Whitelist
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const imageBucket = new gcp.storage.Bucket("image_bucket", {
 *     name: "image-backend-bucket",
 *     location: "EU",
 * });
 * const imageBackend = new gcp.compute.BackendBucket("image_backend", {
 *     name: "image-backend-bucket",
 *     description: "Contains beautiful images",
 *     bucketName: imageBucket.name,
 *     enableCdn: true,
 *     cdnPolicy: {
 *         cacheKeyPolicy: {
 *             queryStringWhitelists: ["image-version"],
 *         },
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * image_bucket = gcp.storage.Bucket("image_bucket",
 *     name="image-backend-bucket",
 *     location="EU")
 * image_backend = gcp.compute.BackendBucket("image_backend",
 *     name="image-backend-bucket",
 *     description="Contains beautiful images",
 *     bucket_name=image_bucket.name,
 *     enable_cdn=True,
 *     cdn_policy=gcp.compute.BackendBucketCdnPolicyArgs(
 *         cache_key_policy=gcp.compute.BackendBucketCdnPolicyCacheKeyPolicyArgs(
 *             query_string_whitelists=["image-version"],
 *         ),
 *     ))
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var imageBucket = new Gcp.Storage.Bucket("image_bucket", new()
 *     {
 *         Name = "image-backend-bucket",
 *         Location = "EU",
 *     });
 *     var imageBackend = new Gcp.Compute.BackendBucket("image_backend", new()
 *     {
 *         Name = "image-backend-bucket",
 *         Description = "Contains beautiful images",
 *         BucketName = imageBucket.Name,
 *         EnableCdn = true,
 *         CdnPolicy = new Gcp.Compute.Inputs.BackendBucketCdnPolicyArgs
 *         {
 *             CacheKeyPolicy = new Gcp.Compute.Inputs.BackendBucketCdnPolicyCacheKeyPolicyArgs
 *             {
 *                 QueryStringWhitelists = new[]
 *                 {
 *                     "image-version",
 *                 },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/storage"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		imageBucket, err := storage.NewBucket(ctx, "image_bucket", &storage.BucketArgs{
 * 			Name:     pulumi.String("image-backend-bucket"),
 * 			Location: pulumi.String("EU"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendBucket(ctx, "image_backend", &compute.BackendBucketArgs{
 * 			Name:        pulumi.String("image-backend-bucket"),
 * 			Description: pulumi.String("Contains beautiful images"),
 * 			BucketName:  imageBucket.Name,
 * 			EnableCdn:   pulumi.Bool(true),
 * 			CdnPolicy: &compute.BackendBucketCdnPolicyArgs{
 * 				CacheKeyPolicy: &compute.BackendBucketCdnPolicyCacheKeyPolicyArgs{
 * 					QueryStringWhitelists: pulumi.StringArray{
 * 						pulumi.String("image-version"),
 * 					},
 * 				},
 * 			},
 * 		})
 * 		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.storage.Bucket;
 * import com.pulumi.gcp.storage.BucketArgs;
 * import com.pulumi.gcp.compute.BackendBucket;
 * import com.pulumi.gcp.compute.BackendBucketArgs;
 * import com.pulumi.gcp.compute.inputs.BackendBucketCdnPolicyArgs;
 * import com.pulumi.gcp.compute.inputs.BackendBucketCdnPolicyCacheKeyPolicyArgs;
 * 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 imageBucket = new Bucket("imageBucket", BucketArgs.builder()
 *             .name("image-backend-bucket")
 *             .location("EU")
 *             .build());
 *         var imageBackend = new BackendBucket("imageBackend", BackendBucketArgs.builder()
 *             .name("image-backend-bucket")
 *             .description("Contains beautiful images")
 *             .bucketName(imageBucket.name())
 *             .enableCdn(true)
 *             .cdnPolicy(BackendBucketCdnPolicyArgs.builder()
 *                 .cacheKeyPolicy(BackendBucketCdnPolicyCacheKeyPolicyArgs.builder()
 *                     .queryStringWhitelists("image-version")
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   imageBackend:
 *     type: gcp:compute:BackendBucket
 *     name: image_backend
 *     properties:
 *       name: image-backend-bucket
 *       description: Contains beautiful images
 *       bucketName: ${imageBucket.name}
 *       enableCdn: true
 *       cdnPolicy:
 *         cacheKeyPolicy:
 *           queryStringWhitelists:
 *             - image-version
 *   imageBucket:
 *     type: gcp:storage:Bucket
 *     name: image_bucket
 *     properties:
 *       name: image-backend-bucket
 *       location: EU
 * ```
 * 
 * ### Backend Bucket Include Http Headers
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const imageBucket = new gcp.storage.Bucket("image_bucket", {
 *     name: "image-backend-bucket",
 *     location: "EU",
 * });
 * const imageBackend = new gcp.compute.BackendBucket("image_backend", {
 *     name: "image-backend-bucket",
 *     description: "Contains beautiful images",
 *     bucketName: imageBucket.name,
 *     enableCdn: true,
 *     cdnPolicy: {
 *         cacheKeyPolicy: {
 *             includeHttpHeaders: ["X-My-Header-Field"],
 *         },
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * image_bucket = gcp.storage.Bucket("image_bucket",
 *     name="image-backend-bucket",
 *     location="EU")
 * image_backend = gcp.compute.BackendBucket("image_backend",
 *     name="image-backend-bucket",
 *     description="Contains beautiful images",
 *     bucket_name=image_bucket.name,
 *     enable_cdn=True,
 *     cdn_policy=gcp.compute.BackendBucketCdnPolicyArgs(
 *         cache_key_policy=gcp.compute.BackendBucketCdnPolicyCacheKeyPolicyArgs(
 *             include_http_headers=["X-My-Header-Field"],
 *         ),
 *     ))
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var imageBucket = new Gcp.Storage.Bucket("image_bucket", new()
 *     {
 *         Name = "image-backend-bucket",
 *         Location = "EU",
 *     });
 *     var imageBackend = new Gcp.Compute.BackendBucket("image_backend", new()
 *     {
 *         Name = "image-backend-bucket",
 *         Description = "Contains beautiful images",
 *         BucketName = imageBucket.Name,
 *         EnableCdn = true,
 *         CdnPolicy = new Gcp.Compute.Inputs.BackendBucketCdnPolicyArgs
 *         {
 *             CacheKeyPolicy = new Gcp.Compute.Inputs.BackendBucketCdnPolicyCacheKeyPolicyArgs
 *             {
 *                 IncludeHttpHeaders = new[]
 *                 {
 *                     "X-My-Header-Field",
 *                 },
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/storage"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		imageBucket, err := storage.NewBucket(ctx, "image_bucket", &storage.BucketArgs{
 * 			Name:     pulumi.String("image-backend-bucket"),
 * 			Location: pulumi.String("EU"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewBackendBucket(ctx, "image_backend", &compute.BackendBucketArgs{
 * 			Name:        pulumi.String("image-backend-bucket"),
 * 			Description: pulumi.String("Contains beautiful images"),
 * 			BucketName:  imageBucket.Name,
 * 			EnableCdn:   pulumi.Bool(true),
 * 			CdnPolicy: &compute.BackendBucketCdnPolicyArgs{
 * 				CacheKeyPolicy: &compute.BackendBucketCdnPolicyCacheKeyPolicyArgs{
 * 					IncludeHttpHeaders: pulumi.StringArray{
 * 						pulumi.String("X-My-Header-Field"),
 * 					},
 * 				},
 * 			},
 * 		})
 * 		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.storage.Bucket;
 * import com.pulumi.gcp.storage.BucketArgs;
 * import com.pulumi.gcp.compute.BackendBucket;
 * import com.pulumi.gcp.compute.BackendBucketArgs;
 * import com.pulumi.gcp.compute.inputs.BackendBucketCdnPolicyArgs;
 * import com.pulumi.gcp.compute.inputs.BackendBucketCdnPolicyCacheKeyPolicyArgs;
 * 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 imageBucket = new Bucket("imageBucket", BucketArgs.builder()
 *             .name("image-backend-bucket")
 *             .location("EU")
 *             .build());
 *         var imageBackend = new BackendBucket("imageBackend", BackendBucketArgs.builder()
 *             .name("image-backend-bucket")
 *             .description("Contains beautiful images")
 *             .bucketName(imageBucket.name())
 *             .enableCdn(true)
 *             .cdnPolicy(BackendBucketCdnPolicyArgs.builder()
 *                 .cacheKeyPolicy(BackendBucketCdnPolicyCacheKeyPolicyArgs.builder()
 *                     .includeHttpHeaders("X-My-Header-Field")
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   imageBackend:
 *     type: gcp:compute:BackendBucket
 *     name: image_backend
 *     properties:
 *       name: image-backend-bucket
 *       description: Contains beautiful images
 *       bucketName: ${imageBucket.name}
 *       enableCdn: true
 *       cdnPolicy:
 *         cacheKeyPolicy:
 *           includeHttpHeaders:
 *             - X-My-Header-Field
 *   imageBucket:
 *     type: gcp:storage:Bucket
 *     name: image_bucket
 *     properties:
 *       name: image-backend-bucket
 *       location: EU
 * ```
 * 
 * ## Import
 * BackendBucket can be imported using any of these accepted formats:
 * * `projects/{{project}}/global/backendBuckets/{{name}}`
 * * `{{project}}/{{name}}`
 * * `{{name}}`
 * When using the `pulumi import` command, BackendBucket can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:compute/backendBucket:BackendBucket default projects/{{project}}/global/backendBuckets/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:compute/backendBucket:BackendBucket default {{project}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:compute/backendBucket:BackendBucket default {{name}}
 * ```
 * @property bucketName Cloud Storage bucket name.
 * @property cdnPolicy Cloud CDN configuration for this Backend Bucket.
 * Structure is documented below.
 * @property compressionMode Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header.
 * Possible values are: `AUTOMATIC`, `DISABLED`.
 * @property customResponseHeaders Headers that the HTTP/S load balancer should add to proxied responses.
 * @property description An optional textual description of the resource; provided by the
 * client when the resource is created.
 * @property edgeSecurityPolicy The security policy associated with this backend bucket.
 * @property enableCdn If true, enable Cloud CDN for this BackendBucket.
 * @property name Name of the resource. Provided by the client when the resource is
 * created. The name must be 1-63 characters long, and comply with
 * RFC1035.  Specifically, the name must be 1-63 characters long and
 * match the regular expression `a-z?` which means
 * the first character must be a lowercase letter, and all following
 * characters must be a dash, lowercase letter, or digit, except the
 * last character, which cannot be a dash.
 * - - -
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 */
public data class BackendBucketArgs(
    public val bucketName: Output? = null,
    public val cdnPolicy: Output? = null,
    public val compressionMode: Output? = null,
    public val customResponseHeaders: Output>? = null,
    public val description: Output? = null,
    public val edgeSecurityPolicy: Output? = null,
    public val enableCdn: Output? = null,
    public val name: Output? = null,
    public val project: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.BackendBucketArgs =
        com.pulumi.gcp.compute.BackendBucketArgs.builder()
            .bucketName(bucketName?.applyValue({ args0 -> args0 }))
            .cdnPolicy(cdnPolicy?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .compressionMode(compressionMode?.applyValue({ args0 -> args0 }))
            .customResponseHeaders(customResponseHeaders?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .description(description?.applyValue({ args0 -> args0 }))
            .edgeSecurityPolicy(edgeSecurityPolicy?.applyValue({ args0 -> args0 }))
            .enableCdn(enableCdn?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BackendBucketArgs].
 */
@PulumiTagMarker
public class BackendBucketArgsBuilder internal constructor() {
    private var bucketName: Output? = null

    private var cdnPolicy: Output? = null

    private var compressionMode: Output? = null

    private var customResponseHeaders: Output>? = null

    private var description: Output? = null

    private var edgeSecurityPolicy: Output? = null

    private var enableCdn: Output? = null

    private var name: Output? = null

    private var project: Output? = null

    /**
     * @param value Cloud Storage bucket name.
     */
    @JvmName("ufjgmxiyelsxbcrj")
    public suspend fun bucketName(`value`: Output) {
        this.bucketName = value
    }

    /**
     * @param value Cloud CDN configuration for this Backend Bucket.
     * Structure is documented below.
     */
    @JvmName("vinepcnvikhjkhqj")
    public suspend fun cdnPolicy(`value`: Output) {
        this.cdnPolicy = value
    }

    /**
     * @param value Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header.
     * Possible values are: `AUTOMATIC`, `DISABLED`.
     */
    @JvmName("xfcchsnivffrhkvm")
    public suspend fun compressionMode(`value`: Output) {
        this.compressionMode = value
    }

    /**
     * @param value Headers that the HTTP/S load balancer should add to proxied responses.
     */
    @JvmName("gmameoulmtwdlcsl")
    public suspend fun customResponseHeaders(`value`: Output>) {
        this.customResponseHeaders = value
    }

    @JvmName("mwhtlbpqnjxevkhm")
    public suspend fun customResponseHeaders(vararg values: Output) {
        this.customResponseHeaders = Output.all(values.asList())
    }

    /**
     * @param values Headers that the HTTP/S load balancer should add to proxied responses.
     */
    @JvmName("imufllpbqmlhtcsw")
    public suspend fun customResponseHeaders(values: List>) {
        this.customResponseHeaders = Output.all(values)
    }

    /**
     * @param value An optional textual description of the resource; provided by the
     * client when the resource is created.
     */
    @JvmName("semxyjuhewycfxhj")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The security policy associated with this backend bucket.
     */
    @JvmName("srfalosraxcinlyy")
    public suspend fun edgeSecurityPolicy(`value`: Output) {
        this.edgeSecurityPolicy = value
    }

    /**
     * @param value If true, enable Cloud CDN for this BackendBucket.
     */
    @JvmName("pqwgtgexjnnbedkd")
    public suspend fun enableCdn(`value`: Output) {
        this.enableCdn = value
    }

    /**
     * @param value Name of the resource. Provided by the client when the resource is
     * created. The name must be 1-63 characters long, and comply with
     * RFC1035.  Specifically, the name must be 1-63 characters long and
     * match the regular expression `a-z?` which means
     * the first character must be a lowercase letter, and all following
     * characters must be a dash, lowercase letter, or digit, except the
     * last character, which cannot be a dash.
     * - - -
     */
    @JvmName("mafhjpgpxjmrlske")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("pprxdpeqbbfnyofn")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value Cloud Storage bucket name.
     */
    @JvmName("pccwkxucdggbannd")
    public suspend fun bucketName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.bucketName = mapped
    }

    /**
     * @param value Cloud CDN configuration for this Backend Bucket.
     * Structure is documented below.
     */
    @JvmName("vaewicrdxnfiwcgk")
    public suspend fun cdnPolicy(`value`: BackendBucketCdnPolicyArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.cdnPolicy = mapped
    }

    /**
     * @param argument Cloud CDN configuration for this Backend Bucket.
     * Structure is documented below.
     */
    @JvmName("dmxojvoyqsluqkuj")
    public suspend fun cdnPolicy(argument: suspend BackendBucketCdnPolicyArgsBuilder.() -> Unit) {
        val toBeMapped = BackendBucketCdnPolicyArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.cdnPolicy = mapped
    }

    /**
     * @param value Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header.
     * Possible values are: `AUTOMATIC`, `DISABLED`.
     */
    @JvmName("ypdopoamyqbposdd")
    public suspend fun compressionMode(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.compressionMode = mapped
    }

    /**
     * @param value Headers that the HTTP/S load balancer should add to proxied responses.
     */
    @JvmName("rhcmfwyydwuqtecw")
    public suspend fun customResponseHeaders(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.customResponseHeaders = mapped
    }

    /**
     * @param values Headers that the HTTP/S load balancer should add to proxied responses.
     */
    @JvmName("ibxetucgcvnvknfg")
    public suspend fun customResponseHeaders(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.customResponseHeaders = mapped
    }

    /**
     * @param value An optional textual description of the resource; provided by the
     * client when the resource is created.
     */
    @JvmName("wwodlmebfxwbiano")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The security policy associated with this backend bucket.
     */
    @JvmName("tvohuypktyyylnut")
    public suspend fun edgeSecurityPolicy(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.edgeSecurityPolicy = mapped
    }

    /**
     * @param value If true, enable Cloud CDN for this BackendBucket.
     */
    @JvmName("hanbpsheprkgqwnv")
    public suspend fun enableCdn(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enableCdn = mapped
    }

    /**
     * @param value Name of the resource. Provided by the client when the resource is
     * created. The name must be 1-63 characters long, and comply with
     * RFC1035.  Specifically, the name must be 1-63 characters long and
     * match the regular expression `a-z?` which means
     * the first character must be a lowercase letter, and all following
     * characters must be a dash, lowercase letter, or digit, except the
     * last character, which cannot be a dash.
     * - - -
     */
    @JvmName("jdninwvwkfaanbtb")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("cgldvuhfbbdoudbd")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    internal fun build(): BackendBucketArgs = BackendBucketArgs(
        bucketName = bucketName,
        cdnPolicy = cdnPolicy,
        compressionMode = compressionMode,
        customResponseHeaders = customResponseHeaders,
        description = description,
        edgeSecurityPolicy = edgeSecurityPolicy,
        enableCdn = enableCdn,
        name = name,
        project = project,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy