GetDevicePoolCompatibility 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("appArn", value: "string")
json.update("configuration.auxiliaryApps[0]", value: "string")
json.update("configuration.billingMethod", value: "string")
json.update("configuration.customerArtifactPaths.androidPaths[0]", value: "string")
json.update("configuration.customerArtifactPaths.deviceHostPaths[0]", value: "string")
json.update("configuration.customerArtifactPaths.iosPaths[0]", value: "string")
json.update("configuration.extraDataPackageArn", value: "string")
json.update("configuration.locale", value: "string")
json.updateInt("configuration.location.latitude", value: 123)
json.updateInt("configuration.location.longitude", value: 123)
json.update("configuration.networkProfileArn", value: "string")
json.updateInt("configuration.radios.bluetooth", value: 123)
json.updateInt("configuration.radios.gps", value: 123)
json.updateInt("configuration.radios.nfc", value: 123)
json.updateInt("configuration.radios.wifi", value: 123)
json.update("configuration.vpceConfigurationArns[0]", value: "string")
json.update("devicePoolArn", value: "string")
json.update("test.filter", value: "string")
json.update("test.parameters.string", value: "string")
json.update("test.testPackageArn", value: "string")
json.update("test.testSpecArn", value: "string")
json.update("test.type", value: "string")
json.update("testType", value: "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"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "DeviceFarm_20150623.GetDevicePoolCompatibility")
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 compatible: 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 j: Int
var count_j: Int
var arn: String?
var deviceArn: String?
var instanceProfileArn: String?
var Description: String?
var instanceProfileName: String?
var PackageCleanup: Int
var RebootAfterUse: Int
var status: String?
var udid: String?
var k: Int
var count_k: Int
var strVal: String?
var message: String?
var v_type: String?
var deviceAvailability: String?
var deviceCarrier: String?
var CpuArchitecture: String?
var CpuClock: Int
var CpuFrequency: String?
var deviceFleetName: String?
var deviceFleetType: String?
var deviceFormFactor: String?
var deviceHeapSize: Int
var deviceImage: String?
var deviceManufacturer: String?
var deviceMemory: Int
var deviceModel: String?
var deviceModelId: String?
var deviceName: String?
var deviceOs: String?
var devicePlatform: String?
var deviceRadio: String?
var deviceRemoteAccessEnabled: Int
var deviceRemoteDebugEnabled: Int
var ResolutionHeight: Int
var ResolutionWidth: Int
var instanceProfileDescription: String?
var instanceProfilePackageCleanup: Int
var instanceProfileRebootAfterUse: Int
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "compatibleDevices").intValue
while i < count_i {
jResp.i = i
compatible = jResp.int(of: "compatibleDevices[i].compatible").intValue
Arn = jResp.string(of: "compatibleDevices[i].device.arn")
Availability = jResp.string(of: "compatibleDevices[i].device.availability")
Carrier = jResp.string(of: "compatibleDevices[i].device.carrier")
Architecture = jResp.string(of: "compatibleDevices[i].device.cpu.architecture")
Clock = jResp.int(of: "compatibleDevices[i].device.cpu.clock").intValue
Frequency = jResp.string(of: "compatibleDevices[i].device.cpu.frequency")
FleetName = jResp.string(of: "compatibleDevices[i].device.fleetName")
FleetType = jResp.string(of: "compatibleDevices[i].device.fleetType")
FormFactor = jResp.string(of: "compatibleDevices[i].device.formFactor")
HeapSize = jResp.int(of: "compatibleDevices[i].device.heapSize").intValue
Image = jResp.string(of: "compatibleDevices[i].device.image")
Manufacturer = jResp.string(of: "compatibleDevices[i].device.manufacturer")
Memory = jResp.int(of: "compatibleDevices[i].device.memory").intValue
Model = jResp.string(of: "compatibleDevices[i].device.model")
ModelId = jResp.string(of: "compatibleDevices[i].device.modelId")
Name = jResp.string(of: "compatibleDevices[i].device.name")
Os = jResp.string(of: "compatibleDevices[i].device.os")
Platform = jResp.string(of: "compatibleDevices[i].device.platform")
Radio = jResp.string(of: "compatibleDevices[i].device.radio")
RemoteAccessEnabled = jResp.int(of: "compatibleDevices[i].device.remoteAccessEnabled").intValue
RemoteDebugEnabled = jResp.int(of: "compatibleDevices[i].device.remoteDebugEnabled").intValue
Height = jResp.int(of: "compatibleDevices[i].device.resolution.height").intValue
Width = jResp.int(of: "compatibleDevices[i].device.resolution.width").intValue
j = 0
count_j = jResp.size(ofArray: "compatibleDevices[i].device.instances").intValue
while j < count_j {
jResp.j = j
arn = jResp.string(of: "compatibleDevices[i].device.instances[j].arn")
deviceArn = jResp.string(of: "compatibleDevices[i].device.instances[j].deviceArn")
instanceProfileArn = jResp.string(of: "compatibleDevices[i].device.instances[j].instanceProfile.arn")
Description = jResp.string(of: "compatibleDevices[i].device.instances[j].instanceProfile.description")
instanceProfileName = jResp.string(of: "compatibleDevices[i].device.instances[j].instanceProfile.name")
PackageCleanup = jResp.int(of: "compatibleDevices[i].device.instances[j].instanceProfile.packageCleanup").intValue
RebootAfterUse = jResp.int(of: "compatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse").intValue
status = jResp.string(of: "compatibleDevices[i].device.instances[j].status")
udid = jResp.string(of: "compatibleDevices[i].device.instances[j].udid")
k = 0
count_k = jResp.size(ofArray: "compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup").intValue
while k < count_k {
jResp.k = k
strVal = jResp.string(of: "compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
k = k + 1
}
k = 0
count_k = jResp.size(ofArray: "compatibleDevices[i].device.instances[j].labels").intValue
while k < count_k {
jResp.k = k
strVal = jResp.string(of: "compatibleDevices[i].device.instances[j].labels[k]")
k = k + 1
}
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "compatibleDevices[i].incompatibilityMessages").intValue
while j < count_j {
jResp.j = j
message = jResp.string(of: "compatibleDevices[i].incompatibilityMessages[j].message")
v_type = jResp.string(of: "compatibleDevices[i].incompatibilityMessages[j].type")
j = j + 1
}
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "incompatibleDevices").intValue
while i < count_i {
jResp.i = i
compatible = jResp.int(of: "incompatibleDevices[i].compatible").intValue
deviceArn = jResp.string(of: "incompatibleDevices[i].device.arn")
deviceAvailability = jResp.string(of: "incompatibleDevices[i].device.availability")
deviceCarrier = jResp.string(of: "incompatibleDevices[i].device.carrier")
CpuArchitecture = jResp.string(of: "incompatibleDevices[i].device.cpu.architecture")
CpuClock = jResp.int(of: "incompatibleDevices[i].device.cpu.clock").intValue
CpuFrequency = jResp.string(of: "incompatibleDevices[i].device.cpu.frequency")
deviceFleetName = jResp.string(of: "incompatibleDevices[i].device.fleetName")
deviceFleetType = jResp.string(of: "incompatibleDevices[i].device.fleetType")
deviceFormFactor = jResp.string(of: "incompatibleDevices[i].device.formFactor")
deviceHeapSize = jResp.int(of: "incompatibleDevices[i].device.heapSize").intValue
deviceImage = jResp.string(of: "incompatibleDevices[i].device.image")
deviceManufacturer = jResp.string(of: "incompatibleDevices[i].device.manufacturer")
deviceMemory = jResp.int(of: "incompatibleDevices[i].device.memory").intValue
deviceModel = jResp.string(of: "incompatibleDevices[i].device.model")
deviceModelId = jResp.string(of: "incompatibleDevices[i].device.modelId")
deviceName = jResp.string(of: "incompatibleDevices[i].device.name")
deviceOs = jResp.string(of: "incompatibleDevices[i].device.os")
devicePlatform = jResp.string(of: "incompatibleDevices[i].device.platform")
deviceRadio = jResp.string(of: "incompatibleDevices[i].device.radio")
deviceRemoteAccessEnabled = jResp.int(of: "incompatibleDevices[i].device.remoteAccessEnabled").intValue
deviceRemoteDebugEnabled = jResp.int(of: "incompatibleDevices[i].device.remoteDebugEnabled").intValue
ResolutionHeight = jResp.int(of: "incompatibleDevices[i].device.resolution.height").intValue
ResolutionWidth = jResp.int(of: "incompatibleDevices[i].device.resolution.width").intValue
j = 0
count_j = jResp.size(ofArray: "incompatibleDevices[i].device.instances").intValue
while j < count_j {
jResp.j = j
arn = jResp.string(of: "incompatibleDevices[i].device.instances[j].arn")
deviceArn = jResp.string(of: "incompatibleDevices[i].device.instances[j].deviceArn")
instanceProfileArn = jResp.string(of: "incompatibleDevices[i].device.instances[j].instanceProfile.arn")
instanceProfileDescription = jResp.string(of: "incompatibleDevices[i].device.instances[j].instanceProfile.description")
instanceProfileName = jResp.string(of: "incompatibleDevices[i].device.instances[j].instanceProfile.name")
instanceProfilePackageCleanup = jResp.int(of: "incompatibleDevices[i].device.instances[j].instanceProfile.packageCleanup").intValue
instanceProfileRebootAfterUse = jResp.int(of: "incompatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse").intValue
status = jResp.string(of: "incompatibleDevices[i].device.instances[j].status")
udid = jResp.string(of: "incompatibleDevices[i].device.instances[j].udid")
k = 0
count_k = jResp.size(ofArray: "incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup").intValue
while k < count_k {
jResp.k = k
strVal = jResp.string(of: "incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
k = k + 1
}
k = 0
count_k = jResp.size(ofArray: "incompatibleDevices[i].device.instances[j].labels").intValue
while k < count_k {
jResp.k = k
strVal = jResp.string(of: "incompatibleDevices[i].device.instances[j].labels[k]")
k = k + 1
}
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "incompatibleDevices[i].incompatibilityMessages").intValue
while j < count_j {
jResp.j = j
message = jResp.string(of: "incompatibleDevices[i].incompatibilityMessages[j].message")
v_type = jResp.string(of: "incompatibleDevices[i].incompatibilityMessages[j].type")
j = j + 1
}
i = i + 1
}
// 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"
// }
// ]
// }
// ]
// }
}