chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
2019-03-15 Version: 1.0.1
|
||||
1, Update Dependency
|
||||
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of CloseProductAccount
|
||||
*
|
||||
* @method string getProductCode()
|
||||
* @method string getProductAccessKey()
|
||||
* @method string getTargetUid()
|
||||
* @method string getTargetArnRole()
|
||||
*/
|
||||
class CloseProductAccountRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'CloseProductAccount',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $productCode
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setProductCode($productCode)
|
||||
{
|
||||
$this->requestParameters['ProductCode'] = $productCode;
|
||||
$this->queryParameters['ProductCode'] = $productCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $productAccessKey
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setProductAccessKey($productAccessKey)
|
||||
{
|
||||
$this->requestParameters['ProductAccessKey'] = $productAccessKey;
|
||||
$this->queryParameters['ProductAccessKey'] = $productAccessKey;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetUid
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetUid($targetUid)
|
||||
{
|
||||
$this->requestParameters['TargetUid'] = $targetUid;
|
||||
$this->queryParameters['TargetUid'] = $targetUid;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetArnRole
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetArnRole($targetArnRole)
|
||||
{
|
||||
$this->requestParameters['TargetArnRole'] = $targetArnRole;
|
||||
$this->queryParameters['TargetArnRole'] = $targetArnRole;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of DescribeRegionList
|
||||
*
|
||||
*/
|
||||
class DescribeRegionListRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'DescribeRegionList',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
}
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of GetAllowIP
|
||||
*
|
||||
* @method string getUserID()
|
||||
* @method string getNetworkType()
|
||||
*/
|
||||
class GetAllowIPRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'GetAllowIP',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $userID
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setUserID($userID)
|
||||
{
|
||||
$this->requestParameters['UserID'] = $userID;
|
||||
$this->queryParameters['UserID'] = $userID;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $networkType
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setNetworkType($networkType)
|
||||
{
|
||||
$this->requestParameters['NetworkType'] = $networkType;
|
||||
$this->queryParameters['NetworkType'] = $networkType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+57
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of GetEndPointByDomain
|
||||
*
|
||||
* @method string getUserID()
|
||||
* @method string getDomainURL()
|
||||
*/
|
||||
class GetEndPointByDomainRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'GetEndPointByDomain',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $userID
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setUserID($userID)
|
||||
{
|
||||
$this->requestParameters['UserID'] = $userID;
|
||||
$this->queryParameters['UserID'] = $userID;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $domainURL
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setDomainURL($domainURL)
|
||||
{
|
||||
$this->requestParameters['DomainURL'] = $domainURL;
|
||||
$this->queryParameters['DomainURL'] = $domainURL;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of GetProductStatus
|
||||
*
|
||||
* @method string getProductCode()
|
||||
* @method string getProductAccessKey()
|
||||
* @method string getTargetUid()
|
||||
* @method string getTargetArnRole()
|
||||
*/
|
||||
class GetProductStatusRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'GetProductStatus',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $productCode
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setProductCode($productCode)
|
||||
{
|
||||
$this->requestParameters['ProductCode'] = $productCode;
|
||||
$this->queryParameters['ProductCode'] = $productCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $productAccessKey
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setProductAccessKey($productAccessKey)
|
||||
{
|
||||
$this->requestParameters['ProductAccessKey'] = $productAccessKey;
|
||||
$this->queryParameters['ProductAccessKey'] = $productAccessKey;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetUid
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetUid($targetUid)
|
||||
{
|
||||
$this->requestParameters['TargetUid'] = $targetUid;
|
||||
$this->queryParameters['TargetUid'] = $targetUid;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetArnRole
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetArnRole($targetArnRole)
|
||||
{
|
||||
$this->requestParameters['TargetArnRole'] = $targetArnRole;
|
||||
$this->queryParameters['TargetArnRole'] = $targetArnRole;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of GetRegionStatus
|
||||
*
|
||||
* @method string getTargetUid()
|
||||
*/
|
||||
class GetRegionStatusRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'GetRegionStatus',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetUid
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetUid($targetUid)
|
||||
{
|
||||
$this->requestParameters['TargetUid'] = $targetUid;
|
||||
$this->queryParameters['TargetUid'] = $targetUid;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of OpenProductAccount
|
||||
*
|
||||
* @method string getProductCode()
|
||||
* @method string getProductAccessKey()
|
||||
* @method string getTargetUid()
|
||||
* @method string getTargetArnRole()
|
||||
*/
|
||||
class OpenProductAccountRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'OpenProductAccount',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $productCode
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setProductCode($productCode)
|
||||
{
|
||||
$this->requestParameters['ProductCode'] = $productCode;
|
||||
$this->queryParameters['ProductCode'] = $productCode;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $productAccessKey
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setProductAccessKey($productAccessKey)
|
||||
{
|
||||
$this->requestParameters['ProductAccessKey'] = $productAccessKey;
|
||||
$this->queryParameters['ProductAccessKey'] = $productAccessKey;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetUid
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetUid($targetUid)
|
||||
{
|
||||
$this->requestParameters['TargetUid'] = $targetUid;
|
||||
$this->queryParameters['TargetUid'] = $targetUid;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetArnRole
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetArnRole($targetArnRole)
|
||||
{
|
||||
$this->requestParameters['TargetArnRole'] = $targetArnRole;
|
||||
$this->queryParameters['TargetArnRole'] = $targetArnRole;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of QueryEndPointList
|
||||
*
|
||||
* @method string getUserID()
|
||||
*/
|
||||
class QueryEndPointListRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'QueryEndPointList',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $userID
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setUserID($userID)
|
||||
{
|
||||
$this->requestParameters['UserID'] = $userID;
|
||||
$this->queryParameters['UserID'] = $userID;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace openanalytics\Request\V20180301;
|
||||
|
||||
/**
|
||||
* Request of SetAllowIP
|
||||
*
|
||||
* @method string getUserID()
|
||||
* @method string getNetworkType()
|
||||
* @method string getAllowIP()
|
||||
* @method string getAppend()
|
||||
*/
|
||||
class SetAllowIPRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'openanalytics',
|
||||
'2018-03-01',
|
||||
'SetAllowIP',
|
||||
'openanalytics'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $userID
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setUserID($userID)
|
||||
{
|
||||
$this->requestParameters['UserID'] = $userID;
|
||||
$this->queryParameters['UserID'] = $userID;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $networkType
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setNetworkType($networkType)
|
||||
{
|
||||
$this->requestParameters['NetworkType'] = $networkType;
|
||||
$this->queryParameters['NetworkType'] = $networkType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $allowIP
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setAllowIP($allowIP)
|
||||
{
|
||||
$this->requestParameters['AllowIP'] = $allowIP;
|
||||
$this->queryParameters['AllowIP'] = $allowIP;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $append
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setAppend($append)
|
||||
{
|
||||
$this->requestParameters['Append'] = $append;
|
||||
$this->queryParameters['Append'] = $append;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user