UpdateSiteRackPhysicalProperties 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"outposts");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws);
// URL: https://outposts.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect(L"outposts.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"FiberOpticCableType",L"string");
json.UpdateString(L"MaximumSupportedWeightLbs",L"string");
json.UpdateString(L"OpticalStandard",L"string");
json.UpdateString(L"PowerConnector",L"string");
json.UpdateString(L"PowerDrawKva",L"string");
json.UpdateString(L"PowerFeedDrop",L"string");
json.UpdateString(L"PowerPhase",L"string");
json.UpdateString(L"UplinkCount",L"string");
json.UpdateString(L"UplinkGbps",L"string");
// The JSON request body created by the above code:
// {
// "FiberOpticCableType": "string",
// "MaximumSupportedWeightLbs": "string",
// "OpticalStandard": "string",
// "PowerConnector": "string",
// "PowerDrawKva": "string",
// "PowerFeedDrop": "string",
// "PowerPhase": "string",
// "UplinkCount": "string",
// "UplinkGbps": "string"
// }
rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.1");
rest.AddHeader(L"X-Amz-Target",L"UpdateSiteRackPhysicalProperties");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
CkStringBuilderW sbResponseBody;
success = rest.FullRequestSb(L"PATCH",L"/sites/{SiteId}/rackPhysicalProperties",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 *AccountId = jResp.stringOf(L"Site.AccountId");
const wchar_t *Description = jResp.stringOf(L"Site.Description");
const wchar_t *Name = jResp.stringOf(L"Site.Name");
const wchar_t *Notes = jResp.stringOf(L"Site.Notes");
const wchar_t *OperatingAddressCity = jResp.stringOf(L"Site.OperatingAddressCity");
const wchar_t *OperatingAddressCountryCode = jResp.stringOf(L"Site.OperatingAddressCountryCode");
const wchar_t *OperatingAddressStateOrRegion = jResp.stringOf(L"Site.OperatingAddressStateOrRegion");
const wchar_t *FiberOpticCableType = jResp.stringOf(L"Site.RackPhysicalProperties.FiberOpticCableType");
const wchar_t *MaximumSupportedWeightLbs = jResp.stringOf(L"Site.RackPhysicalProperties.MaximumSupportedWeightLbs");
const wchar_t *OpticalStandard = jResp.stringOf(L"Site.RackPhysicalProperties.OpticalStandard");
const wchar_t *PowerConnector = jResp.stringOf(L"Site.RackPhysicalProperties.PowerConnector");
const wchar_t *PowerDrawKva = jResp.stringOf(L"Site.RackPhysicalProperties.PowerDrawKva");
const wchar_t *PowerFeedDrop = jResp.stringOf(L"Site.RackPhysicalProperties.PowerFeedDrop");
const wchar_t *PowerPhase = jResp.stringOf(L"Site.RackPhysicalProperties.PowerPhase");
const wchar_t *UplinkCount = jResp.stringOf(L"Site.RackPhysicalProperties.UplinkCount");
const wchar_t *UplinkGbps = jResp.stringOf(L"Site.RackPhysicalProperties.UplinkGbps");
const wchar_t *SiteArn = jResp.stringOf(L"Site.SiteArn");
const wchar_t *SiteId = jResp.stringOf(L"Site.SiteId");
const wchar_t *v_String = jResp.stringOf(L"Site.Tags.string");
// A sample JSON response body parsed by the above code:
// {
// "Site": {
// "AccountId": "string",
// "Description": "string",
// "Name": "string",
// "Notes": "string",
// "OperatingAddressCity": "string",
// "OperatingAddressCountryCode": "string",
// "OperatingAddressStateOrRegion": "string",
// "RackPhysicalProperties": {
// "FiberOpticCableType": "string",
// "MaximumSupportedWeightLbs": "string",
// "OpticalStandard": "string",
// "PowerConnector": "string",
// "PowerDrawKva": "string",
// "PowerFeedDrop": "string",
// "PowerPhase": "string",
// "UplinkCount": "string",
// "UplinkGbps": "string"
// },
// "SiteArn": "string",
// "SiteId": "string",
// "Tags": {
// "string": "string"
// }
// }
// }
}