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

com.pulumi.alicloud.eds.kotlin.outputs.GetCustomPropertiesProperty.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: 3.62.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.alicloud.eds.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property customPropertyId The first ID of the resource.
 * @property id The ID of the Custom Property.
 * @property propertyKey The Custom attribute key.
 * @property propertyValues Custom attribute sets the value of.
 */
public data class GetCustomPropertiesProperty(
    public val customPropertyId: String,
    public val id: String,
    public val propertyKey: String,
    public val propertyValues: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.alicloud.eds.outputs.GetCustomPropertiesProperty): GetCustomPropertiesProperty = GetCustomPropertiesProperty(
            customPropertyId = javaType.customPropertyId(),
            id = javaType.id(),
            propertyKey = javaType.propertyKey(),
            propertyValues = javaType.propertyValues().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.alicloud.eds.kotlin.outputs.GetCustomPropertiesPropertyPropertyValue.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy