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