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

src.dialogflow.v3.TestCase.scala Maven / Gradle / Ivy

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

final case class TestCase private(
  urn: besom.types.Output[besom.types.URN],
  id: besom.types.Output[besom.types.ResourceId],
  agentId: besom.types.Output[String],
  creationTime: besom.types.Output[String],
  displayName: besom.types.Output[String],
  lastTestResult: besom.types.Output[besom.api.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3TestCaseResultResponse],
  location: besom.types.Output[String],
  name: besom.types.Output[String],
  notes: besom.types.Output[String],
  project: besom.types.Output[String],
  tags: besom.types.Output[scala.collection.immutable.List[String]],
  testCaseConversationTurns: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3ConversationTurnResponse]],
  testConfig: besom.types.Output[besom.api.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3TestConfigResponse]
) extends besom.CustomResource

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

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

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

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


  given outputOps: {} with
    extension(output: besom.types.Output[TestCase])
      def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
      def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
      def agentId : besom.types.Output[String] = output.flatMap(_.agentId)
      def creationTime : besom.types.Output[String] = output.flatMap(_.creationTime)
      def displayName : besom.types.Output[String] = output.flatMap(_.displayName)
      def lastTestResult : besom.types.Output[besom.api.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3TestCaseResultResponse] = output.flatMap(_.lastTestResult)
      def location : besom.types.Output[String] = output.flatMap(_.location)
      def name : besom.types.Output[String] = output.flatMap(_.name)
      def notes : besom.types.Output[String] = output.flatMap(_.notes)
      def project : besom.types.Output[String] = output.flatMap(_.project)
      def tags : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.tags)
      def testCaseConversationTurns : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3ConversationTurnResponse]] = output.flatMap(_.testCaseConversationTurns)
      def testConfig : besom.types.Output[besom.api.googlenative.dialogflow.v3.outputs.GoogleCloudDialogflowCxV3TestConfigResponse] = output.flatMap(_.testConfig)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy