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

src.index.Credential.scala Maven / Gradle / Ivy

There is a newer version: 0.0.24-core.0.3
Show newest version
package besom.api.ngrok

final case class Credential private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  acls: besom.types.Output[scala.Option[scala.collection.immutable.List[String]]],
  description: besom.types.Output[scala.Option[String]],
  metadata: besom.types.Output[scala.Option[String]],
  token: besom.types.Output[String]
) extends besom.CustomResource

object Credential extends besom.ResourceCompanion[Credential]:
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: CredentialArgs = CredentialArgs(),
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[Credential] =
    ctx.readOrRegisterResource[Credential, CredentialArgs]("ngrok:index/credential:Credential", name, args, opts(using besom.ResourceOptsVariant.Custom))

  private[besom] def typeToken: besom.types.ResourceType = "ngrok:index/credential:Credential"

  given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Credential] =
    besom.internal.ResourceDecoder.derived[Credential]

  given decoder(using besom.types.Context): besom.types.Decoder[Credential] =
    besom.internal.Decoder.customResourceDecoder[Credential]


  given outputOps: {} with
    extension(output: besom.types.Output[Credential])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def acls : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.flatMap(_.acls)
      def description : besom.types.Output[scala.Option[String]] = output.flatMap(_.description)
      def metadata : besom.types.Output[scala.Option[String]] = output.flatMap(_.metadata)
      def token : besom.types.Output[String] = output.flatMap(_.token)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy