commonMain.aws.sdk.kotlin.services.cloudwatchlogs.serde.UpdateLogAnomalyDetectorOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatchlogs-jvm Show documentation
Show all versions of cloudwatchlogs-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch Logs
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.serde
import aws.sdk.kotlin.services.cloudwatchlogs.model.EvaluationFrequency
import aws.sdk.kotlin.services.cloudwatchlogs.model.UpdateLogAnomalyDetectorRequest
import aws.smithy.kotlin.runtime.http.HttpBody
import aws.smithy.kotlin.runtime.http.HttpMethod
import aws.smithy.kotlin.runtime.http.operation.HttpSerializer
import aws.smithy.kotlin.runtime.http.request.HttpRequestBuilder
import aws.smithy.kotlin.runtime.http.request.url
import aws.smithy.kotlin.runtime.operation.ExecutionContext
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.json.JsonSerializer
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal class UpdateLogAnomalyDetectorOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: UpdateLogAnomalyDetectorRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/"
}
val payload = serializeUpdateLogAnomalyDetectorOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/x-amz-json-1.1")
}
return builder
}
}
private fun serializeUpdateLogAnomalyDetectorOperationBody(context: ExecutionContext, input: UpdateLogAnomalyDetectorRequest): ByteArray {
val serializer = JsonSerializer()
val ANOMALYDETECTORARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("anomalyDetectorArn"))
val ANOMALYVISIBILITYTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("anomalyVisibilityTime"))
val ENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("enabled"))
val EVALUATIONFREQUENCY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("evaluationFrequency"))
val FILTERPATTERN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("filterPattern"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ANOMALYDETECTORARN_DESCRIPTOR)
field(ANOMALYVISIBILITYTIME_DESCRIPTOR)
field(ENABLED_DESCRIPTOR)
field(EVALUATIONFREQUENCY_DESCRIPTOR)
field(FILTERPATTERN_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.anomalyDetectorArn?.let { field(ANOMALYDETECTORARN_DESCRIPTOR, it) }
input.anomalyVisibilityTime?.let { field(ANOMALYVISIBILITYTIME_DESCRIPTOR, it) }
input.enabled?.let { field(ENABLED_DESCRIPTOR, it) }
input.evaluationFrequency?.let { field(EVALUATIONFREQUENCY_DESCRIPTOR, it.value) }
input.filterPattern?.let { field(FILTERPATTERN_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}