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

src.dialogflow.v2beta1.Intent.scala Maven / Gradle / Ivy

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

final case class Intent private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  action: besom.types.Output[String],
  defaultResponsePlatforms: besom.types.Output[scala.collection.immutable.List[String]],
  displayName: besom.types.Output[String],
  endInteraction: besom.types.Output[Boolean],
  events: besom.types.Output[scala.collection.immutable.List[String]],
  followupIntentInfo: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentFollowupIntentInfoResponse]],
  inputContextNames: besom.types.Output[scala.collection.immutable.List[String]],
  intentView: besom.types.Output[scala.Option[String]],
  isFallback: besom.types.Output[Boolean],
  languageCode: besom.types.Output[scala.Option[String]],
  liveAgentHandoff: besom.types.Output[Boolean],
  location: besom.types.Output[String],
  messages: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentMessageResponse]],
  mlDisabled: besom.types.Output[Boolean],
  mlEnabled: besom.types.Output[Boolean],
  name: besom.types.Output[String],
  outputContexts: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1ContextResponse]],
  parameters: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentParameterResponse]],
  parentFollowupIntentName: besom.types.Output[String],
  priority: besom.types.Output[Int],
  project: besom.types.Output[String],
  resetContexts: besom.types.Output[Boolean],
  rootFollowupIntentName: besom.types.Output[String],
  trainingPhrases: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentTrainingPhraseResponse]],
  webhookState: besom.types.Output[String]
) extends besom.CustomResource

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

  private[besom] def typeToken: besom.types.ResourceType = "google-native:dialogflow/v2beta1:Intent"

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[Intent])
      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[String] = output.flatMap(_.action)
      def defaultResponsePlatforms : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.defaultResponsePlatforms)
      def displayName : besom.types.Output[String] = output.flatMap(_.displayName)
      def endInteraction : besom.types.Output[Boolean] = output.flatMap(_.endInteraction)
      def events : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.events)
      def followupIntentInfo : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentFollowupIntentInfoResponse]] = output.flatMap(_.followupIntentInfo)
      def inputContextNames : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.inputContextNames)
      def intentView : besom.types.Output[scala.Option[String]] = output.flatMap(_.intentView)
      def isFallback : besom.types.Output[Boolean] = output.flatMap(_.isFallback)
      def languageCode : besom.types.Output[scala.Option[String]] = output.flatMap(_.languageCode)
      def liveAgentHandoff : besom.types.Output[Boolean] = output.flatMap(_.liveAgentHandoff)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def messages : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentMessageResponse]] = output.flatMap(_.messages)
      def mlDisabled : besom.types.Output[Boolean] = output.flatMap(_.mlDisabled)
      def mlEnabled : besom.types.Output[Boolean] = output.flatMap(_.mlEnabled)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def outputContexts : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1ContextResponse]] = output.flatMap(_.outputContexts)
      def parameters : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentParameterResponse]] = output.flatMap(_.parameters)
      def parentFollowupIntentName : besom.types.Output[String] = output.flatMap(_.parentFollowupIntentName)
      def priority : besom.types.Output[Int] = output.flatMap(_.priority)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def resetContexts : besom.types.Output[Boolean] = output.flatMap(_.resetContexts)
      def rootFollowupIntentName : besom.types.Output[String] = output.flatMap(_.rootFollowupIntentName)
      def trainingPhrases : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v2beta1.outputs.GoogleCloudDialogflowV2beta1IntentTrainingPhraseResponse]] = output.flatMap(_.trainingPhrases)
      def webhookState : besom.types.Output[String] = output.flatMap(_.webhookState)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy