123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- namespace Mts\Request\V20140618;
- /**
- * Request of PhysicalDeleteResource
- *
- * @method string getCountry()
- * @method string getHid()
- * @method string getSuccess()
- * @method string getInterrupt()
- * @method string getGmtWakeup()
- * @method string getPk()
- * @method string getInvoker()
- * @method string getBid()
- * @method string getMessage()
- * @method string getTaskExtraData()
- * @method string getTaskIdentifier()
- */
- class PhysicalDeleteResourceRequest extends \RpcAcsRequest
- {
- /**
- * @var string
- */
- protected $method = 'POST';
- /**
- * Class constructor.
- */
- public function __construct()
- {
- parent::__construct(
- 'Mts',
- '2014-06-18',
- 'PhysicalDeleteResource',
- 'mts'
- );
- }
- /**
- * @param string $country
- *
- * @return $this
- */
- public function setCountry($country)
- {
- $this->requestParameters['Country'] = $country;
- $this->queryParameters['Country'] = $country;
- return $this;
- }
- /**
- * @param string $hid
- *
- * @return $this
- */
- public function setHid($hid)
- {
- $this->requestParameters['Hid'] = $hid;
- $this->queryParameters['Hid'] = $hid;
- return $this;
- }
- /**
- * @param string $success
- *
- * @return $this
- */
- public function setSuccess($success)
- {
- $this->requestParameters['Success'] = $success;
- $this->queryParameters['Success'] = $success;
- return $this;
- }
- /**
- * @param string $interrupt
- *
- * @return $this
- */
- public function setInterrupt($interrupt)
- {
- $this->requestParameters['Interrupt'] = $interrupt;
- $this->queryParameters['Interrupt'] = $interrupt;
- return $this;
- }
- /**
- * @param string $gmtWakeup
- *
- * @return $this
- */
- public function setGmtWakeup($gmtWakeup)
- {
- $this->requestParameters['GmtWakeup'] = $gmtWakeup;
- $this->queryParameters['GmtWakeup'] = $gmtWakeup;
- return $this;
- }
- /**
- * @param string $pk
- *
- * @return $this
- */
- public function setPk($pk)
- {
- $this->requestParameters['Pk'] = $pk;
- $this->queryParameters['Pk'] = $pk;
- return $this;
- }
- /**
- * @param string $invoker
- *
- * @return $this
- */
- public function setInvoker($invoker)
- {
- $this->requestParameters['Invoker'] = $invoker;
- $this->queryParameters['Invoker'] = $invoker;
- return $this;
- }
- /**
- * @param string $bid
- *
- * @return $this
- */
- public function setBid($bid)
- {
- $this->requestParameters['Bid'] = $bid;
- $this->queryParameters['Bid'] = $bid;
- return $this;
- }
- /**
- * @param string $message
- *
- * @return $this
- */
- public function setMessage($message)
- {
- $this->requestParameters['Message'] = $message;
- $this->queryParameters['Message'] = $message;
- return $this;
- }
- /**
- * @param string $taskExtraData
- *
- * @return $this
- */
- public function setTaskExtraData($taskExtraData)
- {
- $this->requestParameters['TaskExtraData'] = $taskExtraData;
- $this->queryParameters['TaskExtraData'] = $taskExtraData;
- return $this;
- }
- /**
- * @param string $taskIdentifier
- *
- * @return $this
- */
- public function setTaskIdentifier($taskIdentifier)
- {
- $this->requestParameters['TaskIdentifier'] = $taskIdentifier;
- $this->queryParameters['TaskIdentifier'] = $taskIdentifier;
- return $this;
- }
- }
|