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

src.index.IpPolicy.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 IpPolicy private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  action: besom.types.Output[scala.Option[String]],
  description: besom.types.Output[scala.Option[String]],
  metadata: besom.types.Output[scala.Option[String]]
) extends besom.CustomResource

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

  private[besom] def typeToken: besom.types.ResourceType = "ngrok:index/ipPolicy:IpPolicy"

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[IpPolicy])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def action : besom.types.Output[scala.Option[String]] = output.flatMap(_.action)
      def description : besom.types.Output[scala.Option[String]] = output.flatMap(_.description)
      def metadata : besom.types.Output[scala.Option[String]] = output.flatMap(_.metadata)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy