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

src.bigquerydatatransfer.v1.GetTransferConfigArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.bigquerydatatransfer.v1

final case class GetTransferConfigArgs private(
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  transferConfigId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy