All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy