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