/* * Copyright 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. */ /* * Do not modify this file. This file is generated from the sagemaker-2017-07-24.normal.json service model. */ using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Net; using System.Text; using System.Xml.Serialization; using Amazon.SageMaker.Model; using Amazon.Runtime; using Amazon.Runtime.Internal; using Amazon.Runtime.Internal.Transform; using Amazon.Runtime.Internal.Util; using ThirdParty.Json.LitJson; namespace Amazon.SageMaker.Model.Internal.MarshallTransformations { /// /// Response Unmarshaller for ProcessingJob Object /// public class ProcessingJobUnmarshaller : IUnmarshaller, IUnmarshaller { /// /// Unmarshaller the response from the service to the response class. /// /// /// ProcessingJob IUnmarshaller.Unmarshall(XmlUnmarshallerContext context) { throw new NotImplementedException(); } /// /// Unmarshaller the response from the service to the response class. /// /// /// public ProcessingJob Unmarshall(JsonUnmarshallerContext context) { context.Read(); if (context.CurrentTokenType == JsonToken.Null) return null; ProcessingJob unmarshalledObject = new ProcessingJob(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("AppSpecification", targetDepth)) { var unmarshaller = AppSpecificationUnmarshaller.Instance; unmarshalledObject.AppSpecification = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("AutoMLJobArn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.AutoMLJobArn = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("CreationTime", targetDepth)) { var unmarshaller = DateTimeUnmarshaller.Instance; unmarshalledObject.CreationTime = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Environment", targetDepth)) { var unmarshaller = new DictionaryUnmarshaller(StringUnmarshaller.Instance, StringUnmarshaller.Instance); unmarshalledObject.Environment = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ExitMessage", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.ExitMessage = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ExperimentConfig", targetDepth)) { var unmarshaller = ExperimentConfigUnmarshaller.Instance; unmarshalledObject.ExperimentConfig = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("FailureReason", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.FailureReason = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("LastModifiedTime", targetDepth)) { var unmarshaller = DateTimeUnmarshaller.Instance; unmarshalledObject.LastModifiedTime = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("MonitoringScheduleArn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.MonitoringScheduleArn = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("NetworkConfig", targetDepth)) { var unmarshaller = NetworkConfigUnmarshaller.Instance; unmarshalledObject.NetworkConfig = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingEndTime", targetDepth)) { var unmarshaller = DateTimeUnmarshaller.Instance; unmarshalledObject.ProcessingEndTime = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingInputs", targetDepth)) { var unmarshaller = new ListUnmarshaller(ProcessingInputUnmarshaller.Instance); unmarshalledObject.ProcessingInputs = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingJobArn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.ProcessingJobArn = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingJobName", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.ProcessingJobName = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingJobStatus", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.ProcessingJobStatus = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingOutputConfig", targetDepth)) { var unmarshaller = ProcessingOutputConfigUnmarshaller.Instance; unmarshalledObject.ProcessingOutputConfig = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingResources", targetDepth)) { var unmarshaller = ProcessingResourcesUnmarshaller.Instance; unmarshalledObject.ProcessingResources = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ProcessingStartTime", targetDepth)) { var unmarshaller = DateTimeUnmarshaller.Instance; unmarshalledObject.ProcessingStartTime = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("RoleArn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.RoleArn = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("StoppingCondition", targetDepth)) { var unmarshaller = ProcessingStoppingConditionUnmarshaller.Instance; unmarshalledObject.StoppingCondition = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Tags", targetDepth)) { var unmarshaller = new ListUnmarshaller(TagUnmarshaller.Instance); unmarshalledObject.Tags = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("TrainingJobArn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; unmarshalledObject.TrainingJobArn = unmarshaller.Unmarshall(context); continue; } } return unmarshalledObject; } private static ProcessingJobUnmarshaller _instance = new ProcessingJobUnmarshaller(); /// /// Gets the singleton. /// public static ProcessingJobUnmarshaller Instance { get { return _instance; } } } }