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