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

com.pulumi.gcp.securitycenter.kotlin.outputs.FolderCustomModuleCustomConfigPredicate.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.securitycenter.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property description Description of the expression. This is a longer text which describes the
 * expression, e.g. when hovered over it in a UI.
 * @property expression Textual representation of an expression in Common Expression Language syntax.
 * @property location String indicating the location of the expression for error reporting, e.g. a
 * file name and a position in the file.
 * @property title Title for the expression, i.e. a short string describing its purpose. This can
 * be used e.g. in UIs which allow to enter the expression.
 */
public data class FolderCustomModuleCustomConfigPredicate(
    public val description: String? = null,
    public val expression: String,
    public val location: String? = null,
    public val title: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.securitycenter.outputs.FolderCustomModuleCustomConfigPredicate): FolderCustomModuleCustomConfigPredicate = FolderCustomModuleCustomConfigPredicate(
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            expression = javaType.expression(),
            location = javaType.location().map({ args0 -> args0 }).orElse(null),
            title = javaType.title().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy