200 lines
4.1 KiB
PHP
200 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace vod\Request\V20170321;
|
|
|
|
/**
|
|
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
|
|
*
|
|
* Request of DescribeVodRefreshTasks
|
|
*
|
|
* @method string getObjectPath()
|
|
* @method string getStartTime()
|
|
* @method string getPageNumber()
|
|
* @method string getResourceGroupId()
|
|
* @method string getSecurityToken()
|
|
* @method string getPageSize()
|
|
* @method string getObjectType()
|
|
* @method string getTaskId()
|
|
* @method string getDomainName()
|
|
* @method string getEndTime()
|
|
* @method string getOwnerId()
|
|
* @method string getStatus()
|
|
*/
|
|
class DescribeVodRefreshTasksRequest extends \RpcAcsRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $method = 'POST';
|
|
|
|
/**
|
|
* Class constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(
|
|
'vod',
|
|
'2017-03-21',
|
|
'DescribeVodRefreshTasks',
|
|
'vod'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $objectPath
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setObjectPath($objectPath)
|
|
{
|
|
$this->requestParameters['ObjectPath'] = $objectPath;
|
|
$this->queryParameters['ObjectPath'] = $objectPath;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $startTime
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setStartTime($startTime)
|
|
{
|
|
$this->requestParameters['StartTime'] = $startTime;
|
|
$this->queryParameters['StartTime'] = $startTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $pageNumber
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setPageNumber($pageNumber)
|
|
{
|
|
$this->requestParameters['PageNumber'] = $pageNumber;
|
|
$this->queryParameters['PageNumber'] = $pageNumber;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $resourceGroupId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setResourceGroupId($resourceGroupId)
|
|
{
|
|
$this->requestParameters['ResourceGroupId'] = $resourceGroupId;
|
|
$this->queryParameters['ResourceGroupId'] = $resourceGroupId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $securityToken
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setSecurityToken($securityToken)
|
|
{
|
|
$this->requestParameters['SecurityToken'] = $securityToken;
|
|
$this->queryParameters['SecurityToken'] = $securityToken;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $pageSize
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setPageSize($pageSize)
|
|
{
|
|
$this->requestParameters['PageSize'] = $pageSize;
|
|
$this->queryParameters['PageSize'] = $pageSize;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $objectType
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setObjectType($objectType)
|
|
{
|
|
$this->requestParameters['ObjectType'] = $objectType;
|
|
$this->queryParameters['ObjectType'] = $objectType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $taskId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setTaskId($taskId)
|
|
{
|
|
$this->requestParameters['TaskId'] = $taskId;
|
|
$this->queryParameters['TaskId'] = $taskId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $domainName
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setDomainName($domainName)
|
|
{
|
|
$this->requestParameters['DomainName'] = $domainName;
|
|
$this->queryParameters['DomainName'] = $domainName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $endTime
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setEndTime($endTime)
|
|
{
|
|
$this->requestParameters['EndTime'] = $endTime;
|
|
$this->queryParameters['EndTime'] = $endTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $ownerId
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setOwnerId($ownerId)
|
|
{
|
|
$this->requestParameters['OwnerId'] = $ownerId;
|
|
$this->queryParameters['OwnerId'] = $ownerId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $status
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setStatus($status)
|
|
{
|
|
$this->requestParameters['Status'] = $status;
|
|
$this->queryParameters['Status'] = $status;
|
|
|
|
return $this;
|
|
}
|
|
}
|