Chilkat Online Tools

DeleteImage Swift3 Example

Amazon AppStream

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

    // URL: https://appstream2.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("appstream2.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("Name", value: "string")

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

    // {
    //   "Name": "string"
    // }

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

    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 AppBlockArn: String?
    var Enabled: Int
    var S3Bucket: String?
    var S3Key: String?
    var IconURL: String?
    var LaunchParameters: String?
    var LaunchPath: String?
    var v_String: String?
    var WorkingDirectory: String?
    var j: Int
    var count_j: Int
    var strVal: String?
    var ErrorCode: String?
    var ErrorMessage: String?
    var ErrorTimestamp: Int

    var AppstreamAgentVersion: String? = jResp.string(of: "Image.AppstreamAgentVersion")
    var Arn: String? = jResp.string(of: "Image.Arn")
    var BaseImageArn: String? = jResp.string(of: "Image.BaseImageArn")
    var CreatedTime: Int = jResp.int(of: "Image.CreatedTime").intValue
    var Description: String? = jResp.string(of: "Image.Description")
    var DisplayName: String? = jResp.string(of: "Image.DisplayName")
    var ImageBuilderName: String? = jResp.string(of: "Image.ImageBuilderName")
    var ImageBuilderSupported: Int = jResp.int(of: "Image.ImageBuilderSupported").intValue
    var AllowFleet: Int = jResp.int(of: "Image.ImagePermissions.allowFleet").intValue
    var AllowImageBuilder: Int = jResp.int(of: "Image.ImagePermissions.allowImageBuilder").intValue
    var Name: String? = jResp.string(of: "Image.Name")
    var Platform: String? = jResp.string(of: "Image.Platform")
    var PublicBaseImageReleasedDate: Int = jResp.int(of: "Image.PublicBaseImageReleasedDate").intValue
    var State: String? = jResp.string(of: "Image.State")
    var Code: String? = jResp.string(of: "Image.StateChangeReason.Code")
    var Message: String? = jResp.string(of: "Image.StateChangeReason.Message")
    var Visibility: String? = jResp.string(of: "Image.Visibility")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "Image.Applications").intValue
    while i < count_i {
        jResp.i = i
        AppBlockArn = jResp.string(of: "Image.Applications[i].AppBlockArn")
        Arn = jResp.string(of: "Image.Applications[i].Arn")
        CreatedTime = jResp.int(of: "Image.Applications[i].CreatedTime").intValue
        Description = jResp.string(of: "Image.Applications[i].Description")
        DisplayName = jResp.string(of: "Image.Applications[i].DisplayName")
        Enabled = jResp.int(of: "Image.Applications[i].Enabled").intValue
        S3Bucket = jResp.string(of: "Image.Applications[i].IconS3Location.S3Bucket")
        S3Key = jResp.string(of: "Image.Applications[i].IconS3Location.S3Key")
        IconURL = jResp.string(of: "Image.Applications[i].IconURL")
        LaunchParameters = jResp.string(of: "Image.Applications[i].LaunchParameters")
        LaunchPath = jResp.string(of: "Image.Applications[i].LaunchPath")
        v_String = jResp.string(of: "Image.Applications[i].Metadata.string")
        Name = jResp.string(of: "Image.Applications[i].Name")
        WorkingDirectory = jResp.string(of: "Image.Applications[i].WorkingDirectory")
        j = 0
        count_j = jResp.size(ofArray: "Image.Applications[i].InstanceFamilies").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "Image.Applications[i].InstanceFamilies[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Image.Applications[i].Platforms").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "Image.Applications[i].Platforms[j]")
            j = j + 1
        }

        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "Image.ImageErrors").intValue
    while i < count_i {
        jResp.i = i
        ErrorCode = jResp.string(of: "Image.ImageErrors[i].ErrorCode")
        ErrorMessage = jResp.string(of: "Image.ImageErrors[i].ErrorMessage")
        ErrorTimestamp = jResp.int(of: "Image.ImageErrors[i].ErrorTimestamp").intValue
        i = i + 1
    }

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

    // {
    //   "Image": {
    //     "Applications": [
    //       {
    //         "AppBlockArn": "string",
    //         "Arn": "string",
    //         "CreatedTime": number,
    //         "Description": "string",
    //         "DisplayName": "string",
    //         "Enabled": boolean,
    //         "IconS3Location": {
    //           "S3Bucket": "string",
    //           "S3Key": "string"
    //         },
    //         "IconURL": "string",
    //         "InstanceFamilies": [
    //           "string"
    //         ],
    //         "LaunchParameters": "string",
    //         "LaunchPath": "string",
    //         "Metadata": {
    //           "string": "string"
    //         },
    //         "Name": "string",
    //         "Platforms": [
    //           "string"
    //         ],
    //         "WorkingDirectory": "string"
    //       }
    //     ],
    //     "AppstreamAgentVersion": "string",
    //     "Arn": "string",
    //     "BaseImageArn": "string",
    //     "CreatedTime": number,
    //     "Description": "string",
    //     "DisplayName": "string",
    //     "ImageBuilderName": "string",
    //     "ImageBuilderSupported": boolean,
    //     "ImageErrors": [
    //       {
    //         "ErrorCode": "string",
    //         "ErrorMessage": "string",
    //         "ErrorTimestamp": number
    //       }
    //     ],
    //     "ImagePermissions": {
    //       "allowFleet": boolean,
    //       "allowImageBuilder": boolean
    //     },
    //     "Name": "string",
    //     "Platform": "string",
    //     "PublicBaseImageReleasedDate": number,
    //     "State": "string",
    //     "StateChangeReason": {
    //       "Code": "string",
    //       "Message": "string"
    //     },
    //     "Visibility": "string"
    //   }
    // }

}