com.pulumi.gcp.logging.kotlin.outputs.FolderBucketConfigIndexConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.logging.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property fieldPath The LogEntry field path to index.
* Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
* @property type The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
*/
public data class FolderBucketConfigIndexConfig(
public val fieldPath: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.logging.outputs.FolderBucketConfigIndexConfig): FolderBucketConfigIndexConfig = FolderBucketConfigIndexConfig(
fieldPath = javaType.fieldPath(),
type = javaType.type(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy