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

src.index.GetPropertyIncludesArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class GetPropertyIncludesArgs private(
  contractId: besom.types.Output[String],
  groupId: besom.types.Output[String],
  parentProperty: besom.types.Output[scala.Option[besom.api.akamai.inputs.GetPropertyIncludesParentPropertyArgs]],
  `type`: besom.types.Output[scala.Option[String]]
)

object GetPropertyIncludesArgs:
  def apply(
    contractId: besom.types.Input[String],
    groupId: besom.types.Input[String],
    parentProperty: besom.types.Input.Optional[besom.api.akamai.inputs.GetPropertyIncludesParentPropertyArgs] = scala.None,
    `type`: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): GetPropertyIncludesArgs =
    new GetPropertyIncludesArgs(
      contractId = contractId.asOutput(isSecret = false),
      groupId = groupId.asOutput(isSecret = false),
      parentProperty = parentProperty.asOptionOutput(isSecret = false),
      `type` = `type`.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy