/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { UpdateDashboardResponse response = new UpdateDashboardResponse(); return(response); }
public UpdateDashboardResponse Handle(UpdateDashboardRequest request) { var response = new UpdateDashboardResponse(); response.Errors = Validate(request); if (response.HasErrors) { return(response); } try { var dashOrigin = _dashRepository.Get(request.DashBoard.Id); UpdateDashObject(dashOrigin, request.DashBoard); _dashRepository.Update(dashOrigin); return(response); } catch (Exception ex) { response.Errors.Add(new ErrorStatus("BAD_REQUEST")); return(response); } }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { UpdateDashboardResponse response = new UpdateDashboardResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("Arn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Arn = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("CreationStatus", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.CreationStatus = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("DashboardId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.DashboardId = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("RequestId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.RequestId = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Status", targetDepth)) { var unmarshaller = IntUnmarshaller.Instance; response.Status = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("VersionArn", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.VersionArn = unmarshaller.Unmarshall(context); continue; } } return(response); }