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