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

com.pulumi.gcp.iam.kotlin.outputs.FoldersPolicyBindingCondition.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.iam.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property description Optional. 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 Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
 * @property title Optional. 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 FoldersPolicyBindingCondition(
    public val description: String? = null,
    public val expression: String? = null,
    public val location: String? = null,
    public val title: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.iam.outputs.FoldersPolicyBindingCondition): FoldersPolicyBindingCondition = FoldersPolicyBindingCondition(
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            expression = javaType.expression().map({ args0 -> args0 }).orElse(null),
            location = javaType.location().map({ args0 -> args0 }).orElse(null),
            title = javaType.title().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy