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