
src.dialogflow.v2.Document.scala Maven / Gradle / Ivy
package besom.api.googlenative.dialogflow.v2
final case class Document private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
contentUri: besom.types.Output[String],
displayName: besom.types.Output[String],
enableAutoReload: besom.types.Output[Boolean],
knowledgeBaseId: besom.types.Output[String],
knowledgeTypes: besom.types.Output[scala.collection.immutable.List[String]],
latestReloadStatus: besom.types.Output[besom.api.googlenative.dialogflow.v2.outputs.GoogleCloudDialogflowV2DocumentReloadStatusResponse],
location: besom.types.Output[String],
metadata: besom.types.Output[scala.Predef.Map[String, String]],
mimeType: besom.types.Output[String],
name: besom.types.Output[String],
project: besom.types.Output[String],
rawContent: besom.types.Output[String],
state: besom.types.Output[String]
) extends besom.CustomResource
object Document extends besom.ResourceCompanion[Document]:
/** Resource constructor for Document.
*
* @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 [[DocumentArgs]] 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 = Document(
* "my-resource",
* DocumentArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: DocumentArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[Document] =
ctx.readOrRegisterResource[Document, DocumentArgs]("google-native:dialogflow/v2:Document", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:dialogflow/v2:Document"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[Document] =
besom.internal.ResourceDecoder.derived[Document]
given decoder(using besom.types.Context): besom.types.Decoder[Document] =
besom.internal.Decoder.customResourceDecoder[Document]
given outputOps: {} with
extension(output: besom.types.Output[Document])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def contentUri : besom.types.Output[String] = output.flatMap(_.contentUri)
def displayName : besom.types.Output[String] = output.flatMap(_.displayName)
def enableAutoReload : besom.types.Output[Boolean] = output.flatMap(_.enableAutoReload)
def knowledgeBaseId : besom.types.Output[String] = output.flatMap(_.knowledgeBaseId)
def knowledgeTypes : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.knowledgeTypes)
def latestReloadStatus : besom.types.Output[besom.api.googlenative.dialogflow.v2.outputs.GoogleCloudDialogflowV2DocumentReloadStatusResponse] = output.flatMap(_.latestReloadStatus)
def location : besom.types.Output[String] = output.flatMap(_.location)
def metadata : besom.types.Output[scala.Predef.Map[String, String]] = output.flatMap(_.metadata)
def mimeType : besom.types.Output[String] = output.flatMap(_.mimeType)
def name : besom.types.Output[String] = output.flatMap(_.name)
def project : besom.types.Output[String] = output.flatMap(_.project)
def rawContent : besom.types.Output[String] = output.flatMap(_.rawContent)
def state : besom.types.Output[String] = output.flatMap(_.state)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy