Chilkat Online Tools

GetRemoteAccessSession 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_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 j
integer li_Count_j
string ls_StrVal
string ls_Arn
string ls_BillingMethod
string ls_ClientId
integer li_Created
string ls_DeviceArn
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 li_Metered
integer li_Total
integer li_Unmetered
string ls_DeviceUdid
string ls_Endpoint
string ls_HostAddress
string ls_InstanceArn
string ls_InteractionMode
string ls_Message
string ls_RemoteAccessSessionName
integer li_RemoteAccessSessionRemoteDebugEnabled
string ls_RemoteRecordAppArn
integer li_RemoteRecordEnabled
string ls_Result
integer li_SkipAppResign
integer li_Started
string ls_Status
integer li_Stopped
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")

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

// {
//   "arn": "string"
// }

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

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_Arn = loo_JResp.StringOf("remoteAccessSession.arn")
ls_BillingMethod = loo_JResp.StringOf("remoteAccessSession.billingMethod")
ls_ClientId = loo_JResp.StringOf("remoteAccessSession.clientId")
li_Created = loo_JResp.IntOf("remoteAccessSession.created")
ls_DeviceArn = loo_JResp.StringOf("remoteAccessSession.device.arn")
ls_Availability = loo_JResp.StringOf("remoteAccessSession.device.availability")
ls_Carrier = loo_JResp.StringOf("remoteAccessSession.device.carrier")
ls_Architecture = loo_JResp.StringOf("remoteAccessSession.device.cpu.architecture")
li_Clock = loo_JResp.IntOf("remoteAccessSession.device.cpu.clock")
ls_Frequency = loo_JResp.StringOf("remoteAccessSession.device.cpu.frequency")
ls_FleetName = loo_JResp.StringOf("remoteAccessSession.device.fleetName")
ls_FleetType = loo_JResp.StringOf("remoteAccessSession.device.fleetType")
ls_FormFactor = loo_JResp.StringOf("remoteAccessSession.device.formFactor")
li_HeapSize = loo_JResp.IntOf("remoteAccessSession.device.heapSize")
ls_Image = loo_JResp.StringOf("remoteAccessSession.device.image")
ls_Manufacturer = loo_JResp.StringOf("remoteAccessSession.device.manufacturer")
li_Memory = loo_JResp.IntOf("remoteAccessSession.device.memory")
ls_Model = loo_JResp.StringOf("remoteAccessSession.device.model")
ls_ModelId = loo_JResp.StringOf("remoteAccessSession.device.modelId")
ls_Name = loo_JResp.StringOf("remoteAccessSession.device.name")
ls_Os = loo_JResp.StringOf("remoteAccessSession.device.os")
ls_Platform = loo_JResp.StringOf("remoteAccessSession.device.platform")
ls_Radio = loo_JResp.StringOf("remoteAccessSession.device.radio")
li_RemoteAccessEnabled = loo_JResp.IntOf("remoteAccessSession.device.remoteAccessEnabled")
li_RemoteDebugEnabled = loo_JResp.IntOf("remoteAccessSession.device.remoteDebugEnabled")
li_Height = loo_JResp.IntOf("remoteAccessSession.device.resolution.height")
li_Width = loo_JResp.IntOf("remoteAccessSession.device.resolution.width")
li_Metered = loo_JResp.IntOf("remoteAccessSession.deviceMinutes.metered")
li_Total = loo_JResp.IntOf("remoteAccessSession.deviceMinutes.total")
li_Unmetered = loo_JResp.IntOf("remoteAccessSession.deviceMinutes.unmetered")
ls_DeviceUdid = loo_JResp.StringOf("remoteAccessSession.deviceUdid")
ls_Endpoint = loo_JResp.StringOf("remoteAccessSession.endpoint")
ls_HostAddress = loo_JResp.StringOf("remoteAccessSession.hostAddress")
ls_InstanceArn = loo_JResp.StringOf("remoteAccessSession.instanceArn")
ls_InteractionMode = loo_JResp.StringOf("remoteAccessSession.interactionMode")
ls_Message = loo_JResp.StringOf("remoteAccessSession.message")
ls_RemoteAccessSessionName = loo_JResp.StringOf("remoteAccessSession.name")
li_RemoteAccessSessionRemoteDebugEnabled = loo_JResp.IntOf("remoteAccessSession.remoteDebugEnabled")
ls_RemoteRecordAppArn = loo_JResp.StringOf("remoteAccessSession.remoteRecordAppArn")
li_RemoteRecordEnabled = loo_JResp.IntOf("remoteAccessSession.remoteRecordEnabled")
ls_Result = loo_JResp.StringOf("remoteAccessSession.result")
li_SkipAppResign = loo_JResp.IntOf("remoteAccessSession.skipAppResign")
li_Started = loo_JResp.IntOf("remoteAccessSession.started")
ls_Status = loo_JResp.StringOf("remoteAccessSession.status")
li_Stopped = loo_JResp.IntOf("remoteAccessSession.stopped")
i = 0
li_Count_i = loo_JResp.SizeOfArray("remoteAccessSession.device.instances")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Arn = loo_JResp.StringOf("remoteAccessSession.device.instances[i].arn")
    ls_DeviceArn = loo_JResp.StringOf("remoteAccessSession.device.instances[i].deviceArn")
    ls_InstanceProfileArn = loo_JResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.arn")
    ls_Description = loo_JResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.description")
    ls_InstanceProfileName = loo_JResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.name")
    li_PackageCleanup = loo_JResp.IntOf("remoteAccessSession.device.instances[i].instanceProfile.packageCleanup")
    li_RebootAfterUse = loo_JResp.IntOf("remoteAccessSession.device.instances[i].instanceProfile.rebootAfterUse")
    ls_Status = loo_JResp.StringOf("remoteAccessSession.device.instances[i].status")
    ls_Udid = loo_JResp.StringOf("remoteAccessSession.device.instances[i].udid")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("remoteAccessSession.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_StrVal = loo_JResp.StringOf("remoteAccessSession.device.instances[i].instanceProfile.excludeAppPackagesFromCleanup[j]")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("remoteAccessSession.device.instances[i].labels")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_StrVal = loo_JResp.StringOf("remoteAccessSession.device.instances[i].labels[j]")
        j = j + 1
    loop
    i = i + 1
loop

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

// {
//   "remoteAccessSession": {
//     "arn": "string",
//     "billingMethod": "string",
//     "clientId": "string",
//     "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
//     },
//     "deviceUdid": "string",
//     "endpoint": "string",
//     "hostAddress": "string",
//     "instanceArn": "string",
//     "interactionMode": "string",
//     "message": "string",
//     "name": "string",
//     "remoteDebugEnabled": boolean,
//     "remoteRecordAppArn": "string",
//     "remoteRecordEnabled": boolean,
//     "result": "string",
//     "skipAppResign": boolean,
//     "started": number,
//     "status": "string",
//     "stopped": number
//   }
// }


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