aws.sdk.kotlin.services.sagemaker.transform.DescribeNotebookInstanceLifecycleConfigOperationDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemaker.transform
import aws.sdk.kotlin.runtime.UnknownServiceErrorException
import aws.sdk.kotlin.runtime.http.setAseErrorMetadata
import aws.sdk.kotlin.runtime.http.withPayload
import aws.sdk.kotlin.runtime.protocol.json.RestJsonErrorDeserializer
import aws.sdk.kotlin.services.sagemaker.model.DescribeNotebookInstanceLifecycleConfigResponse
import aws.sdk.kotlin.services.sagemaker.model.NotebookInstanceLifecycleHook
import aws.sdk.kotlin.services.sagemaker.model.SageMakerException
import aws.smithy.kotlin.runtime.client.ExecutionContext
import aws.smithy.kotlin.runtime.http.isSuccess
import aws.smithy.kotlin.runtime.http.operation.HttpDeserialize
import aws.smithy.kotlin.runtime.http.readAll
import aws.smithy.kotlin.runtime.http.response.HttpResponse
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.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
import aws.smithy.kotlin.runtime.time.Instant
internal class DescribeNotebookInstanceLifecycleConfigOperationDeserializer: HttpDeserialize {
override suspend fun deserialize(context: ExecutionContext, response: HttpResponse): DescribeNotebookInstanceLifecycleConfigResponse {
if (!response.status.isSuccess()) {
throwDescribeNotebookInstanceLifecycleConfigError(context, response)
}
val builder = DescribeNotebookInstanceLifecycleConfigResponse.builder()
val payload = response.body.readAll()
if (payload != null) {
deserializeDescribeNotebookInstanceLifecycleConfigOperationBody(builder, payload)
}
return builder.build()
}
}
private suspend fun deserializeDescribeNotebookInstanceLifecycleConfigOperationBody(builder: DescribeNotebookInstanceLifecycleConfigResponse.DslBuilder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val CREATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreationTime"))
val LASTMODIFIEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastModifiedTime"))
val NOTEBOOKINSTANCELIFECYCLECONFIGARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("NotebookInstanceLifecycleConfigArn"))
val NOTEBOOKINSTANCELIFECYCLECONFIGNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("NotebookInstanceLifecycleConfigName"))
val ONCREATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("OnCreate"))
val ONSTART_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("OnStart"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CREATIONTIME_DESCRIPTOR)
field(LASTMODIFIEDTIME_DESCRIPTOR)
field(NOTEBOOKINSTANCELIFECYCLECONFIGARN_DESCRIPTOR)
field(NOTEBOOKINSTANCELIFECYCLECONFIGNAME_DESCRIPTOR)
field(ONCREATE_DESCRIPTOR)
field(ONSTART_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CREATIONTIME_DESCRIPTOR.index -> builder.creationTime = deserializeString().let { Instant.fromEpochSeconds(it) }
LASTMODIFIEDTIME_DESCRIPTOR.index -> builder.lastModifiedTime = deserializeString().let { Instant.fromEpochSeconds(it) }
NOTEBOOKINSTANCELIFECYCLECONFIGARN_DESCRIPTOR.index -> builder.notebookInstanceLifecycleConfigArn = deserializeString()
NOTEBOOKINSTANCELIFECYCLECONFIGNAME_DESCRIPTOR.index -> builder.notebookInstanceLifecycleConfigName = deserializeString()
ONCREATE_DESCRIPTOR.index -> builder.onCreate =
deserializer.deserializeList(ONCREATE_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeNotebookInstanceLifecycleHookDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
ONSTART_DESCRIPTOR.index -> builder.onStart =
deserializer.deserializeList(ONSTART_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeNotebookInstanceLifecycleHookDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
null -> break@loop
else -> skipValue()
}
}
}
}
private suspend fun throwDescribeNotebookInstanceLifecycleConfigError(context: ExecutionContext, response: HttpResponse): kotlin.Nothing {
val payload = response.body.readAll()
val wrappedResponse = response.withPayload(payload)
val errorDetails = try {
RestJsonErrorDeserializer.deserialize(response.headers, payload)
} catch (ex: Exception) {
throw UnknownServiceErrorException("failed to parse response as awsJson1_1 error", ex).also {
setAseErrorMetadata(it, wrappedResponse, null)
}
}
throw SageMakerException(errorDetails.message)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy