ModifyDomainRequest.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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_WAF_OPENAPI_MODEL_MODIFYDOMAINREQUEST_H_
  17. #define ALIBABACLOUD_WAF_OPENAPI_MODEL_MODIFYDOMAINREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/core/RpcServiceRequest.h>
  21. #include <alibabacloud/waf-openapi/Waf_openapiExport.h>
  22. namespace AlibabaCloud
  23. {
  24. namespace Waf_openapi
  25. {
  26. namespace Model
  27. {
  28. class ALIBABACLOUD_WAF_OPENAPI_EXPORT ModifyDomainRequest : public RpcServiceRequest
  29. {
  30. public:
  31. ModifyDomainRequest();
  32. ~ModifyDomainRequest();
  33. std::string getSourceIp()const;
  34. void setSourceIp(const std::string& sourceIp);
  35. int getXffHeaderMode()const;
  36. void setXffHeaderMode(int xffHeaderMode);
  37. std::string getHttpPort()const;
  38. void setHttpPort(const std::string& httpPort);
  39. std::string getHttp2Port()const;
  40. void setHttp2Port(const std::string& http2Port);
  41. int getWriteTime()const;
  42. void setWriteTime(int writeTime);
  43. std::string getLang()const;
  44. void setLang(const std::string& lang);
  45. std::string getXffHeaders()const;
  46. void setXffHeaders(const std::string& xffHeaders);
  47. int getBindingIpv6()const;
  48. void setBindingIpv6(int bindingIpv6);
  49. std::string getLogHeaders()const;
  50. void setLogHeaders(const std::string& logHeaders);
  51. int getConnectionTime()const;
  52. void setConnectionTime(int connectionTime);
  53. int getClusterType()const;
  54. void setClusterType(int clusterType);
  55. int getHttpsRedirect()const;
  56. void setHttpsRedirect(int httpsRedirect);
  57. std::string getInstanceId()const;
  58. void setInstanceId(const std::string& instanceId);
  59. std::string getSourceIps()const;
  60. void setSourceIps(const std::string& sourceIps);
  61. std::string getDomain()const;
  62. void setDomain(const std::string& domain);
  63. int getIsAccessProduct()const;
  64. void setIsAccessProduct(int isAccessProduct);
  65. int getReadTime()const;
  66. void setReadTime(int readTime);
  67. std::string getHttpsPort()const;
  68. void setHttpsPort(const std::string& httpsPort);
  69. int getLoadBalancing()const;
  70. void setLoadBalancing(int loadBalancing);
  71. int getHttpToUserIp()const;
  72. void setHttpToUserIp(int httpToUserIp);
  73. private:
  74. std::string sourceIp_;
  75. int xffHeaderMode_;
  76. std::string httpPort_;
  77. std::string http2Port_;
  78. int writeTime_;
  79. std::string lang_;
  80. std::string xffHeaders_;
  81. int bindingIpv6_;
  82. std::string logHeaders_;
  83. int connectionTime_;
  84. int clusterType_;
  85. int httpsRedirect_;
  86. std::string instanceId_;
  87. std::string sourceIps_;
  88. std::string domain_;
  89. int isAccessProduct_;
  90. int readTime_;
  91. std::string httpsPort_;
  92. int loadBalancing_;
  93. int httpToUserIp_;
  94. };
  95. }
  96. }
  97. }
  98. #endif // !ALIBABACLOUD_WAF_OPENAPI_MODEL_MODIFYDOMAINREQUEST_H_