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