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

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

package besom.api.googlenative.logging.v2

final case class GetOrganizationBucketViewArgs private(
  bucketId: besom.types.Output[String],
  location: besom.types.Output[String],
  organizationId: besom.types.Output[String],
  viewId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy