ListRemoteAccessSessions Swift3 Example
func chilkatTest() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let rest = CkoRest()!
var success: Bool
let authAws = CkoAuthAws()!
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", port: 443, tls: true, autoReconnect: true)
if success != true {
print("ConnectFailReason: \(rest.connectFailReason.intValue)")
print("\(rest.lastErrorText!)")
return
}
// 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
let json = CkoJsonObject()!
json.update("arn", value: "string")
json.update("nextToken", value: "string")
// The JSON request body created by the above code:
// {
// "arn": "string",
// "nextToken": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "DeviceFarm_20150623.ListRemoteAccessSessions")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestSb("POST", uriPath: "/", requestBody: sbRequestBody, responseBody: sbResponseBody)
if success != true {
print("\(rest.lastErrorText!)")
return
}
var respStatusCode: Int = rest.responseStatusCode.intValue
print("response status code = \(respStatusCode)")
if respStatusCode != 200 {
print("Response Header:")
print("\(rest.responseHeader!)")
print("Response Body:")
print("\(sbResponseBody.getAsString()!)")
return
}
let jResp = CkoJsonObject()!
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
var arn: String?
var billingMethod: String?
var clientId: String?
var created: Int
var Arn: String?
var Availability: String?
var Carrier: String?
var Architecture: String?
var Clock: Int
var Frequency: String?
var FleetName: String?
var FleetType: String?
var FormFactor: String?
var HeapSize: Int
var Image: String?
var Manufacturer: String?
var Memory: Int
var Model: String?
var ModelId: String?
var Name: String?
var Os: String?
var Platform: String?
var Radio: String?
var RemoteAccessEnabled: Int
var RemoteDebugEnabled: Int
var Height: Int
var Width: Int
var Metered: Int
var Total: Int
var Unmetered: Int
var deviceUdid: String?
var endpoint: String?
var hostAddress: String?
var instanceArn: String?
var interactionMode: String?
var message: String?
var name: String?
var remoteDebugEnabled: Int
var remoteRecordAppArn: String?
var remoteRecordEnabled: Int
var result: String?
var skipAppResign: Int
var started: Int
var status: String?
var stopped: Int
var j: Int
var count_j: Int
var deviceArn: String?
var instanceProfileArn: String?
var Description: String?
var instanceProfileName: String?
var PackageCleanup: Int
var RebootAfterUse: Int
var udid: String?
var k: Int
var count_k: Int
var strVal: String?
var nextToken: String? = jResp.string(of: "nextToken")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "remoteAccessSessions").intValue
while i < count_i {
jResp.i = i
arn = jResp.string(of: "remoteAccessSessions[i].arn")
billingMethod = jResp.string(of: "remoteAccessSessions[i].billingMethod")
clientId = jResp.string(of: "remoteAccessSessions[i].clientId")
created = jResp.int(of: "remoteAccessSessions[i].created").intValue
Arn = jResp.string(of: "remoteAccessSessions[i].device.arn")
Availability = jResp.string(of: "remoteAccessSessions[i].device.availability")
Carrier = jResp.string(of: "remoteAccessSessions[i].device.carrier")
Architecture = jResp.string(of: "remoteAccessSessions[i].device.cpu.architecture")
Clock = jResp.int(of: "remoteAccessSessions[i].device.cpu.clock").intValue
Frequency = jResp.string(of: "remoteAccessSessions[i].device.cpu.frequency")
FleetName = jResp.string(of: "remoteAccessSessions[i].device.fleetName")
FleetType = jResp.string(of: "remoteAccessSessions[i].device.fleetType")
FormFactor = jResp.string(of: "remoteAccessSessions[i].device.formFactor")
HeapSize = jResp.int(of: "remoteAccessSessions[i].device.heapSize").intValue
Image = jResp.string(of: "remoteAccessSessions[i].device.image")
Manufacturer = jResp.string(of: "remoteAccessSessions[i].device.manufacturer")
Memory = jResp.int(of: "remoteAccessSessions[i].device.memory").intValue
Model = jResp.string(of: "remoteAccessSessions[i].device.model")
ModelId = jResp.string(of: "remoteAccessSessions[i].device.modelId")
Name = jResp.string(of: "remoteAccessSessions[i].device.name")
Os = jResp.string(of: "remoteAccessSessions[i].device.os")
Platform = jResp.string(of: "remoteAccessSessions[i].device.platform")
Radio = jResp.string(of: "remoteAccessSessions[i].device.radio")
RemoteAccessEnabled = jResp.int(of: "remoteAccessSessions[i].device.remoteAccessEnabled").intValue
RemoteDebugEnabled = jResp.int(of: "remoteAccessSessions[i].device.remoteDebugEnabled").intValue
Height = jResp.int(of: "remoteAccessSessions[i].device.resolution.height").intValue
Width = jResp.int(of: "remoteAccessSessions[i].device.resolution.width").intValue
Metered = jResp.int(of: "remoteAccessSessions[i].deviceMinutes.metered").intValue
Total = jResp.int(of: "remoteAccessSessions[i].deviceMinutes.total").intValue
Unmetered = jResp.int(of: "remoteAccessSessions[i].deviceMinutes.unmetered").intValue
deviceUdid = jResp.string(of: "remoteAccessSessions[i].deviceUdid")
endpoint = jResp.string(of: "remoteAccessSessions[i].endpoint")
hostAddress = jResp.string(of: "remoteAccessSessions[i].hostAddress")
instanceArn = jResp.string(of: "remoteAccessSessions[i].instanceArn")
interactionMode = jResp.string(of: "remoteAccessSessions[i].interactionMode")
message = jResp.string(of: "remoteAccessSessions[i].message")
name = jResp.string(of: "remoteAccessSessions[i].name")
remoteDebugEnabled = jResp.int(of: "remoteAccessSessions[i].remoteDebugEnabled").intValue
remoteRecordAppArn = jResp.string(of: "remoteAccessSessions[i].remoteRecordAppArn")
remoteRecordEnabled = jResp.int(of: "remoteAccessSessions[i].remoteRecordEnabled").intValue
result = jResp.string(of: "remoteAccessSessions[i].result")
skipAppResign = jResp.int(of: "remoteAccessSessions[i].skipAppResign").intValue
started = jResp.int(of: "remoteAccessSessions[i].started").intValue
status = jResp.string(of: "remoteAccessSessions[i].status")
stopped = jResp.int(of: "remoteAccessSessions[i].stopped").intValue
j = 0
count_j = jResp.size(ofArray: "remoteAccessSessions[i].device.instances").intValue
while j < count_j {
jResp.j = j
arn = jResp.string(of: "remoteAccessSessions[i].device.instances[j].arn")
deviceArn = jResp.string(of: "remoteAccessSessions[i].device.instances[j].deviceArn")
instanceProfileArn = jResp.string(of: "remoteAccessSessions[i].device.instances[j].instanceProfile.arn")
Description = jResp.string(of: "remoteAccessSessions[i].device.instances[j].instanceProfile.description")
instanceProfileName = jResp.string(of: "remoteAccessSessions[i].device.instances[j].instanceProfile.name")
PackageCleanup = jResp.int(of: "remoteAccessSessions[i].device.instances[j].instanceProfile.packageCleanup").intValue
RebootAfterUse = jResp.int(of: "remoteAccessSessions[i].device.instances[j].instanceProfile.rebootAfterUse").intValue
status = jResp.string(of: "remoteAccessSessions[i].device.instances[j].status")
udid = jResp.string(of: "remoteAccessSessions[i].device.instances[j].udid")
k = 0
count_k = jResp.size(ofArray: "remoteAccessSessions[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup").intValue
while k < count_k {
jResp.k = k
strVal = jResp.string(of: "remoteAccessSessions[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
k = k + 1
}
k = 0
count_k = jResp.size(ofArray: "remoteAccessSessions[i].device.instances[j].labels").intValue
while k < count_k {
jResp.k = k
strVal = jResp.string(of: "remoteAccessSessions[i].device.instances[j].labels[k]")
k = k + 1
}
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "nextToken": "string",
// "remoteAccessSessions": [
// {
// "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
// }
// ]
// }
}