Chilkat Online Tools

DescribeServers Swift3 Example

AWS OpsWorks CM

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-cm"
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.setAuthAws(authAws)

    // URL: https://opsworks-cm.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("opsworks-cm.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("MaxResults", value: 123)
    json.update("NextToken", value: "string")
    json.update("ServerName", value: "string")

    // The JSON request body created by the above code:

    // {
    //   "MaxResults": number,
    //   "NextToken": "string",
    //   "ServerName": "string"
    // }

    rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
    rest.addHeader("X-Amz-Target", value: "OpsWorksCM_V2016_11_01.DescribeServers")

    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 AssociatePublicIpAddress: Int
    var BackupRetentionCount: Int
    var CloudFormationStackArn: String?
    var CreatedAt: Int
    var CustomDomain: String?
    var DisableAutomatedBackup: Int
    var Endpoint: String?
    var Engine: String?
    var EngineModel: String?
    var EngineVersion: String?
    var InstanceProfileArn: String?
    var InstanceType: String?
    var KeyPair: String?
    var MaintenanceStatus: String?
    var PreferredBackupWindow: String?
    var PreferredMaintenanceWindow: String?
    var ServerArn: String?
    var ServerName: String?
    var ServiceRoleArn: String?
    var Status: String?
    var StatusReason: String?
    var j: Int
    var count_j: Int
    var Name: String?
    var Value: String?
    var strVal: String?

    var NextToken: String? = jResp.string(of: "NextToken")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "Servers").intValue
    while i < count_i {
        jResp.i = i
        AssociatePublicIpAddress = jResp.int(of: "Servers[i].AssociatePublicIpAddress").intValue
        BackupRetentionCount = jResp.int(of: "Servers[i].BackupRetentionCount").intValue
        CloudFormationStackArn = jResp.string(of: "Servers[i].CloudFormationStackArn")
        CreatedAt = jResp.int(of: "Servers[i].CreatedAt").intValue
        CustomDomain = jResp.string(of: "Servers[i].CustomDomain")
        DisableAutomatedBackup = jResp.int(of: "Servers[i].DisableAutomatedBackup").intValue
        Endpoint = jResp.string(of: "Servers[i].Endpoint")
        Engine = jResp.string(of: "Servers[i].Engine")
        EngineModel = jResp.string(of: "Servers[i].EngineModel")
        EngineVersion = jResp.string(of: "Servers[i].EngineVersion")
        InstanceProfileArn = jResp.string(of: "Servers[i].InstanceProfileArn")
        InstanceType = jResp.string(of: "Servers[i].InstanceType")
        KeyPair = jResp.string(of: "Servers[i].KeyPair")
        MaintenanceStatus = jResp.string(of: "Servers[i].MaintenanceStatus")
        PreferredBackupWindow = jResp.string(of: "Servers[i].PreferredBackupWindow")
        PreferredMaintenanceWindow = jResp.string(of: "Servers[i].PreferredMaintenanceWindow")
        ServerArn = jResp.string(of: "Servers[i].ServerArn")
        ServerName = jResp.string(of: "Servers[i].ServerName")
        ServiceRoleArn = jResp.string(of: "Servers[i].ServiceRoleArn")
        Status = jResp.string(of: "Servers[i].Status")
        StatusReason = jResp.string(of: "Servers[i].StatusReason")
        j = 0
        count_j = jResp.size(ofArray: "Servers[i].EngineAttributes").intValue
        while j < count_j {
            jResp.j = j
            Name = jResp.string(of: "Servers[i].EngineAttributes[j].Name")
            Value = jResp.string(of: "Servers[i].EngineAttributes[j].Value")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Servers[i].SecurityGroupIds").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "Servers[i].SecurityGroupIds[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Servers[i].SubnetIds").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "Servers[i].SubnetIds[j]")
            j = j + 1
        }

        i = i + 1
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "NextToken": "string",
    //   "Servers": [
    //     {
    //       "AssociatePublicIpAddress": boolean,
    //       "BackupRetentionCount": number,
    //       "CloudFormationStackArn": "string",
    //       "CreatedAt": number,
    //       "CustomDomain": "string",
    //       "DisableAutomatedBackup": boolean,
    //       "Endpoint": "string",
    //       "Engine": "string",
    //       "EngineAttributes": [
    //         {
    //           "Name": "string",
    //           "Value": "string"
    //         }
    //       ],
    //       "EngineModel": "string",
    //       "EngineVersion": "string",
    //       "InstanceProfileArn": "string",
    //       "InstanceType": "string",
    //       "KeyPair": "string",
    //       "MaintenanceStatus": "string",
    //       "PreferredBackupWindow": "string",
    //       "PreferredMaintenanceWindow": "string",
    //       "SecurityGroupIds": [
    //         "string"
    //       ],
    //       "ServerArn": "string",
    //       "ServerName": "string",
    //       "ServiceRoleArn": "string",
    //       "Status": "string",
    //       "StatusReason": "string",
    //       "SubnetIds": [
    //         "string"
    //       ]
    //     }
    //   ]
    // }

}