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

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

The newest version!
package besom.api.akamai

final case class AppSecReputationProfileActionArgs private(
  action: besom.types.Output[String],
  configId: besom.types.Output[Int],
  reputationProfileId: besom.types.Output[Int],
  securityPolicyId: besom.types.Output[String]
)

object AppSecReputationProfileActionArgs:
  def apply(
    action: besom.types.Input[String],
    configId: besom.types.Input[Int],
    reputationProfileId: besom.types.Input[Int],
    securityPolicyId: besom.types.Input[String]
  )(using besom.types.Context): AppSecReputationProfileActionArgs =
    new AppSecReputationProfileActionArgs(
      action = action.asOutput(isSecret = false),
      configId = configId.asOutput(isSecret = false),
      reputationProfileId = reputationProfileId.asOutput(isSecret = false),
      securityPolicyId = securityPolicyId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy