| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /*
- * 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.
- */
- #ifndef ALIBABACLOUD_WAF_OPENAPI_MODEL_MODIFYDOMAINREQUEST_H_
- #define ALIBABACLOUD_WAF_OPENAPI_MODEL_MODIFYDOMAINREQUEST_H_
- #include <string>
- #include <vector>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <alibabacloud/waf-openapi/Waf_openapiExport.h>
- namespace AlibabaCloud
- {
- namespace Waf_openapi
- {
- namespace Model
- {
- class ALIBABACLOUD_WAF_OPENAPI_EXPORT ModifyDomainRequest : public RpcServiceRequest
- {
- public:
- ModifyDomainRequest();
- ~ModifyDomainRequest();
- std::string getSourceIp()const;
- void setSourceIp(const std::string& sourceIp);
- int getXffHeaderMode()const;
- void setXffHeaderMode(int xffHeaderMode);
- std::string getHttpPort()const;
- void setHttpPort(const std::string& httpPort);
- std::string getHttp2Port()const;
- void setHttp2Port(const std::string& http2Port);
- int getWriteTime()const;
- void setWriteTime(int writeTime);
- std::string getLang()const;
- void setLang(const std::string& lang);
- std::string getXffHeaders()const;
- void setXffHeaders(const std::string& xffHeaders);
- int getBindingIpv6()const;
- void setBindingIpv6(int bindingIpv6);
- std::string getLogHeaders()const;
- void setLogHeaders(const std::string& logHeaders);
- int getConnectionTime()const;
- void setConnectionTime(int connectionTime);
- int getClusterType()const;
- void setClusterType(int clusterType);
- int getHttpsRedirect()const;
- void setHttpsRedirect(int httpsRedirect);
- std::string getInstanceId()const;
- void setInstanceId(const std::string& instanceId);
- std::string getSourceIps()const;
- void setSourceIps(const std::string& sourceIps);
- std::string getDomain()const;
- void setDomain(const std::string& domain);
- int getIsAccessProduct()const;
- void setIsAccessProduct(int isAccessProduct);
- int getReadTime()const;
- void setReadTime(int readTime);
- std::string getHttpsPort()const;
- void setHttpsPort(const std::string& httpsPort);
- int getLoadBalancing()const;
- void setLoadBalancing(int loadBalancing);
- int getHttpToUserIp()const;
- void setHttpToUserIp(int httpToUserIp);
- private:
- std::string sourceIp_;
- int xffHeaderMode_;
- std::string httpPort_;
- std::string http2Port_;
- int writeTime_;
- std::string lang_;
- std::string xffHeaders_;
- int bindingIpv6_;
- std::string logHeaders_;
- int connectionTime_;
- int clusterType_;
- int httpsRedirect_;
- std::string instanceId_;
- std::string sourceIps_;
- std::string domain_;
- int isAccessProduct_;
- int readTime_;
- std::string httpsPort_;
- int loadBalancing_;
- int httpToUserIp_;
- };
- }
- }
- }
- #endif // !ALIBABACLOUD_WAF_OPENAPI_MODEL_MODIFYDOMAINREQUEST_H_
|