_propDict)) { return $this->_propDict["ruleName"]; } else { return null; } } /** * Sets the ruleName * Name of the rule which this scheduled action applies to. Currently scheduled actions are created per policy instead of per rule, thus RuleName is always set to default value PasswordRequired. * * @param string $val The ruleName * * @return DeviceComplianceScheduledActionForRule */ public function setRuleName($val) { $this->_propDict["ruleName"] = $val; return $this; } /** * Gets the scheduledActionConfigurations * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * * @return array|null The scheduledActionConfigurations */ public function getScheduledActionConfigurations() { if (array_key_exists("scheduledActionConfigurations", $this->_propDict)) { return $this->_propDict["scheduledActionConfigurations"]; } else { return null; } } /** * Sets the scheduledActionConfigurations * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * * @param DeviceComplianceActionItem[] $val The scheduledActionConfigurations * * @return DeviceComplianceScheduledActionForRule */ public function setScheduledActionConfigurations($val) { $this->_propDict["scheduledActionConfigurations"] = $val; return $this; } }