src.index.inputs.EventDestinationTargetDebugArgs.scala Maven / Gradle / Ivy
package besom.api.ngrok.inputs
final case class EventDestinationTargetDebugArgs private(
callbackUrl: besom.types.Output[scala.Option[String]],
log: besom.types.Output[scala.Option[Boolean]]
)
object EventDestinationTargetDebugArgs:
def apply(
callbackUrl: besom.types.Input.Optional[String] = scala.None,
log: besom.types.Input.Optional[Boolean] = scala.None
)(using besom.types.Context): EventDestinationTargetDebugArgs =
new EventDestinationTargetDebugArgs(
callbackUrl = callbackUrl.asOptionOutput(isSecret = false),
log = log.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[EventDestinationTargetDebugArgs] =
besom.internal.Encoder.derived[EventDestinationTargetDebugArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EventDestinationTargetDebugArgs] =
besom.internal.ArgsEncoder.derived[EventDestinationTargetDebugArgs]
© 2015 - 2024 Weber Informatics LLC | Privacy Policy