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