public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { AllocatePublicVirtualInterfaceResponse response = new AllocatePublicVirtualInterfaceResponse(); context.Read(); UnmarshallResult(context,response); 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) { AllocatePublicVirtualInterfaceResponse response = new AllocatePublicVirtualInterfaceResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("amazonAddress", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.AmazonAddress = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("asn", targetDepth)) { var unmarshaller = IntUnmarshaller.Instance; response.Asn = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("authKey", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.AuthKey = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("connectionId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.ConnectionId = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("customerAddress", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.CustomerAddress = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("customerRouterConfig", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.CustomerRouterConfig = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("location", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Location = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ownerAccount", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.OwnerAccount = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("routeFilterPrefixes", targetDepth)) { var unmarshaller = new ListUnmarshaller<RouteFilterPrefix, RouteFilterPrefixUnmarshaller>(RouteFilterPrefixUnmarshaller.Instance); response.RouteFilterPrefixes = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("virtualGatewayId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.VirtualGatewayId = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.VirtualInterfaceId = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceName", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.VirtualInterfaceName = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceState", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.VirtualInterfaceState = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceType", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.VirtualInterfaceType = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("vlan", targetDepth)) { var unmarshaller = IntUnmarshaller.Instance; response.Vlan = unmarshaller.Unmarshall(context); continue; } } return response; }
private static void UnmarshallResult(JsonUnmarshallerContext context,AllocatePublicVirtualInterfaceResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("ownerAccount", targetDepth)) { context.Read(); response.OwnerAccount = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceId", targetDepth)) { context.Read(); response.VirtualInterfaceId = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("location", targetDepth)) { context.Read(); response.Location = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("connectionId", targetDepth)) { context.Read(); response.ConnectionId = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceType", targetDepth)) { context.Read(); response.VirtualInterfaceType = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceName", targetDepth)) { context.Read(); response.VirtualInterfaceName = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("vlan", targetDepth)) { context.Read(); response.Vlan = IntUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("asn", targetDepth)) { context.Read(); response.Asn = IntUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("authKey", targetDepth)) { context.Read(); response.AuthKey = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("amazonAddress", targetDepth)) { context.Read(); response.AmazonAddress = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("customerAddress", targetDepth)) { context.Read(); response.CustomerAddress = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("virtualInterfaceState", targetDepth)) { context.Read(); response.VirtualInterfaceState = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("customerRouterConfig", targetDepth)) { context.Read(); response.CustomerRouterConfig = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("virtualGatewayId", targetDepth)) { context.Read(); response.VirtualGatewayId = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("routeFilterPrefixes", targetDepth)) { context.Read(); response.RouteFilterPrefixes = new List<RouteFilterPrefix>(); RouteFilterPrefixUnmarshaller unmarshaller = RouteFilterPrefixUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.RouteFilterPrefixes.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }