UpdateReplicationConfiguration 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 = "drs"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://drs.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("drs.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.updateInt("associateDefaultSecurityGroup", value: 123)
json.updateInt("bandwidthThrottling", value: 123)
json.updateInt("createPublicIP", value: 123)
json.update("dataPlaneRouting", value: "string")
json.update("defaultLargeStagingDiskType", value: "string")
json.update("ebsEncryption", value: "string")
json.update("ebsEncryptionKeyArn", value: "string")
json.update("name", value: "string")
json.updateInt("pitPolicy[0].enabled", value: 123)
json.updateInt("pitPolicy[0].interval", value: 123)
json.updateInt("pitPolicy[0].retentionDuration", value: 123)
json.updateInt("pitPolicy[0].ruleID", value: 123)
json.update("pitPolicy[0].units", value: "string")
json.update("replicatedDisks[0].deviceName", value: "string")
json.updateInt("replicatedDisks[0].iops", value: 123)
json.updateInt("replicatedDisks[0].isBootDisk", value: 123)
json.update("replicatedDisks[0].stagingDiskType", value: "string")
json.updateInt("replicatedDisks[0].throughput", value: 123)
json.update("replicationServerInstanceType", value: "string")
json.update("replicationServersSecurityGroupsIDs[0]", value: "string")
json.update("sourceServerID", value: "string")
json.update("stagingAreaSubnetId", value: "string")
json.update("stagingAreaTags.string", value: "string")
json.updateInt("useDedicatedReplicationServer", value: 123)
// The JSON request body created by the above code:
// {
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "name": "string",
// "pitPolicy": [
// {
// "enabled": boolean,
// "interval": number,
// "retentionDuration": number,
// "ruleID": number,
// "units": "string"
// }
// ],
// "replicatedDisks": [
// {
// "deviceName": "string",
// "iops": number,
// "isBootDisk": boolean,
// "stagingDiskType": "string",
// "throughput": number
// }
// ],
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "sourceServerID": "string",
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "UpdateReplicationConfiguration")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestSb("POST", uriPath: "/UpdateReplicationConfiguration", 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 enabled: Int
var interval: Int
var retentionDuration: Int
var ruleID: Int
var units: String?
var deviceName: String?
var iops: Int
var isBootDisk: Int
var stagingDiskType: String?
var throughput: Int
var strVal: String?
var associateDefaultSecurityGroup: Int = jResp.int(of: "associateDefaultSecurityGroup").intValue
var bandwidthThrottling: Int = jResp.int(of: "bandwidthThrottling").intValue
var createPublicIP: Int = jResp.int(of: "createPublicIP").intValue
var dataPlaneRouting: String? = jResp.string(of: "dataPlaneRouting")
var defaultLargeStagingDiskType: String? = jResp.string(of: "defaultLargeStagingDiskType")
var ebsEncryption: String? = jResp.string(of: "ebsEncryption")
var ebsEncryptionKeyArn: String? = jResp.string(of: "ebsEncryptionKeyArn")
var name: String? = jResp.string(of: "name")
var replicationServerInstanceType: String? = jResp.string(of: "replicationServerInstanceType")
var sourceServerID: String? = jResp.string(of: "sourceServerID")
var stagingAreaSubnetId: String? = jResp.string(of: "stagingAreaSubnetId")
var v_String: String? = jResp.string(of: "stagingAreaTags.string")
var useDedicatedReplicationServer: Int = jResp.int(of: "useDedicatedReplicationServer").intValue
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "pitPolicy").intValue
while i < count_i {
jResp.i = i
enabled = jResp.int(of: "pitPolicy[i].enabled").intValue
interval = jResp.int(of: "pitPolicy[i].interval").intValue
retentionDuration = jResp.int(of: "pitPolicy[i].retentionDuration").intValue
ruleID = jResp.int(of: "pitPolicy[i].ruleID").intValue
units = jResp.string(of: "pitPolicy[i].units")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "replicatedDisks").intValue
while i < count_i {
jResp.i = i
deviceName = jResp.string(of: "replicatedDisks[i].deviceName")
iops = jResp.int(of: "replicatedDisks[i].iops").intValue
isBootDisk = jResp.int(of: "replicatedDisks[i].isBootDisk").intValue
stagingDiskType = jResp.string(of: "replicatedDisks[i].stagingDiskType")
throughput = jResp.int(of: "replicatedDisks[i].throughput").intValue
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "replicationServersSecurityGroupsIDs").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "replicationServersSecurityGroupsIDs[i]")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "name": "string",
// "pitPolicy": [
// {
// "enabled": boolean,
// "interval": number,
// "retentionDuration": number,
// "ruleID": number,
// "units": "string"
// }
// ],
// "replicatedDisks": [
// {
// "deviceName": "string",
// "iops": number,
// "isBootDisk": boolean,
// "stagingDiskType": "string",
// "throughput": number
// }
// ],
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "sourceServerID": "string",
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }
}