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

src.dataplex.v1.GetTaskArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.dataplex.v1

final case class GetTaskArgs private(
  lakeId: besom.types.Output[String],
  location: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  taskId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy