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