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

com.pulumi.awsnative.robomaker.kotlin.outputs.RobotApplicationRobotSoftwareSuite.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.robomaker.kotlin.outputs

import com.pulumi.awsnative.robomaker.kotlin.enums.RobotApplicationRobotSoftwareSuiteName
import com.pulumi.awsnative.robomaker.kotlin.enums.RobotApplicationRobotSoftwareSuiteVersion
import kotlin.Suppress

/**
 * The robot software suite used by the robot application.
 * @property name The name of robot software suite.
 * @property version The version of robot software suite.
 */
public data class RobotApplicationRobotSoftwareSuite(
    public val name: RobotApplicationRobotSoftwareSuiteName,
    public val version: RobotApplicationRobotSoftwareSuiteVersion? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.robomaker.outputs.RobotApplicationRobotSoftwareSuite): RobotApplicationRobotSoftwareSuite = RobotApplicationRobotSoftwareSuite(
            name = javaType.name().let({ args0 ->
                com.pulumi.awsnative.robomaker.kotlin.enums.RobotApplicationRobotSoftwareSuiteName.Companion.toKotlin(args0)
            }),
            version = javaType.version().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.robomaker.kotlin.enums.RobotApplicationRobotSoftwareSuiteVersion.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy