|
|
@@ -43,6 +43,15 @@ void CreateOrUpdateSilencePolicyRequest::setMatchingRules(const std::string &mat
|
|
|
setBodyParameter(std::string("MatchingRules"), matchingRules);
|
|
|
}
|
|
|
|
|
|
+std::string CreateOrUpdateSilencePolicyRequest::getTimeSlots() const {
|
|
|
+ return timeSlots_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateOrUpdateSilencePolicyRequest::setTimeSlots(const std::string &timeSlots) {
|
|
|
+ timeSlots_ = timeSlots;
|
|
|
+ setParameter(std::string("TimeSlots"), timeSlots);
|
|
|
+}
|
|
|
+
|
|
|
std::string CreateOrUpdateSilencePolicyRequest::getAreaCodes() const {
|
|
|
return areaCodes_;
|
|
|
}
|
|
|
@@ -52,6 +61,15 @@ void CreateOrUpdateSilencePolicyRequest::setAreaCodes(const std::string &areaCod
|
|
|
setBodyParameter(std::string("AreaCodes"), areaCodes);
|
|
|
}
|
|
|
|
|
|
+std::string CreateOrUpdateSilencePolicyRequest::getEffectiveTimeType() const {
|
|
|
+ return effectiveTimeType_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateOrUpdateSilencePolicyRequest::setEffectiveTimeType(const std::string &effectiveTimeType) {
|
|
|
+ effectiveTimeType_ = effectiveTimeType;
|
|
|
+ setParameter(std::string("EffectiveTimeType"), effectiveTimeType);
|
|
|
+}
|
|
|
+
|
|
|
std::string CreateOrUpdateSilencePolicyRequest::getRegionId() const {
|
|
|
return regionId_;
|
|
|
}
|
|
|
@@ -88,3 +106,12 @@ void CreateOrUpdateSilencePolicyRequest::setState(const std::string &state) {
|
|
|
setBodyParameter(std::string("State"), state);
|
|
|
}
|
|
|
|
|
|
+std::string CreateOrUpdateSilencePolicyRequest::getTimePeriod() const {
|
|
|
+ return timePeriod_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateOrUpdateSilencePolicyRequest::setTimePeriod(const std::string &timePeriod) {
|
|
|
+ timePeriod_ = timePeriod;
|
|
|
+ setParameter(std::string("TimePeriod"), timePeriod);
|
|
|
+}
|
|
|
+
|