/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListOpsMetadataResponse response = new ListOpsMetadataResponse(); 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("OpsMetadataList", targetDepth)) { var unmarshaller = new ListUnmarshaller <OpsMetadata, OpsMetadataUnmarshaller>(OpsMetadataUnmarshaller.Instance); response.OpsMetadataList = unmarshaller.Unmarshall(context); continue; } } return(response); }
public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonSimpleSystemsManagementConfig config = new AmazonSimpleSystemsManagementConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonSimpleSystemsManagementClient client = new AmazonSimpleSystemsManagementClient(creds, config); ListOpsMetadataResponse resp = new ListOpsMetadataResponse(); do { ListOpsMetadataRequest req = new ListOpsMetadataRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.ListOpsMetadata(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.OpsMetadataList) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }