GetWirelessCloudConnectorResult.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_CC5G_MODEL_GETWIRELESSCLOUDCONNECTORRESULT_H_
  17. #define ALIBABACLOUD_CC5G_MODEL_GETWIRELESSCLOUDCONNECTORRESULT_H_
  18. #include <string>
  19. #include <vector>
  20. #include <utility>
  21. #include <alibabacloud/core/ServiceResult.h>
  22. #include <alibabacloud/cc5g/CC5GExport.h>
  23. namespace AlibabaCloud
  24. {
  25. namespace CC5G
  26. {
  27. namespace Model
  28. {
  29. class ALIBABACLOUD_CC5G_EXPORT GetWirelessCloudConnectorResult : public ServiceResult
  30. {
  31. public:
  32. struct NetLink
  33. {
  34. std::string status;
  35. std::vector<std::string> vSwitchs;
  36. std::string type;
  37. std::string description;
  38. std::string vpcId;
  39. std::string iSP;
  40. std::string createTime;
  41. std::string regionId;
  42. std::string netLinkId;
  43. std::string grantAliUid;
  44. std::string name;
  45. std::string aPN;
  46. };
  47. GetWirelessCloudConnectorResult();
  48. explicit GetWirelessCloudConnectorResult(const std::string &payload);
  49. ~GetWirelessCloudConnectorResult();
  50. std::string getStatus()const;
  51. std::string getDataPackageType()const;
  52. std::string getDescription()const;
  53. std::string getCreateTime()const;
  54. std::string getBusinessType()const;
  55. std::string getUseCase()const;
  56. std::string getWirelessCloudConnectorGroupId()const;
  57. std::string getName()const;
  58. std::string getWirelessCloudConnectorId()const;
  59. std::string getCardCount()const;
  60. std::string getServiceType()const;
  61. std::vector<std::string> getFeatures()const;
  62. std::string getDataPackageId()const;
  63. std::string getRegionId()const;
  64. std::vector<NetLink> getNetLinks()const;
  65. protected:
  66. void parse(const std::string &payload);
  67. private:
  68. std::string status_;
  69. std::string dataPackageType_;
  70. std::string description_;
  71. std::string createTime_;
  72. std::string businessType_;
  73. std::string useCase_;
  74. std::string wirelessCloudConnectorGroupId_;
  75. std::string name_;
  76. std::string wirelessCloudConnectorId_;
  77. std::string cardCount_;
  78. std::string serviceType_;
  79. std::vector<std::string> features_;
  80. std::string dataPackageId_;
  81. std::string regionId_;
  82. std::vector<NetLink> netLinks_;
  83. };
  84. }
  85. }
  86. }
  87. #endif // !ALIBABACLOUD_CC5G_MODEL_GETWIRELESSCLOUDCONNECTORRESULT_H_