![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotwireless.kotlin.ServiceProfileArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotwireless.kotlin
import com.pulumi.awsnative.iotwireless.ServiceProfileArgs.builder
import com.pulumi.awsnative.iotwireless.kotlin.inputs.ServiceProfileLoRaWanServiceProfileArgs
import com.pulumi.awsnative.iotwireless.kotlin.inputs.ServiceProfileLoRaWanServiceProfileArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* An example resource schema demonstrating some basic constructs and validation rules.
* @property loRaWan LoRaWAN supports all LoRa specific attributes for service profile for CreateServiceProfile operation
* @property name Name of service profile
* @property tags A list of key-value pairs that contain metadata for the service profile.
*/
public data class ServiceProfileArgs(
public val loRaWan: Output? = null,
public val name: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotwireless.ServiceProfileArgs =
com.pulumi.awsnative.iotwireless.ServiceProfileArgs.builder()
.loRaWan(loRaWan?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.name(name?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ServiceProfileArgs].
*/
@PulumiTagMarker
public class ServiceProfileArgsBuilder internal constructor() {
private var loRaWan: Output? = null
private var name: Output? = null
private var tags: Output>? = null
/**
* @param value LoRaWAN supports all LoRa specific attributes for service profile for CreateServiceProfile operation
*/
@JvmName("yovunbjydojhiqrr")
public suspend fun loRaWan(`value`: Output) {
this.loRaWan = value
}
/**
* @param value Name of service profile
*/
@JvmName("qklcuffocbdnclkk")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value A list of key-value pairs that contain metadata for the service profile.
*/
@JvmName("qyvabxwutfopcsqr")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("feuyppldpisnuuho")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values A list of key-value pairs that contain metadata for the service profile.
*/
@JvmName("hmxgmagcqdqstqla")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy