com.pulumi.alicloud.actiontrail.kotlin.outputs.GetInstancesResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-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.alicloud.actiontrail.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getInstances.
* @property enableDetails
* @property id The provider-assigned unique ID for this managed resource.
* @property ids A list of instance IDs.
* @property instances A list of instances. Each element contains the following attributes:
* @property nameRegex
* @property names A list of instance names.
* @property outputFile
*/
public data class GetInstancesResult(
public val enableDetails: Boolean? = null,
public val id: String,
public val ids: List,
public val instances: List,
public val nameRegex: String? = null,
public val names: List,
public val outputFile: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.alicloud.actiontrail.outputs.GetInstancesResult): GetInstancesResult = GetInstancesResult(
enableDetails = javaType.enableDetails().map({ args0 -> args0 }).orElse(null),
id = javaType.id(),
ids = javaType.ids().map({ args0 -> args0 }),
instances = javaType.instances().map({ args0 ->
args0.let({ args0 ->
com.pulumi.alicloud.actiontrail.kotlin.outputs.GetInstancesInstance.Companion.toKotlin(args0)
})
}),
nameRegex = javaType.nameRegex().map({ args0 -> args0 }).orElse(null),
names = javaType.names().map({ args0 -> args0 }),
outputFile = javaType.outputFile().map({ args0 -> args0 }).orElse(null),
)
}
}