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

src.compute.alpha.GetZoneQueuedResourceArgs.scala Maven / Gradle / Ivy

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.compute.alpha

final case class GetZoneQueuedResourceArgs private(
  project: besom.types.Output[scala.Option[String]],
  queuedResource: besom.types.Output[String],
  zone: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy