
software.amazon.awssdk.services.databasemigration.transform.ReplicationInstanceUnmarshaller Maven / Gradle / Ivy
/*
* Copyright 2012-2017 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 software.amazon.awssdk.services.databasemigration.transform;
import java.math.*;
import javax.annotation.Generated;
import software.amazon.awssdk.services.databasemigration.model.*;
import software.amazon.awssdk.core.runtime.transform.SimpleTypeJsonUnmarshallers.*;
import software.amazon.awssdk.core.runtime.transform.*;
import com.fasterxml.jackson.core.JsonToken;
import static com.fasterxml.jackson.core.JsonToken.*;
/**
* ReplicationInstance JSON Unmarshaller
*/
@Generated("software.amazon.awssdk:aws-java-sdk-code-generator")
public class ReplicationInstanceUnmarshaller implements Unmarshaller {
public ReplicationInstance unmarshall(JsonUnmarshallerContext context) throws Exception {
ReplicationInstance.Builder replicationInstanceBuilder = ReplicationInstance.builder();
int originalDepth = context.getCurrentDepth();
String currentParentElement = context.getCurrentParentElement();
int targetDepth = originalDepth + 1;
JsonToken token = context.getCurrentToken();
if (token == null)
token = context.nextToken();
if (token == VALUE_NULL) {
return null;
}
while (true) {
if (token == null)
break;
if (token == FIELD_NAME || token == START_OBJECT) {
if (context.testExpression("ReplicationInstanceIdentifier", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstanceIdentifier(context.getUnmarshaller(String.class).unmarshall(
context));
}
if (context.testExpression("ReplicationInstanceClass", targetDepth)) {
context.nextToken();
replicationInstanceBuilder
.replicationInstanceClass(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("ReplicationInstanceStatus", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstanceStatus(context.getUnmarshaller(String.class)
.unmarshall(context));
}
if (context.testExpression("AllocatedStorage", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.allocatedStorage(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("InstanceCreateTime", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.instanceCreateTime(context.getUnmarshaller(java.time.Instant.class).unmarshall(
context));
}
if (context.testExpression("VpcSecurityGroups", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.vpcSecurityGroups(new ListUnmarshaller(
VpcSecurityGroupMembershipUnmarshaller.getInstance()).unmarshall(context));
}
if (context.testExpression("AvailabilityZone", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.availabilityZone(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("ReplicationSubnetGroup", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationSubnetGroup(ReplicationSubnetGroupUnmarshaller.getInstance()
.unmarshall(context));
}
if (context.testExpression("PreferredMaintenanceWindow", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.preferredMaintenanceWindow(context.getUnmarshaller(String.class).unmarshall(
context));
}
if (context.testExpression("PendingModifiedValues", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.pendingModifiedValues(ReplicationPendingModifiedValuesUnmarshaller.getInstance()
.unmarshall(context));
}
if (context.testExpression("MultiAZ", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.multiAZ(context.getUnmarshaller(Boolean.class).unmarshall(context));
}
if (context.testExpression("EngineVersion", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.engineVersion(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("AutoMinorVersionUpgrade", targetDepth)) {
context.nextToken();
replicationInstanceBuilder
.autoMinorVersionUpgrade(context.getUnmarshaller(Boolean.class).unmarshall(context));
}
if (context.testExpression("KmsKeyId", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.kmsKeyId(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("ReplicationInstanceArn", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstanceArn(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("ReplicationInstancePublicIpAddress", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstancePublicIpAddress(context.getUnmarshaller(String.class)
.unmarshall(context));
}
if (context.testExpression("ReplicationInstancePrivateIpAddress", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstancePrivateIpAddress(context.getUnmarshaller(String.class)
.unmarshall(context));
}
if (context.testExpression("ReplicationInstancePublicIpAddresses", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstancePublicIpAddresses(new ListUnmarshaller(context
.getUnmarshaller(String.class)).unmarshall(context));
}
if (context.testExpression("ReplicationInstancePrivateIpAddresses", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.replicationInstancePrivateIpAddresses(new ListUnmarshaller(context
.getUnmarshaller(String.class)).unmarshall(context));
}
if (context.testExpression("PubliclyAccessible", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.publiclyAccessible(context.getUnmarshaller(Boolean.class).unmarshall(context));
}
if (context.testExpression("SecondaryAvailabilityZone", targetDepth)) {
context.nextToken();
replicationInstanceBuilder.secondaryAvailabilityZone(context.getUnmarshaller(String.class)
.unmarshall(context));
}
} else if (token == END_ARRAY || token == END_OBJECT) {
if (context.getLastParsedParentElement() == null
|| context.getLastParsedParentElement().equals(currentParentElement)) {
if (context.getCurrentDepth() <= originalDepth)
break;
}
}
token = context.nextToken();
}
return replicationInstanceBuilder.build();
}
private static final ReplicationInstanceUnmarshaller INSTANCE = new ReplicationInstanceUnmarshaller();
public static ReplicationInstanceUnmarshaller getInstance() {
return INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy