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

src.datalineage.v1.GetRunArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.googlenative.datalineage.v1

final case class GetRunArgs private(
  location: besom.types.Output[String],
  processId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]],
  runId: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy