Chilkat Online Tools

GetLifecyclePolicy Node.js Example

Amazon Data Lifecycle Manager

var os = require('os');
if (os.platform() == 'win32') {  
    if (os.arch() == 'ia32') {
        var chilkat = require('@chilkat/ck-node17-win-ia32');
    } else {
        var chilkat = require('@chilkat/ck-node17-win64'); 
    }
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('@chilkat/ck-node17-arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('@chilkat/ck-node17-linux32');
    } else {
        var chilkat = require('@chilkat/ck-node17-linux64');
    }
} else if (os.platform() == 'darwin') {
    var chilkat = require('@chilkat/ck-node17-macosx');
}

function chilkatExample() {

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    var rest = new chilkat.Rest();
    var success;

    var authAws = new chilkat.AuthAws();
    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 = "dlm";
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://dlm.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("dlm.us-west-2.amazonaws.com",443,true,true);
    if (success !== true) {
        console.log("ConnectFailReason: " + rest.ConnectFailReason);
        console.log(rest.LastErrorText);
        return;
    }

    rest.AddHeader("Content-Type","application/x-amz-json-1.1");
    rest.AddHeader("X-Amz-Target","GetLifecyclePolicy");

    var sbResponseBody = new chilkat.StringBuilder();
    success = rest.FullRequestNoBodySb("GET","/policies/{policyId}/",sbResponseBody);
    if (success !== true) {
        console.log(rest.LastErrorText);
        return;
    }

    var respStatusCode = rest.ResponseStatusCode;
    console.log("response status code = " + respStatusCode);
    if (respStatusCode !== 200) {
        console.log("Response Header:");
        console.log(rest.ResponseHeader);
        console.log("Response Body:");
        console.log(sbResponseBody.GetAsString());
        return;
    }

    var jResp = new chilkat.JsonObject();
    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 Name;
    var j;
    var count_j;
    var CmkArn;
    var Encrypted;
    var Interval;
    var IntervalUnit;
    var Target;
    var strVal;
    var CopyTags;
    var CronExpression;
    var CreateRuleInterval;
    var CreateRuleIntervalUnit;
    var Location;
    var Count;
    var DeprecateRuleInterval;
    var DeprecateRuleIntervalUnit;
    var FastRestoreRuleCount;
    var FastRestoreRuleInterval;
    var FastRestoreRuleIntervalUnit;
    var RetainRuleCount;
    var RetainRuleInterval;
    var RetainRuleIntervalUnit;
    var TargetRegion;
    var UnshareInterval;
    var UnshareIntervalUnit;
    var k;
    var count_k;
    var Key;
    var Value;

    var DateCreated = jResp.IntOf("Policy.DateCreated");
    var DateModified = jResp.IntOf("Policy.DateModified");
    var Description = jResp.StringOf("Policy.Description");
    var ExecutionRoleArn = jResp.StringOf("Policy.ExecutionRoleArn");
    var PolicyArn = jResp.StringOf("Policy.PolicyArn");
    var DescriptionRegex = jResp.StringOf("Policy.PolicyDetails.EventSource.Parameters.DescriptionRegex");
    var EventType = jResp.StringOf("Policy.PolicyDetails.EventSource.Parameters.EventType");
    var v_Type = jResp.StringOf("Policy.PolicyDetails.EventSource.Type");
    var ExcludeBootVolume = jResp.IntOf("Policy.PolicyDetails.Parameters.ExcludeBootVolume");
    var NoReboot = jResp.IntOf("Policy.PolicyDetails.Parameters.NoReboot");
    var PolicyType = jResp.StringOf("Policy.PolicyDetails.PolicyType");
    var PolicyId = jResp.StringOf("Policy.PolicyId");
    var State = jResp.StringOf("Policy.State");
    var StatusMessage = jResp.StringOf("Policy.StatusMessage");
    var v_String = jResp.StringOf("Policy.Tags.string");
    var i = 0;
    var count_i = jResp.SizeOfArray("Policy.PolicyDetails.Actions");
    while (i < count_i) {
        jResp.I = i;
        Name = jResp.StringOf("Policy.PolicyDetails.Actions[i].Name");
        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Actions[i].CrossRegionCopy");
        while (j < count_j) {
            jResp.J = j;
            CmkArn = jResp.StringOf("Policy.PolicyDetails.Actions[i].CrossRegionCopy[j].EncryptionConfiguration.CmkArn");
            Encrypted = jResp.IntOf("Policy.PolicyDetails.Actions[i].CrossRegionCopy[j].EncryptionConfiguration.Encrypted");
            Interval = jResp.IntOf("Policy.PolicyDetails.Actions[i].CrossRegionCopy[j].RetainRule.Interval");
            IntervalUnit = jResp.StringOf("Policy.PolicyDetails.Actions[i].CrossRegionCopy[j].RetainRule.IntervalUnit");
            Target = jResp.StringOf("Policy.PolicyDetails.Actions[i].CrossRegionCopy[j].Target");
            j = j+1;
        }

        i = i+1;
    }

    i = 0;
    count_i = jResp.SizeOfArray("Policy.PolicyDetails.EventSource.Parameters.SnapshotOwner");
    while (i < count_i) {
        jResp.I = i;
        strVal = jResp.StringOf("Policy.PolicyDetails.EventSource.Parameters.SnapshotOwner[i]");
        i = i+1;
    }

    i = 0;
    count_i = jResp.SizeOfArray("Policy.PolicyDetails.ResourceLocations");
    while (i < count_i) {
        jResp.I = i;
        strVal = jResp.StringOf("Policy.PolicyDetails.ResourceLocations[i]");
        i = i+1;
    }

    i = 0;
    count_i = jResp.SizeOfArray("Policy.PolicyDetails.ResourceTypes");
    while (i < count_i) {
        jResp.I = i;
        strVal = jResp.StringOf("Policy.PolicyDetails.ResourceTypes[i]");
        i = i+1;
    }

    i = 0;
    count_i = jResp.SizeOfArray("Policy.PolicyDetails.Schedules");
    while (i < count_i) {
        jResp.I = i;
        CopyTags = jResp.IntOf("Policy.PolicyDetails.Schedules[i].CopyTags");
        CronExpression = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CreateRule.CronExpression");
        CreateRuleInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].CreateRule.Interval");
        CreateRuleIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CreateRule.IntervalUnit");
        Location = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CreateRule.Location");
        Count = jResp.IntOf("Policy.PolicyDetails.Schedules[i].DeprecateRule.Count");
        DeprecateRuleInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].DeprecateRule.Interval");
        DeprecateRuleIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].DeprecateRule.IntervalUnit");
        FastRestoreRuleCount = jResp.IntOf("Policy.PolicyDetails.Schedules[i].FastRestoreRule.Count");
        FastRestoreRuleInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].FastRestoreRule.Interval");
        FastRestoreRuleIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].FastRestoreRule.IntervalUnit");
        Name = jResp.StringOf("Policy.PolicyDetails.Schedules[i].Name");
        RetainRuleCount = jResp.IntOf("Policy.PolicyDetails.Schedules[i].RetainRule.Count");
        RetainRuleInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].RetainRule.Interval");
        RetainRuleIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].RetainRule.IntervalUnit");
        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].CreateRule.Times");
        while (j < count_j) {
            jResp.J = j;
            strVal = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CreateRule.Times[j]");
            j = j+1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules");
        while (j < count_j) {
            jResp.J = j;
            CmkArn = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].CmkArn");
            CopyTags = jResp.IntOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].CopyTags");
            DeprecateRuleInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].DeprecateRule.Interval");
            DeprecateRuleIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].DeprecateRule.IntervalUnit");
            Encrypted = jResp.IntOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].Encrypted");
            RetainRuleInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].RetainRule.Interval");
            RetainRuleIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].RetainRule.IntervalUnit");
            Target = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].Target");
            TargetRegion = jResp.StringOf("Policy.PolicyDetails.Schedules[i].CrossRegionCopyRules[j].TargetRegion");
            j = j+1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].FastRestoreRule.AvailabilityZones");
        while (j < count_j) {
            jResp.J = j;
            strVal = jResp.StringOf("Policy.PolicyDetails.Schedules[i].FastRestoreRule.AvailabilityZones[j]");
            j = j+1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].ShareRules");
        while (j < count_j) {
            jResp.J = j;
            UnshareInterval = jResp.IntOf("Policy.PolicyDetails.Schedules[i].ShareRules[j].UnshareInterval");
            UnshareIntervalUnit = jResp.StringOf("Policy.PolicyDetails.Schedules[i].ShareRules[j].UnshareIntervalUnit");
            k = 0;
            count_k = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].ShareRules[j].TargetAccounts");
            while (k < count_k) {
                jResp.K = k;
                strVal = jResp.StringOf("Policy.PolicyDetails.Schedules[i].ShareRules[j].TargetAccounts[k]");
                k = k+1;
            }

            j = j+1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].TagsToAdd");
        while (j < count_j) {
            jResp.J = j;
            Key = jResp.StringOf("Policy.PolicyDetails.Schedules[i].TagsToAdd[j].Key");
            Value = jResp.StringOf("Policy.PolicyDetails.Schedules[i].TagsToAdd[j].Value");
            j = j+1;
        }

        j = 0;
        count_j = jResp.SizeOfArray("Policy.PolicyDetails.Schedules[i].VariableTags");
        while (j < count_j) {
            jResp.J = j;
            Key = jResp.StringOf("Policy.PolicyDetails.Schedules[i].VariableTags[j].Key");
            Value = jResp.StringOf("Policy.PolicyDetails.Schedules[i].VariableTags[j].Value");
            j = j+1;
        }

        i = i+1;
    }

    i = 0;
    count_i = jResp.SizeOfArray("Policy.PolicyDetails.TargetTags");
    while (i < count_i) {
        jResp.I = i;
        Key = jResp.StringOf("Policy.PolicyDetails.TargetTags[i].Key");
        Value = jResp.StringOf("Policy.PolicyDetails.TargetTags[i].Value");
        i = i+1;
    }

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

    // {
    //   "Policy": {
    //     "DateCreated": number,
    //     "DateModified": number,
    //     "Description": "string",
    //     "ExecutionRoleArn": "string",
    //     "PolicyArn": "string",
    //     "PolicyDetails": {
    //       "Actions": [
    //         {
    //           "CrossRegionCopy": [
    //             {
    //               "EncryptionConfiguration": {
    //                 "CmkArn": "string",
    //                 "Encrypted": boolean
    //               },
    //               "RetainRule": {
    //                 "Interval": number,
    //                 "IntervalUnit": "string"
    //               },
    //               "Target": "string"
    //             }
    //           ],
    //           "Name": "string"
    //         }
    //       ],
    //       "EventSource": {
    //         "Parameters": {
    //           "DescriptionRegex": "string",
    //           "EventType": "string",
    //           "SnapshotOwner": [
    //             "string"
    //           ]
    //         },
    //         "Type": "string"
    //       },
    //       "Parameters": {
    //         "ExcludeBootVolume": boolean,
    //         "NoReboot": boolean
    //       },
    //       "PolicyType": "string",
    //       "ResourceLocations": [
    //         "string"
    //       ],
    //       "ResourceTypes": [
    //         "string"
    //       ],
    //       "Schedules": [
    //         {
    //           "CopyTags": boolean,
    //           "CreateRule": {
    //             "CronExpression": "string",
    //             "Interval": number,
    //             "IntervalUnit": "string",
    //             "Location": "string",
    //             "Times": [
    //               "string"
    //             ]
    //           },
    //           "CrossRegionCopyRules": [
    //             {
    //               "CmkArn": "string",
    //               "CopyTags": boolean,
    //               "DeprecateRule": {
    //                 "Interval": number,
    //                 "IntervalUnit": "string"
    //               },
    //               "Encrypted": boolean,
    //               "RetainRule": {
    //                 "Interval": number,
    //                 "IntervalUnit": "string"
    //               },
    //               "Target": "string",
    //               "TargetRegion": "string"
    //             }
    //           ],
    //           "DeprecateRule": {
    //             "Count": number,
    //             "Interval": number,
    //             "IntervalUnit": "string"
    //           },
    //           "FastRestoreRule": {
    //             "AvailabilityZones": [
    //               "string"
    //             ],
    //             "Count": number,
    //             "Interval": number,
    //             "IntervalUnit": "string"
    //           },
    //           "Name": "string",
    //           "RetainRule": {
    //             "Count": number,
    //             "Interval": number,
    //             "IntervalUnit": "string"
    //           },
    //           "ShareRules": [
    //             {
    //               "TargetAccounts": [
    //                 "string"
    //               ],
    //               "UnshareInterval": number,
    //               "UnshareIntervalUnit": "string"
    //             }
    //           ],
    //           "TagsToAdd": [
    //             {
    //               "Key": "string",
    //               "Value": "string"
    //             }
    //           ],
    //           "VariableTags": [
    //             {
    //               "Key": "string",
    //               "Value": "string"
    //             }
    //           ]
    //         }
    //       ],
    //       "TargetTags": [
    //         {
    //           "Key": "string",
    //           "Value": "string"
    //         }
    //       ]
    //     },
    //     "PolicyId": "string",
    //     "State": "string",
    //     "StatusMessage": "string",
    //     "Tags": {
    //       "string": "string"
    //     }
    //   }
    // }

}

chilkatExample();