aws.sdk.kotlin.services.sagemaker.transform.DescribeModelBiasJobDefinitionOperationDeserializer.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.DescribeModelBiasJobDefinitionResponse
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 DescribeModelBiasJobDefinitionOperationDeserializer: HttpDeserialize {
override suspend fun deserialize(context: ExecutionContext, response: HttpResponse): DescribeModelBiasJobDefinitionResponse {
if (!response.status.isSuccess()) {
throwDescribeModelBiasJobDefinitionError(context, response)
}
val builder = DescribeModelBiasJobDefinitionResponse.builder()
val payload = response.body.readAll()
if (payload != null) {
deserializeDescribeModelBiasJobDefinitionOperationBody(builder, payload)
}
return builder.build()
}
}
private suspend fun deserializeDescribeModelBiasJobDefinitionOperationBody(builder: DescribeModelBiasJobDefinitionResponse.DslBuilder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val CREATIONTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreationTime"))
val JOBDEFINITIONARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("JobDefinitionArn"))
val JOBDEFINITIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("JobDefinitionName"))
val JOBRESOURCES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("JobResources"))
val MODELBIASAPPSPECIFICATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ModelBiasAppSpecification"))
val MODELBIASBASELINECONFIG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ModelBiasBaselineConfig"))
val MODELBIASJOBINPUT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ModelBiasJobInput"))
val MODELBIASJOBOUTPUTCONFIG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ModelBiasJobOutputConfig"))
val NETWORKCONFIG_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("NetworkConfig"))
val ROLEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RoleArn"))
val STOPPINGCONDITION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("StoppingCondition"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CREATIONTIME_DESCRIPTOR)
field(JOBDEFINITIONARN_DESCRIPTOR)
field(JOBDEFINITIONNAME_DESCRIPTOR)
field(JOBRESOURCES_DESCRIPTOR)
field(MODELBIASAPPSPECIFICATION_DESCRIPTOR)
field(MODELBIASBASELINECONFIG_DESCRIPTOR)
field(MODELBIASJOBINPUT_DESCRIPTOR)
field(MODELBIASJOBOUTPUTCONFIG_DESCRIPTOR)
field(NETWORKCONFIG_DESCRIPTOR)
field(ROLEARN_DESCRIPTOR)
field(STOPPINGCONDITION_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CREATIONTIME_DESCRIPTOR.index -> builder.creationTime = deserializeString().let { Instant.fromEpochSeconds(it) }
JOBDEFINITIONARN_DESCRIPTOR.index -> builder.jobDefinitionArn = deserializeString()
JOBDEFINITIONNAME_DESCRIPTOR.index -> builder.jobDefinitionName = deserializeString()
JOBRESOURCES_DESCRIPTOR.index -> builder.jobResources = deserializeMonitoringResourcesDocument(deserializer)
MODELBIASAPPSPECIFICATION_DESCRIPTOR.index -> builder.modelBiasAppSpecification = deserializeModelBiasAppSpecificationDocument(deserializer)
MODELBIASBASELINECONFIG_DESCRIPTOR.index -> builder.modelBiasBaselineConfig = deserializeModelBiasBaselineConfigDocument(deserializer)
MODELBIASJOBINPUT_DESCRIPTOR.index -> builder.modelBiasJobInput = deserializeModelBiasJobInputDocument(deserializer)
MODELBIASJOBOUTPUTCONFIG_DESCRIPTOR.index -> builder.modelBiasJobOutputConfig = deserializeMonitoringOutputConfigDocument(deserializer)
NETWORKCONFIG_DESCRIPTOR.index -> builder.networkConfig = deserializeMonitoringNetworkConfigDocument(deserializer)
ROLEARN_DESCRIPTOR.index -> builder.roleArn = deserializeString()
STOPPINGCONDITION_DESCRIPTOR.index -> builder.stoppingCondition = deserializeMonitoringStoppingConditionDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
}
private suspend fun throwDescribeModelBiasJobDefinitionError(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)
}
}
val modeledExceptionDeserializer = when(errorDetails.code) {
"ResourceNotFound" -> ResourceNotFoundDeserializer()
else -> throw SageMakerException(errorDetails.message)
}
val modeledException = modeledExceptionDeserializer.deserialize(context, wrappedResponse)
setAseErrorMetadata(modeledException, wrappedResponse, errorDetails)
throw modeledException
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy