Chilkat Online Tools

GetDevice VB.NET Example

AWS Device Farm

' 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.GetDevice")

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("device.arn")
Dim Availability As String = jResp.StringOf("device.availability")
Dim Carrier As String = jResp.StringOf("device.carrier")
Dim Architecture As String = jResp.StringOf("device.cpu.architecture")
Dim Clock As Integer = jResp.IntOf("device.cpu.clock")
Dim Frequency As String = jResp.StringOf("device.cpu.frequency")
Dim FleetName As String = jResp.StringOf("device.fleetName")
Dim FleetType As String = jResp.StringOf("device.fleetType")
Dim FormFactor As String = jResp.StringOf("device.formFactor")
Dim HeapSize As Integer = jResp.IntOf("device.heapSize")
Dim Image As String = jResp.StringOf("device.image")
Dim Manufacturer As String = jResp.StringOf("device.manufacturer")
Dim Memory As Integer = jResp.IntOf("device.memory")
Dim Model As String = jResp.StringOf("device.model")
Dim ModelId As String = jResp.StringOf("device.modelId")
Dim Name As String = jResp.StringOf("device.name")
Dim Os As String = jResp.StringOf("device.os")
Dim Platform As String = jResp.StringOf("device.platform")
Dim Radio As String = jResp.StringOf("device.radio")
Dim RemoteAccessEnabled As Integer = jResp.IntOf("device.remoteAccessEnabled")
Dim RemoteDebugEnabled As Integer = jResp.IntOf("device.remoteDebugEnabled")
Dim Height As Integer = jResp.IntOf("device.resolution.height")
Dim Width As Integer = jResp.IntOf("device.resolution.width")
Dim i As Integer = 0
Dim count_i As Integer = jResp.SizeOfArray("device.instances")
While i < count_i
    jResp.I = i
    arn = jResp.StringOf("device.instances[i].arn")
    deviceArn = jResp.StringOf("device.instances[i].deviceArn")
    instanceProfileArn = jResp.StringOf("device.instances[i].instanceProfile.arn")
    Description = jResp.StringOf("device.instances[i].instanceProfile.description")
    instanceProfileName = jResp.StringOf("device.instances[i].instanceProfile.name")
    PackageCleanup = jResp.IntOf("device.instances[i].instanceProfile.packageCleanup")
    RebootAfterUse = jResp.IntOf("device.instances[i].instanceProfile.rebootAfterUse")
    status = jResp.StringOf("device.instances[i].status")
    udid = jResp.StringOf("device.instances[i].udid")
    j = 0
    count_j = jResp.SizeOfArray("device.instances[i].instanceProfile.excludeAppPackagesFromCleanup")
    While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("device.instances[i].instanceProfile.excludeAppPackagesFromCleanup[j]")
        j = j + 1
    End While
    j = 0
    count_j = jResp.SizeOfArray("device.instances[i].labels")
    While j < count_j
        jResp.J = j
        strVal = jResp.StringOf("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:

' {
'   "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
'     }
'   }
' }