
src.datalineage.v1.GetLineageEventArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.datalineage.v1
final case class GetLineageEventArgs private(
lineageEventId: besom.types.Output[String],
location: besom.types.Output[String],
processId: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]],
runId: besom.types.Output[String]
)
object GetLineageEventArgs:
def apply(
lineageEventId: besom.types.Input[String],
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): GetLineageEventArgs =
new GetLineageEventArgs(
lineageEventId = lineageEventId.asOutput(isSecret = false),
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[GetLineageEventArgs] =
besom.internal.Encoder.derived[GetLineageEventArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetLineageEventArgs] =
besom.internal.ArgsEncoder.derived[GetLineageEventArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy