UpdateAggregateConfigDeliveryChannelRequest.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_CONFIG_MODEL_UPDATEAGGREGATECONFIGDELIVERYCHANNELREQUEST_H_
  17. #define ALIBABACLOUD_CONFIG_MODEL_UPDATEAGGREGATECONFIGDELIVERYCHANNELREQUEST_H_
  18. #include <alibabacloud/config/ConfigExport.h>
  19. #include <alibabacloud/core/RpcServiceRequest.h>
  20. #include <string>
  21. #include <vector>
  22. #include <map>
  23. namespace AlibabaCloud {
  24. namespace Config {
  25. namespace Model {
  26. class ALIBABACLOUD_CONFIG_EXPORT UpdateAggregateConfigDeliveryChannelRequest : public RpcServiceRequest {
  27. public:
  28. UpdateAggregateConfigDeliveryChannelRequest();
  29. ~UpdateAggregateConfigDeliveryChannelRequest();
  30. bool getNonCompliantNotification() const;
  31. void setNonCompliantNotification(bool nonCompliantNotification);
  32. std::string getClientToken() const;
  33. void setClientToken(const std::string &clientToken);
  34. bool getConfigurationSnapshot() const;
  35. void setConfigurationSnapshot(bool configurationSnapshot);
  36. std::string getDescription() const;
  37. void setDescription(const std::string &description);
  38. std::string getAggregatorId() const;
  39. void setAggregatorId(const std::string &aggregatorId);
  40. std::string getDeliveryChannelTargetArn() const;
  41. void setDeliveryChannelTargetArn(const std::string &deliveryChannelTargetArn);
  42. std::string getDeliveryChannelCondition() const;
  43. void setDeliveryChannelCondition(const std::string &deliveryChannelCondition);
  44. bool getConfigurationItemChangeNotification() const;
  45. void setConfigurationItemChangeNotification(bool configurationItemChangeNotification);
  46. std::string getDeliveryChannelName() const;
  47. void setDeliveryChannelName(const std::string &deliveryChannelName);
  48. std::string getDeliveryChannelId() const;
  49. void setDeliveryChannelId(const std::string &deliveryChannelId);
  50. std::string getOversizedDataOSSTargetArn() const;
  51. void setOversizedDataOSSTargetArn(const std::string &oversizedDataOSSTargetArn);
  52. long getStatus() const;
  53. void setStatus(long status);
  54. private:
  55. bool nonCompliantNotification_;
  56. std::string clientToken_;
  57. bool configurationSnapshot_;
  58. std::string description_;
  59. std::string aggregatorId_;
  60. std::string deliveryChannelTargetArn_;
  61. std::string deliveryChannelCondition_;
  62. bool configurationItemChangeNotification_;
  63. std::string deliveryChannelName_;
  64. std::string deliveryChannelId_;
  65. std::string oversizedDataOSSTargetArn_;
  66. long status_;
  67. };
  68. } // namespace Model
  69. } // namespace Config
  70. } // namespace AlibabaCloud
  71. #endif // !ALIBABACLOUD_CONFIG_MODEL_UPDATEAGGREGATECONFIGDELIVERYCHANNELREQUEST_H_