
src.compute.v1.BackendBucket.scala Maven / Gradle / Ivy
package besom.api.googlenative.compute.v1
final case class BackendBucket private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
bucketName: besom.types.Output[String],
cdnPolicy: besom.types.Output[besom.api.googlenative.compute.v1.outputs.BackendBucketCdnPolicyResponse],
compressionMode: besom.types.Output[String],
creationTimestamp: besom.types.Output[String],
customResponseHeaders: besom.types.Output[scala.collection.immutable.List[String]],
description: besom.types.Output[String],
edgeSecurityPolicy: besom.types.Output[String],
enableCdn: besom.types.Output[Boolean],
kind: besom.types.Output[String],
name: besom.types.Output[String],
project: besom.types.Output[String],
requestId: besom.types.Output[scala.Option[String]],
selfLink: besom.types.Output[String]
) extends besom.CustomResource
object BackendBucket extends besom.ResourceCompanion[BackendBucket]:
/** Resource constructor for BackendBucket.
*
* @param name [[besom.util.NonEmptyString]] The unique (stack-wise) name of the resource in Pulumi state (not on provider's side).
* NonEmptyString is inferred automatically from non-empty string literals, even when interpolated. If you encounter any
* issues with this, please try using `: NonEmptyString` type annotation. If you need to convert a dynamically generated
* string to NonEmptyString, use `NonEmptyString.apply` method - `NonEmptyString(str): Option[NonEmptyString]`.
*
* @param args [[BackendBucketArgs]] The configuration to use to create this resource. This resource has a default configuration.
*
* @param opts [[besom.CustomResourceOptions]] Resource options to use for this resource.
* Defaults to empty options. If you need to set some options, use [[besom.opts]] function to create them, for example:
*
* {{{
* val res = BackendBucket(
* "my-resource",
* BackendBucketArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: BackendBucketArgs = BackendBucketArgs(),
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[BackendBucket] =
ctx.readOrRegisterResource[BackendBucket, BackendBucketArgs]("google-native:compute/v1:BackendBucket", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:compute/v1:BackendBucket"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[BackendBucket] =
besom.internal.ResourceDecoder.derived[BackendBucket]
given decoder(using besom.types.Context): besom.types.Decoder[BackendBucket] =
besom.internal.Decoder.customResourceDecoder[BackendBucket]
given outputOps: {} with
extension(output: besom.types.Output[BackendBucket])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def bucketName : besom.types.Output[String] = output.flatMap(_.bucketName)
def cdnPolicy : besom.types.Output[besom.api.googlenative.compute.v1.outputs.BackendBucketCdnPolicyResponse] = output.flatMap(_.cdnPolicy)
def compressionMode : besom.types.Output[String] = output.flatMap(_.compressionMode)
def creationTimestamp : besom.types.Output[String] = output.flatMap(_.creationTimestamp)
def customResponseHeaders : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.customResponseHeaders)
def description : besom.types.Output[String] = output.flatMap(_.description)
def edgeSecurityPolicy : besom.types.Output[String] = output.flatMap(_.edgeSecurityPolicy)
def enableCdn : besom.types.Output[Boolean] = output.flatMap(_.enableCdn)
def kind : besom.types.Output[String] = output.flatMap(_.kind)
def name : besom.types.Output[String] = output.flatMap(_.name)
def project : besom.types.Output[String] = output.flatMap(_.project)
def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
def selfLink : besom.types.Output[String] = output.flatMap(_.selfLink)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy