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

com.pulumi.googlenative.dialogflow.v2.kotlin.outputs.GetKnowledgeBaseResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dialogflow.v2.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property displayName The display name of the knowledge base. The name must be 1024 bytes or less; otherwise, the creation request fails.
 * @property languageCode Language which represents the KnowledgeBase. When the KnowledgeBase is created/updated, expect this to be present for non en-us languages. When unspecified, the default language code en-us applies.
 * @property name The knowledge base resource name. The name must be empty when creating a knowledge base. Format: `projects//locations//knowledgeBases/`.
 */
public data class GetKnowledgeBaseResult(
    public val displayName: String,
    public val languageCode: String,
    public val name: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v2.outputs.GetKnowledgeBaseResult): GetKnowledgeBaseResult = GetKnowledgeBaseResult(
            displayName = javaType.displayName(),
            languageCode = javaType.languageCode(),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy