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

src.vmwareengine.v1.LoggingServer.scala Maven / Gradle / Ivy

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

final case class LoggingServer private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  createTime: besom.types.Output[String],
  hostname: besom.types.Output[String],
  location: besom.types.Output[String],
  loggingServerId: besom.types.Output[String],
  name: besom.types.Output[String],
  port: besom.types.Output[Int],
  privateCloudId: besom.types.Output[String],
  project: besom.types.Output[String],
  protocol: besom.types.Output[String],
  requestId: besom.types.Output[scala.Option[String]],
  sourceType: besom.types.Output[String],
  uid: besom.types.Output[String],
  updateTime: besom.types.Output[String]
) extends besom.CustomResource

object LoggingServer extends besom.ResourceCompanion[LoggingServer]:
  /** Resource constructor for LoggingServer. 
    * 
    * @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 [[LoggingServerArgs]] 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 = LoggingServer(
    *          "my-resource",
    *          LoggingServerArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: LoggingServerArgs,
    opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
  ): besom.types.Output[LoggingServer] =
    ctx.readOrRegisterResource[LoggingServer, LoggingServerArgs]("google-native:vmwareengine/v1:LoggingServer", name, args, opts(using besom.ResourceOptsVariant.Custom))

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

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[LoggingServer])
      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 hostname : besom.types.Output[String] = output.flatMap(_.hostname)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def loggingServerId : besom.types.Output[String] = output.flatMap(_.loggingServerId)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def port : besom.types.Output[Int] = output.flatMap(_.port)
      def privateCloudId : besom.types.Output[String] = output.flatMap(_.privateCloudId)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def protocol : besom.types.Output[String] = output.flatMap(_.protocol)
      def requestId : besom.types.Output[scala.Option[String]] = output.flatMap(_.requestId)
      def sourceType : besom.types.Output[String] = output.flatMap(_.sourceType)
      def uid : besom.types.Output[String] = output.flatMap(_.uid)
      def updateTime : besom.types.Output[String] = output.flatMap(_.updateTime)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy