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