
com.pulumi.azurenative.migrate.kotlin.inputs.PrivateLinkServiceConnectionStateArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.migrate.kotlin.inputs
import com.pulumi.azurenative.migrate.inputs.PrivateLinkServiceConnectionStateArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of information about the state of the connection between service consumer and provider.
* @property actionsRequired A message indicating if changes on the service provider require any updates on the consumer.
* @property description The reason for approval/rejection of the connection.
* @property status Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
*/
public data class PrivateLinkServiceConnectionStateArgs(
public val actionsRequired: Output? = null,
public val description: Output? = null,
public val status: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.migrate.inputs.PrivateLinkServiceConnectionStateArgs = com.pulumi.azurenative.migrate.inputs.PrivateLinkServiceConnectionStateArgs.builder()
.actionsRequired(actionsRequired?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.status(status?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PrivateLinkServiceConnectionStateArgs].
*/
@PulumiTagMarker
public class PrivateLinkServiceConnectionStateArgsBuilder internal constructor() {
private var actionsRequired: Output? = null
private var description: Output? = null
private var status: Output? = null
/**
* @param value A message indicating if changes on the service provider require any updates on the consumer.
*/
@JvmName("awnfjfxgyxiuidmj")
public suspend fun actionsRequired(`value`: Output) {
this.actionsRequired = value
}
/**
* @param value The reason for approval/rejection of the connection.
*/
@JvmName("xotdehnbwwuxuorx")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
*/
@JvmName("eeyjyajmxygphsdn")
public suspend fun status(`value`: Output) {
this.status = value
}
/**
* @param value A message indicating if changes on the service provider require any updates on the consumer.
*/
@JvmName("erlydhjysrwwgvap")
public suspend fun actionsRequired(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.actionsRequired = mapped
}
/**
* @param value The reason for approval/rejection of the connection.
*/
@JvmName("fvetvjwccrvlvndk")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
*/
@JvmName("gnbrunblipidkbkd")
public suspend fun status(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.status = mapped
}
internal fun build(): PrivateLinkServiceConnectionStateArgs =
PrivateLinkServiceConnectionStateArgs(
actionsRequired = actionsRequired,
description = description,
status = status,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy