| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*
- * 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_AMQP_OPEN_MODEL_CREATEINSTANCEREQUEST_H_
- #define ALIBABACLOUD_AMQP_OPEN_MODEL_CREATEINSTANCEREQUEST_H_
- #include <alibabacloud/amqp-open/Amqp_openExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Amqp_open {
- namespace Model {
- class ALIBABACLOUD_AMQP_OPEN_EXPORT CreateInstanceRequest : public RpcServiceRequest {
- public:
- CreateInstanceRequest();
- ~CreateInstanceRequest();
- long getMaxPrivateTps() const;
- void setMaxPrivateTps(long maxPrivateTps);
- std::string getClientToken() const;
- void setClientToken(const std::string &clientToken);
- std::string getPeriodCycle() const;
- void setPeriodCycle(const std::string &periodCycle);
- int getStorageSize() const;
- void setStorageSize(int storageSize);
- int getQueueCapacity() const;
- void setQueueCapacity(int queueCapacity);
- int getTracingStorageTime() const;
- void setTracingStorageTime(int tracingStorageTime);
- int getMaxConnections() const;
- void setMaxConnections(int maxConnections);
- bool getSupportTracing() const;
- void setSupportTracing(bool supportTracing);
- std::string getInstanceType() const;
- void setInstanceType(const std::string &instanceType);
- int getAutoRenewPeriod() const;
- void setAutoRenewPeriod(int autoRenewPeriod);
- int getPeriod() const;
- void setPeriod(int period);
- bool getAutoRenew() const;
- void setAutoRenew(bool autoRenew);
- bool getSupportEip() const;
- void setSupportEip(bool supportEip);
- long getMaxEipTps() const;
- void setMaxEipTps(long maxEipTps);
- std::string getPaymentType() const;
- void setPaymentType(const std::string &paymentType);
- private:
- long maxPrivateTps_;
- std::string clientToken_;
- std::string periodCycle_;
- int storageSize_;
- int queueCapacity_;
- int tracingStorageTime_;
- int maxConnections_;
- bool supportTracing_;
- std::string instanceType_;
- int autoRenewPeriod_;
- int period_;
- bool autoRenew_;
- bool supportEip_;
- long maxEipTps_;
- std::string paymentType_;
- };
- } // namespace Model
- } // namespace Amqp_open
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_AMQP_OPEN_MODEL_CREATEINSTANCEREQUEST_H_
|