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

src.cloudtasks.v2.Task.scala Maven / Gradle / Ivy

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

final case class Task private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  appEngineHttpRequest: besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.AppEngineHttpRequestResponse],
  createTime: besom.types.Output[String],
  dispatchCount: besom.types.Output[Int],
  dispatchDeadline: besom.types.Output[String],
  firstAttempt: besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.AttemptResponse],
  httpRequest: besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.HttpRequestResponse],
  lastAttempt: besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.AttemptResponse],
  location: besom.types.Output[String],
  name: besom.types.Output[String],
  project: besom.types.Output[String],
  queueId: besom.types.Output[String],
  responseCount: besom.types.Output[Int],
  scheduleTime: besom.types.Output[String],
  view: besom.types.Output[String]
) extends besom.CustomResource

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

  private[besom] def typeToken: besom.types.ResourceType = "google-native:cloudtasks/v2:Task"

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[Task])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def appEngineHttpRequest : besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.AppEngineHttpRequestResponse] = output.flatMap(_.appEngineHttpRequest)
      def createTime : besom.types.Output[String] = output.flatMap(_.createTime)
      def dispatchCount : besom.types.Output[Int] = output.flatMap(_.dispatchCount)
      def dispatchDeadline : besom.types.Output[String] = output.flatMap(_.dispatchDeadline)
      def firstAttempt : besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.AttemptResponse] = output.flatMap(_.firstAttempt)
      def httpRequest : besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.HttpRequestResponse] = output.flatMap(_.httpRequest)
      def lastAttempt : besom.types.Output[besom.api.googlenative.cloudtasks.v2.outputs.AttemptResponse] = output.flatMap(_.lastAttempt)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def queueId : besom.types.Output[String] = output.flatMap(_.queueId)
      def responseCount : besom.types.Output[Int] = output.flatMap(_.responseCount)
      def scheduleTime : besom.types.Output[String] = output.flatMap(_.scheduleTime)
      def view : besom.types.Output[String] = output.flatMap(_.view)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy