src.index.outputs.DnsZoneTsigKey.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class DnsZoneTsigKey private(
algorithm: String,
name: String,
secret: String
)
object DnsZoneTsigKey :
given decoder(using besom.types.Context): besom.types.Decoder[DnsZoneTsigKey] =
besom.internal.Decoder.derived[DnsZoneTsigKey]
given outputOps: {} with
extension(output: besom.types.Output[DnsZoneTsigKey])
def algorithm : besom.types.Output[String] = output.map(_.algorithm)
def name : besom.types.Output[String] = output.map(_.name)
def secret : besom.types.Output[String] = output.map(_.secret)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[DnsZoneTsigKey]])
def algorithm : besom.types.Output[scala.Option[String]] = output.map(_.map(_.algorithm))
def name : besom.types.Output[scala.Option[String]] = output.map(_.map(_.name))
def secret : besom.types.Output[scala.Option[String]] = output.map(_.map(_.secret))