commonMain.aws.sdk.kotlin.services.applicationsignals.serde.ServiceLevelObjectiveBudgetReportDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationsignals-jvm Show documentation
Show all versions of applicationsignals-jvm Show documentation
The AWS SDK for Kotlin client for Application Signals
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationsignals.serde
import aws.sdk.kotlin.services.applicationsignals.model.EvaluationType
import aws.sdk.kotlin.services.applicationsignals.model.ServiceLevelObjectiveBudgetReport
import aws.sdk.kotlin.services.applicationsignals.model.ServiceLevelObjectiveBudgetStatus
import aws.smithy.kotlin.runtime.serde.Deserializer
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
internal fun deserializeServiceLevelObjectiveBudgetReportDocument(deserializer: Deserializer): ServiceLevelObjectiveBudgetReport {
val builder = ServiceLevelObjectiveBudgetReport.Builder()
val ARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Arn"))
val ATTAINMENT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, JsonSerialName("Attainment"))
val BUDGETREQUESTSREMAINING_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("BudgetRequestsRemaining"))
val BUDGETSECONDSREMAINING_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("BudgetSecondsRemaining"))
val BUDGETSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("BudgetStatus"))
val EVALUATIONTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("EvaluationType"))
val GOAL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Goal"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
val REQUESTBASEDSLI_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("RequestBasedSli"))
val SLI_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Sli"))
val TOTALBUDGETREQUESTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("TotalBudgetRequests"))
val TOTALBUDGETSECONDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("TotalBudgetSeconds"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ARN_DESCRIPTOR)
field(ATTAINMENT_DESCRIPTOR)
field(BUDGETREQUESTSREMAINING_DESCRIPTOR)
field(BUDGETSECONDSREMAINING_DESCRIPTOR)
field(BUDGETSTATUS_DESCRIPTOR)
field(EVALUATIONTYPE_DESCRIPTOR)
field(GOAL_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(REQUESTBASEDSLI_DESCRIPTOR)
field(SLI_DESCRIPTOR)
field(TOTALBUDGETREQUESTS_DESCRIPTOR)
field(TOTALBUDGETSECONDS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
ARN_DESCRIPTOR.index -> builder.arn = deserializeString()
ATTAINMENT_DESCRIPTOR.index -> builder.attainment = deserializeDouble()
BUDGETREQUESTSREMAINING_DESCRIPTOR.index -> builder.budgetRequestsRemaining = deserializeInt()
BUDGETSECONDSREMAINING_DESCRIPTOR.index -> builder.budgetSecondsRemaining = deserializeInt()
BUDGETSTATUS_DESCRIPTOR.index -> builder.budgetStatus = deserializeString().let { ServiceLevelObjectiveBudgetStatus.fromValue(it) }
EVALUATIONTYPE_DESCRIPTOR.index -> builder.evaluationType = deserializeString().let { EvaluationType.fromValue(it) }
GOAL_DESCRIPTOR.index -> builder.goal = deserializeGoalDocument(deserializer)
NAME_DESCRIPTOR.index -> builder.name = deserializeString()
REQUESTBASEDSLI_DESCRIPTOR.index -> builder.requestBasedSli = deserializeRequestBasedServiceLevelIndicatorDocument(deserializer)
SLI_DESCRIPTOR.index -> builder.sli = deserializeServiceLevelIndicatorDocument(deserializer)
TOTALBUDGETREQUESTS_DESCRIPTOR.index -> builder.totalBudgetRequests = deserializeInt()
TOTALBUDGETSECONDS_DESCRIPTOR.index -> builder.totalBudgetSeconds = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy