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

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

The newest version!
package besom.api.akamai

final case class GetPropertyIncludeActivationArgs private(
  contractId: besom.types.Output[String],
  groupId: besom.types.Output[String],
  includeId: besom.types.Output[String],
  network: besom.types.Output[String]
)

object GetPropertyIncludeActivationArgs:
  def apply(
    contractId: besom.types.Input[String],
    groupId: besom.types.Input[String],
    includeId: besom.types.Input[String],
    network: besom.types.Input[String]
  )(using besom.types.Context): GetPropertyIncludeActivationArgs =
    new GetPropertyIncludeActivationArgs(
      contractId = contractId.asOutput(isSecret = false),
      groupId = groupId.asOutput(isSecret = false),
      includeId = includeId.asOutput(isSecret = false),
      network = network.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy