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

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

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.logging.v2

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy