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

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

The newest version!
package besom.api.akamai

final case class GetAppSecReputationProfilesArgs private(
  configId: besom.types.Output[Int],
  reputationProfileId: besom.types.Output[scala.Option[Int]]
)

object GetAppSecReputationProfilesArgs:
  def apply(
    configId: besom.types.Input[Int],
    reputationProfileId: besom.types.Input.Optional[Int] = scala.None
  )(using besom.types.Context): GetAppSecReputationProfilesArgs =
    new GetAppSecReputationProfilesArgs(
      configId = configId.asOutput(isSecret = false),
      reputationProfileId = reputationProfileId.asOptionOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy