StopJob VB.NET Example
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim rest As New Chilkat.Rest
Dim success As Boolean
Dim authAws As 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) Then
Debug.WriteLine("ConnectFailReason: " & rest.ConnectFailReason)
Debug.WriteLine(rest.LastErrorText)
Exit Sub
End If
' 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
Dim json As 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.StopJob")
Dim sbRequestBody As New Chilkat.StringBuilder
json.EmitSb(sbRequestBody)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> True) Then
Debug.WriteLine(rest.LastErrorText)
Exit Sub
End If
Dim respStatusCode As Integer = rest.ResponseStatusCode
Debug.WriteLine("response status code = " & respStatusCode)
If (respStatusCode <> 200) Then
Debug.WriteLine("Response Header:")
Debug.WriteLine(rest.ResponseHeader)
Debug.WriteLine("Response Body:")
Debug.WriteLine(sbResponseBody.GetAsString())
Exit Sub
End If
Dim jResp As 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
Dim arn As String
Dim deviceArn As String
Dim instanceProfileArn As String
Dim Description As String
Dim instanceProfileName As String
Dim PackageCleanup As Integer
Dim RebootAfterUse As Integer
Dim status As String
Dim udid As String
Dim j As Integer
Dim count_j As Integer
Dim strVal As String
Dim Arn As String = jResp.StringOf("job.arn")
Dim Errored As Integer = jResp.IntOf("job.counters.errored")
Dim Failed As Integer = jResp.IntOf("job.counters.failed")
Dim Passed As Integer = jResp.IntOf("job.counters.passed")
Dim Skipped As Integer = jResp.IntOf("job.counters.skipped")
Dim Stopped As Integer = jResp.IntOf("job.counters.stopped")
Dim Total As Integer = jResp.IntOf("job.counters.total")
Dim Warned As Integer = jResp.IntOf("job.counters.warned")
Dim Created As Integer = jResp.IntOf("job.created")
Dim DeviceArn As String = jResp.StringOf("job.device.arn")
Dim Availability As String = jResp.StringOf("job.device.availability")
Dim Carrier As String = jResp.StringOf("job.device.carrier")
Dim Architecture As String = jResp.StringOf("job.device.cpu.architecture")
Dim Clock As Integer = jResp.IntOf("job.device.cpu.clock")
Dim Frequency As String = jResp.StringOf("job.device.cpu.frequency")
Dim FleetName As String = jResp.StringOf("job.device.fleetName")
Dim FleetType As String = jResp.StringOf("job.device.fleetType")
Dim FormFactor As String = jResp.StringOf("job.device.formFactor")
Dim HeapSize As Integer = jResp.IntOf("job.device.heapSize")
Dim Image As String = jResp.StringOf("job.device.image")
Dim Manufacturer As String = jResp.StringOf("job.device.manufacturer")
Dim Memory As Integer = jResp.IntOf("job.device.memory")
Dim Model As String = jResp.StringOf("job.device.model")
Dim ModelId As String = jResp.StringOf("job.device.modelId")
Dim Name As String = jResp.StringOf("job.device.name")
Dim Os As String = jResp.StringOf("job.device.os")
Dim Platform As String = jResp.StringOf("job.device.platform")
Dim Radio As String = jResp.StringOf("job.device.radio")
Dim RemoteAccessEnabled As Integer = jResp.IntOf("job.device.remoteAccessEnabled")
Dim RemoteDebugEnabled As Integer = jResp.IntOf("job.device.remoteDebugEnabled")
Dim Height As Integer = jResp.IntOf("job.device.resolution.height")
Dim Width As Integer = jResp.IntOf("job.device.resolution.width")
Dim Metered As Integer = jResp.IntOf("job.deviceMinutes.metered")
Dim DeviceMinutesTotal As Integer = jResp.IntOf("job.deviceMinutes.total")
Dim Unmetered As Integer = jResp.IntOf("job.deviceMinutes.unmetered")
Dim InstanceArn As String = jResp.StringOf("job.instanceArn")
Dim Message As String = jResp.StringOf("job.message")
Dim jobName As String = jResp.StringOf("job.name")
Dim Result As String = jResp.StringOf("job.result")
Dim Started As Integer = jResp.IntOf("job.started")
Dim Status As String = jResp.StringOf("job.status")
Dim jobStopped As Integer = jResp.IntOf("job.stopped")
Dim v_Type As String = jResp.StringOf("job.type")
Dim VideoCapture As Integer = jResp.IntOf("job.videoCapture")
Dim VideoEndpoint As String = jResp.StringOf("job.videoEndpoint")
Dim i As Integer = 0
Dim count_i As Integer = jResp.SizeOfArray("job.device.instances")
While i < count_i
jResp.I = i
arn = jResp.StringOf("job.device.instances[i].arn")
deviceArn = jResp.StringOf("job.device.instances[i].deviceArn")
instanceProfileArn = jResp.StringOf("job.device.instances[i].instanceProfile.arn")
Description = jResp.StringOf("job.device.instances[i].instanceProfile.description")
instanceProfileName = jResp.StringOf("job.device.instances[i].instanceProfile.name")
PackageCleanup = jResp.IntOf("job.device.instances[i].instanceProfile.packageCleanup")
RebootAfterUse = jResp.IntOf("job.device.instances[i].instanceProfile.rebootAfterUse")
status = jResp.StringOf("job.device.instances[i].status")
udid = jResp.StringOf("job.device.instances[i].udid")
j = 0
count_j = jResp.SizeOfArray("job.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup")
While j < count_j
jResp.J = j
strVal = jResp.StringOf("job.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup[j]")
j = j + 1
End While
j = 0
count_j = jResp.SizeOfArray("job.device.instances[i].labels")
While j < count_j
jResp.J = j
strVal = jResp.StringOf("job.device.instances[i].labels[j]")
j = j + 1
End While
i = i + 1
End While
' A sample JSON response body parsed by the above code:
' {
' "job": {
' "arn": "string",
' "counters": {
' "errored": number,
' "failed": number,
' "passed": number,
' "skipped": number,
' "stopped": number,
' "total": number,
' "warned": number
' },
' "created": number,
' "device": {
' "arn": "string",
' "availability": "string",
' "carrier": "string",
' "cpu": {
' "architecture": "string",
' "clock": number,
' "frequency": "string"
' },
' "fleetName": "string",
' "fleetType": "string",
' "formFactor": "string",
' "heapSize": number,
' "image": "string",
' "instances": [
' {
' "arn": "string",
' "deviceArn": "string",
' "instanceProfile": {
' "arn": "string",
' "description": "string",
' "excludeAppPackagesFromCleanup": [
' "string"
' ],
' "name": "string",
' "packageCleanup": boolean,
' "rebootAfterUse": boolean
' },
' "labels": [
' "string"
' ],
' "status": "string",
' "udid": "string"
' }
' ],
' "manufacturer": "string",
' "memory": number,
' "model": "string",
' "modelId": "string",
' "name": "string",
' "os": "string",
' "platform": "string",
' "radio": "string",
' "remoteAccessEnabled": boolean,
' "remoteDebugEnabled": boolean,
' "resolution": {
' "height": number,
' "width": number
' }
' },
' "deviceMinutes": {
' "metered": number,
' "total": number,
' "unmetered": number
' },
' "instanceArn": "string",
' "message": "string",
' "name": "string",
' "result": "string",
' "started": number,
' "status": "string",
' "stopped": number,
' "type": "string",
' "videoCapture": boolean,
' "videoEndpoint": "string"
' }
' }