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