![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.recoveryservices.kotlin.inputs.MabContainerExtendedInfoArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.recoveryservices.kotlin.inputs
import com.pulumi.azurenative.recoveryservices.inputs.MabContainerExtendedInfoArgs.builder
import com.pulumi.azurenative.recoveryservices.kotlin.enums.BackupItemType
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Additional information of the container.
* @property backupItemType Type of backup items associated with this container.
* @property backupItems List of backup items associated with this container.
* @property lastBackupStatus Latest backup status of this container.
* @property lastRefreshedAt Time stamp when this container was refreshed.
* @property policyName Backup policy associated with this container.
*/
public data class MabContainerExtendedInfoArgs(
public val backupItemType: Output>? = null,
public val backupItems: Output>? = null,
public val lastBackupStatus: Output? = null,
public val lastRefreshedAt: Output? = null,
public val policyName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.recoveryservices.inputs.MabContainerExtendedInfoArgs = com.pulumi.azurenative.recoveryservices.inputs.MabContainerExtendedInfoArgs.builder()
.backupItemType(
backupItemType?.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.backupItems(backupItems?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.lastBackupStatus(lastBackupStatus?.applyValue({ args0 -> args0 }))
.lastRefreshedAt(lastRefreshedAt?.applyValue({ args0 -> args0 }))
.policyName(policyName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MabContainerExtendedInfoArgs].
*/
@PulumiTagMarker
public class MabContainerExtendedInfoArgsBuilder internal constructor() {
private var backupItemType: Output>? = null
private var backupItems: Output>? = null
private var lastBackupStatus: Output? = null
private var lastRefreshedAt: Output? = null
private var policyName: Output? = null
/**
* @param value Type of backup items associated with this container.
*/
@JvmName("mwprebtjsovwpikw")
public suspend fun backupItemType(`value`: Output>) {
this.backupItemType = value
}
/**
* @param value List of backup items associated with this container.
*/
@JvmName("ogyngcjqcyfwfehk")
public suspend fun backupItems(`value`: Output>) {
this.backupItems = value
}
@JvmName("qiawhefywmdgfjfn")
public suspend fun backupItems(vararg values: Output) {
this.backupItems = Output.all(values.asList())
}
/**
* @param values List of backup items associated with this container.
*/
@JvmName("aspcwglwrwmclamf")
public suspend fun backupItems(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy