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