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

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

package besom.api.googlenative.logging.v2

final case class GetBillingAccountBucketArgs private(
  billingAccountId: besom.types.Output[String],
  bucketId: besom.types.Output[String],
  location: besom.types.Output[String]
)

object GetBillingAccountBucketArgs:
  def apply(
    billingAccountId: besom.types.Input[String],
    bucketId: besom.types.Input[String],
    location: besom.types.Input[String]
  )(using besom.types.Context): GetBillingAccountBucketArgs =
    new GetBillingAccountBucketArgs(
      billingAccountId = billingAccountId.asOutput(isSecret = false),
      bucketId = bucketId.asOutput(isSecret = false),
      location = location.asOutput(isSecret = false)
    )

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy