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

src.notebooks.v1.GetScheduleArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.notebooks.v1

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy