Chilkat Online Tools

GetDevicePoolCompatibility 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
integer li_Compatible
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
integer j
integer li_Count_j
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
integer k
integer li_Count_k
string ls_StrVal
string ls_Message
string ls_V_type
string ls_DeviceAvailability
string ls_DeviceCarrier
string ls_CpuArchitecture
integer li_CpuClock
string ls_CpuFrequency
string ls_DeviceFleetName
string ls_DeviceFleetType
string ls_DeviceFormFactor
integer li_DeviceHeapSize
string ls_DeviceImage
string ls_DeviceManufacturer
integer li_DeviceMemory
string ls_DeviceModel
string ls_DeviceModelId
string ls_DeviceName
string ls_DeviceOs
string ls_DevicePlatform
string ls_DeviceRadio
integer li_DeviceRemoteAccessEnabled
integer li_DeviceRemoteDebugEnabled
integer li_ResolutionHeight
integer li_ResolutionWidth
string ls_InstanceProfileDescription
integer li_InstanceProfilePackageCleanup
integer li_InstanceProfileRebootAfterUse
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("appArn","string")
loo_Json.UpdateString("configuration.auxiliaryApps[0]","string")
loo_Json.UpdateString("configuration.billingMethod","string")
loo_Json.UpdateString("configuration.customerArtifactPaths.androidPaths[0]","string")
loo_Json.UpdateString("configuration.customerArtifactPaths.deviceHostPaths[0]","string")
loo_Json.UpdateString("configuration.customerArtifactPaths.iosPaths[0]","string")
loo_Json.UpdateString("configuration.extraDataPackageArn","string")
loo_Json.UpdateString("configuration.locale","string")
loo_Json.UpdateInt("configuration.location.latitude",123)
loo_Json.UpdateInt("configuration.location.longitude",123)
loo_Json.UpdateString("configuration.networkProfileArn","string")
loo_Json.UpdateInt("configuration.radios.bluetooth",123)
loo_Json.UpdateInt("configuration.radios.gps",123)
loo_Json.UpdateInt("configuration.radios.nfc",123)
loo_Json.UpdateInt("configuration.radios.wifi",123)
loo_Json.UpdateString("configuration.vpceConfigurationArns[0]","string")
loo_Json.UpdateString("devicePoolArn","string")
loo_Json.UpdateString("test.filter","string")
loo_Json.UpdateString("test.parameters.string","string")
loo_Json.UpdateString("test.testPackageArn","string")
loo_Json.UpdateString("test.testSpecArn","string")
loo_Json.UpdateString("test.type","string")
loo_Json.UpdateString("testType","string")

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

// {
//   "appArn": "string",
//   "configuration": {
//     "auxiliaryApps": [
//       "string"
//     ],
//     "billingMethod": "string",
//     "customerArtifactPaths": {
//       "androidPaths": [
//         "string"
//       ],
//       "deviceHostPaths": [
//         "string"
//       ],
//       "iosPaths": [
//         "string"
//       ]
//     },
//     "extraDataPackageArn": "string",
//     "locale": "string",
//     "location": {
//       "latitude": number,
//       "longitude": number
//     },
//     "networkProfileArn": "string",
//     "radios": {
//       "bluetooth": boolean,
//       "gps": boolean,
//       "nfc": boolean,
//       "wifi": boolean
//     },
//     "vpceConfigurationArns": [
//       "string"
//     ]
//   },
//   "devicePoolArn": "string",
//   "test": {
//     "filter": "string",
//     "parameters": {
//       "string": "string"
//     },
//     "testPackageArn": "string",
//     "testSpecArn": "string",
//     "type": "string"
//   },
//   "testType": "string"
// }

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

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

i = 0
li_Count_i = loo_JResp.SizeOfArray("compatibleDevices")
do while i < li_Count_i
    loo_JResp.I = i
    li_Compatible = loo_JResp.IntOf("compatibleDevices[i].compatible")
    ls_Arn = loo_JResp.StringOf("compatibleDevices[i].device.arn")
    ls_Availability = loo_JResp.StringOf("compatibleDevices[i].device.availability")
    ls_Carrier = loo_JResp.StringOf("compatibleDevices[i].device.carrier")
    ls_Architecture = loo_JResp.StringOf("compatibleDevices[i].device.cpu.architecture")
    li_Clock = loo_JResp.IntOf("compatibleDevices[i].device.cpu.clock")
    ls_Frequency = loo_JResp.StringOf("compatibleDevices[i].device.cpu.frequency")
    ls_FleetName = loo_JResp.StringOf("compatibleDevices[i].device.fleetName")
    ls_FleetType = loo_JResp.StringOf("compatibleDevices[i].device.fleetType")
    ls_FormFactor = loo_JResp.StringOf("compatibleDevices[i].device.formFactor")
    li_HeapSize = loo_JResp.IntOf("compatibleDevices[i].device.heapSize")
    ls_Image = loo_JResp.StringOf("compatibleDevices[i].device.image")
    ls_Manufacturer = loo_JResp.StringOf("compatibleDevices[i].device.manufacturer")
    li_Memory = loo_JResp.IntOf("compatibleDevices[i].device.memory")
    ls_Model = loo_JResp.StringOf("compatibleDevices[i].device.model")
    ls_ModelId = loo_JResp.StringOf("compatibleDevices[i].device.modelId")
    ls_Name = loo_JResp.StringOf("compatibleDevices[i].device.name")
    ls_Os = loo_JResp.StringOf("compatibleDevices[i].device.os")
    ls_Platform = loo_JResp.StringOf("compatibleDevices[i].device.platform")
    ls_Radio = loo_JResp.StringOf("compatibleDevices[i].device.radio")
    li_RemoteAccessEnabled = loo_JResp.IntOf("compatibleDevices[i].device.remoteAccessEnabled")
    li_RemoteDebugEnabled = loo_JResp.IntOf("compatibleDevices[i].device.remoteDebugEnabled")
    li_Height = loo_JResp.IntOf("compatibleDevices[i].device.resolution.height")
    li_Width = loo_JResp.IntOf("compatibleDevices[i].device.resolution.width")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("compatibleDevices[i].device.instances")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Arn = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].arn")
        ls_DeviceArn = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].deviceArn")
        ls_InstanceProfileArn = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.arn")
        ls_Description = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.description")
        ls_InstanceProfileName = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.name")
        li_PackageCleanup = loo_JResp.IntOf("compatibleDevices[i].device.instances[j].instanceProfile.packageCleanup")
        li_RebootAfterUse = loo_JResp.IntOf("compatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse")
        ls_Status = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].status")
        ls_Udid = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].udid")
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_StrVal = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
            k = k + 1
        loop
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("compatibleDevices[i].device.instances[j].labels")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_StrVal = loo_JResp.StringOf("compatibleDevices[i].device.instances[j].labels[k]")
            k = k + 1
        loop
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("compatibleDevices[i].incompatibilityMessages")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Message = loo_JResp.StringOf("compatibleDevices[i].incompatibilityMessages[j].message")
        ls_V_type = loo_JResp.StringOf("compatibleDevices[i].incompatibilityMessages[j].type")
        j = j + 1
    loop
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("incompatibleDevices")
do while i < li_Count_i
    loo_JResp.I = i
    li_Compatible = loo_JResp.IntOf("incompatibleDevices[i].compatible")
    ls_DeviceArn = loo_JResp.StringOf("incompatibleDevices[i].device.arn")
    ls_DeviceAvailability = loo_JResp.StringOf("incompatibleDevices[i].device.availability")
    ls_DeviceCarrier = loo_JResp.StringOf("incompatibleDevices[i].device.carrier")
    ls_CpuArchitecture = loo_JResp.StringOf("incompatibleDevices[i].device.cpu.architecture")
    li_CpuClock = loo_JResp.IntOf("incompatibleDevices[i].device.cpu.clock")
    ls_CpuFrequency = loo_JResp.StringOf("incompatibleDevices[i].device.cpu.frequency")
    ls_DeviceFleetName = loo_JResp.StringOf("incompatibleDevices[i].device.fleetName")
    ls_DeviceFleetType = loo_JResp.StringOf("incompatibleDevices[i].device.fleetType")
    ls_DeviceFormFactor = loo_JResp.StringOf("incompatibleDevices[i].device.formFactor")
    li_DeviceHeapSize = loo_JResp.IntOf("incompatibleDevices[i].device.heapSize")
    ls_DeviceImage = loo_JResp.StringOf("incompatibleDevices[i].device.image")
    ls_DeviceManufacturer = loo_JResp.StringOf("incompatibleDevices[i].device.manufacturer")
    li_DeviceMemory = loo_JResp.IntOf("incompatibleDevices[i].device.memory")
    ls_DeviceModel = loo_JResp.StringOf("incompatibleDevices[i].device.model")
    ls_DeviceModelId = loo_JResp.StringOf("incompatibleDevices[i].device.modelId")
    ls_DeviceName = loo_JResp.StringOf("incompatibleDevices[i].device.name")
    ls_DeviceOs = loo_JResp.StringOf("incompatibleDevices[i].device.os")
    ls_DevicePlatform = loo_JResp.StringOf("incompatibleDevices[i].device.platform")
    ls_DeviceRadio = loo_JResp.StringOf("incompatibleDevices[i].device.radio")
    li_DeviceRemoteAccessEnabled = loo_JResp.IntOf("incompatibleDevices[i].device.remoteAccessEnabled")
    li_DeviceRemoteDebugEnabled = loo_JResp.IntOf("incompatibleDevices[i].device.remoteDebugEnabled")
    li_ResolutionHeight = loo_JResp.IntOf("incompatibleDevices[i].device.resolution.height")
    li_ResolutionWidth = loo_JResp.IntOf("incompatibleDevices[i].device.resolution.width")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("incompatibleDevices[i].device.instances")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Arn = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].arn")
        ls_DeviceArn = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].deviceArn")
        ls_InstanceProfileArn = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.arn")
        ls_InstanceProfileDescription = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.description")
        ls_InstanceProfileName = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.name")
        li_InstanceProfilePackageCleanup = loo_JResp.IntOf("incompatibleDevices[i].device.instances[j].instanceProfile.packageCleanup")
        li_InstanceProfileRebootAfterUse = loo_JResp.IntOf("incompatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse")
        ls_Status = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].status")
        ls_Udid = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].udid")
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_StrVal = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
            k = k + 1
        loop
        k = 0
        li_Count_k = loo_JResp.SizeOfArray("incompatibleDevices[i].device.instances[j].labels")
        do while k < li_Count_k
            loo_JResp.K = k
            ls_StrVal = loo_JResp.StringOf("incompatibleDevices[i].device.instances[j].labels[k]")
            k = k + 1
        loop
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("incompatibleDevices[i].incompatibilityMessages")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_Message = loo_JResp.StringOf("incompatibleDevices[i].incompatibilityMessages[j].message")
        ls_V_type = loo_JResp.StringOf("incompatibleDevices[i].incompatibilityMessages[j].type")
        j = j + 1
    loop
    i = i + 1
loop

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

// {
//   "compatibleDevices": [
//     {
//       "compatible": boolean,
//       "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
//         }
//       },
//       "incompatibilityMessages": [
//         {
//           "message": "string",
//           "type": "string"
//         }
//       ]
//     }
//   ],
//   "incompatibleDevices": [
//     {
//       "compatible": boolean,
//       "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
//         }
//       },
//       "incompatibilityMessages": [
//         {
//           "message": "string",
//           "type": "string"
//         }
//       ]
//     }
//   ]
// }


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