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

src.vmwareengine.v1.GetExternalAddressArgs.scala Maven / Gradle / Ivy

package besom.api.googlenative.vmwareengine.v1

final case class GetExternalAddressArgs private(
  externalAddressId: besom.types.Output[String],
  location: besom.types.Output[String],
  privateCloudId: besom.types.Output[String],
  project: besom.types.Output[scala.Option[String]]
)

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy