commonMain.aws.sdk.kotlin.services.iotsitewise.serde.CreateAssetModelCompositeModelOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.serde
import aws.sdk.kotlin.services.iotsitewise.model.AssetModelPropertyDefinition
import aws.sdk.kotlin.services.iotsitewise.model.AssetModelVersionType
import aws.sdk.kotlin.services.iotsitewise.model.CreateAssetModelCompositeModelRequest
import aws.smithy.kotlin.runtime.client.idempotencyTokenProvider
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.headers
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
import aws.smithy.kotlin.runtime.text.encoding.PercentEncoding
internal class CreateAssetModelCompositeModelOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: CreateAssetModelCompositeModelRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
requireNotNull(input.assetModelId) { "assetModelId is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("asset-models"))
add(PercentEncoding.SmithyLabel.encode(input.assetModelId))
add(PercentEncoding.Path.encode("composite-models"))
}
}
builder.headers {
if (input.ifMatch?.isNotEmpty() == true) append("If-Match", input.ifMatch)
if (input.ifNoneMatch?.isNotEmpty() == true) append("If-None-Match", input.ifNoneMatch)
if (input.matchForVersionType != null) append("Match-For-Version-Type", input.matchForVersionType.value)
}
val payload = serializeCreateAssetModelCompositeModelOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/json")
}
return builder
}
}
private fun serializeCreateAssetModelCompositeModelOperationBody(context: ExecutionContext, input: CreateAssetModelCompositeModelRequest): ByteArray {
val serializer = JsonSerializer()
val ASSETMODELCOMPOSITEMODELDESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("assetModelCompositeModelDescription"))
val ASSETMODELCOMPOSITEMODELEXTERNALID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("assetModelCompositeModelExternalId"))
val ASSETMODELCOMPOSITEMODELID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("assetModelCompositeModelId"))
val ASSETMODELCOMPOSITEMODELNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("assetModelCompositeModelName"))
val ASSETMODELCOMPOSITEMODELPROPERTIES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("assetModelCompositeModelProperties"))
val ASSETMODELCOMPOSITEMODELTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("assetModelCompositeModelType"))
val CLIENTTOKEN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("clientToken"))
val COMPOSEDASSETMODELID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("composedAssetModelId"))
val PARENTASSETMODELCOMPOSITEMODELID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("parentAssetModelCompositeModelId"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ASSETMODELCOMPOSITEMODELDESCRIPTION_DESCRIPTOR)
field(ASSETMODELCOMPOSITEMODELEXTERNALID_DESCRIPTOR)
field(ASSETMODELCOMPOSITEMODELID_DESCRIPTOR)
field(ASSETMODELCOMPOSITEMODELNAME_DESCRIPTOR)
field(ASSETMODELCOMPOSITEMODELPROPERTIES_DESCRIPTOR)
field(ASSETMODELCOMPOSITEMODELTYPE_DESCRIPTOR)
field(CLIENTTOKEN_DESCRIPTOR)
field(COMPOSEDASSETMODELID_DESCRIPTOR)
field(PARENTASSETMODELCOMPOSITEMODELID_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.assetModelCompositeModelDescription?.let { field(ASSETMODELCOMPOSITEMODELDESCRIPTION_DESCRIPTOR, it) }
input.assetModelCompositeModelExternalId?.let { field(ASSETMODELCOMPOSITEMODELEXTERNALID_DESCRIPTOR, it) }
input.assetModelCompositeModelId?.let { field(ASSETMODELCOMPOSITEMODELID_DESCRIPTOR, it) }
input.assetModelCompositeModelName?.let { field(ASSETMODELCOMPOSITEMODELNAME_DESCRIPTOR, it) }
if (input.assetModelCompositeModelProperties != null) {
listField(ASSETMODELCOMPOSITEMODELPROPERTIES_DESCRIPTOR) {
for (el0 in input.assetModelCompositeModelProperties) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeAssetModelPropertyDefinitionDocument))
}
}
}
input.assetModelCompositeModelType?.let { field(ASSETMODELCOMPOSITEMODELTYPE_DESCRIPTOR, it) }
input.clientToken?.let { field(CLIENTTOKEN_DESCRIPTOR, it) } ?: field(CLIENTTOKEN_DESCRIPTOR, context.idempotencyTokenProvider.generateToken())
input.composedAssetModelId?.let { field(COMPOSEDASSETMODELID_DESCRIPTOR, it) }
input.parentAssetModelCompositeModelId?.let { field(PARENTASSETMODELCOMPOSITEMODELID_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy