Chilkat Online Tools

DescribeFindings Swift3 Example

Amazon Inspector

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 = "inspector"
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.setAuthAws(authAws)

    // URL: https://inspector.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("inspector.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("findingArns[0]", value: "string")
    json.update("locale", value: "string")

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

    // {
    //   "findingArns": [
    //     "string"
    //   ],
    //   "locale": "string"
    // }

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

    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 AgentId: String?
    var AmiId: String?
    var AutoScalingGroup: String?
    var Hostname: String?
    var SchemaVersion: Int
    var assetType: String?
    var confidence: Int
    var createdAt: Int
    var description: String?
    var id: String?
    var indicatorOfCompromise: Int
    var numericSeverity: Int
    var recommendation: String?
    var schemaVersion: Int
    var service: String?
    var AssessmentRunArn: String?
    var RulesPackageArn: String?
    var serviceAttributesSchemaVersion: Int
    var severity: String?
    var title: String?
    var updatedAt: Int
    var j: Int
    var count_j: Int
    var strVal: String?
    var networkInterfaceId: String?
    var privateDnsName: String?
    var privateIpAddress: String?
    var publicDnsName: String?
    var publicIp: String?
    var subnetId: String?
    var vpcId: String?
    var k: Int
    var count_k: Int
    var groupId: String?
    var groupName: String?
    var key: String?
    var value: String?

    var FailureCode: String? = jResp.string(of: "failedItems.string.failureCode")
    var Retryable: Int = jResp.int(of: "failedItems.string.retryable").intValue
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "findings").intValue
    while i < count_i {
        jResp.i = i
        arn = jResp.string(of: "findings[i].arn")
        AgentId = jResp.string(of: "findings[i].assetAttributes.agentId")
        AmiId = jResp.string(of: "findings[i].assetAttributes.amiId")
        AutoScalingGroup = jResp.string(of: "findings[i].assetAttributes.autoScalingGroup")
        Hostname = jResp.string(of: "findings[i].assetAttributes.hostname")
        SchemaVersion = jResp.int(of: "findings[i].assetAttributes.schemaVersion").intValue
        assetType = jResp.string(of: "findings[i].assetType")
        confidence = jResp.int(of: "findings[i].confidence").intValue
        createdAt = jResp.int(of: "findings[i].createdAt").intValue
        description = jResp.string(of: "findings[i].description")
        id = jResp.string(of: "findings[i].id")
        indicatorOfCompromise = jResp.int(of: "findings[i].indicatorOfCompromise").intValue
        numericSeverity = jResp.int(of: "findings[i].numericSeverity").intValue
        recommendation = jResp.string(of: "findings[i].recommendation")
        schemaVersion = jResp.int(of: "findings[i].schemaVersion").intValue
        service = jResp.string(of: "findings[i].service")
        AssessmentRunArn = jResp.string(of: "findings[i].serviceAttributes.assessmentRunArn")
        RulesPackageArn = jResp.string(of: "findings[i].serviceAttributes.rulesPackageArn")
        serviceAttributesSchemaVersion = jResp.int(of: "findings[i].serviceAttributes.schemaVersion").intValue
        severity = jResp.string(of: "findings[i].severity")
        title = jResp.string(of: "findings[i].title")
        updatedAt = jResp.int(of: "findings[i].updatedAt").intValue
        j = 0
        count_j = jResp.size(ofArray: "findings[i].assetAttributes.ipv4Addresses").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "findings[i].assetAttributes.ipv4Addresses[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "findings[i].assetAttributes.networkInterfaces").intValue
        while j < count_j {
            jResp.j = j
            networkInterfaceId = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].networkInterfaceId")
            privateDnsName = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].privateDnsName")
            privateIpAddress = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].privateIpAddress")
            publicDnsName = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].publicDnsName")
            publicIp = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].publicIp")
            subnetId = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].subnetId")
            vpcId = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].vpcId")
            k = 0
            count_k = jResp.size(ofArray: "findings[i].assetAttributes.networkInterfaces[j].ipv6Addresses").intValue
            while k < count_k {
                jResp.k = k
                strVal = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].ipv6Addresses[k]")
                k = k + 1
            }

            k = 0
            count_k = jResp.size(ofArray: "findings[i].assetAttributes.networkInterfaces[j].privateIpAddresses").intValue
            while k < count_k {
                jResp.k = k
                privateDnsName = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].privateIpAddresses[k].privateDnsName")
                privateIpAddress = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].privateIpAddresses[k].privateIpAddress")
                k = k + 1
            }

            k = 0
            count_k = jResp.size(ofArray: "findings[i].assetAttributes.networkInterfaces[j].securityGroups").intValue
            while k < count_k {
                jResp.k = k
                groupId = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].securityGroups[k].groupId")
                groupName = jResp.string(of: "findings[i].assetAttributes.networkInterfaces[j].securityGroups[k].groupName")
                k = k + 1
            }

            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "findings[i].assetAttributes.tags").intValue
        while j < count_j {
            jResp.j = j
            key = jResp.string(of: "findings[i].assetAttributes.tags[j].key")
            value = jResp.string(of: "findings[i].assetAttributes.tags[j].value")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "findings[i].attributes").intValue
        while j < count_j {
            jResp.j = j
            key = jResp.string(of: "findings[i].attributes[j].key")
            value = jResp.string(of: "findings[i].attributes[j].value")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "findings[i].userAttributes").intValue
        while j < count_j {
            jResp.j = j
            key = jResp.string(of: "findings[i].userAttributes[j].key")
            value = jResp.string(of: "findings[i].userAttributes[j].value")
            j = j + 1
        }

        i = i + 1
    }

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

    // {
    //   "failedItems": {
    //     "string": {
    //       "failureCode": "string",
    //       "retryable": boolean
    //     }
    //   },
    //   "findings": [
    //     {
    //       "arn": "string",
    //       "assetAttributes": {
    //         "agentId": "string",
    //         "amiId": "string",
    //         "autoScalingGroup": "string",
    //         "hostname": "string",
    //         "ipv4Addresses": [
    //           "string"
    //         ],
    //         "networkInterfaces": [
    //           {
    //             "ipv6Addresses": [
    //               "string"
    //             ],
    //             "networkInterfaceId": "string",
    //             "privateDnsName": "string",
    //             "privateIpAddress": "string",
    //             "privateIpAddresses": [
    //               {
    //                 "privateDnsName": "string",
    //                 "privateIpAddress": "string"
    //               }
    //             ],
    //             "publicDnsName": "string",
    //             "publicIp": "string",
    //             "securityGroups": [
    //               {
    //                 "groupId": "string",
    //                 "groupName": "string"
    //               }
    //             ],
    //             "subnetId": "string",
    //             "vpcId": "string"
    //           }
    //         ],
    //         "schemaVersion": number,
    //         "tags": [
    //           {
    //             "key": "string",
    //             "value": "string"
    //           }
    //         ]
    //       },
    //       "assetType": "string",
    //       "attributes": [
    //         {
    //           "key": "string",
    //           "value": "string"
    //         }
    //       ],
    //       "confidence": number,
    //       "createdAt": number,
    //       "description": "string",
    //       "id": "string",
    //       "indicatorOfCompromise": boolean,
    //       "numericSeverity": number,
    //       "recommendation": "string",
    //       "schemaVersion": number,
    //       "service": "string",
    //       "serviceAttributes": {
    //         "assessmentRunArn": "string",
    //         "rulesPackageArn": "string",
    //         "schemaVersion": number
    //       },
    //       "severity": "string",
    //       "title": "string",
    //       "updatedAt": number,
    //       "userAttributes": [
    //         {
    //           "key": "string",
    //           "value": "string"
    //         }
    //       ]
    //     }
    //   ]
    // }

}