commonMain.aws.sdk.kotlin.services.datazone.serde.GetTimeSeriesDataPointOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datazone-jvm Show documentation
Show all versions of datazone-jvm Show documentation
The AWS SDK for Kotlin client for DataZone
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.datazone.serde
import aws.sdk.kotlin.services.datazone.model.GetTimeSeriesDataPointRequest
import aws.sdk.kotlin.services.datazone.model.TimeSeriesEntityType
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.text.encoding.PercentEncoding
internal class GetTimeSeriesDataPointOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: GetTimeSeriesDataPointRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.GET
builder.url {
requireNotNull(input.domainIdentifier) { "domainIdentifier is bound to the URI and must not be null" }
requireNotNull(input.entityType) { "entityType is bound to the URI and must not be null" }
requireNotNull(input.entityIdentifier) { "entityIdentifier is bound to the URI and must not be null" }
requireNotNull(input.identifier) { "identifier is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("v2"))
add(PercentEncoding.Path.encode("domains"))
add(PercentEncoding.SmithyLabel.encode(input.domainIdentifier))
add(PercentEncoding.Path.encode("entities"))
add(PercentEncoding.SmithyLabel.encode(input.entityType.value))
add(PercentEncoding.SmithyLabel.encode(input.entityIdentifier))
add(PercentEncoding.Path.encode("time-series-data-points"))
add(PercentEncoding.SmithyLabel.encode(input.identifier))
}
parameters.decodedParameters(PercentEncoding.SmithyLabel) {
if (input.formName != null) add("formName", input.formName)
}
}
return builder
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy