Skip to content

Commit

Permalink
Generated 2015-07-01 for Aas
Browse files Browse the repository at this point in the history
  • Loading branch information
admin committed May 17, 2019
1 parent 395be5b commit bb708c4
Show file tree
Hide file tree
Showing 31 changed files with 1,505 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of CreateAccessKeyForAccount
*
* @method string getAKSecret()
* @method string getPK()
*/
class CreateAccessKeyForAccountRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'CreateAccessKeyForAccount'
);
}

/**
* @param string $aKSecret
*
* @return $this
*/
public function setAKSecret($aKSecret)
{
$this->requestParameters['AKSecret'] = $aKSecret;
$this->queryParameters['AKSecret'] = $aKSecret;

return $this;
}

/**
* @param string $pK
*
* @return $this
*/
public function setPK($pK)
{
$this->requestParameters['PK'] = $pK;
$this->queryParameters['PK'] = $pK;

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of CreateAliyunAccount
*
* @method string getAliyunId()
*/
class CreateAliyunAccountRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'CreateAliyunAccount'
);
}

/**
* @param string $aliyunId
*
* @return $this
*/
public function setAliyunId($aliyunId)
{
$this->requestParameters['AliyunId'] = $aliyunId;
$this->queryParameters['AliyunId'] = $aliyunId;

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of CreateAliyunAccountWithBindHid
*
* @method string getInnerAccountHid()
*/
class CreateAliyunAccountWithBindHidRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'CreateAliyunAccountWithBindHid'
);
}

/**
* @param string $innerAccountHid
*
* @return $this
*/
public function setInnerAccountHid($innerAccountHid)
{
$this->requestParameters['InnerAccountHid'] = $innerAccountHid;
$this->queryParameters['InnerAccountHid'] = $innerAccountHid;

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of CreateIntlAliyunAccount
*
* @method string getNationalityCode()
*/
class CreateIntlAliyunAccountRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'CreateIntlAliyunAccount'
);
}

/**
* @param string $nationalityCode
*
* @return $this
*/
public function setNationalityCode($nationalityCode)
{
$this->requestParameters['NationalityCode'] = $nationalityCode;
$this->queryParameters['NationalityCode'] = $nationalityCode;

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of CreateShortTermAccessKeyForAccount
*
* @method string getExpireTime()
* @method string getIsMfaPresent()
* @method string getPK()
*/
class CreateShortTermAccessKeyForAccountRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'CreateShortTermAccessKeyForAccount'
);
}

/**
* @param string $expireTime
*
* @return $this
*/
public function setExpireTime($expireTime)
{
$this->requestParameters['ExpireTime'] = $expireTime;
$this->queryParameters['ExpireTime'] = $expireTime;

return $this;
}

/**
* @param string $isMfaPresent
*
* @return $this
*/
public function setIsMfaPresent($isMfaPresent)
{
$this->requestParameters['IsMfaPresent'] = $isMfaPresent;
$this->queryParameters['IsMfaPresent'] = $isMfaPresent;

return $this;
}

/**
* @param string $pK
*
* @return $this
*/
public function setPK($pK)
{
$this->requestParameters['PK'] = $pK;
$this->queryParameters['PK'] = $pK;

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of DeleteAccessKeyForAccount
*
* @method string getAKId()
* @method string getPK()
*/
class DeleteAccessKeyForAccountRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'DeleteAccessKeyForAccount'
);
}

/**
* @param string $aKId
*
* @return $this
*/
public function setAKId($aKId)
{
$this->requestParameters['AKId'] = $aKId;
$this->queryParameters['AKId'] = $aKId;

return $this;
}

/**
* @param string $pK
*
* @return $this
*/
public function setPK($pK)
{
$this->requestParameters['PK'] = $pK;
$this->queryParameters['PK'] = $pK;

return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

namespace Aas\Request\V20150701;

/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of GenerateAccountLoginToken
*
* @method string getTargetPk()
*/
class GenerateAccountLoginTokenRequest extends \RpcAcsRequest
{

/**
* @var string
*/
protected $method = 'POST';

/**
* Class constructor.
*/
public function __construct()
{
parent::__construct(
'Aas',
'2015-07-01',
'GenerateAccountLoginToken'
);
}

/**
* @param string $targetPk
*
* @return $this
*/
public function setTargetPk($targetPk)
{
$this->requestParameters['TargetPk'] = $targetPk;
$this->queryParameters['TargetPk'] = $targetPk;

return $this;
}
}
Loading

0 comments on commit bb708c4

Please sign in to comment.