Chilkat Online Tools

DeleteImage Swift 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.UpdateString("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.StringOf("Image.AppstreamAgentVersion")
    var Arn: String? = jResp.StringOf("Image.Arn")
    var BaseImageArn: String? = jResp.StringOf("Image.BaseImageArn")
    var CreatedTime: Int = jResp.IntOf("Image.CreatedTime").intValue
    var Description: String? = jResp.StringOf("Image.Description")
    var DisplayName: String? = jResp.StringOf("Image.DisplayName")
    var ImageBuilderName: String? = jResp.StringOf("Image.ImageBuilderName")
    var ImageBuilderSupported: Int = jResp.IntOf("Image.ImageBuilderSupported").intValue
    var AllowFleet: Int = jResp.IntOf("Image.ImagePermissions.allowFleet").intValue
    var AllowImageBuilder: Int = jResp.IntOf("Image.ImagePermissions.allowImageBuilder").intValue
    var Name: String? = jResp.StringOf("Image.Name")
    var Platform: String? = jResp.StringOf("Image.Platform")
    var PublicBaseImageReleasedDate: Int = jResp.IntOf("Image.PublicBaseImageReleasedDate").intValue
    var State: String? = jResp.StringOf("Image.State")
    var Code: String? = jResp.StringOf("Image.StateChangeReason.Code")
    var Message: String? = jResp.StringOf("Image.StateChangeReason.Message")
    var Visibility: String? = jResp.StringOf("Image.Visibility")
    var i: Int = 0
    var count_i: Int = jResp.SizeOfArray("Image.Applications").intValue
    while i < count_i {
        jResp.I = i
        AppBlockArn = jResp.StringOf("Image.Applications[i].AppBlockArn")
        Arn = jResp.StringOf("Image.Applications[i].Arn")
        CreatedTime = jResp.IntOf("Image.Applications[i].CreatedTime").intValue
        Description = jResp.StringOf("Image.Applications[i].Description")
        DisplayName = jResp.StringOf("Image.Applications[i].DisplayName")
        Enabled = jResp.IntOf("Image.Applications[i].Enabled").intValue
        S3Bucket = jResp.StringOf("Image.Applications[i].IconS3Location.S3Bucket")
        S3Key = jResp.StringOf("Image.Applications[i].IconS3Location.S3Key")
        IconURL = jResp.StringOf("Image.Applications[i].IconURL")
        LaunchParameters = jResp.StringOf("Image.Applications[i].LaunchParameters")
        LaunchPath = jResp.StringOf("Image.Applications[i].LaunchPath")
        v_String = jResp.StringOf("Image.Applications[i].Metadata.string")
        Name = jResp.StringOf("Image.Applications[i].Name")
        WorkingDirectory = jResp.StringOf("Image.Applications[i].WorkingDirectory")
        j = 0
        count_j = jResp.SizeOfArray("Image.Applications[i].InstanceFamilies").intValue
        while j < count_j {
            jResp.J = j
            strVal = jResp.StringOf("Image.Applications[i].InstanceFamilies[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.SizeOfArray("Image.Applications[i].Platforms").intValue
        while j < count_j {
            jResp.J = j
            strVal = jResp.StringOf("Image.Applications[i].Platforms[j]")
            j = j + 1
        }

        i = i + 1
    }

    i = 0
    count_i = jResp.SizeOfArray("Image.ImageErrors").intValue
    while i < count_i {
        jResp.I = i
        ErrorCode = jResp.StringOf("Image.ImageErrors[i].ErrorCode")
        ErrorMessage = jResp.StringOf("Image.ImageErrors[i].ErrorMessage")
        ErrorTimestamp = jResp.IntOf("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"
    //   }
    // }

}