UpdateApplication Swift 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 = "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("AppBlockArn", value: "string")
json.UpdateString("AttributesToDelete[0]", value: "string")
json.UpdateString("Description", value: "string")
json.UpdateString("DisplayName", value: "string")
json.UpdateString("IconS3Location.S3Bucket", value: "string")
json.UpdateString("IconS3Location.S3Key", value: "string")
json.UpdateString("LaunchParameters", value: "string")
json.UpdateString("LaunchPath", value: "string")
json.UpdateString("Name", value: "string")
json.UpdateString("WorkingDirectory", value: "string")
// The JSON request body created by the above code:
// {
// "AppBlockArn": "string",
// "AttributesToDelete": [
// "string"
// ],
// "Description": "string",
// "DisplayName": "string",
// "IconS3Location": {
// "S3Bucket": "string",
// "S3Key": "string"
// },
// "LaunchParameters": "string",
// "LaunchPath": "string",
// "Name": "string",
// "WorkingDirectory": "string"
// }
rest.AddHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.AddHeader("X-Amz-Target", value: "PhotonAdminProxyService.UpdateApplication")
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 strVal: String?
var AppBlockArn: String? = jResp.StringOf("Application.AppBlockArn")
var Arn: String? = jResp.StringOf("Application.Arn")
var CreatedTime: Int = jResp.IntOf("Application.CreatedTime").intValue
var Description: String? = jResp.StringOf("Application.Description")
var DisplayName: String? = jResp.StringOf("Application.DisplayName")
var Enabled: Int = jResp.IntOf("Application.Enabled").intValue
var S3Bucket: String? = jResp.StringOf("Application.IconS3Location.S3Bucket")
var S3Key: String? = jResp.StringOf("Application.IconS3Location.S3Key")
var IconURL: String? = jResp.StringOf("Application.IconURL")
var LaunchParameters: String? = jResp.StringOf("Application.LaunchParameters")
var LaunchPath: String? = jResp.StringOf("Application.LaunchPath")
var v_String: String? = jResp.StringOf("Application.Metadata.string")
var Name: String? = jResp.StringOf("Application.Name")
var WorkingDirectory: String? = jResp.StringOf("Application.WorkingDirectory")
var i: Int = 0
var count_i: Int = jResp.SizeOfArray("Application.InstanceFamilies").intValue
while i < count_i {
jResp.I = i
strVal = jResp.StringOf("Application.InstanceFamilies[i]")
i = i + 1
}
i = 0
count_i = jResp.SizeOfArray("Application.Platforms").intValue
while i < count_i {
jResp.I = i
strVal = jResp.StringOf("Application.Platforms[i]")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "Application": {
// "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"
// }
// }
}