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

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

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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy