Chilkat Online Tools

ListUniqueProblems PowerBuilder Example

AWS Device Farm

integer li_rc
oleobject loo_Rest
integer li_Success
oleobject loo_AuthAws
oleobject loo_Json
oleobject loo_SbRequestBody
oleobject loo_SbResponseBody
integer li_RespStatusCode
oleobject loo_JResp
string ls_Message
integer j
integer li_Count_j
string ls_Arn
string ls_Availability
string ls_Carrier
string ls_Architecture
integer li_Clock
string ls_Frequency
string ls_FleetName
string ls_FleetType
string ls_FormFactor
integer li_HeapSize
string ls_Image
string ls_Manufacturer
integer li_Memory
string ls_Model
string ls_ModelId
string ls_Name
string ls_Os
string ls_Platform
string ls_Radio
integer li_RemoteAccessEnabled
integer li_RemoteDebugEnabled
integer li_Height
integer li_Width
string ls_JobArn
string ls_JobName
string ls_Result
string ls_RunArn
string ls_RunName
string ls_SuiteArn
string ls_SuiteName
string ls_TestArn
string ls_TestName
integer k
integer li_Count_k
string ls_Arn
string ls_DeviceArn
string ls_InstanceProfileArn
string ls_Description
string ls_InstanceProfileName
integer li_PackageCleanup
integer li_RebootAfterUse
string ls_Status
string ls_Udid
oleobject loo_Json1
integer li_I1
integer li_Count_i1
string ls_StrVal
string ls_NextToken
integer i
integer li_Count_i

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

loo_Rest = create oleobject
li_rc = loo_Rest.ConnectToNewObject("Chilkat_9_5_0.Rest")
if li_rc < 0 then
    destroy loo_Rest
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_AuthAws = create oleobject
li_rc = loo_AuthAws.ConnectToNewObject("Chilkat_9_5_0.AuthAws")

loo_AuthAws.AccessKey = "AWS_ACCESS_KEY"
loo_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.)
loo_AuthAws.Region = "us-west-2"
loo_AuthAws.ServiceName = "devicefarm"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
loo_Rest.SetAuthAws(loo_AuthAws)

// URL: https://devicefarm.us-west-2.amazonaws.com/
// Use the same region as specified above.
li_Success = loo_Rest.Connect("devicefarm.us-west-2.amazonaws.com",443,1,1)
if li_Success <> 1 then
    Write-Debug "ConnectFailReason: " + string(loo_Rest.ConnectFailReason)
    Write-Debug loo_Rest.LastErrorText
    destroy loo_Rest
    destroy loo_AuthAws
    return
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

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_Json.UpdateString("arn","string")
loo_Json.UpdateString("nextToken","string")

// The JSON request body created by the above code:

// {
//   "arn": "string",
//   "nextToken": "string"
// }

loo_Rest.AddHeader("Content-Type","application/x-amz-json-1.1")
loo_Rest.AddHeader("X-Amz-Target","DeviceFarm_20150623.ListUniqueProblems")

loo_SbRequestBody = create oleobject
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Json.EmitSb(loo_SbRequestBody)
loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Rest.FullRequestSb("POST","/",loo_SbRequestBody,loo_SbResponseBody)
if li_Success <> 1 then
    Write-Debug loo_Rest.LastErrorText
    destroy loo_Rest
    destroy loo_AuthAws
    destroy loo_Json
    destroy loo_SbRequestBody
    destroy loo_SbResponseBody
    return
end if

li_RespStatusCode = loo_Rest.ResponseStatusCode
Write-Debug "response status code = " + string(li_RespStatusCode)
if li_RespStatusCode <> 200 then
    Write-Debug "Response Header:"
    Write-Debug loo_Rest.ResponseHeader
    Write-Debug "Response Body:"
    Write-Debug loo_SbResponseBody.GetAsString()
    destroy loo_Rest
    destroy loo_AuthAws
    destroy loo_Json
    destroy loo_SbRequestBody
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_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

ls_NextToken = loo_JResp.StringOf("nextToken")
i = 0
li_Count_i = loo_JResp.SizeOfArray("uniqueProblems.string")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Message = loo_JResp.StringOf("uniqueProblems.string[i].message")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("uniqueProblems.string[i].problems")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Arn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.arn")
        ls_Availability = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.availability")
        ls_Carrier = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.carrier")
        ls_Architecture = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.cpu.architecture")
        li_Clock = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.cpu.clock")
        ls_Frequency = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.cpu.frequency")
        ls_FleetName = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.fleetName")
        ls_FleetType = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.fleetType")
        ls_FormFactor = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.formFactor")
        li_HeapSize = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.heapSize")
        ls_Image = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.image")
        ls_Manufacturer = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.manufacturer")
        li_Memory = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.memory")
        ls_Model = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.model")
        ls_ModelId = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.modelId")
        ls_Name = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.name")
        ls_Os = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.os")
        ls_Platform = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.platform")
        ls_Radio = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.radio")
        li_RemoteAccessEnabled = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.remoteAccessEnabled")
        li_RemoteDebugEnabled = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.remoteDebugEnabled")
        li_Height = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.resolution.height")
        li_Width = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.resolution.width")
        ls_JobArn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].job.arn")
        ls_JobName = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].job.name")
        ls_Message = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].message")
        ls_Result = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].result")
        ls_RunArn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].run.arn")
        ls_RunName = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].run.name")
        ls_SuiteArn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].suite.arn")
        ls_SuiteName = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].suite.name")
        ls_TestArn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].test.arn")
        ls_TestName = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].test.name")
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("uniqueProblems.string[i].problems[j].device.instances")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_Arn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].arn")
            ls_DeviceArn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].deviceArn")
            ls_InstanceProfileArn = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].instanceProfile.arn")
            ls_Description = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].instanceProfile.description")
            ls_InstanceProfileName = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].instanceProfile.name")
            li_PackageCleanup = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.instances[k].instanceProfile.packageCleanup")
            li_RebootAfterUse = loo_JResp.IntOf("uniqueProblems.string[i].problems[j].device.instances[k].instanceProfile.rebootAfterUse")
            ls_Status = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].status")
            ls_Udid = loo_JResp.StringOf("uniqueProblems.string[i].problems[j].device.instances[k].udid")

            loo_Json1 = loo_JResp.ObjectOf("uniqueProblems.string[i].problems[j].device.instances[k]")
            li_I1 = 0
            li_Count_i1 = loo_Json1.SizeOfArray("instanceProfile.excludeAppPackagesFromCleanup")
            do while li_I1 < li_Count_i1
                loo_Json1.I = li_I1
                ls_StrVal = loo_Json1.StringOf("instanceProfile.excludeAppPackagesFromCleanup[i]")
                li_I1 = li_I1 + 1
            loop
            destroy loo_Json1

            loo_Json1 = loo_JResp.ObjectOf("uniqueProblems.string[i].problems[j].device.instances[k]")
            li_I1 = 0
            li_Count_i1 = loo_Json1.SizeOfArray("labels")
            do while li_I1 < li_Count_i1
                loo_Json1.I = li_I1
                ls_StrVal = loo_Json1.StringOf("labels[i]")
                li_I1 = li_I1 + 1
            loop
            destroy loo_Json1
            k = k + 1
        loop
        j = j + 1
    loop
    i = i + 1
loop

// A sample JSON response body parsed by the above code:

// {
//   "nextToken": "string",
//   "uniqueProblems": {
//     "string": [
//       {
//         "message": "string",
//         "problems": [
//           {
//             "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
//               }
//             },
//             "job": {
//               "arn": "string",
//               "name": "string"
//             },
//             "message": "string",
//             "result": "string",
//             "run": {
//               "arn": "string",
//               "name": "string"
//             },
//             "suite": {
//               "arn": "string",
//               "name": "string"
//             },
//             "test": {
//               "arn": "string",
//               "name": "string"
//             }
//           }
//         ]
//       }
//     ]
//   }
// }


destroy loo_Rest
destroy loo_AuthAws
destroy loo_Json
destroy loo_SbRequestBody
destroy loo_SbResponseBody
destroy loo_JResp