src.config.config.scala Maven / Gradle / Ivy
package besom.api.ngrok.config
import besom.internal.CodegenProtocol.*
/**
* base URL for the ngrok API. only overridden for ngrok's internal testing purposes.
* @returns the value of the `ngrok:apiBaseUrl` configuration property.
*/
def getApiBaseUrl(using besom.types.Context): besom.types.Output[scala.Option[String]] =
besom.internal.Codegen.config[String]("ngrok")(key = "apiBaseUrl", isSecret = false, default = scala.None, environment = scala.collection.immutable.List())
/**
* ngrok API key used for authenticating to the API
* @returns the value of the `ngrok:apiKey` configuration property or a default value if present.
*/
def getApiKey(using besom.types.Context): besom.types.Output[scala.Option[String]] =
besom.internal.Codegen.config[String]("ngrok")(key = "apiKey", isSecret = false, default = scala.None, environment = scala.collection.immutable.List())
© 2015 - 2024 Weber Informatics LLC | Privacy Policy