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

src.index.inputs.EndpointConfigurationBackendBackendArgs.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 EndpointConfigurationBackendBackendArgs private(
  id: besom.types.Output[scala.Option[String]],
  uri: besom.types.Output[scala.Option[String]]
)

object EndpointConfigurationBackendBackendArgs:
  def apply(
    id: besom.types.Input.Optional[String] = scala.None,
    uri: besom.types.Input.Optional[String] = scala.None
  )(using besom.types.Context): EndpointConfigurationBackendBackendArgs =
    new EndpointConfigurationBackendBackendArgs(
      id = id.asOptionOutput(isSecret = false),
      uri = uri.asOptionOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[EndpointConfigurationBackendBackendArgs] =
    besom.internal.Encoder.derived[EndpointConfigurationBackendBackendArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[EndpointConfigurationBackendBackendArgs] =
    besom.internal.ArgsEncoder.derived[EndpointConfigurationBackendBackendArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy