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