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

src.compute.v1.GetTargetPoolArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.googlenative.compute.v1

final case class GetTargetPoolArgs private(
  project: besom.types.Output[scala.Option[String]],
  region: besom.types.Output[String],
  targetPool: besom.types.Output[String]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy