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