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

src.ids.v1.Endpoint.scala Maven / Gradle / Ivy

There is a newer version: 0.32.0-core.0.4
Show newest version
package besom.api.googlenative.ids.v1

final case class Endpoint private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  createTime: besom.types.Output[String],
  description: besom.types.Output[String],
  endpointForwardingRule: besom.types.Output[String],
  endpointId: besom.types.Output[String],
  endpointIp: besom.types.Output[String],
  labels: besom.types.Output[scala.Predef.Map[String, String]],
  location: besom.types.Output[String],
  name: besom.types.Output[String],
  network: besom.types.Output[String],
  project: besom.types.Output[String],
  requestId: besom.types.Output[scala.Option[String]],
  severity: besom.types.Output[String],
  state: besom.types.Output[String],
  threatExceptions: besom.types.Output[scala.collection.immutable.List[String]],
  trafficLogs: besom.types.Output[Boolean],
  updateTime: besom.types.Output[String]
) extends besom.CustomResource

object Endpoint extends besom.ResourceCompanion[Endpoint]:
  /** Resource constructor for Endpoint. 
    * 
    * @param name [[besom.util.NonEmptyString]] The unique (stack-wise) name of the resource in Pulumi state (not on provider's side).
    *        NonEmptyString is inferred automatically from non-empty string literals, even when interpolated. If you encounter any
    *        issues with this, please try using `: NonEmptyString` type annotation. If you need to convert a dynamically generated
    *        string to NonEmptyString, use `NonEmptyString.apply` method - `NonEmptyString(str): Option[NonEmptyString]`.
    *
    * @param args [[EndpointArgs]] The configuration to use to create this resource. 
    *
    * @param opts [[besom.CustomResourceOptions]] Resource options to use for this resource. 
    *        Defaults to empty options. If you need to set some options, use [[besom.opts]] function to create them, for example:
    *  
    *        {{{
    *        val res = Endpoint(
    *          "my-resource",
    *          EndpointArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: EndpointArgs,
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[Endpoint] =
    ctx.readOrRegisterResource[Endpoint, EndpointArgs]("google-native:ids/v1:Endpoint", name, args, opts(using besom.ResourceOptsVariant.Custom))

  private[besom] def typeToken: besom.types.ResourceType = "google-native:ids/v1:Endpoint"

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[Endpoint])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def description : besom.types.Output[String] = output.flatMap(_.description)
      def endpointForwardingRule : besom.types.Output[String] = output.flatMap(_.endpointForwardingRule)
      def endpointId : besom.types.Output[String] = output.flatMap(_.endpointId)
      def endpointIp : besom.types.Output[String] = output.flatMap(_.endpointIp)
      def labels : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.labels)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def network : besom.types.Output[String] = output.flatMap(_.network)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
      def severity : besom.types.Output[String] = output.flatMap(_.severity)
      def state : besom.types.Output[String] = output.flatMap(_.state)
      def threatExceptions : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.threatExceptions)
      def trafficLogs : besom.types.Output[Boolean] = output.flatMap(_.trafficLogs)
      def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy