BatchGetDeployments Java Example
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkRest rest = new CkRest();
boolean success;
CkAuthAws authAws = new CkAuthAws();
authAws.put_AccessKey("AWS_ACCESS_KEY");
authAws.put_SecretKey("AWS_SECRET_KEY");
// Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.put_Region("us-west-2");
authAws.put_ServiceName("codedeploy");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws);
// URL: https://codedeploy.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("codedeploy.us-west-2.amazonaws.com",443,true,true);
if (success != true) {
System.out.println("ConnectFailReason: " + rest.get_ConnectFailReason());
System.out.println(rest.lastErrorText());
return;
}
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
CkJsonObject json = new CkJsonObject();
json.UpdateString("deploymentIds[0]","string");
// The JSON request body created by the above code:
// {
// "deploymentIds": [
// "string"
// ]
// }
rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","CodeDeploy_20141006.BatchGetDeployments");
CkStringBuilder sbRequestBody = new CkStringBuilder();
json.EmitSb(sbRequestBody);
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
if (success != true) {
System.out.println(rest.lastErrorText());
return;
}
int respStatusCode = rest.get_ResponseStatusCode();
System.out.println("response status code = " + respStatusCode);
if (respStatusCode != 200) {
System.out.println("Response Header:");
System.out.println(rest.responseHeader());
System.out.println("Response Body:");
System.out.println(sbResponseBody.getAsString());
return;
}
CkJsonObject jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
String additionalDeploymentStatusInfo;
String applicationName;
int Enabled;
String ActionOnTimeout;
int WaitTimeInMinutes;
String Action;
String TerminateBlueInstancesOnDeploymentSuccessAction;
int TerminationWaitTimeInMinutes;
int completeTime;
String computePlatform;
int createTime;
String creator;
String deploymentConfigName;
String deploymentGroupName;
String deploymentId;
int Failed;
int InProgress;
int Pending;
int Ready;
int Skipped;
int Succeeded;
String DeploymentOption;
String DeploymentType;
String description;
String Code;
String Message;
String externalId;
String fileExistsBehavior;
int ignoreApplicationStopFailures;
int instanceTerminationWaitTimeStarted;
String Content;
String Sha256;
String CommitId;
String Repository;
String RevisionType;
String Bucket;
String BundleType;
String ETag;
String Key;
String Version;
String StringContent;
String StringSha256;
String AutoUpdateOutdatedInstancesRootDeploymentId;
String AppSpecContentContent;
String AppSpecContentSha256;
String GitHubLocationCommitId;
String GitHubLocationRepository;
String revisionRevisionType;
String S3LocationBucket;
String S3LocationBundleType;
String S3LocationETag;
String S3LocationKey;
String S3LocationVersion;
String RollbackDeploymentId;
String RollbackMessage;
String RollbackTriggeringDeploymentId;
int startTime;
String status;
int updateOutdatedInstancesOnly;
int j;
int count_j;
String strVal;
String name;
int k;
int count_k;
String v_Type;
String Value;
int i = 0;
int count_i = jResp.SizeOfArray("deploymentsInfo");
while (i < count_i) {
jResp.put_I(i);
additionalDeploymentStatusInfo = jResp.stringOf("deploymentsInfo[i].additionalDeploymentStatusInfo");
applicationName = jResp.stringOf("deploymentsInfo[i].applicationName");
Enabled = jResp.IntOf("deploymentsInfo[i].autoRollbackConfiguration.enabled");
ActionOnTimeout = jResp.stringOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.deploymentReadyOption.actionOnTimeout");
WaitTimeInMinutes = jResp.IntOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.deploymentReadyOption.waitTimeInMinutes");
Action = jResp.stringOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.greenFleetProvisioningOption.action");
TerminateBlueInstancesOnDeploymentSuccessAction = jResp.stringOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.terminateBlueInstancesOnDeploymentSuccess.action");
TerminationWaitTimeInMinutes = jResp.IntOf("deploymentsInfo[i].blueGreenDeploymentConfiguration.terminateBlueInstancesOnDeploymentSuccess.terminationWaitTimeInMinutes");
completeTime = jResp.IntOf("deploymentsInfo[i].completeTime");
computePlatform = jResp.stringOf("deploymentsInfo[i].computePlatform");
createTime = jResp.IntOf("deploymentsInfo[i].createTime");
creator = jResp.stringOf("deploymentsInfo[i].creator");
deploymentConfigName = jResp.stringOf("deploymentsInfo[i].deploymentConfigName");
deploymentGroupName = jResp.stringOf("deploymentsInfo[i].deploymentGroupName");
deploymentId = jResp.stringOf("deploymentsInfo[i].deploymentId");
Failed = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Failed");
InProgress = jResp.IntOf("deploymentsInfo[i].deploymentOverview.InProgress");
Pending = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Pending");
Ready = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Ready");
Skipped = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Skipped");
Succeeded = jResp.IntOf("deploymentsInfo[i].deploymentOverview.Succeeded");
DeploymentOption = jResp.stringOf("deploymentsInfo[i].deploymentStyle.deploymentOption");
DeploymentType = jResp.stringOf("deploymentsInfo[i].deploymentStyle.deploymentType");
description = jResp.stringOf("deploymentsInfo[i].description");
Code = jResp.stringOf("deploymentsInfo[i].errorInformation.code");
Message = jResp.stringOf("deploymentsInfo[i].errorInformation.message");
externalId = jResp.stringOf("deploymentsInfo[i].externalId");
fileExistsBehavior = jResp.stringOf("deploymentsInfo[i].fileExistsBehavior");
ignoreApplicationStopFailures = jResp.IntOf("deploymentsInfo[i].ignoreApplicationStopFailures");
instanceTerminationWaitTimeStarted = jResp.IntOf("deploymentsInfo[i].instanceTerminationWaitTimeStarted");
Content = jResp.stringOf("deploymentsInfo[i].previousRevision.appSpecContent.content");
Sha256 = jResp.stringOf("deploymentsInfo[i].previousRevision.appSpecContent.sha256");
CommitId = jResp.stringOf("deploymentsInfo[i].previousRevision.gitHubLocation.commitId");
Repository = jResp.stringOf("deploymentsInfo[i].previousRevision.gitHubLocation.repository");
RevisionType = jResp.stringOf("deploymentsInfo[i].previousRevision.revisionType");
Bucket = jResp.stringOf("deploymentsInfo[i].previousRevision.s3Location.bucket");
BundleType = jResp.stringOf("deploymentsInfo[i].previousRevision.s3Location.bundleType");
ETag = jResp.stringOf("deploymentsInfo[i].previousRevision.s3Location.eTag");
Key = jResp.stringOf("deploymentsInfo[i].previousRevision.s3Location.key");
Version = jResp.stringOf("deploymentsInfo[i].previousRevision.s3Location.version");
StringContent = jResp.stringOf("deploymentsInfo[i].previousRevision.string.content");
StringSha256 = jResp.stringOf("deploymentsInfo[i].previousRevision.string.sha256");
AutoUpdateOutdatedInstancesRootDeploymentId = jResp.stringOf("deploymentsInfo[i].relatedDeployments.autoUpdateOutdatedInstancesRootDeploymentId");
AppSpecContentContent = jResp.stringOf("deploymentsInfo[i].revision.appSpecContent.content");
AppSpecContentSha256 = jResp.stringOf("deploymentsInfo[i].revision.appSpecContent.sha256");
GitHubLocationCommitId = jResp.stringOf("deploymentsInfo[i].revision.gitHubLocation.commitId");
GitHubLocationRepository = jResp.stringOf("deploymentsInfo[i].revision.gitHubLocation.repository");
revisionRevisionType = jResp.stringOf("deploymentsInfo[i].revision.revisionType");
S3LocationBucket = jResp.stringOf("deploymentsInfo[i].revision.s3Location.bucket");
S3LocationBundleType = jResp.stringOf("deploymentsInfo[i].revision.s3Location.bundleType");
S3LocationETag = jResp.stringOf("deploymentsInfo[i].revision.s3Location.eTag");
S3LocationKey = jResp.stringOf("deploymentsInfo[i].revision.s3Location.key");
S3LocationVersion = jResp.stringOf("deploymentsInfo[i].revision.s3Location.version");
StringContent = jResp.stringOf("deploymentsInfo[i].revision.string.content");
StringSha256 = jResp.stringOf("deploymentsInfo[i].revision.string.sha256");
RollbackDeploymentId = jResp.stringOf("deploymentsInfo[i].rollbackInfo.rollbackDeploymentId");
RollbackMessage = jResp.stringOf("deploymentsInfo[i].rollbackInfo.rollbackMessage");
RollbackTriggeringDeploymentId = jResp.stringOf("deploymentsInfo[i].rollbackInfo.rollbackTriggeringDeploymentId");
startTime = jResp.IntOf("deploymentsInfo[i].startTime");
status = jResp.stringOf("deploymentsInfo[i].status");
updateOutdatedInstancesOnly = jResp.IntOf("deploymentsInfo[i].updateOutdatedInstancesOnly");
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].autoRollbackConfiguration.events");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("deploymentsInfo[i].autoRollbackConfiguration.events[j]");
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].deploymentStatusMessages");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("deploymentsInfo[i].deploymentStatusMessages[j]");
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.elbInfoList");
while (j < count_j) {
jResp.put_J(j);
name = jResp.stringOf("deploymentsInfo[i].loadBalancerInfo.elbInfoList[j].name");
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupInfoList");
while (j < count_j) {
jResp.put_J(j);
name = jResp.stringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupInfoList[j].name");
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList");
while (j < count_j) {
jResp.put_J(j);
k = 0;
count_k = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].prodTrafficRoute.listenerArns");
while (k < count_k) {
jResp.put_K(k);
strVal = jResp.stringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].prodTrafficRoute.listenerArns[k]");
k = k+1;
}
k = 0;
count_k = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].targetGroups");
while (k < count_k) {
jResp.put_K(k);
name = jResp.stringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].targetGroups[k].name");
k = k+1;
}
k = 0;
count_k = jResp.SizeOfArray("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].testTrafficRoute.listenerArns");
while (k < count_k) {
jResp.put_K(k);
strVal = jResp.stringOf("deploymentsInfo[i].loadBalancerInfo.targetGroupPairInfoList[j].testTrafficRoute.listenerArns[k]");
k = k+1;
}
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].relatedDeployments.autoUpdateOutdatedInstancesDeploymentIds");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("deploymentsInfo[i].relatedDeployments.autoUpdateOutdatedInstancesDeploymentIds[j]");
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.autoScalingGroups");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("deploymentsInfo[i].targetInstances.autoScalingGroups[j]");
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList");
while (j < count_j) {
jResp.put_J(j);
k = 0;
count_k = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j]");
while (k < count_k) {
jResp.put_K(k);
Key = jResp.stringOf("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j][k].Key");
v_Type = jResp.stringOf("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j][k].Type");
Value = jResp.stringOf("deploymentsInfo[i].targetInstances.ec2TagSet.ec2TagSetList[j][k].Value");
k = k+1;
}
j = j+1;
}
j = 0;
count_j = jResp.SizeOfArray("deploymentsInfo[i].targetInstances.tagFilters");
while (j < count_j) {
jResp.put_J(j);
Key = jResp.stringOf("deploymentsInfo[i].targetInstances.tagFilters[j].Key");
v_Type = jResp.stringOf("deploymentsInfo[i].targetInstances.tagFilters[j].Type");
Value = jResp.stringOf("deploymentsInfo[i].targetInstances.tagFilters[j].Value");
j = j+1;
}
i = i+1;
}
// A sample JSON response body parsed by the above code:
// {
// "deploymentsInfo": [
// {
// "additionalDeploymentStatusInfo": "string",
// "applicationName": "string",
// "autoRollbackConfiguration": {
// "enabled": boolean,
// "events": [
// "string"
// ]
// },
// "blueGreenDeploymentConfiguration": {
// "deploymentReadyOption": {
// "actionOnTimeout": "string",
// "waitTimeInMinutes": number
// },
// "greenFleetProvisioningOption": {
// "action": "string"
// },
// "terminateBlueInstancesOnDeploymentSuccess": {
// "action": "string",
// "terminationWaitTimeInMinutes": number
// }
// },
// "completeTime": number,
// "computePlatform": "string",
// "createTime": number,
// "creator": "string",
// "deploymentConfigName": "string",
// "deploymentGroupName": "string",
// "deploymentId": "string",
// "deploymentOverview": {
// "Failed": number,
// "InProgress": number,
// "Pending": number,
// "Ready": number,
// "Skipped": number,
// "Succeeded": number
// },
// "deploymentStatusMessages": [
// "string"
// ],
// "deploymentStyle": {
// "deploymentOption": "string",
// "deploymentType": "string"
// },
// "description": "string",
// "errorInformation": {
// "code": "string",
// "message": "string"
// },
// "externalId": "string",
// "fileExistsBehavior": "string",
// "ignoreApplicationStopFailures": boolean,
// "instanceTerminationWaitTimeStarted": boolean,
// "loadBalancerInfo": {
// "elbInfoList": [
// {
// "name": "string"
// }
// ],
// "targetGroupInfoList": [
// {
// "name": "string"
// }
// ],
// "targetGroupPairInfoList": [
// {
// "prodTrafficRoute": {
// "listenerArns": [
// "string"
// ]
// },
// "targetGroups": [
// {
// "name": "string"
// }
// ],
// "testTrafficRoute": {
// "listenerArns": [
// "string"
// ]
// }
// }
// ]
// },
// "previousRevision": {
// "appSpecContent": {
// "content": "string",
// "sha256": "string"
// },
// "gitHubLocation": {
// "commitId": "string",
// "repository": "string"
// },
// "revisionType": "string",
// "s3Location": {
// "bucket": "string",
// "bundleType": "string",
// "eTag": "string",
// "key": "string",
// "version": "string"
// },
// "string": {
// "content": "string",
// "sha256": "string"
// }
// },
// "relatedDeployments": {
// "autoUpdateOutdatedInstancesDeploymentIds": [
// "string"
// ],
// "autoUpdateOutdatedInstancesRootDeploymentId": "string"
// },
// "revision": {
// "appSpecContent": {
// "content": "string",
// "sha256": "string"
// },
// "gitHubLocation": {
// "commitId": "string",
// "repository": "string"
// },
// "revisionType": "string",
// "s3Location": {
// "bucket": "string",
// "bundleType": "string",
// "eTag": "string",
// "key": "string",
// "version": "string"
// },
// "string": {
// "content": "string",
// "sha256": "string"
// }
// },
// "rollbackInfo": {
// "rollbackDeploymentId": "string",
// "rollbackMessage": "string",
// "rollbackTriggeringDeploymentId": "string"
// },
// "startTime": number,
// "status": "string",
// "targetInstances": {
// "autoScalingGroups": [
// "string"
// ],
// "ec2TagSet": {
// "ec2TagSetList": [
// [
// {
// "Key": "string",
// "Type": "string",
// "Value": "string"
// }
// ]
// ]
// },
// "tagFilters": [
// {
// "Key": "string",
// "Type": "string",
// "Value": "string"
// }
// ]
// },
// "updateOutdatedInstancesOnly": boolean
// }
// ]
// }
}
}