CreateAggregateConfigRuleRequest.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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_CREATEAGGREGATECONFIGRULEREQUEST_H_
  17. #define ALIBABACLOUD_CONFIG_MODEL_CREATEAGGREGATECONFIGRULEREQUEST_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 CreateAggregateConfigRuleRequest : public RpcServiceRequest {
  27. public:
  28. CreateAggregateConfigRuleRequest();
  29. ~CreateAggregateConfigRuleRequest();
  30. std::string getTagKeyScope() const;
  31. void setTagKeyScope(const std::string &tagKeyScope);
  32. std::string getClientToken() const;
  33. void setClientToken(const std::string &clientToken);
  34. std::vector<std::string> getResourceTypesScope() const;
  35. void setResourceTypesScope(const std::vector<std::string> &resourceTypesScope);
  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 getConfigRuleTriggerTypes() const;
  41. void setConfigRuleTriggerTypes(const std::string &configRuleTriggerTypes);
  42. std::string getSourceIdentifier() const;
  43. void setSourceIdentifier(const std::string &sourceIdentifier);
  44. std::string getTagValueScope() const;
  45. void setTagValueScope(const std::string &tagValueScope);
  46. std::string getExcludeAccountIdsScope() const;
  47. void setExcludeAccountIdsScope(const std::string &excludeAccountIdsScope);
  48. std::string getRegionIdsScope() const;
  49. void setRegionIdsScope(const std::string &regionIdsScope);
  50. std::string getExcludeFolderIdsScope() const;
  51. void setExcludeFolderIdsScope(const std::string &excludeFolderIdsScope);
  52. int getRiskLevel() const;
  53. void setRiskLevel(int riskLevel);
  54. std::string getSourceOwner() const;
  55. void setSourceOwner(const std::string &sourceOwner);
  56. std::string getResourceGroupIdsScope() const;
  57. void setResourceGroupIdsScope(const std::string &resourceGroupIdsScope);
  58. std::string getInputParameters() const;
  59. void setInputParameters(const std::string &inputParameters);
  60. std::string getConfigRuleName() const;
  61. void setConfigRuleName(const std::string &configRuleName);
  62. std::string getTagKeyLogicScope() const;
  63. void setTagKeyLogicScope(const std::string &tagKeyLogicScope);
  64. std::string getMaximumExecutionFrequency() const;
  65. void setMaximumExecutionFrequency(const std::string &maximumExecutionFrequency);
  66. std::string getFolderIdsScope() const;
  67. void setFolderIdsScope(const std::string &folderIdsScope);
  68. std::string getExcludeResourceIdsScope() const;
  69. void setExcludeResourceIdsScope(const std::string &excludeResourceIdsScope);
  70. private:
  71. std::string tagKeyScope_;
  72. std::string clientToken_;
  73. std::vector<std::string> resourceTypesScope_;
  74. std::string description_;
  75. std::string aggregatorId_;
  76. std::string configRuleTriggerTypes_;
  77. std::string sourceIdentifier_;
  78. std::string tagValueScope_;
  79. std::string excludeAccountIdsScope_;
  80. std::string regionIdsScope_;
  81. std::string excludeFolderIdsScope_;
  82. int riskLevel_;
  83. std::string sourceOwner_;
  84. std::string resourceGroupIdsScope_;
  85. std::string inputParameters_;
  86. std::string configRuleName_;
  87. std::string tagKeyLogicScope_;
  88. std::string maximumExecutionFrequency_;
  89. std::string folderIdsScope_;
  90. std::string excludeResourceIdsScope_;
  91. };
  92. } // namespace Model
  93. } // namespace Config
  94. } // namespace AlibabaCloud
  95. #endif // !ALIBABACLOUD_CONFIG_MODEL_CREATEAGGREGATECONFIGRULEREQUEST_H_