61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
/*
|
|
* 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_APPSTREAM_CENTER_MODEL_GETRESOURCEPRICEREQUEST_H_
|
|
#define ALIBABACLOUD_APPSTREAM_CENTER_MODEL_GETRESOURCEPRICEREQUEST_H_
|
|
|
|
#include <alibabacloud/appstream-center/Appstream_centerExport.h>
|
|
#include <alibabacloud/core/RpcServiceRequest.h>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
namespace AlibabaCloud {
|
|
namespace Appstream_center {
|
|
namespace Model {
|
|
class ALIBABACLOUD_APPSTREAM_CENTER_EXPORT GetResourcePriceRequest : public RpcServiceRequest {
|
|
public:
|
|
GetResourcePriceRequest();
|
|
~GetResourcePriceRequest();
|
|
std::string getBizRegionId() const;
|
|
void setBizRegionId(const std::string &bizRegionId);
|
|
long getPeriod() const;
|
|
void setPeriod(long period);
|
|
long getAmount() const;
|
|
void setAmount(long amount);
|
|
std::string getNodeInstanceType() const;
|
|
void setNodeInstanceType(const std::string &nodeInstanceType);
|
|
std::string getProductType() const;
|
|
void setProductType(const std::string &productType);
|
|
std::string getPeriodUnit() const;
|
|
void setPeriodUnit(const std::string &periodUnit);
|
|
std::string getChargeType() const;
|
|
void setChargeType(const std::string &chargeType);
|
|
|
|
private:
|
|
std::string bizRegionId_;
|
|
long period_;
|
|
long amount_;
|
|
std::string nodeInstanceType_;
|
|
std::string productType_;
|
|
std::string periodUnit_;
|
|
std::string chargeType_;
|
|
};
|
|
} // namespace Model
|
|
} // namespace Appstream_center
|
|
} // namespace AlibabaCloud
|
|
#endif // !ALIBABACLOUD_APPSTREAM_CENTER_MODEL_GETRESOURCEPRICEREQUEST_H_
|