com.amazonaws.services.devopsguru.model.transform.ProactiveAnomalyMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-devopsguru Show documentation
Show all versions of aws-java-sdk-devopsguru Show documentation
The AWS Java SDK for Amazon DevOps Guru module holds the client classes that are used for communicating with Amazon DevOps Guru Service
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.devopsguru.model.transform;
import java.util.List;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.devopsguru.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* ProactiveAnomalyMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class ProactiveAnomalyMarshaller {
private static final MarshallingInfo ID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Id").build();
private static final MarshallingInfo SEVERITY_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Severity").build();
private static final MarshallingInfo STATUS_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Status").build();
private static final MarshallingInfo UPDATETIME_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("UpdateTime").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo ANOMALYTIMERANGE_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("AnomalyTimeRange").build();
private static final MarshallingInfo ANOMALYREPORTEDTIMERANGE_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("AnomalyReportedTimeRange").build();
private static final MarshallingInfo PREDICTIONTIMERANGE_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("PredictionTimeRange").build();
private static final MarshallingInfo SOURCEDETAILS_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("SourceDetails").build();
private static final MarshallingInfo ASSOCIATEDINSIGHTID_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("AssociatedInsightId").build();
private static final MarshallingInfo RESOURCECOLLECTION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("ResourceCollection").build();
private static final MarshallingInfo LIMIT_BINDING = MarshallingInfo.builder(MarshallingType.DOUBLE).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Limit").build();
private static final MarshallingInfo SOURCEMETADATA_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("SourceMetadata").build();
private static final MarshallingInfo ANOMALYRESOURCES_BINDING = MarshallingInfo.builder(MarshallingType.LIST)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("AnomalyResources").build();
private static final MarshallingInfo DESCRIPTION_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("Description").build();
private static final ProactiveAnomalyMarshaller instance = new ProactiveAnomalyMarshaller();
public static ProactiveAnomalyMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(ProactiveAnomaly proactiveAnomaly, ProtocolMarshaller protocolMarshaller) {
if (proactiveAnomaly == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(proactiveAnomaly.getId(), ID_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getSeverity(), SEVERITY_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getStatus(), STATUS_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getUpdateTime(), UPDATETIME_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getAnomalyTimeRange(), ANOMALYTIMERANGE_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getAnomalyReportedTimeRange(), ANOMALYREPORTEDTIMERANGE_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getPredictionTimeRange(), PREDICTIONTIMERANGE_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getSourceDetails(), SOURCEDETAILS_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getAssociatedInsightId(), ASSOCIATEDINSIGHTID_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getResourceCollection(), RESOURCECOLLECTION_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getLimit(), LIMIT_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getSourceMetadata(), SOURCEMETADATA_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getAnomalyResources(), ANOMALYRESOURCES_BINDING);
protocolMarshaller.marshall(proactiveAnomaly.getDescription(), DESCRIPTION_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}