Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.apphub.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.apphub.inputs.ServiceAttributesArgs.builder
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
/**
*
* @property businessOwners Business team that ensures user needs are met and value is delivered
* Structure is documented below.
* @property criticality Criticality of the Application, Service, or Workload
* Structure is documented below.
* @property developerOwners Developer team that owns development and coding.
* Structure is documented below.
* @property environment Environment of the Application, Service, or Workload
* Structure is documented below.
* @property operatorOwners Operator team that ensures runtime and operations.
* Structure is documented below.
*/
public data class ServiceAttributesArgs(
public val businessOwners: Output>? = null,
public val criticality: Output? = null,
public val developerOwners: Output>? = null,
public val environment: Output? = null,
public val operatorOwners: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.apphub.inputs.ServiceAttributesArgs =
com.pulumi.gcp.apphub.inputs.ServiceAttributesArgs.builder()
.businessOwners(
businessOwners?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.criticality(criticality?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.developerOwners(
developerOwners?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.environment(environment?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.operatorOwners(
operatorOwners?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ServiceAttributesArgs].
*/
@PulumiTagMarker
public class ServiceAttributesArgsBuilder internal constructor() {
private var businessOwners: Output>? = null
private var criticality: Output? = null
private var developerOwners: Output>? = null
private var environment: Output? = null
private var operatorOwners: Output>? = null
/**
* @param value Business team that ensures user needs are met and value is delivered
* Structure is documented below.
*/
@JvmName("fvjcewwnnrgnvwdi")
public suspend fun businessOwners(`value`: Output>) {
this.businessOwners = value
}
@JvmName("ltyxxlrqseauewmf")
public suspend fun businessOwners(vararg values: Output) {
this.businessOwners = Output.all(values.asList())
}
/**
* @param values Business team that ensures user needs are met and value is delivered
* Structure is documented below.
*/
@JvmName("sfrdkgjqwhpmhugn")
public suspend fun businessOwners(values: List