public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems) { AmazonEKSConfig config = new AmazonEKSConfig(); config.RegionEndpoint = region; ConfigureClient(config); AmazonEKSClient client = new AmazonEKSClient(creds, config); DescribeAddonVersionsResponse resp = new DescribeAddonVersionsResponse(); do { DescribeAddonVersionsRequest req = new DescribeAddonVersionsRequest { NextToken = resp.NextToken , MaxResults = maxItems }; resp = client.DescribeAddonVersions(req); CheckError(resp.HttpStatusCode, "200"); foreach (var obj in resp.Addons) { AddObject(obj); } }while (!string.IsNullOrEmpty(resp.NextToken)); }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeAddonVersionsResponse response = new DescribeAddonVersionsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("addons", targetDepth)) { var unmarshaller = new ListUnmarshaller <AddonInfo, AddonInfoUnmarshaller>(AddonInfoUnmarshaller.Instance); response.Addons = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("nextToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.NextToken = unmarshaller.Unmarshall(context); continue; } } return(response); }