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