com.pulumi.gcp.cloudasset.kotlin.outputs.FolderFeedCondition.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.cloudasset.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 FolderFeedCondition(
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.cloudasset.outputs.FolderFeedCondition): FolderFeedCondition = FolderFeedCondition(
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