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

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

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

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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy