All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.index.inputs.EndpointConfigurationLoggingEventStreamArgs.scala Maven / Gradle / Ivy

There is a newer version: 0.0.24-core.0.3
Show newest version
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