Chilkat Online Tools

ListDevices Swift3 Example

AWS Device Farm

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("filters[0].attribute", value: "string")
    json.update("filters[0].operator", value: "string")
    json.update("filters[0].values[0]", value: "string")
    json.update("nextToken", value: "string")

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

    // {
    //   "arn": "string",
    //   "filters": [
    //     {
    //       "attribute": "string",
    //       "operator": "string",
    //       "values": [
    //         "string"
    //       ]
    //     }
    //   ],
    //   "nextToken": "string"
    // }

    rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
    rest.addHeader("X-Amz-Target", value: "DeviceFarm_20150623.ListDevices")

    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 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 deviceArn: String?
    var Arn: String?
    var Description: String?
    var Name: String?
    var PackageCleanup: Int
    var RebootAfterUse: Int
    var status: String?
    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: "devices").intValue
    while i < count_i {
        jResp.i = i
        arn = jResp.string(of: "devices[i].arn")
        availability = jResp.string(of: "devices[i].availability")
        carrier = jResp.string(of: "devices[i].carrier")
        Architecture = jResp.string(of: "devices[i].cpu.architecture")
        Clock = jResp.int(of: "devices[i].cpu.clock").intValue
        Frequency = jResp.string(of: "devices[i].cpu.frequency")
        fleetName = jResp.string(of: "devices[i].fleetName")
        fleetType = jResp.string(of: "devices[i].fleetType")
        formFactor = jResp.string(of: "devices[i].formFactor")
        heapSize = jResp.int(of: "devices[i].heapSize").intValue
        image = jResp.string(of: "devices[i].image")
        manufacturer = jResp.string(of: "devices[i].manufacturer")
        memory = jResp.int(of: "devices[i].memory").intValue
        model = jResp.string(of: "devices[i].model")
        modelId = jResp.string(of: "devices[i].modelId")
        name = jResp.string(of: "devices[i].name")
        os = jResp.string(of: "devices[i].os")
        platform = jResp.string(of: "devices[i].platform")
        radio = jResp.string(of: "devices[i].radio")
        remoteAccessEnabled = jResp.int(of: "devices[i].remoteAccessEnabled").intValue
        remoteDebugEnabled = jResp.int(of: "devices[i].remoteDebugEnabled").intValue
        Height = jResp.int(of: "devices[i].resolution.height").intValue
        Width = jResp.int(of: "devices[i].resolution.width").intValue
        j = 0
        count_j = jResp.size(ofArray: "devices[i].instances").intValue
        while j < count_j {
            jResp.j = j
            arn = jResp.string(of: "devices[i].instances[j].arn")
            deviceArn = jResp.string(of: "devices[i].instances[j].deviceArn")
            Arn = jResp.string(of: "devices[i].instances[j].instanceProfile.arn")
            Description = jResp.string(of: "devices[i].instances[j].instanceProfile.description")
            Name = jResp.string(of: "devices[i].instances[j].instanceProfile.name")
            PackageCleanup = jResp.int(of: "devices[i].instances[j].instanceProfile.packageCleanup").intValue
            RebootAfterUse = jResp.int(of: "devices[i].instances[j].instanceProfile.rebootAfterUse").intValue
            status = jResp.string(of: "devices[i].instances[j].status")
            udid = jResp.string(of: "devices[i].instances[j].udid")
            k = 0
            count_k = jResp.size(ofArray: "devices[i].instances[j].instanceProfile.excludeAppPackagesFromCleanup").intValue
            while k < count_k {
                jResp.k = k
                strVal = jResp.string(of: "devices[i].instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]")
                k = k + 1
            }

            k = 0
            count_k = jResp.size(ofArray: "devices[i].instances[j].labels").intValue
            while k < count_k {
                jResp.k = k
                strVal = jResp.string(of: "devices[i].instances[j].labels[k]")
                k = k + 1
            }

            j = j + 1
        }

        i = i + 1
    }

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

    // {
    //   "devices": [
    //     {
    //       "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
    //       }
    //     }
    //   ],
    //   "nextToken": "string"
    // }

}