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