CreateSimpleOfficeSiteRequest.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_ECD_MODEL_CREATESIMPLEOFFICESITEREQUEST_H_
  17. #define ALIBABACLOUD_ECD_MODEL_CREATESIMPLEOFFICESITEREQUEST_H_
  18. #include <alibabacloud/ecd/EcdExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Ecd {
  25. namespace Model {
  26. class ALIBABACLOUD_ECD_EXPORT CreateSimpleOfficeSiteRequest : public RpcServiceRequest {
  27. public:
  28. CreateSimpleOfficeSiteRequest();
  29. ~CreateSimpleOfficeSiteRequest();
  30. std::string getCenId() const;
  31. void setCenId(const std::string &cenId);
  32. long getCenOwnerId() const;
  33. void setCenOwnerId(long cenOwnerId);
  34. bool getEnableInternetAccess() const;
  35. void setEnableInternetAccess(bool enableInternetAccess);
  36. std::string getVerifyCode() const;
  37. void setVerifyCode(const std::string &verifyCode);
  38. bool getNeedVerifyZeroDevice() const;
  39. void setNeedVerifyZeroDevice(bool needVerifyZeroDevice);
  40. std::string getRegionId() const;
  41. void setRegionId(const std::string &regionId);
  42. bool getEnableAdminAccess() const;
  43. void setEnableAdminAccess(bool enableAdminAccess);
  44. int getBandwidth() const;
  45. void setBandwidth(int bandwidth);
  46. std::string getDesktopAccessType() const;
  47. void setDesktopAccessType(const std::string &desktopAccessType);
  48. std::string getOfficeSiteName() const;
  49. void setOfficeSiteName(const std::string &officeSiteName);
  50. bool getCloudBoxOfficeSite() const;
  51. void setCloudBoxOfficeSite(bool cloudBoxOfficeSite);
  52. std::vector<std::string> getVSwitchId() const;
  53. void setVSwitchId(const std::vector<std::string> &vSwitchId);
  54. std::string getCidrBlock() const;
  55. void setCidrBlock(const std::string &cidrBlock);
  56. private:
  57. std::string cenId_;
  58. long cenOwnerId_;
  59. bool enableInternetAccess_;
  60. std::string verifyCode_;
  61. bool needVerifyZeroDevice_;
  62. std::string regionId_;
  63. bool enableAdminAccess_;
  64. int bandwidth_;
  65. std::string desktopAccessType_;
  66. std::string officeSiteName_;
  67. bool cloudBoxOfficeSite_;
  68. std::vector<std::string> vSwitchId_;
  69. std::string cidrBlock_;
  70. };
  71. } // namespace Model
  72. } // namespace Ecd
  73. } // namespace AlibabaCloud
  74. #endif // !ALIBABACLOUD_ECD_MODEL_CREATESIMPLEOFFICESITEREQUEST_H_