DeploymentCommand& DeploymentCommand::operator =(const JsonValue& jsonValue) { if(jsonValue.ValueExists("Name")) { m_name = DeploymentCommandNameMapper::GetDeploymentCommandNameForName(jsonValue.GetString("Name")); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("Args")) { Aws::Map<Aws::String, JsonValue> argsJsonMap = jsonValue.GetObject("Args").GetAllObjects(); for(auto& argsItem : argsJsonMap) { Array<JsonValue> stringsJsonList = argsItem.second.AsArray(); Aws::Vector<Aws::String> stringsList; stringsList.reserve((size_t)stringsJsonList.GetLength()); for(unsigned stringsIndex = 0; stringsIndex < stringsJsonList.GetLength(); ++stringsIndex) { stringsList.push_back(stringsJsonList[stringsIndex].AsString()); } m_args[argsItem.first] = std::move(stringsList); } m_argsHasBeenSet = true; } return *this; }
AttributeValue& AttributeValue::AddSItem(const Aws::String& sItem) { if (!m_value) { Aws::Vector<Aws::String> ss; ss.push_back(sItem); m_value = Aws::MakeShared<AttributeValueStringSet>("AttributeValue", ss); } else { m_value->AddSItem(sItem); } return *this; }
AttributeValue& AttributeValue::AddBItem(const ByteBuffer& bItem) { if (!m_value) { Aws::Vector<ByteBuffer> bs; bs.push_back(bItem); m_value = Aws::MakeShared<AttributeValueByteBufferSet>("AttributeValue", bs); } else { m_value->AddBItem(bItem); } return *this; }
AttributeValue& AttributeValue::AddNItem(const Aws::String& nItem) { if (!m_value) { Aws::Vector<Aws::String> ns; ns.push_back(nItem); m_value = Aws::MakeShared<AttributeValueNumberSet>("AttributeValue", ns); } else { m_value->AddNItem(nItem); } return *this; }
Aws::Vector<Aws::String> Directory::GetAllFilePathsInDirectory(const Aws::String& path) { Aws::FileSystem::DirectoryTree tree(path); Aws::Vector<Aws::String> filesVector; auto visitor = [&](const Aws::FileSystem::DirectoryTree*, const Aws::FileSystem::DirectoryEntry& entry) { if (entry.fileType == Aws::FileSystem::FileType::File) { filesVector.push_back(entry.path); } return true; }; tree.TraverseBreadthFirst(visitor); return filesVector; }
AttributeValue& AttributeValue::AddLItem(const std::shared_ptr<AttributeValue>& listItem) { if (!m_value) { Aws::Vector<std::shared_ptr<AttributeValue>> list; list.push_back(listItem); m_value = Aws::MakeShared<AttributeValueList>("AttributeValue", list); } else { m_value->AddLItem(listItem); } return *this; }
Hit& Hit::operator =(const JsonValue& jsonValue) { if(jsonValue.ValueExists("id")) { m_id = jsonValue.GetString("id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("fields")) { Aws::Map<Aws::String, JsonValue> fieldsJsonMap = jsonValue.GetObject("fields").GetAllObjects(); for(auto& fieldsItem : fieldsJsonMap) { Array<JsonValue> fieldValueJsonList = fieldsItem.second.AsArray(); Aws::Vector<Aws::String> fieldValueList; fieldValueList.reserve((size_t)fieldValueJsonList.GetLength()); for(unsigned fieldValueIndex = 0; fieldValueIndex < fieldValueJsonList.GetLength(); ++fieldValueIndex) { fieldValueList.push_back(fieldValueJsonList[fieldValueIndex].AsString()); } m_fields[fieldsItem.first] = std::move(fieldValueList); } m_fieldsHasBeenSet = true; } if(jsonValue.ValueExists("exprs")) { Aws::Map<Aws::String, JsonValue> exprsJsonMap = jsonValue.GetObject("exprs").GetAllObjects(); for(auto& exprsItem : exprsJsonMap) { m_exprs[exprsItem.first] = exprsItem.second.AsString(); } m_exprsHasBeenSet = true; } if(jsonValue.ValueExists("highlights")) { Aws::Map<Aws::String, JsonValue> highlightsJsonMap = jsonValue.GetObject("highlights").GetAllObjects(); for(auto& highlightsItem : highlightsJsonMap) { m_highlights[highlightsItem.first] = highlightsItem.second.AsString(); } m_highlightsHasBeenSet = true; } return *this; }
Aws::Vector<Aws::String> StringUtils::SplitOnLine(const Aws::String& toSplit) { Aws::StringStream input(toSplit); Aws::Vector<Aws::String> returnValues; Aws::String item; while (std::getline(input, item)) { if (item.size() > 0) { returnValues.push_back(item); } } return std::move(returnValues); }
Aws::Vector<DeviceInfo> PulseAudioPCMOutputDriver::EnumerateDevices() const { Aws::Vector<DeviceInfo> devices; DeviceInfo deviceInfo; deviceInfo.deviceId = "0"; deviceInfo.deviceName = "default audio output device"; CapabilityInfo capabilityInfo; capabilityInfo.channels = MONO; capabilityInfo.sampleRate = KHZ_16; capabilityInfo.sampleWidthBits = BIT_WIDTH_16; deviceInfo.capabilities.push_back(capabilityInfo); capabilityInfo.sampleRate = KHZ_8; deviceInfo.capabilities.push_back(capabilityInfo); devices.push_back(deviceInfo); return devices; }
void deleteObjects(ClientPtrType client, String bucketName, String prefix, size_t num) { String base = "=== Delete Objects [" + bucketName + "/" + prefix; std::cout << base << "]: Start ===\n"; Aws::Vector<Aws::S3::Model::ObjectIdentifier> objects; for (size_t i = 0; i < num; ++i) { objects.push_back(Aws::S3::Model::ObjectIdentifier().WithKey(prefix + std::to_string(i).c_str())); } auto objReq = Aws::S3::Model::DeleteObjectsRequest(); objReq.WithBucket(bucketName).WithDelete(Aws::S3::Model::Delete().WithObjects(objects)); auto objRes = client->DeleteObjects(objReq); if (!objRes.IsSuccess()) { std::cout << base << "]: Client Side failure ===\n"; }/* if (std::get<0>(doesObjectExists(client, bucketName, key))) { std::cout << base << "]: Deletion of " << key << " Failed ===\n"; }*/ std::cout << base << "]: End ===\n\n"; }
StepExecution& StepExecution::operator =(const JsonValue& jsonValue) { if(jsonValue.ValueExists("StepName")) { m_stepName = jsonValue.GetString("StepName"); m_stepNameHasBeenSet = true; } if(jsonValue.ValueExists("Action")) { m_action = jsonValue.GetString("Action"); m_actionHasBeenSet = true; } if(jsonValue.ValueExists("ExecutionStartTime")) { m_executionStartTime = jsonValue.GetDouble("ExecutionStartTime"); m_executionStartTimeHasBeenSet = true; } if(jsonValue.ValueExists("ExecutionEndTime")) { m_executionEndTime = jsonValue.GetDouble("ExecutionEndTime"); m_executionEndTimeHasBeenSet = true; } if(jsonValue.ValueExists("StepStatus")) { m_stepStatus = AutomationExecutionStatusMapper::GetAutomationExecutionStatusForName(jsonValue.GetString("StepStatus")); m_stepStatusHasBeenSet = true; } if(jsonValue.ValueExists("ResponseCode")) { m_responseCode = jsonValue.GetString("ResponseCode"); m_responseCodeHasBeenSet = true; } if(jsonValue.ValueExists("Inputs")) { Aws::Map<Aws::String, JsonValue> inputsJsonMap = jsonValue.GetObject("Inputs").GetAllObjects(); for(auto& inputsItem : inputsJsonMap) { m_inputs[inputsItem.first] = inputsItem.second.AsString(); } m_inputsHasBeenSet = true; } if(jsonValue.ValueExists("Outputs")) { Aws::Map<Aws::String, JsonValue> outputsJsonMap = jsonValue.GetObject("Outputs").GetAllObjects(); for(auto& outputsItem : outputsJsonMap) { Array<JsonValue> automationParameterValueListJsonList = outputsItem.second.AsArray(); Aws::Vector<Aws::String> automationParameterValueListList; automationParameterValueListList.reserve((size_t)automationParameterValueListJsonList.GetLength()); for(unsigned automationParameterValueListIndex = 0; automationParameterValueListIndex < automationParameterValueListJsonList.GetLength(); ++automationParameterValueListIndex) { automationParameterValueListList.push_back(automationParameterValueListJsonList[automationParameterValueListIndex].AsString()); } m_outputs[outputsItem.first] = std::move(automationParameterValueListList); } m_outputsHasBeenSet = true; } if(jsonValue.ValueExists("Response")) { m_response = jsonValue.GetString("Response"); m_responseHasBeenSet = true; } if(jsonValue.ValueExists("FailureMessage")) { m_failureMessage = jsonValue.GetString("FailureMessage"); m_failureMessageHasBeenSet = true; } if(jsonValue.ValueExists("FailureDetails")) { m_failureDetails = jsonValue.GetObject("FailureDetails"); m_failureDetailsHasBeenSet = true; } return *this; }
TestInvokeAuthorizerResult& TestInvokeAuthorizerResult::operator =(const AmazonWebServiceResult<JsonValue>& result) { const JsonValue& jsonValue = result.GetPayload(); if(jsonValue.ValueExists("clientStatus")) { m_clientStatus = jsonValue.GetInteger("clientStatus"); } if(jsonValue.ValueExists("log")) { m_log = jsonValue.GetString("log"); } if(jsonValue.ValueExists("latency")) { m_latency = jsonValue.GetInt64("latency"); } if(jsonValue.ValueExists("principalId")) { m_principalId = jsonValue.GetString("principalId"); } if(jsonValue.ValueExists("policy")) { m_policy = jsonValue.GetString("policy"); } if(jsonValue.ValueExists("authorization")) { Aws::Map<Aws::String, JsonValue> authorizationJsonMap = jsonValue.GetObject("authorization").GetAllObjects(); for(auto& authorizationItem : authorizationJsonMap) { Array<JsonValue> listOfStringJsonList = authorizationItem.second.AsArray(); Aws::Vector<Aws::String> listOfStringList; listOfStringList.reserve((size_t)listOfStringJsonList.GetLength()); for(unsigned listOfStringIndex = 0; listOfStringIndex < listOfStringJsonList.GetLength(); ++listOfStringIndex) { listOfStringList.push_back(listOfStringJsonList[listOfStringIndex].AsString()); } m_authorization[authorizationItem.first] = std::move(listOfStringList); } } if(jsonValue.ValueExists("claims")) { Aws::Map<Aws::String, JsonValue> claimsJsonMap = jsonValue.GetObject("claims").GetAllObjects(); for(auto& claimsItem : claimsJsonMap) { m_claims[claimsItem.first] = claimsItem.second.AsString(); } } return *this; }
AutomationExecution& AutomationExecution::operator =(const JsonValue& jsonValue) { if(jsonValue.ValueExists("AutomationExecutionId")) { m_automationExecutionId = jsonValue.GetString("AutomationExecutionId"); m_automationExecutionIdHasBeenSet = true; } if(jsonValue.ValueExists("DocumentName")) { m_documentName = jsonValue.GetString("DocumentName"); m_documentNameHasBeenSet = true; } if(jsonValue.ValueExists("DocumentVersion")) { m_documentVersion = jsonValue.GetString("DocumentVersion"); m_documentVersionHasBeenSet = true; } if(jsonValue.ValueExists("ExecutionStartTime")) { m_executionStartTime = jsonValue.GetDouble("ExecutionStartTime"); m_executionStartTimeHasBeenSet = true; } if(jsonValue.ValueExists("ExecutionEndTime")) { m_executionEndTime = jsonValue.GetDouble("ExecutionEndTime"); m_executionEndTimeHasBeenSet = true; } if(jsonValue.ValueExists("AutomationExecutionStatus")) { m_automationExecutionStatus = AutomationExecutionStatusMapper::GetAutomationExecutionStatusForName(jsonValue.GetString("AutomationExecutionStatus")); m_automationExecutionStatusHasBeenSet = true; } if(jsonValue.ValueExists("StepExecutions")) { Array<JsonValue> stepExecutionsJsonList = jsonValue.GetArray("StepExecutions"); for(unsigned stepExecutionsIndex = 0; stepExecutionsIndex < stepExecutionsJsonList.GetLength(); ++stepExecutionsIndex) { m_stepExecutions.push_back(stepExecutionsJsonList[stepExecutionsIndex].AsObject()); } m_stepExecutionsHasBeenSet = true; } if(jsonValue.ValueExists("Parameters")) { Aws::Map<Aws::String, JsonValue> parametersJsonMap = jsonValue.GetObject("Parameters").GetAllObjects(); for(auto& parametersItem : parametersJsonMap) { Array<JsonValue> automationParameterValueListJsonList = parametersItem.second.AsArray(); Aws::Vector<Aws::String> automationParameterValueListList; automationParameterValueListList.reserve((size_t)automationParameterValueListJsonList.GetLength()); for(unsigned automationParameterValueListIndex = 0; automationParameterValueListIndex < automationParameterValueListJsonList.GetLength(); ++automationParameterValueListIndex) { automationParameterValueListList.push_back(automationParameterValueListJsonList[automationParameterValueListIndex].AsString()); } m_parameters[parametersItem.first] = std::move(automationParameterValueListList); } m_parametersHasBeenSet = true; } if(jsonValue.ValueExists("Outputs")) { Aws::Map<Aws::String, JsonValue> outputsJsonMap = jsonValue.GetObject("Outputs").GetAllObjects(); for(auto& outputsItem : outputsJsonMap) { Array<JsonValue> automationParameterValueListJsonList = outputsItem.second.AsArray(); Aws::Vector<Aws::String> automationParameterValueListList; automationParameterValueListList.reserve((size_t)automationParameterValueListJsonList.GetLength()); for(unsigned automationParameterValueListIndex = 0; automationParameterValueListIndex < automationParameterValueListJsonList.GetLength(); ++automationParameterValueListIndex) { automationParameterValueListList.push_back(automationParameterValueListJsonList[automationParameterValueListIndex].AsString()); } m_outputs[outputsItem.first] = std::move(automationParameterValueListList); } m_outputsHasBeenSet = true; } if(jsonValue.ValueExists("FailureMessage")) { m_failureMessage = jsonValue.GetString("FailureMessage"); m_failureMessageHasBeenSet = true; } return *this; }
TraceSummary& TraceSummary::operator =(const JsonValue& jsonValue) { if(jsonValue.ValueExists("Id")) { m_id = jsonValue.GetString("Id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("Duration")) { m_duration = jsonValue.GetDouble("Duration"); m_durationHasBeenSet = true; } if(jsonValue.ValueExists("ResponseTime")) { m_responseTime = jsonValue.GetDouble("ResponseTime"); m_responseTimeHasBeenSet = true; } if(jsonValue.ValueExists("HasFault")) { m_hasFault = jsonValue.GetBool("HasFault"); m_hasFaultHasBeenSet = true; } if(jsonValue.ValueExists("HasError")) { m_hasError = jsonValue.GetBool("HasError"); m_hasErrorHasBeenSet = true; } if(jsonValue.ValueExists("HasThrottle")) { m_hasThrottle = jsonValue.GetBool("HasThrottle"); m_hasThrottleHasBeenSet = true; } if(jsonValue.ValueExists("IsPartial")) { m_isPartial = jsonValue.GetBool("IsPartial"); m_isPartialHasBeenSet = true; } if(jsonValue.ValueExists("Http")) { m_http = jsonValue.GetObject("Http"); m_httpHasBeenSet = true; } if(jsonValue.ValueExists("Annotations")) { Aws::Map<Aws::String, JsonValue> annotationsJsonMap = jsonValue.GetObject("Annotations").GetAllObjects(); for(auto& annotationsItem : annotationsJsonMap) { Array<JsonValue> valuesWithServiceIdsJsonList = annotationsItem.second.AsArray(); Aws::Vector<ValueWithServiceIds> valuesWithServiceIdsList; valuesWithServiceIdsList.reserve((size_t)valuesWithServiceIdsJsonList.GetLength()); for(unsigned valuesWithServiceIdsIndex = 0; valuesWithServiceIdsIndex < valuesWithServiceIdsJsonList.GetLength(); ++valuesWithServiceIdsIndex) { valuesWithServiceIdsList.push_back(valuesWithServiceIdsJsonList[valuesWithServiceIdsIndex].AsObject()); } m_annotations[annotationsItem.first] = std::move(valuesWithServiceIdsList); } m_annotationsHasBeenSet = true; } if(jsonValue.ValueExists("Users")) { Array<JsonValue> usersJsonList = jsonValue.GetArray("Users"); for(unsigned usersIndex = 0; usersIndex < usersJsonList.GetLength(); ++usersIndex) { m_users.push_back(usersJsonList[usersIndex].AsObject()); } m_usersHasBeenSet = true; } if(jsonValue.ValueExists("ServiceIds")) { Array<JsonValue> serviceIdsJsonList = jsonValue.GetArray("ServiceIds"); for(unsigned serviceIdsIndex = 0; serviceIdsIndex < serviceIdsJsonList.GetLength(); ++serviceIdsIndex) { m_serviceIds.push_back(serviceIdsJsonList[serviceIdsIndex].AsObject()); } m_serviceIdsHasBeenSet = true; } return *this; }