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

src.logging.v2.GetBucketViewArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.logging.v2

final case class GetBucketViewArgs private(
  bucketId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  viewId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy