Chilkat Online Tools

GetRun C# Example

AWS Device Farm

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Rest rest = new Chilkat.Rest();
bool success;

Chilkat.AuthAws authAws = new Chilkat.AuthAws();
authAws.AccessKey = "AWS_ACCESS_KEY";
authAws.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.Region = "us-west-2";
authAws.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) {
    Debug.WriteLine("ConnectFailReason: " + Convert.ToString(rest.ConnectFailReason));
    Debug.WriteLine(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

Chilkat.JsonObject json = new Chilkat.JsonObject();
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.GetRun");

Chilkat.StringBuilder sbRequestBody = new Chilkat.StringBuilder();
json.EmitSb(sbRequestBody);
Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}

int respStatusCode = rest.ResponseStatusCode;
Debug.WriteLine("response status code = " + Convert.ToString(respStatusCode));
if (respStatusCode != 200) {
    Debug.WriteLine("Response Header:");
    Debug.WriteLine(rest.ResponseHeader);
    Debug.WriteLine("Response Body:");
    Debug.WriteLine(sbResponseBody.GetAsString());
    return;
}

Chilkat.JsonObject jResp = new Chilkat.JsonObject();
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.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.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.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.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.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"
//   }
// }