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

src.compute.beta.GetRegionHealthCheckArgs.scala Maven / Gradle / Ivy

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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy