DescribeSMBFileShares unicodeCpp Example
#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.DescribeSMBFileShares");
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.
int AccessBasedEnumeration;
const wchar_t *AuditDestinationARN = 0;
const wchar_t *Authentication = 0;
const wchar_t *BucketRegion = 0;
int CacheStaleTimeoutInSeconds;
const wchar_t *CaseSensitivity = 0;
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 *NotificationPolicy = 0;
const wchar_t *ObjectACL = 0;
int OplocksEnabled;
const wchar_t *Path = 0;
int ReadOnly;
int RequesterPays;
const wchar_t *Role = 0;
int SMBACLEnabled;
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"SMBFileShareInfoList");
while (i < count_i) {
jResp.put_I(i);
AccessBasedEnumeration = jResp.IntOf(L"SMBFileShareInfoList[i].AccessBasedEnumeration");
AuditDestinationARN = jResp.stringOf(L"SMBFileShareInfoList[i].AuditDestinationARN");
Authentication = jResp.stringOf(L"SMBFileShareInfoList[i].Authentication");
BucketRegion = jResp.stringOf(L"SMBFileShareInfoList[i].BucketRegion");
CacheStaleTimeoutInSeconds = jResp.IntOf(L"SMBFileShareInfoList[i].CacheAttributes.CacheStaleTimeoutInSeconds");
CaseSensitivity = jResp.stringOf(L"SMBFileShareInfoList[i].CaseSensitivity");
DefaultStorageClass = jResp.stringOf(L"SMBFileShareInfoList[i].DefaultStorageClass");
FileShareARN = jResp.stringOf(L"SMBFileShareInfoList[i].FileShareARN");
FileShareId = jResp.stringOf(L"SMBFileShareInfoList[i].FileShareId");
FileShareName = jResp.stringOf(L"SMBFileShareInfoList[i].FileShareName");
FileShareStatus = jResp.stringOf(L"SMBFileShareInfoList[i].FileShareStatus");
GatewayARN = jResp.stringOf(L"SMBFileShareInfoList[i].GatewayARN");
GuessMIMETypeEnabled = jResp.IntOf(L"SMBFileShareInfoList[i].GuessMIMETypeEnabled");
KMSEncrypted = jResp.IntOf(L"SMBFileShareInfoList[i].KMSEncrypted");
KMSKey = jResp.stringOf(L"SMBFileShareInfoList[i].KMSKey");
LocationARN = jResp.stringOf(L"SMBFileShareInfoList[i].LocationARN");
NotificationPolicy = jResp.stringOf(L"SMBFileShareInfoList[i].NotificationPolicy");
ObjectACL = jResp.stringOf(L"SMBFileShareInfoList[i].ObjectACL");
OplocksEnabled = jResp.IntOf(L"SMBFileShareInfoList[i].OplocksEnabled");
Path = jResp.stringOf(L"SMBFileShareInfoList[i].Path");
ReadOnly = jResp.IntOf(L"SMBFileShareInfoList[i].ReadOnly");
RequesterPays = jResp.IntOf(L"SMBFileShareInfoList[i].RequesterPays");
Role = jResp.stringOf(L"SMBFileShareInfoList[i].Role");
SMBACLEnabled = jResp.IntOf(L"SMBFileShareInfoList[i].SMBACLEnabled");
VPCEndpointDNSName = jResp.stringOf(L"SMBFileShareInfoList[i].VPCEndpointDNSName");
j = 0;
count_j = jResp.SizeOfArray(L"SMBFileShareInfoList[i].AdminUserList");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf(L"SMBFileShareInfoList[i].AdminUserList[j]");
j = j + 1;
}
j = 0;
count_j = jResp.SizeOfArray(L"SMBFileShareInfoList[i].InvalidUserList");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf(L"SMBFileShareInfoList[i].InvalidUserList[j]");
j = j + 1;
}
j = 0;
count_j = jResp.SizeOfArray(L"SMBFileShareInfoList[i].Tags");
while (j < count_j) {
jResp.put_J(j);
Key = jResp.stringOf(L"SMBFileShareInfoList[i].Tags[j].Key");
Value = jResp.stringOf(L"SMBFileShareInfoList[i].Tags[j].Value");
j = j + 1;
}
j = 0;
count_j = jResp.SizeOfArray(L"SMBFileShareInfoList[i].ValidUserList");
while (j < count_j) {
jResp.put_J(j);
strVal = jResp.stringOf(L"SMBFileShareInfoList[i].ValidUserList[j]");
j = j + 1;
}
i = i + 1;
}
// A sample JSON response body parsed by the above code:
// {
// "SMBFileShareInfoList": [
// {
// "AccessBasedEnumeration": boolean,
// "AdminUserList": [
// "string"
// ],
// "AuditDestinationARN": "string",
// "Authentication": "string",
// "BucketRegion": "string",
// "CacheAttributes": {
// "CacheStaleTimeoutInSeconds": number
// },
// "CaseSensitivity": "string",
// "DefaultStorageClass": "string",
// "FileShareARN": "string",
// "FileShareId": "string",
// "FileShareName": "string",
// "FileShareStatus": "string",
// "GatewayARN": "string",
// "GuessMIMETypeEnabled": boolean,
// "InvalidUserList": [
// "string"
// ],
// "KMSEncrypted": boolean,
// "KMSKey": "string",
// "LocationARN": "string",
// "NotificationPolicy": "string",
// "ObjectACL": "string",
// "OplocksEnabled": boolean,
// "Path": "string",
// "ReadOnly": boolean,
// "RequesterPays": boolean,
// "Role": "string",
// "SMBACLEnabled": boolean,
// "Tags": [
// {
// "Key": "string",
// "Value": "string"
// }
// ],
// "ValidUserList": [
// "string"
// ],
// "VPCEndpointDNSName": "string"
// }
// ]
// }
}