/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include #include using namespace Aws::SecretsManager::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ListSecretVersionIdsResult::ListSecretVersionIdsResult() { } ListSecretVersionIdsResult::ListSecretVersionIdsResult(const Aws::AmazonWebServiceResult& result) { *this = result; } ListSecretVersionIdsResult& ListSecretVersionIdsResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("Versions")) { Aws::Utils::Array versionsJsonList = jsonValue.GetArray("Versions"); for(unsigned versionsIndex = 0; versionsIndex < versionsJsonList.GetLength(); ++versionsIndex) { m_versions.push_back(versionsJsonList[versionsIndex].AsObject()); } } if(jsonValue.ValueExists("NextToken")) { m_nextToken = jsonValue.GetString("NextToken"); } if(jsonValue.ValueExists("ARN")) { m_aRN = jsonValue.GetString("ARN"); } if(jsonValue.ValueExists("Name")) { m_name = jsonValue.GetString("Name"); } const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); if(requestIdIter != headers.end()) { m_requestId = requestIdIter->second; } return *this; }