DescribeLayers Swift3 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 = "opsworks"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://opsworks.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("opsworks.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("LayerIds[0]", value: "string")
json.update("StackId", value: "string")
// The JSON request body created by the above code:
// {
// "LayerIds": [
// "string"
// ],
// "StackId": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "OpsWorks_20130218.DescribeLayers")
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 v_String: String?
var AutoAssignElasticIps: Int
var AutoAssignPublicIps: Int
var Enabled: Int
var CreatedAt: String?
var CustomInstanceProfileArn: String?
var CustomJson: String?
var EnableAutoHealing: Int
var InstallUpdatesOnBoot: Int
var LayerId: String?
var DelayUntilElbConnectionsDrained: Int
var ExecutionTimeout: Int
var Name: String?
var Shortname: String?
var StackId: String?
var v_Type: String?
var UseEbsOptimizedInstances: Int
var j: Int
var count_j: Int
var BatchCount: Int
var BatchSize: Int
var BufferDuration: Int
var DatetimeFormat: String?
var Encoding: String?
var File: String?
var FileFingerprintLines: String?
var InitialPosition: String?
var LogGroupName: String?
var MultiLineStartPattern: String?
var TimeZone: String?
var strVal: String?
var Encrypted: Int
var Iops: Int
var MountPoint: String?
var NumberOfDisks: Int
var RaidLevel: Int
var Size: Int
var VolumeType: String?
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "Layers").intValue
while i < count_i {
jResp.i = i
Arn = jResp.string(of: "Layers[i].Arn")
v_String = jResp.string(of: "Layers[i].Attributes.string")
AutoAssignElasticIps = jResp.int(of: "Layers[i].AutoAssignElasticIps").intValue
AutoAssignPublicIps = jResp.int(of: "Layers[i].AutoAssignPublicIps").intValue
Enabled = jResp.int(of: "Layers[i].CloudWatchLogsConfiguration.Enabled").intValue
CreatedAt = jResp.string(of: "Layers[i].CreatedAt")
CustomInstanceProfileArn = jResp.string(of: "Layers[i].CustomInstanceProfileArn")
CustomJson = jResp.string(of: "Layers[i].CustomJson")
EnableAutoHealing = jResp.int(of: "Layers[i].EnableAutoHealing").intValue
InstallUpdatesOnBoot = jResp.int(of: "Layers[i].InstallUpdatesOnBoot").intValue
LayerId = jResp.string(of: "Layers[i].LayerId")
DelayUntilElbConnectionsDrained = jResp.int(of: "Layers[i].LifecycleEventConfiguration.Shutdown.DelayUntilElbConnectionsDrained").intValue
ExecutionTimeout = jResp.int(of: "Layers[i].LifecycleEventConfiguration.Shutdown.ExecutionTimeout").intValue
Name = jResp.string(of: "Layers[i].Name")
Shortname = jResp.string(of: "Layers[i].Shortname")
StackId = jResp.string(of: "Layers[i].StackId")
v_Type = jResp.string(of: "Layers[i].Type")
UseEbsOptimizedInstances = jResp.int(of: "Layers[i].UseEbsOptimizedInstances").intValue
j = 0
count_j = jResp.size(ofArray: "Layers[i].CloudWatchLogsConfiguration.LogStreams").intValue
while j < count_j {
jResp.j = j
BatchCount = jResp.int(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].BatchCount").intValue
BatchSize = jResp.int(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].BatchSize").intValue
BufferDuration = jResp.int(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].BufferDuration").intValue
DatetimeFormat = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].DatetimeFormat")
Encoding = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].Encoding")
File = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].File")
FileFingerprintLines = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].FileFingerprintLines")
InitialPosition = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].InitialPosition")
LogGroupName = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].LogGroupName")
MultiLineStartPattern = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].MultiLineStartPattern")
TimeZone = jResp.string(of: "Layers[i].CloudWatchLogsConfiguration.LogStreams[j].TimeZone")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].CustomRecipes.Configure").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].CustomRecipes.Configure[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].CustomRecipes.Deploy").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].CustomRecipes.Deploy[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].CustomRecipes.Setup").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].CustomRecipes.Setup[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].CustomRecipes.Shutdown").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].CustomRecipes.Shutdown[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].CustomRecipes.Undeploy").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].CustomRecipes.Undeploy[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].CustomSecurityGroupIds").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].CustomSecurityGroupIds[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].DefaultRecipes.Configure").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].DefaultRecipes.Configure[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].DefaultRecipes.Deploy").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].DefaultRecipes.Deploy[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].DefaultRecipes.Setup").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].DefaultRecipes.Setup[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].DefaultRecipes.Shutdown").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].DefaultRecipes.Shutdown[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].DefaultRecipes.Undeploy").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].DefaultRecipes.Undeploy[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].DefaultSecurityGroupNames").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].DefaultSecurityGroupNames[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].Packages").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "Layers[i].Packages[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "Layers[i].VolumeConfigurations").intValue
while j < count_j {
jResp.j = j
Encrypted = jResp.int(of: "Layers[i].VolumeConfigurations[j].Encrypted").intValue
Iops = jResp.int(of: "Layers[i].VolumeConfigurations[j].Iops").intValue
MountPoint = jResp.string(of: "Layers[i].VolumeConfigurations[j].MountPoint")
NumberOfDisks = jResp.int(of: "Layers[i].VolumeConfigurations[j].NumberOfDisks").intValue
RaidLevel = jResp.int(of: "Layers[i].VolumeConfigurations[j].RaidLevel").intValue
Size = jResp.int(of: "Layers[i].VolumeConfigurations[j].Size").intValue
VolumeType = jResp.string(of: "Layers[i].VolumeConfigurations[j].VolumeType")
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "Layers": [
// {
// "Arn": "string",
// "Attributes": {
// "string": "string"
// },
// "AutoAssignElasticIps": boolean,
// "AutoAssignPublicIps": boolean,
// "CloudWatchLogsConfiguration": {
// "Enabled": boolean,
// "LogStreams": [
// {
// "BatchCount": number,
// "BatchSize": number,
// "BufferDuration": number,
// "DatetimeFormat": "string",
// "Encoding": "string",
// "File": "string",
// "FileFingerprintLines": "string",
// "InitialPosition": "string",
// "LogGroupName": "string",
// "MultiLineStartPattern": "string",
// "TimeZone": "string"
// }
// ]
// },
// "CreatedAt": "string",
// "CustomInstanceProfileArn": "string",
// "CustomJson": "string",
// "CustomRecipes": {
// "Configure": [
// "string"
// ],
// "Deploy": [
// "string"
// ],
// "Setup": [
// "string"
// ],
// "Shutdown": [
// "string"
// ],
// "Undeploy": [
// "string"
// ]
// },
// "CustomSecurityGroupIds": [
// "string"
// ],
// "DefaultRecipes": {
// "Configure": [
// "string"
// ],
// "Deploy": [
// "string"
// ],
// "Setup": [
// "string"
// ],
// "Shutdown": [
// "string"
// ],
// "Undeploy": [
// "string"
// ]
// },
// "DefaultSecurityGroupNames": [
// "string"
// ],
// "EnableAutoHealing": boolean,
// "InstallUpdatesOnBoot": boolean,
// "LayerId": "string",
// "LifecycleEventConfiguration": {
// "Shutdown": {
// "DelayUntilElbConnectionsDrained": boolean,
// "ExecutionTimeout": number
// }
// },
// "Name": "string",
// "Packages": [
// "string"
// ],
// "Shortname": "string",
// "StackId": "string",
// "Type": "string",
// "UseEbsOptimizedInstances": boolean,
// "VolumeConfigurations": [
// {
// "Encrypted": boolean,
// "Iops": number,
// "MountPoint": "string",
// "NumberOfDisks": number,
// "RaidLevel": number,
// "Size": number,
// "VolumeType": "string"
// }
// ]
// }
// ]
// }
}