| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- * 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_CONFIG_MODEL_UPDATEAGGREGATECONFIGDELIVERYCHANNELREQUEST_H_
- #define ALIBABACLOUD_CONFIG_MODEL_UPDATEAGGREGATECONFIGDELIVERYCHANNELREQUEST_H_
- #include <alibabacloud/config/ConfigExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Config {
- namespace Model {
- class ALIBABACLOUD_CONFIG_EXPORT UpdateAggregateConfigDeliveryChannelRequest : public RpcServiceRequest {
- public:
- UpdateAggregateConfigDeliveryChannelRequest();
- ~UpdateAggregateConfigDeliveryChannelRequest();
- bool getNonCompliantNotification() const;
- void setNonCompliantNotification(bool nonCompliantNotification);
- std::string getClientToken() const;
- void setClientToken(const std::string &clientToken);
- bool getConfigurationSnapshot() const;
- void setConfigurationSnapshot(bool configurationSnapshot);
- std::string getDescription() const;
- void setDescription(const std::string &description);
- std::string getAggregatorId() const;
- void setAggregatorId(const std::string &aggregatorId);
- std::string getDeliveryChannelTargetArn() const;
- void setDeliveryChannelTargetArn(const std::string &deliveryChannelTargetArn);
- std::string getDeliveryChannelCondition() const;
- void setDeliveryChannelCondition(const std::string &deliveryChannelCondition);
- bool getConfigurationItemChangeNotification() const;
- void setConfigurationItemChangeNotification(bool configurationItemChangeNotification);
- std::string getDeliveryChannelName() const;
- void setDeliveryChannelName(const std::string &deliveryChannelName);
- std::string getDeliveryChannelId() const;
- void setDeliveryChannelId(const std::string &deliveryChannelId);
- std::string getOversizedDataOSSTargetArn() const;
- void setOversizedDataOSSTargetArn(const std::string &oversizedDataOSSTargetArn);
- long getStatus() const;
- void setStatus(long status);
- private:
- bool nonCompliantNotification_;
- std::string clientToken_;
- bool configurationSnapshot_;
- std::string description_;
- std::string aggregatorId_;
- std::string deliveryChannelTargetArn_;
- std::string deliveryChannelCondition_;
- bool configurationItemChangeNotification_;
- std::string deliveryChannelName_;
- std::string deliveryChannelId_;
- std::string oversizedDataOSSTargetArn_;
- long status_;
- };
- } // namespace Model
- } // namespace Config
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_CONFIG_MODEL_UPDATEAGGREGATECONFIGDELIVERYCHANNELREQUEST_H_
|