commonMain.aws.sdk.kotlin.services.iotwireless.model.PutResourceLogLevelRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotwireless-jvm Show documentation
Show all versions of iotwireless-jvm Show documentation
The AWS Kotlin client for IoT Wireless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotwireless.model
import aws.smithy.kotlin.runtime.SdkDsl
public class PutResourceLogLevelRequest private constructor(builder: Builder) {
/**
* The log level for a log message. The log levels can be disabled, or set to `ERROR` to display less verbose logs containing only error information, or to `INFO` for more detailed logs.
*/
public val logLevel: aws.sdk.kotlin.services.iotwireless.model.LogLevel? = builder.logLevel
/**
* The identifier of the resource. For a Wireless Device, it is the wireless device ID. For a wireless gateway, it is the wireless gateway ID.
*/
public val resourceIdentifier: kotlin.String? = builder.resourceIdentifier
/**
* The type of the resource, which can be `WirelessDevice`, `WirelessGateway`, or `FuotaTask`.
*/
public val resourceType: kotlin.String? = builder.resourceType
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotwireless.model.PutResourceLogLevelRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutResourceLogLevelRequest(")
append("logLevel=$logLevel,")
append("resourceIdentifier=$resourceIdentifier,")
append("resourceType=$resourceType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = logLevel?.hashCode() ?: 0
result = 31 * result + (resourceIdentifier?.hashCode() ?: 0)
result = 31 * result + (resourceType?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as PutResourceLogLevelRequest
if (logLevel != other.logLevel) return false
if (resourceIdentifier != other.resourceIdentifier) return false
if (resourceType != other.resourceType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotwireless.model.PutResourceLogLevelRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The log level for a log message. The log levels can be disabled, or set to `ERROR` to display less verbose logs containing only error information, or to `INFO` for more detailed logs.
*/
public var logLevel: aws.sdk.kotlin.services.iotwireless.model.LogLevel? = null
/**
* The identifier of the resource. For a Wireless Device, it is the wireless device ID. For a wireless gateway, it is the wireless gateway ID.
*/
public var resourceIdentifier: kotlin.String? = null
/**
* The type of the resource, which can be `WirelessDevice`, `WirelessGateway`, or `FuotaTask`.
*/
public var resourceType: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotwireless.model.PutResourceLogLevelRequest) : this() {
this.logLevel = x.logLevel
this.resourceIdentifier = x.resourceIdentifier
this.resourceType = x.resourceType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotwireless.model.PutResourceLogLevelRequest = PutResourceLogLevelRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy