Chilkat Online Tools

UpdateReplicationConfigurationTemplate Swift3 Example

AWS Elastic Disaster Recovery

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.update("arn", value: "string")
    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.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("replicationConfigurationTemplateID", value: "string")
    json.update("replicationServerInstanceType", value: "string")
    json.update("replicationServersSecurityGroupsIDs[0]", 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:

    // {
    //   "arn": "string",
    //   "associateDefaultSecurityGroup": boolean,
    //   "bandwidthThrottling": number,
    //   "createPublicIP": boolean,
    //   "dataPlaneRouting": "string",
    //   "defaultLargeStagingDiskType": "string",
    //   "ebsEncryption": "string",
    //   "ebsEncryptionKeyArn": "string",
    //   "pitPolicy": [
    //     {
    //       "enabled": boolean,
    //       "interval": number,
    //       "retentionDuration": number,
    //       "ruleID": number,
    //       "units": "string"
    //     }
    //   ],
    //   "replicationConfigurationTemplateID": "string",
    //   "replicationServerInstanceType": "string",
    //   "replicationServersSecurityGroupsIDs": [
    //     "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: "UpdateReplicationConfigurationTemplate")

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestSb("POST", uriPath: "/UpdateReplicationConfigurationTemplate", 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 strVal: String?

    var arn: String? = jResp.string(of: "arn")
    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 replicationConfigurationTemplateID: String? = jResp.string(of: "replicationConfigurationTemplateID")
    var replicationServerInstanceType: String? = jResp.string(of: "replicationServerInstanceType")
    var stagingAreaSubnetId: String? = jResp.string(of: "stagingAreaSubnetId")
    var v_String: String? = jResp.string(of: "stagingAreaTags.string")
    var tagsString: String? = jResp.string(of: "tags.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: "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:

    // {
    //   "arn": "string",
    //   "associateDefaultSecurityGroup": boolean,
    //   "bandwidthThrottling": number,
    //   "createPublicIP": boolean,
    //   "dataPlaneRouting": "string",
    //   "defaultLargeStagingDiskType": "string",
    //   "ebsEncryption": "string",
    //   "ebsEncryptionKeyArn": "string",
    //   "pitPolicy": [
    //     {
    //       "enabled": boolean,
    //       "interval": number,
    //       "retentionDuration": number,
    //       "ruleID": number,
    //       "units": "string"
    //     }
    //   ],
    //   "replicationConfigurationTemplateID": "string",
    //   "replicationServerInstanceType": "string",
    //   "replicationServersSecurityGroupsIDs": [
    //     "string"
    //   ],
    //   "stagingAreaSubnetId": "string",
    //   "stagingAreaTags": {
    //     "string": "string"
    //   },
    //   "tags": {
    //     "string": "string"
    //   },
    //   "useDedicatedReplicationServer": boolean
    // }

}