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

src.apigee.v1.GetNatAddressResult.scala Maven / Gradle / Ivy

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


final case class GetNatAddressResult private(
  ipAddress: String,
  name: String,
  state: String
)
object GetNatAddressResult :

  given decoder(using besom.types.Context): besom.types.Decoder[GetNatAddressResult] =
    besom.internal.Decoder.derived[GetNatAddressResult]



  given outputOps: {} with
    extension(output: besom.types.Output[GetNatAddressResult])
      def ipAddress : besom.types.Output[String] = output.map(_.ipAddress)
      def name : besom.types.Output[String] = output.map(_.name)
      def state : besom.types.Output[String] = output.map(_.state)

  given optionOutputOps: {} with
    extension(output: besom.types.Output[scala.Option[GetNatAddressResult]])
      def ipAddress : besom.types.Output[scala.Option[String]] = output.map(_.map(_.ipAddress))
      def name : besom.types.Output[scala.Option[String]] = output.map(_.map(_.name))
      def state : besom.types.Output[scala.Option[String]] = output.map(_.map(_.state))





© 2015 - 2025 Weber Informatics LLC | Privacy Policy