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