| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <alibabacloud/ecs/model/DescribeNetworkInterfaceAttributeResult.h>
- #include <json/json.h>
- using namespace AlibabaCloud::Ecs;
- using namespace AlibabaCloud::Ecs::Model;
- DescribeNetworkInterfaceAttributeResult::DescribeNetworkInterfaceAttributeResult() :
- ServiceResult()
- {}
- DescribeNetworkInterfaceAttributeResult::DescribeNetworkInterfaceAttributeResult(const std::string &payload) :
- ServiceResult()
- {
- parse(payload);
- }
- DescribeNetworkInterfaceAttributeResult::~DescribeNetworkInterfaceAttributeResult()
- {}
- void DescribeNetworkInterfaceAttributeResult::parse(const std::string &payload)
- {
- Json::Reader reader;
- Json::Value value;
- reader.parse(payload, value);
- setRequestId(value["RequestId"].asString());
- auto allPrivateIpSetsNode = value["PrivateIpSets"]["PrivateIpSet"];
- for (auto valuePrivateIpSetsPrivateIpSet : allPrivateIpSetsNode)
- {
- PrivateIpSet privateIpSetsObject;
- if(!valuePrivateIpSetsPrivateIpSet["PrivateIpAddress"].isNull())
- privateIpSetsObject.privateIpAddress = valuePrivateIpSetsPrivateIpSet["PrivateIpAddress"].asString();
- if(!valuePrivateIpSetsPrivateIpSet["Primary"].isNull())
- privateIpSetsObject.primary = valuePrivateIpSetsPrivateIpSet["Primary"].asString() == "true";
- auto associatedPublicIp1Node = value["AssociatedPublicIp"];
- if(!associatedPublicIp1Node["PublicIpAddress"].isNull())
- privateIpSetsObject.associatedPublicIp1.publicIpAddress = associatedPublicIp1Node["PublicIpAddress"].asString();
- if(!associatedPublicIp1Node["AllocationId"].isNull())
- privateIpSetsObject.associatedPublicIp1.allocationId = associatedPublicIp1Node["AllocationId"].asString();
- privateIpSets_.push_back(privateIpSetsObject);
- }
- auto allIpv6SetsNode = value["Ipv6Sets"]["Ipv6Set"];
- for (auto valueIpv6SetsIpv6Set : allIpv6SetsNode)
- {
- Ipv6Set ipv6SetsObject;
- if(!valueIpv6SetsIpv6Set["Ipv6Address"].isNull())
- ipv6SetsObject.ipv6Address = valueIpv6SetsIpv6Set["Ipv6Address"].asString();
- ipv6Sets_.push_back(ipv6SetsObject);
- }
- auto allIpv4PrefixSetsNode = value["Ipv4PrefixSets"]["Ipv4PrefixSet"];
- for (auto valueIpv4PrefixSetsIpv4PrefixSet : allIpv4PrefixSetsNode)
- {
- Ipv4PrefixSet ipv4PrefixSetsObject;
- if(!valueIpv4PrefixSetsIpv4PrefixSet["Ipv4Prefix"].isNull())
- ipv4PrefixSetsObject.ipv4Prefix = valueIpv4PrefixSetsIpv4PrefixSet["Ipv4Prefix"].asString();
- ipv4PrefixSets_.push_back(ipv4PrefixSetsObject);
- }
- auto allIpv6PrefixSetsNode = value["Ipv6PrefixSets"]["Ipv6PrefixSet"];
- for (auto valueIpv6PrefixSetsIpv6PrefixSet : allIpv6PrefixSetsNode)
- {
- Ipv6PrefixSet ipv6PrefixSetsObject;
- if(!valueIpv6PrefixSetsIpv6PrefixSet["Ipv6Prefix"].isNull())
- ipv6PrefixSetsObject.ipv6Prefix = valueIpv6PrefixSetsIpv6PrefixSet["Ipv6Prefix"].asString();
- ipv6PrefixSets_.push_back(ipv6PrefixSetsObject);
- }
- auto allTagsNode = value["Tags"]["Tag"];
- for (auto valueTagsTag : allTagsNode)
- {
- Tag tagsObject;
- if(!valueTagsTag["TagValue"].isNull())
- tagsObject.tagValue = valueTagsTag["TagValue"].asString();
- if(!valueTagsTag["TagKey"].isNull())
- tagsObject.tagKey = valueTagsTag["TagKey"].asString();
- tags_.push_back(tagsObject);
- }
- auto associatedPublicIpNode = value["AssociatedPublicIp"];
- if(!associatedPublicIpNode["PublicIpAddress"].isNull())
- associatedPublicIp_.publicIpAddress = associatedPublicIpNode["PublicIpAddress"].asString();
- if(!associatedPublicIpNode["AllocationId"].isNull())
- associatedPublicIp_.allocationId = associatedPublicIpNode["AllocationId"].asString();
- auto attachmentNode = value["Attachment"];
- if(!attachmentNode["DeviceIndex"].isNull())
- attachment_.deviceIndex = std::stoi(attachmentNode["DeviceIndex"].asString());
- if(!attachmentNode["InstanceId"].isNull())
- attachment_.instanceId = attachmentNode["InstanceId"].asString();
- if(!attachmentNode["TrunkNetworkInterfaceId"].isNull())
- attachment_.trunkNetworkInterfaceId = attachmentNode["TrunkNetworkInterfaceId"].asString();
- if(!attachmentNode["NetworkCardIndex"].isNull())
- attachment_.networkCardIndex = std::stoi(attachmentNode["NetworkCardIndex"].asString());
- auto allMemberNetworkInterfaceIds = attachmentNode["MemberNetworkInterfaceIds"]["MemberNetworkInterfaceId"];
- for (auto value : allMemberNetworkInterfaceIds)
- attachment_.memberNetworkInterfaceIds.push_back(value.asString());
- auto bondInterfaceSpecificationNode = value["BondInterfaceSpecification"];
- if(!bondInterfaceSpecificationNode["BondMode"].isNull())
- bondInterfaceSpecification_.bondMode = bondInterfaceSpecificationNode["BondMode"].asString();
- auto allSlaveInterfaceSpecification2Node = bondInterfaceSpecificationNode["SlaveInterfaceSpecification"]["SlaveInterfaceSpecificationSet"];
- for (auto bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet : allSlaveInterfaceSpecification2Node)
- {
- BondInterfaceSpecification::SlaveInterfaceSpecificationSet slaveInterfaceSpecificationSetObject;
- if(!bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet["SlaveNetworkInterfaceId"].isNull())
- slaveInterfaceSpecificationSetObject.slaveNetworkInterfaceId = bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet["SlaveNetworkInterfaceId"].asString();
- if(!bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet["WorkState"].isNull())
- slaveInterfaceSpecificationSetObject.workState = bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet["WorkState"].asString();
- if(!bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet["BondNetworkInterfaceId"].isNull())
- slaveInterfaceSpecificationSetObject.bondNetworkInterfaceId = bondInterfaceSpecificationNodeSlaveInterfaceSpecificationSlaveInterfaceSpecificationSet["BondNetworkInterfaceId"].asString();
- bondInterfaceSpecification_.slaveInterfaceSpecification2.push_back(slaveInterfaceSpecificationSetObject);
- }
- auto slaveInterfaceSpecificationNode = value["SlaveInterfaceSpecification"];
- if(!slaveInterfaceSpecificationNode["SlaveNetworkInterfaceId"].isNull())
- slaveInterfaceSpecification_.slaveNetworkInterfaceId = slaveInterfaceSpecificationNode["SlaveNetworkInterfaceId"].asString();
- if(!slaveInterfaceSpecificationNode["WorkState"].isNull())
- slaveInterfaceSpecification_.workState = slaveInterfaceSpecificationNode["WorkState"].asString();
- if(!slaveInterfaceSpecificationNode["BondNetworkInterfaceId"].isNull())
- slaveInterfaceSpecification_.bondNetworkInterfaceId = slaveInterfaceSpecificationNode["BondNetworkInterfaceId"].asString();
- auto networkInterfaceTrafficConfigNode = value["NetworkInterfaceTrafficConfig"];
- if(!networkInterfaceTrafficConfigNode["NetworkInterfaceTrafficMode"].isNull())
- networkInterfaceTrafficConfig_.networkInterfaceTrafficMode = networkInterfaceTrafficConfigNode["NetworkInterfaceTrafficMode"].asString();
- if(!networkInterfaceTrafficConfigNode["QueueNumber"].isNull())
- networkInterfaceTrafficConfig_.queueNumber = std::stoi(networkInterfaceTrafficConfigNode["QueueNumber"].asString());
- if(!networkInterfaceTrafficConfigNode["QueuePairNumber"].isNull())
- networkInterfaceTrafficConfig_.queuePairNumber = std::stoi(networkInterfaceTrafficConfigNode["QueuePairNumber"].asString());
- auto connectionTrackingConfigurationNode = value["ConnectionTrackingConfiguration"];
- if(!connectionTrackingConfigurationNode["TcpEstablishedTimeout"].isNull())
- connectionTrackingConfiguration_.tcpEstablishedTimeout = std::stoi(connectionTrackingConfigurationNode["TcpEstablishedTimeout"].asString());
- if(!connectionTrackingConfigurationNode["TcpClosedAndTimeWaitTimeout"].isNull())
- connectionTrackingConfiguration_.tcpClosedAndTimeWaitTimeout = std::stoi(connectionTrackingConfigurationNode["TcpClosedAndTimeWaitTimeout"].asString());
- if(!connectionTrackingConfigurationNode["UdpTimeout"].isNull())
- connectionTrackingConfiguration_.udpTimeout = std::stoi(connectionTrackingConfigurationNode["UdpTimeout"].asString());
- auto enhancedNetworkNode = value["EnhancedNetwork"];
- if(!enhancedNetworkNode["EnableSriov"].isNull())
- enhancedNetwork_.enableSriov = enhancedNetworkNode["EnableSriov"].asString() == "true";
- auto allSecurityGroupIds = value["SecurityGroupIds"]["SecurityGroupId"];
- for (const auto &item : allSecurityGroupIds)
- securityGroupIds_.push_back(item.asString());
- if(!value["CreationTime"].isNull())
- creationTime_ = value["CreationTime"].asString();
- if(!value["VpcId"].isNull())
- vpcId_ = value["VpcId"].asString();
- if(!value["Type"].isNull())
- type_ = value["Type"].asString();
- if(!value["Status"].isNull())
- status_ = value["Status"].asString();
- if(!value["NetworkInterfaceTrafficMode"].isNull())
- networkInterfaceTrafficMode_ = value["NetworkInterfaceTrafficMode"].asString();
- if(!value["NetworkInterfaceName"].isNull())
- networkInterfaceName_ = value["NetworkInterfaceName"].asString();
- if(!value["MacAddress"].isNull())
- macAddress_ = value["MacAddress"].asString();
- if(!value["QueuePairNumber"].isNull())
- queuePairNumber_ = std::stoi(value["QueuePairNumber"].asString());
- if(!value["NetworkInterfaceId"].isNull())
- networkInterfaceId_ = value["NetworkInterfaceId"].asString();
- if(!value["ServiceID"].isNull())
- serviceID_ = std::stol(value["ServiceID"].asString());
- if(!value["InstanceId"].isNull())
- instanceId_ = value["InstanceId"].asString();
- if(!value["OwnerId"].isNull())
- ownerId_ = value["OwnerId"].asString();
- if(!value["ServiceManaged"].isNull())
- serviceManaged_ = value["ServiceManaged"].asString() == "true";
- if(!value["VSwitchId"].isNull())
- vSwitchId_ = value["VSwitchId"].asString();
- if(!value["Description"].isNull())
- description_ = value["Description"].asString();
- if(!value["ResourceGroupId"].isNull())
- resourceGroupId_ = value["ResourceGroupId"].asString();
- if(!value["ZoneId"].isNull())
- zoneId_ = value["ZoneId"].asString();
- if(!value["PrivateIpAddress"].isNull())
- privateIpAddress_ = value["PrivateIpAddress"].asString();
- if(!value["QueueNumber"].isNull())
- queueNumber_ = std::stoi(value["QueueNumber"].asString());
- if(!value["DeleteOnRelease"].isNull())
- deleteOnRelease_ = value["DeleteOnRelease"].asString() == "true";
- if(!value["TcpOptionAddressEnabled"].isNull())
- tcpOptionAddressEnabled_ = value["TcpOptionAddressEnabled"].asString();
- if(!value["SourceDestCheck"].isNull())
- sourceDestCheck_ = value["SourceDestCheck"].asString() == "true";
- }
- std::string DescribeNetworkInterfaceAttributeResult::getDescription()const
- {
- return description_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getPrivateIpAddress()const
- {
- return privateIpAddress_;
- }
- bool DescribeNetworkInterfaceAttributeResult::getServiceManaged()const
- {
- return serviceManaged_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getResourceGroupId()const
- {
- return resourceGroupId_;
- }
- bool DescribeNetworkInterfaceAttributeResult::getDeleteOnRelease()const
- {
- return deleteOnRelease_;
- }
- DescribeNetworkInterfaceAttributeResult::Attachment DescribeNetworkInterfaceAttributeResult::getAttachment()const
- {
- return attachment_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getNetworkInterfaceId()const
- {
- return networkInterfaceId_;
- }
- DescribeNetworkInterfaceAttributeResult::EnhancedNetwork DescribeNetworkInterfaceAttributeResult::getEnhancedNetwork()const
- {
- return enhancedNetwork_;
- }
- std::vector<DescribeNetworkInterfaceAttributeResult::Ipv6Set> DescribeNetworkInterfaceAttributeResult::getIpv6Sets()const
- {
- return ipv6Sets_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getOwnerId()const
- {
- return ownerId_;
- }
- DescribeNetworkInterfaceAttributeResult::AssociatedPublicIp DescribeNetworkInterfaceAttributeResult::getAssociatedPublicIp()const
- {
- return associatedPublicIp_;
- }
- std::vector<DescribeNetworkInterfaceAttributeResult::Tag> DescribeNetworkInterfaceAttributeResult::getTags()const
- {
- return tags_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getStatus()const
- {
- return status_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getNetworkInterfaceTrafficMode()const
- {
- return networkInterfaceTrafficMode_;
- }
- DescribeNetworkInterfaceAttributeResult::SlaveInterfaceSpecification DescribeNetworkInterfaceAttributeResult::getSlaveInterfaceSpecification()const
- {
- return slaveInterfaceSpecification_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getZoneId()const
- {
- return zoneId_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getInstanceId()const
- {
- return instanceId_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getVSwitchId()const
- {
- return vSwitchId_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getNetworkInterfaceName()const
- {
- return networkInterfaceName_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getMacAddress()const
- {
- return macAddress_;
- }
- std::vector<std::string> DescribeNetworkInterfaceAttributeResult::getSecurityGroupIds()const
- {
- return securityGroupIds_;
- }
- long DescribeNetworkInterfaceAttributeResult::getServiceID()const
- {
- return serviceID_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getTcpOptionAddressEnabled()const
- {
- return tcpOptionAddressEnabled_;
- }
- bool DescribeNetworkInterfaceAttributeResult::getSourceDestCheck()const
- {
- return sourceDestCheck_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getType()const
- {
- return type_;
- }
- int DescribeNetworkInterfaceAttributeResult::getQueuePairNumber()const
- {
- return queuePairNumber_;
- }
- int DescribeNetworkInterfaceAttributeResult::getQueueNumber()const
- {
- return queueNumber_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getVpcId()const
- {
- return vpcId_;
- }
- std::vector<DescribeNetworkInterfaceAttributeResult::Ipv6PrefixSet> DescribeNetworkInterfaceAttributeResult::getIpv6PrefixSets()const
- {
- return ipv6PrefixSets_;
- }
- DescribeNetworkInterfaceAttributeResult::BondInterfaceSpecification DescribeNetworkInterfaceAttributeResult::getBondInterfaceSpecification()const
- {
- return bondInterfaceSpecification_;
- }
- std::string DescribeNetworkInterfaceAttributeResult::getCreationTime()const
- {
- return creationTime_;
- }
- DescribeNetworkInterfaceAttributeResult::NetworkInterfaceTrafficConfig DescribeNetworkInterfaceAttributeResult::getNetworkInterfaceTrafficConfig()const
- {
- return networkInterfaceTrafficConfig_;
- }
- DescribeNetworkInterfaceAttributeResult::ConnectionTrackingConfiguration DescribeNetworkInterfaceAttributeResult::getConnectionTrackingConfiguration()const
- {
- return connectionTrackingConfiguration_;
- }
- std::vector<DescribeNetworkInterfaceAttributeResult::Ipv4PrefixSet> DescribeNetworkInterfaceAttributeResult::getIpv4PrefixSets()const
- {
- return ipv4PrefixSets_;
- }
- std::vector<DescribeNetworkInterfaceAttributeResult::PrivateIpSet> DescribeNetworkInterfaceAttributeResult::getPrivateIpSets()const
- {
- return privateIpSets_;
- }
|