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

com.pulumi.gcp.logging.kotlin.outputs.FolderBucketConfigIndexConfig.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.

There is a newer version: 8.10.0.0
Show newest version
@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