src.index.GetAppSecTuningRecommendationsArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai
final case class GetAppSecTuningRecommendationsArgs private(
attackGroup: besom.types.Output[scala.Option[String]],
configId: besom.types.Output[Int],
ruleId: besom.types.Output[scala.Option[Int]],
rulesetType: besom.types.Output[scala.Option[String]],
securityPolicyId: besom.types.Output[scala.Option[String]]
)
object GetAppSecTuningRecommendationsArgs:
def apply(
attackGroup: besom.types.Input.Optional[String] = scala.None,
configId: besom.types.Input[Int],
ruleId: besom.types.Input.Optional[Int] = scala.None,
rulesetType: besom.types.Input.Optional[String] = scala.None,
securityPolicyId: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetAppSecTuningRecommendationsArgs =
new GetAppSecTuningRecommendationsArgs(
attackGroup = attackGroup.asOptionOutput(isSecret = false),
configId = configId.asOutput(isSecret = false),
ruleId = ruleId.asOptionOutput(isSecret = false),
rulesetType = rulesetType.asOptionOutput(isSecret = false),
securityPolicyId = securityPolicyId.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetAppSecTuningRecommendationsArgs] =
besom.internal.Encoder.derived[GetAppSecTuningRecommendationsArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetAppSecTuningRecommendationsArgs] =
besom.internal.ArgsEncoder.derived[GetAppSecTuningRecommendationsArgs]