
com.pulumi.azurenative.edgeorder.kotlin.inputs.PreferencesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.edgeorder.kotlin.inputs
import com.pulumi.azurenative.edgeorder.inputs.PreferencesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Preferences related to the order
* @property encryptionPreferences Preferences related to the Encryption.
* @property managementResourcePreferences Preferences related to the Management resource.
* @property notificationPreferences Notification preferences.
* @property transportPreferences Preferences related to the shipment logistics of the order.
*/
public data class PreferencesArgs(
public val encryptionPreferences: Output? = null,
public val managementResourcePreferences: Output? = null,
public val notificationPreferences: Output>? = null,
public val transportPreferences: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.edgeorder.inputs.PreferencesArgs =
com.pulumi.azurenative.edgeorder.inputs.PreferencesArgs.builder()
.encryptionPreferences(
encryptionPreferences?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.managementResourcePreferences(
managementResourcePreferences?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.notificationPreferences(
notificationPreferences?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.transportPreferences(
transportPreferences?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [PreferencesArgs].
*/
@PulumiTagMarker
public class PreferencesArgsBuilder internal constructor() {
private var encryptionPreferences: Output? = null
private var managementResourcePreferences: Output? = null
private var notificationPreferences: Output>? = null
private var transportPreferences: Output? = null
/**
* @param value Preferences related to the Encryption.
*/
@JvmName("ejhiprmebwfebiiu")
public suspend fun encryptionPreferences(`value`: Output) {
this.encryptionPreferences = value
}
/**
* @param value Preferences related to the Management resource.
*/
@JvmName("jalbhmlfcxgtjppb")
public suspend fun managementResourcePreferences(`value`: Output) {
this.managementResourcePreferences = value
}
/**
* @param value Notification preferences.
*/
@JvmName("bbqtthrktepfrwwl")
public suspend fun notificationPreferences(`value`: Output>) {
this.notificationPreferences = value
}
@JvmName("bvcaedgirlfoimny")
public suspend fun notificationPreferences(vararg values: Output) {
this.notificationPreferences = Output.all(values.asList())
}
/**
* @param values Notification preferences.
*/
@JvmName("qxchrcdixrmjrnot")
public suspend fun notificationPreferences(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy