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

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

package besom.api.googlenative.notebooks.v1

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy