| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * 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_OPENANALYTICS_MODEL_GETALLOWIPREQUEST_H_
- #define ALIBABACLOUD_OPENANALYTICS_MODEL_GETALLOWIPREQUEST_H_
- #include <string>
- #include <vector>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <alibabacloud/openanalytics/OpenanalyticsExport.h>
- namespace AlibabaCloud
- {
- namespace Openanalytics
- {
- namespace Model
- {
- class ALIBABACLOUD_OPENANALYTICS_EXPORT GetAllowIPRequest : public RpcServiceRequest
- {
- public:
- GetAllowIPRequest();
- ~GetAllowIPRequest();
- bool getSecurity_transport()const;
- void setSecurity_transport(bool security_transport);
- std::string getRegionID()const;
- void setRegionID(const std::string& regionID);
- std::string getRequestId()const;
- void setRequestId(const std::string& requestId);
- long getCallerParentId()const;
- void setCallerParentId(long callerParentId);
- long getCallerBid()const;
- void setCallerBid(long callerBid);
- std::string getCallerType()const;
- void setCallerType(const std::string& callerType);
- bool getAk_mfa_present()const;
- void setAk_mfa_present(bool ak_mfa_present);
- long getCallerUid()const;
- void setCallerUid(long callerUid);
- std::string getAccessKeyId()const;
- void setAccessKeyId(const std::string& accessKeyId);
- long getUserID()const;
- void setUserID(long userID);
- std::string getNetworkType()const;
- void setNetworkType(const std::string& networkType);
- private:
- bool security_transport_;
- std::string regionID_;
- std::string requestId_;
- long callerParentId_;
- long callerBid_;
- std::string callerType_;
- bool ak_mfa_present_;
- long callerUid_;
- std::string accessKeyId_;
- long userID_;
- std::string networkType_;
- };
- }
- }
- }
- #endif // !ALIBABACLOUD_OPENANALYTICS_MODEL_GETALLOWIPREQUEST_H_
|