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

src.compute.alpha.GetBackendBucketArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.googlenative.compute.alpha

final case class GetBackendBucketArgs private(
  backendBucket: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

object GetBackendBucketArgs:
  def apply(
    backendBucket: besom.types.Input[String],
    project: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): GetBackendBucketArgs =
    new GetBackendBucketArgs(
      backendBucket = backendBucket.asOutput(isSecret = false),
      project = project.asOptionOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[GetBackendBucketArgs] =
    besom.internal.Encoder.derived[GetBackendBucketArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetBackendBucketArgs] =
    besom.internal.ArgsEncoder.derived[GetBackendBucketArgs]






© 2015 - 2025 Weber Informatics LLC | Privacy Policy