
src.dataproc.v1.GetJobArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.dataproc.v1
final case class GetJobArgs private(
jobId: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]],
region: besom.types.Output[String]
)
object GetJobArgs:
def apply(
jobId: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None,
region: besom.types.Input[String]
)(using besom.types.Context): GetJobArgs =
new GetJobArgs(
jobId = jobId.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false),
region = region.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetJobArgs] =
besom.internal.Encoder.derived[GetJobArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetJobArgs] =
besom.internal.ArgsEncoder.derived[GetJobArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy