/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/directconnect/model/CreateInterconnectResult.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #include <aws/core/utils/UnreferencedParam.h> #include <aws/core/utils/memory/stl/AWSStringStream.h> #include <utility> using namespace Aws::DirectConnect::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; CreateInterconnectResult::CreateInterconnectResult() : m_interconnectState(InterconnectState::NOT_SET), m_jumboFrameCapable(false), m_hasLogicalRedundancy(HasLogicalRedundancy::NOT_SET) { } CreateInterconnectResult::CreateInterconnectResult(const Aws::AmazonWebServiceResult<JsonValue>& result) : m_interconnectState(InterconnectState::NOT_SET), m_jumboFrameCapable(false), m_hasLogicalRedundancy(HasLogicalRedundancy::NOT_SET) { *this = result; } CreateInterconnectResult& CreateInterconnectResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("interconnectId")) { m_interconnectId = jsonValue.GetString("interconnectId"); } if(jsonValue.ValueExists("interconnectName")) { m_interconnectName = jsonValue.GetString("interconnectName"); } if(jsonValue.ValueExists("interconnectState")) { m_interconnectState = InterconnectStateMapper::GetInterconnectStateForName(jsonValue.GetString("interconnectState")); } if(jsonValue.ValueExists("region")) { m_region = jsonValue.GetString("region"); } if(jsonValue.ValueExists("location")) { m_location = jsonValue.GetString("location"); } if(jsonValue.ValueExists("bandwidth")) { m_bandwidth = jsonValue.GetString("bandwidth"); } if(jsonValue.ValueExists("loaIssueTime")) { m_loaIssueTime = jsonValue.GetDouble("loaIssueTime"); } if(jsonValue.ValueExists("lagId")) { m_lagId = jsonValue.GetString("lagId"); } if(jsonValue.ValueExists("awsDevice")) { m_awsDevice = jsonValue.GetString("awsDevice"); } if(jsonValue.ValueExists("jumboFrameCapable")) { m_jumboFrameCapable = jsonValue.GetBool("jumboFrameCapable"); } if(jsonValue.ValueExists("awsDeviceV2")) { m_awsDeviceV2 = jsonValue.GetString("awsDeviceV2"); } if(jsonValue.ValueExists("awsLogicalDeviceId")) { m_awsLogicalDeviceId = jsonValue.GetString("awsLogicalDeviceId"); } if(jsonValue.ValueExists("hasLogicalRedundancy")) { m_hasLogicalRedundancy = HasLogicalRedundancyMapper::GetHasLogicalRedundancyForName(jsonValue.GetString("hasLogicalRedundancy")); } if(jsonValue.ValueExists("tags")) { Aws::Utils::Array<JsonView> tagsJsonList = jsonValue.GetArray("tags"); for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex) { m_tags.push_back(tagsJsonList[tagsIndex].AsObject()); } } if(jsonValue.ValueExists("providerName")) { m_providerName = jsonValue.GetString("providerName"); } const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); if(requestIdIter != headers.end()) { m_requestId = requestIdIter->second; } return *this; }