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