/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListServiceQuotaIncreaseRequestsInTemplateResponse response = new ListServiceQuotaIncreaseRequestsInTemplateResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("NextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("ServiceQuotaIncreaseRequestInTemplateList", targetDepth)) { var unmarshaller = new ListUnmarshaller <ServiceQuotaIncreaseRequestInTemplate, ServiceQuotaIncreaseRequestInTemplateUnmarshaller>(ServiceQuotaIncreaseRequestInTemplateUnmarshaller.Instance); response.ServiceQuotaIncreaseRequestInTemplateList = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonServiceQuotasConfig config = new AmazonServiceQuotasConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonServiceQuotasClient client = new AmazonServiceQuotasClient(creds, config); ListServiceQuotaIncreaseRequestsInTemplateResponse resp = new ListServiceQuotaIncreaseRequestsInTemplateResponse(); do { ListServiceQuotaIncreaseRequestsInTemplateRequest req = new ListServiceQuotaIncreaseRequestsInTemplateRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListServiceQuotaIncreaseRequestsInTemplate(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.ServiceQuotaIncreaseRequestInTemplateList) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }