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

src.tpu.v2alpha1.GetQueuedResourceArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.tpu.v2alpha1

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy