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

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

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

final case class GetPropertyIncludesParentPropertyArgs private(
  id: besom.types.Output[String],
  version: besom.types.Output[Int]
)

object GetPropertyIncludesParentPropertyArgs:
  def apply(
    id: besom.types.Input[String],
    version: besom.types.Input[Int]
  )(using besom.types.Context): GetPropertyIncludesParentPropertyArgs =
    new GetPropertyIncludesParentPropertyArgs(
      id = id.asOutput(isSecret = false),
      version = version.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy