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

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

package besom.api.gcpglobalcloudrun

final case class Deployment private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  ipAddress: besom.types.Output[String]
) extends besom.RemoteComponentResource

object Deployment extends besom.ResourceCompanion[Deployment]:
  /** Resource constructor for Deployment. 
    * 
    * @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 [[DeploymentArgs]] The configuration to use to create this resource. 
    *
    * @param opts [[besom.ComponentResourceOptions]] 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 = Deployment(
    *          "my-resource",
    *          DeploymentArgs(...), // your args
    *          opts(provider = myProvider)
    *        )
    *        }}}
    */
  def apply(using ctx: besom.types.Context)(
    name: besom.util.NonEmptyString,
    args: DeploymentArgs,
    opts: besom.ResourceOptsVariant.Component ?=> besom.ComponentResourceOptions = besom.ComponentResourceOptions()
  ): besom.types.Output[Deployment] =
    ctx.registerRemoteComponentResource[Deployment, DeploymentArgs]("gcp-global-cloudrun:index:Deployment", name, args, opts(using besom.ResourceOptsVariant.Component))

  private[besom] def typeToken: besom.types.ResourceType = "gcp-global-cloudrun:index:Deployment"

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

  given decoder(using besom.types.Context): besom.types.Decoder[Deployment] =
    besom.internal.Decoder.remoteComponentResourceDecoder[Deployment]


  given outputOps: {} with
    extension(output: besom.types.Output[Deployment])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def ipAddress : besom.types.Output[String] = output.flatMap(_.ipAddress)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy