This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wsh5485 7e47ce238b chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
2025-06-15 13:04:37 +08:00

130 lines
2.6 KiB
PHP

<?php
namespace Cms\Request\V20190101;
/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of ModifySiteMonitor
*
* @method string getOptionsJson()
* @method string getAddress()
* @method string getAlertIds()
* @method string getTaskName()
* @method string getInterval()
* @method string getTaskId()
* @method string getIspCities()
*/
class ModifySiteMonitorRequest extends \RpcAcsRequest
{
/**
* @var string
*/
protected $method = 'POST';
/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Cms',
'2019-01-01',
'ModifySiteMonitor',
'cms'
);
}
/**
* @param string $optionsJson
*
* @return $this
*/
public function setOptionsJson($optionsJson)
{
$this->requestParameters['OptionsJson'] = $optionsJson;
$this->queryParameters['OptionsJson'] = $optionsJson;
return $this;
}
/**
* @param string $address
*
* @return $this
*/
public function setAddress($address)
{
$this->requestParameters['Address'] = $address;
$this->queryParameters['Address'] = $address;
return $this;
}
/**
* @param string $alertIds
*
* @return $this
*/
public function setAlertIds($alertIds)
{
$this->requestParameters['AlertIds'] = $alertIds;
$this->queryParameters['AlertIds'] = $alertIds;
return $this;
}
/**
* @param string $taskName
*
* @return $this
*/
public function setTaskName($taskName)
{
$this->requestParameters['TaskName'] = $taskName;
$this->queryParameters['TaskName'] = $taskName;
return $this;
}
/**
* @param string $interval
*
* @return $this
*/
public function setInterval($interval)
{
$this->requestParameters['Interval'] = $interval;
$this->queryParameters['Interval'] = $interval;
return $this;
}
/**
* @param string $taskId
*
* @return $this
*/
public function setTaskId($taskId)
{
$this->requestParameters['TaskId'] = $taskId;
$this->queryParameters['TaskId'] = $taskId;
return $this;
}
/**
* @param string $ispCities
*
* @return $this
*/
public function setIspCities($ispCities)
{
$this->requestParameters['IspCities'] = $ispCities;
$this->queryParameters['IspCities'] = $ispCities;
return $this;
}
}