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

src.index.inputs.GetGtmDomainPropertyStaticRrSetArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai.inputs

final case class GetGtmDomainPropertyStaticRrSetArgs private(
  rdatas: besom.types.Output[scala.collection.immutable.List[String]],
  ttl: besom.types.Output[Int],
  `type`: besom.types.Output[String]
)

object GetGtmDomainPropertyStaticRrSetArgs:
  def apply(
    rdatas: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]],
    ttl: besom.types.Input[Int],
    `type`: besom.types.Input[String]
  )(using besom.types.Context): GetGtmDomainPropertyStaticRrSetArgs =
    new GetGtmDomainPropertyStaticRrSetArgs(
      rdatas = rdatas.asOutput(isSecret = false),
      ttl = ttl.asOutput(isSecret = false),
      `type` = `type`.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy