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

com.pulumi.azurenative.logic.kotlin.outputs.BatchConfigurationPropertiesResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.logic.kotlin.outputs

import kotlin.Any
import kotlin.String
import kotlin.Suppress

/**
 * The batch configuration properties definition.
 * @property batchGroupName The name of the batch group.
 * @property changedTime The artifact changed time.
 * @property createdTime The artifact creation time.
 * @property metadata
 * @property releaseCriteria The batch release criteria.
 */
public data class BatchConfigurationPropertiesResponse(
    public val batchGroupName: String,
    public val changedTime: String? = null,
    public val createdTime: String? = null,
    public val metadata: Any? = null,
    public val releaseCriteria: BatchReleaseCriteriaResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.logic.outputs.BatchConfigurationPropertiesResponse): BatchConfigurationPropertiesResponse = BatchConfigurationPropertiesResponse(
            batchGroupName = javaType.batchGroupName(),
            changedTime = javaType.changedTime().map({ args0 -> args0 }).orElse(null),
            createdTime = javaType.createdTime().map({ args0 -> args0 }).orElse(null),
            metadata = javaType.metadata().map({ args0 -> args0 }).orElse(null),
            releaseCriteria = javaType.releaseCriteria().let({ args0 ->
                com.pulumi.azurenative.logic.kotlin.outputs.BatchReleaseCriteriaResponse.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy