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

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

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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy