StopRun 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("devicefarm");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws);
// URL: https://devicefarm.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("devicefarm.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("arn","string");
// The JSON request body created by the above code:
// {
// "arn": "string"
// }
rest.AddHeader("Content-Type","application/x-amz-json-1.1");
rest.AddHeader("X-Amz-Target","DeviceFarm_20150623.StopRun");
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 strVal;
String attribute;
String operator;
int j;
int count_j;
String AppUpload = jResp.stringOf("run.appUpload");
String Arn = jResp.stringOf("run.arn");
String BillingMethod = jResp.stringOf("run.billingMethod");
int CompletedJobs = jResp.IntOf("run.completedJobs");
int Errored = jResp.IntOf("run.counters.errored");
int Failed = jResp.IntOf("run.counters.failed");
int Passed = jResp.IntOf("run.counters.passed");
int Skipped = jResp.IntOf("run.counters.skipped");
int Stopped = jResp.IntOf("run.counters.stopped");
int Total = jResp.IntOf("run.counters.total");
int Warned = jResp.IntOf("run.counters.warned");
int Created = jResp.IntOf("run.created");
int Metered = jResp.IntOf("run.deviceMinutes.metered");
int DeviceMinutesTotal = jResp.IntOf("run.deviceMinutes.total");
int Unmetered = jResp.IntOf("run.deviceMinutes.unmetered");
String DevicePoolArn = jResp.stringOf("run.devicePoolArn");
int MatchedDevicesCount = jResp.IntOf("run.deviceSelectionResult.matchedDevicesCount");
int MaxDevices = jResp.IntOf("run.deviceSelectionResult.maxDevices");
int EventCount = jResp.IntOf("run.eventCount");
int JobTimeoutMinutes = jResp.IntOf("run.jobTimeoutMinutes");
String Locale = jResp.stringOf("run.locale");
int Latitude = jResp.IntOf("run.location.latitude");
int Longitude = jResp.IntOf("run.location.longitude");
String Message = jResp.stringOf("run.message");
String Name = jResp.stringOf("run.name");
String NetworkProfileArn = jResp.stringOf("run.networkProfile.arn");
String Description = jResp.stringOf("run.networkProfile.description");
int DownlinkBandwidthBits = jResp.IntOf("run.networkProfile.downlinkBandwidthBits");
int DownlinkDelayMs = jResp.IntOf("run.networkProfile.downlinkDelayMs");
int DownlinkJitterMs = jResp.IntOf("run.networkProfile.downlinkJitterMs");
int DownlinkLossPercent = jResp.IntOf("run.networkProfile.downlinkLossPercent");
String NetworkProfileName = jResp.stringOf("run.networkProfile.name");
String v_Type = jResp.stringOf("run.networkProfile.type");
int UplinkBandwidthBits = jResp.IntOf("run.networkProfile.uplinkBandwidthBits");
int UplinkDelayMs = jResp.IntOf("run.networkProfile.uplinkDelayMs");
int UplinkJitterMs = jResp.IntOf("run.networkProfile.uplinkJitterMs");
int UplinkLossPercent = jResp.IntOf("run.networkProfile.uplinkLossPercent");
String ParsingResultUrl = jResp.stringOf("run.parsingResultUrl");
String Platform = jResp.stringOf("run.platform");
int Bluetooth = jResp.IntOf("run.radios.bluetooth");
int Gps = jResp.IntOf("run.radios.gps");
int Nfc = jResp.IntOf("run.radios.nfc");
int Wifi = jResp.IntOf("run.radios.wifi");
String Result = jResp.stringOf("run.result");
String ResultCode = jResp.stringOf("run.resultCode");
int Seed = jResp.IntOf("run.seed");
int SkipAppResign = jResp.IntOf("run.skipAppResign");
int Started = jResp.IntOf("run.started");
String Status = jResp.stringOf("run.status");
int runStopped = jResp.IntOf("run.stopped");
String TestSpecArn = jResp.stringOf("run.testSpecArn");
int TotalJobs = jResp.IntOf("run.totalJobs");
String runType = jResp.stringOf("run.type");
String WebUrl = jResp.stringOf("run.webUrl");
int i = 0;
int count_i = jResp.SizeOfArray("run.customerArtifactPaths.androidPaths");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf("run.customerArtifactPaths.androidPaths[i]");
i = i+1;
}
i = 0;
count_i = jResp.SizeOfArray("run.customerArtifactPaths.deviceHostPaths");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf("run.customerArtifactPaths.deviceHostPaths[i]");
i = i+1;
}
i = 0;
count_i = jResp.SizeOfArray("run.customerArtifactPaths.iosPaths");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf("run.customerArtifactPaths.iosPaths[i]");
i = i+1;
}
i = 0;
count_i = jResp.SizeOfArray("run.deviceSelectionResult.filters");
while (i < count_i) {
jResp.put_I(i);
attribute = jResp.stringOf("run.deviceSelectionResult.filters[i].attribute");
operator = jResp.stringOf("run.deviceSelectionResult.filters[i].operator");
j = 0;
count_j = jResp.SizeOfArray("run.deviceSelectionResult.filters[i].values");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf("run.deviceSelectionResult.filters[i].values[j]");
j = j+1;
}
i = i+1;
}
// A sample JSON response body parsed by the above code:
// {
// "run": {
// "appUpload": "string",
// "arn": "string",
// "billingMethod": "string",
// "completedJobs": number,
// "counters": {
// "errored": number,
// "failed": number,
// "passed": number,
// "skipped": number,
// "stopped": number,
// "total": number,
// "warned": number
// },
// "created": number,
// "customerArtifactPaths": {
// "androidPaths": [
// "string"
// ],
// "deviceHostPaths": [
// "string"
// ],
// "iosPaths": [
// "string"
// ]
// },
// "deviceMinutes": {
// "metered": number,
// "total": number,
// "unmetered": number
// },
// "devicePoolArn": "string",
// "deviceSelectionResult": {
// "filters": [
// {
// "attribute": "string",
// "operator": "string",
// "values": [
// "string"
// ]
// }
// ],
// "matchedDevicesCount": number,
// "maxDevices": number
// },
// "eventCount": number,
// "jobTimeoutMinutes": number,
// "locale": "string",
// "location": {
// "latitude": number,
// "longitude": number
// },
// "message": "string",
// "name": "string",
// "networkProfile": {
// "arn": "string",
// "description": "string",
// "downlinkBandwidthBits": number,
// "downlinkDelayMs": number,
// "downlinkJitterMs": number,
// "downlinkLossPercent": number,
// "name": "string",
// "type": "string",
// "uplinkBandwidthBits": number,
// "uplinkDelayMs": number,
// "uplinkJitterMs": number,
// "uplinkLossPercent": number
// },
// "parsingResultUrl": "string",
// "platform": "string",
// "radios": {
// "bluetooth": boolean,
// "gps": boolean,
// "nfc": boolean,
// "wifi": boolean
// },
// "result": "string",
// "resultCode": "string",
// "seed": number,
// "skipAppResign": boolean,
// "started": number,
// "status": "string",
// "stopped": number,
// "testSpecArn": "string",
// "totalJobs": number,
// "type": "string",
// "webUrl": "string"
// }
// }
}
}