Chilkat Online Tools

DescribeNFSFileShares unicodeCpp Example

AWS Storage Gateway

#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>

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

    CkRestW rest;
    bool success;

    CkAuthAwsW authAws;
    authAws.put_AccessKey(L"AWS_ACCESS_KEY");
    authAws.put_SecretKey(L"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.put_Region(L"us-west-2");
    authAws.put_ServiceName(L"storagegateway");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://storagegateway.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect(L"storagegateway.us-west-2.amazonaws.com",443,true,true);
    if (success != true) {
        wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
        wprintf(L"%s\n",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

    CkJsonObjectW json;
    json.UpdateString(L"FileShareARNList[0]",L"string");

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

    // {
    //   "FileShareARNList": [
    //     "string"
    //   ]
    // }

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

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);
    CkStringBuilderW sbResponseBody;
    success = rest.FullRequestSb(L"POST",L"/",sbRequestBody,sbResponseBody);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    int respStatusCode = rest.get_ResponseStatusCode();
    wprintf(L"response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",rest.responseHeader());
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",sbResponseBody.getAsString());
        return;
    }

    CkJsonObjectW jResp;
    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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    const wchar_t *AuditDestinationARN = 0;
    const wchar_t *BucketRegion = 0;
    int CacheStaleTimeoutInSeconds;
    const wchar_t *DefaultStorageClass = 0;
    const wchar_t *FileShareARN = 0;
    const wchar_t *FileShareId = 0;
    const wchar_t *FileShareName = 0;
    const wchar_t *FileShareStatus = 0;
    const wchar_t *GatewayARN = 0;
    int GuessMIMETypeEnabled;
    int KMSEncrypted;
    const wchar_t *KMSKey = 0;
    const wchar_t *LocationARN = 0;
    const wchar_t *DirectoryMode = 0;
    const wchar_t *FileMode = 0;
    int GroupId;
    int OwnerId;
    const wchar_t *NotificationPolicy = 0;
    const wchar_t *ObjectACL = 0;
    const wchar_t *Path = 0;
    int ReadOnly;
    int RequesterPays;
    const wchar_t *Role = 0;
    const wchar_t *Squash = 0;
    const wchar_t *VPCEndpointDNSName = 0;
    int j;
    int count_j;
    const wchar_t *strVal = 0;
    const wchar_t *Key = 0;
    const wchar_t *Value = 0;

    int i = 0;
    int count_i = jResp.SizeOfArray(L"NFSFileShareInfoList");
    while (i < count_i) {
        jResp.put_I(i);
        AuditDestinationARN = jResp.stringOf(L"NFSFileShareInfoList[i].AuditDestinationARN");
        BucketRegion = jResp.stringOf(L"NFSFileShareInfoList[i].BucketRegion");
        CacheStaleTimeoutInSeconds = jResp.IntOf(L"NFSFileShareInfoList[i].CacheAttributes.CacheStaleTimeoutInSeconds");
        DefaultStorageClass = jResp.stringOf(L"NFSFileShareInfoList[i].DefaultStorageClass");
        FileShareARN = jResp.stringOf(L"NFSFileShareInfoList[i].FileShareARN");
        FileShareId = jResp.stringOf(L"NFSFileShareInfoList[i].FileShareId");
        FileShareName = jResp.stringOf(L"NFSFileShareInfoList[i].FileShareName");
        FileShareStatus = jResp.stringOf(L"NFSFileShareInfoList[i].FileShareStatus");
        GatewayARN = jResp.stringOf(L"NFSFileShareInfoList[i].GatewayARN");
        GuessMIMETypeEnabled = jResp.IntOf(L"NFSFileShareInfoList[i].GuessMIMETypeEnabled");
        KMSEncrypted = jResp.IntOf(L"NFSFileShareInfoList[i].KMSEncrypted");
        KMSKey = jResp.stringOf(L"NFSFileShareInfoList[i].KMSKey");
        LocationARN = jResp.stringOf(L"NFSFileShareInfoList[i].LocationARN");
        DirectoryMode = jResp.stringOf(L"NFSFileShareInfoList[i].NFSFileShareDefaults.DirectoryMode");
        FileMode = jResp.stringOf(L"NFSFileShareInfoList[i].NFSFileShareDefaults.FileMode");
        GroupId = jResp.IntOf(L"NFSFileShareInfoList[i].NFSFileShareDefaults.GroupId");
        OwnerId = jResp.IntOf(L"NFSFileShareInfoList[i].NFSFileShareDefaults.OwnerId");
        NotificationPolicy = jResp.stringOf(L"NFSFileShareInfoList[i].NotificationPolicy");
        ObjectACL = jResp.stringOf(L"NFSFileShareInfoList[i].ObjectACL");
        Path = jResp.stringOf(L"NFSFileShareInfoList[i].Path");
        ReadOnly = jResp.IntOf(L"NFSFileShareInfoList[i].ReadOnly");
        RequesterPays = jResp.IntOf(L"NFSFileShareInfoList[i].RequesterPays");
        Role = jResp.stringOf(L"NFSFileShareInfoList[i].Role");
        Squash = jResp.stringOf(L"NFSFileShareInfoList[i].Squash");
        VPCEndpointDNSName = jResp.stringOf(L"NFSFileShareInfoList[i].VPCEndpointDNSName");
        j = 0;
        count_j = jResp.SizeOfArray(L"NFSFileShareInfoList[i].ClientList");
        while (j < count_j) {
            jResp.put_J(j);
            strVal = jResp.stringOf(L"NFSFileShareInfoList[i].ClientList[j]");
            j = j + 1;
        }

        j = 0;
        count_j = jResp.SizeOfArray(L"NFSFileShareInfoList[i].Tags");
        while (j < count_j) {
            jResp.put_J(j);
            Key = jResp.stringOf(L"NFSFileShareInfoList[i].Tags[j].Key");
            Value = jResp.stringOf(L"NFSFileShareInfoList[i].Tags[j].Value");
            j = j + 1;
        }

        i = i + 1;
    }

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

    // {
    //   "NFSFileShareInfoList": [
    //     {
    //       "AuditDestinationARN": "string",
    //       "BucketRegion": "string",
    //       "CacheAttributes": {
    //         "CacheStaleTimeoutInSeconds": number
    //       },
    //       "ClientList": [
    //         "string"
    //       ],
    //       "DefaultStorageClass": "string",
    //       "FileShareARN": "string",
    //       "FileShareId": "string",
    //       "FileShareName": "string",
    //       "FileShareStatus": "string",
    //       "GatewayARN": "string",
    //       "GuessMIMETypeEnabled": boolean,
    //       "KMSEncrypted": boolean,
    //       "KMSKey": "string",
    //       "LocationARN": "string",
    //       "NFSFileShareDefaults": {
    //         "DirectoryMode": "string",
    //         "FileMode": "string",
    //         "GroupId": number,
    //         "OwnerId": number
    //       },
    //       "NotificationPolicy": "string",
    //       "ObjectACL": "string",
    //       "Path": "string",
    //       "ReadOnly": boolean,
    //       "RequesterPays": boolean,
    //       "Role": "string",
    //       "Squash": "string",
    //       "Tags": [
    //         {
    //           "Key": "string",
    //           "Value": "string"
    //         }
    //       ],
    //       "VPCEndpointDNSName": "string"
    //     }
    //   ]
    // }
    }