123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace Darabonba\OpenApi\Models;
- use AlibabaCloud\Tea\Model;
- use AlibabaCloud\Credentials\Credential;
- use Darabonba\OpenApi\Models\GlobalParameters;
- /**
- * Model for initing client
- */
- class Config extends Model
- {
- protected $_default = [
- 'accessKeyId' => '',
- 'accessKeySecret' => '',
- 'securityToken' => '',
- 'bearerToken' => '',
- 'protocol' => 'http',
- 'method' => '',
- 'regionId' => '',
- 'readTimeout' => '',
- 'connectTimeout' => '',
- 'httpProxy' => '',
- 'httpsProxy' => '',
- 'credential' => '',
- 'endpoint' => '',
- 'noProxy' => '',
- 'maxIdleConns' => '',
- 'network' => '',
- 'userAgent' => '',
- 'suffix' => '',
- 'socks5Proxy' => '',
- 'socks5NetWork' => '',
- 'endpointType' => '',
- 'openPlatformEndpoint' => '',
- 'type' => '',
- 'signatureVersion' => '',
- 'signatureAlgorithm' => '',
- 'key' => '',
- 'cert' => '',
- 'ca' => '',
- ];
- public function validate()
- {
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->accessKeyId) {
- $res['accessKeyId'] = $this->accessKeyId;
- }
- if (null !== $this->accessKeySecret) {
- $res['accessKeySecret'] = $this->accessKeySecret;
- }
- if (null !== $this->securityToken) {
- $res['securityToken'] = $this->securityToken;
- }
- if (null !== $this->bearerToken) {
- $res['bearerToken'] = $this->bearerToken;
- }
- if (null !== $this->protocol) {
- $res['protocol'] = $this->protocol;
- }
- if (null !== $this->method) {
- $res['method'] = $this->method;
- }
- if (null !== $this->regionId) {
- $res['regionId'] = $this->regionId;
- }
- if (null !== $this->readTimeout) {
- $res['readTimeout'] = $this->readTimeout;
- }
- if (null !== $this->connectTimeout) {
- $res['connectTimeout'] = $this->connectTimeout;
- }
- if (null !== $this->httpProxy) {
- $res['httpProxy'] = $this->httpProxy;
- }
- if (null !== $this->httpsProxy) {
- $res['httpsProxy'] = $this->httpsProxy;
- }
- if (null !== $this->credential) {
- $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null;
- }
- if (null !== $this->endpoint) {
- $res['endpoint'] = $this->endpoint;
- }
- if (null !== $this->noProxy) {
- $res['noProxy'] = $this->noProxy;
- }
- if (null !== $this->maxIdleConns) {
- $res['maxIdleConns'] = $this->maxIdleConns;
- }
- if (null !== $this->network) {
- $res['network'] = $this->network;
- }
- if (null !== $this->userAgent) {
- $res['userAgent'] = $this->userAgent;
- }
- if (null !== $this->suffix) {
- $res['suffix'] = $this->suffix;
- }
- if (null !== $this->socks5Proxy) {
- $res['socks5Proxy'] = $this->socks5Proxy;
- }
- if (null !== $this->socks5NetWork) {
- $res['socks5NetWork'] = $this->socks5NetWork;
- }
- if (null !== $this->endpointType) {
- $res['endpointType'] = $this->endpointType;
- }
- if (null !== $this->openPlatformEndpoint) {
- $res['openPlatformEndpoint'] = $this->openPlatformEndpoint;
- }
- if (null !== $this->type) {
- $res['type'] = $this->type;
- }
- if (null !== $this->signatureVersion) {
- $res['signatureVersion'] = $this->signatureVersion;
- }
- if (null !== $this->signatureAlgorithm) {
- $res['signatureAlgorithm'] = $this->signatureAlgorithm;
- }
- if (null !== $this->globalParameters) {
- $res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toMap() : null;
- }
- if (null !== $this->key) {
- $res['key'] = $this->key;
- }
- if (null !== $this->cert) {
- $res['cert'] = $this->cert;
- }
- if (null !== $this->ca) {
- $res['ca'] = $this->ca;
- }
- if (null !== $this->disableHttp2) {
- $res['disableHttp2'] = $this->disableHttp2;
- }
- return $res;
- }
- /**
- * @param array $map
- * @return Config
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['accessKeyId'])) {
- $model->accessKeyId = $map['accessKeyId'];
- }
- if (isset($map['accessKeySecret'])) {
- $model->accessKeySecret = $map['accessKeySecret'];
- }
- if (isset($map['securityToken'])) {
- $model->securityToken = $map['securityToken'];
- }
- if (isset($map['bearerToken'])) {
- $model->bearerToken = $map['bearerToken'];
- }
- if (isset($map['protocol'])) {
- $model->protocol = $map['protocol'];
- }
- if (isset($map['method'])) {
- $model->method = $map['method'];
- }
- if (isset($map['regionId'])) {
- $model->regionId = $map['regionId'];
- }
- if (isset($map['readTimeout'])) {
- $model->readTimeout = $map['readTimeout'];
- }
- if (isset($map['connectTimeout'])) {
- $model->connectTimeout = $map['connectTimeout'];
- }
- if (isset($map['httpProxy'])) {
- $model->httpProxy = $map['httpProxy'];
- }
- if (isset($map['httpsProxy'])) {
- $model->httpsProxy = $map['httpsProxy'];
- }
- if (isset($map['credential'])) {
- $model->credential = Credential::fromMap($map['credential']);
- }
- if (isset($map['endpoint'])) {
- $model->endpoint = $map['endpoint'];
- }
- if (isset($map['noProxy'])) {
- $model->noProxy = $map['noProxy'];
- }
- if (isset($map['maxIdleConns'])) {
- $model->maxIdleConns = $map['maxIdleConns'];
- }
- if (isset($map['network'])) {
- $model->network = $map['network'];
- }
- if (isset($map['userAgent'])) {
- $model->userAgent = $map['userAgent'];
- }
- if (isset($map['suffix'])) {
- $model->suffix = $map['suffix'];
- }
- if (isset($map['socks5Proxy'])) {
- $model->socks5Proxy = $map['socks5Proxy'];
- }
- if (isset($map['socks5NetWork'])) {
- $model->socks5NetWork = $map['socks5NetWork'];
- }
- if (isset($map['endpointType'])) {
- $model->endpointType = $map['endpointType'];
- }
- if (isset($map['openPlatformEndpoint'])) {
- $model->openPlatformEndpoint = $map['openPlatformEndpoint'];
- }
- if (isset($map['type'])) {
- $model->type = $map['type'];
- }
- if (isset($map['signatureVersion'])) {
- $model->signatureVersion = $map['signatureVersion'];
- }
- if (isset($map['signatureAlgorithm'])) {
- $model->signatureAlgorithm = $map['signatureAlgorithm'];
- }
- if (isset($map['globalParameters'])) {
- $model->globalParameters = GlobalParameters::fromMap($map['globalParameters']);
- }
- if (isset($map['key'])) {
- $model->key = $map['key'];
- }
- if (isset($map['cert'])) {
- $model->cert = $map['cert'];
- }
- if (isset($map['ca'])) {
- $model->ca = $map['ca'];
- }
- if (isset($map['disableHttp2'])) {
- $model->disableHttp2 = $map['disableHttp2'];
- }
- return $model;
- }
- /**
- * @description accesskey id
- * @var string
- */
- public $accessKeyId;
- /**
- * @description accesskey secret
- * @var string
- */
- public $accessKeySecret;
- /**
- * @description security token
- * @example a.txt
- * @var string
- */
- public $securityToken;
- /**
- * @description bearer token
- * @example the-bearer-token
- * @var string
- */
- public $bearerToken;
- /**
- * @description http protocol
- * @example http
- * @var string
- */
- public $protocol;
- /**
- * @description http method
- * @example GET
- * @var string
- */
- public $method;
- /**
- * @description region id
- * @example cn-hangzhou
- * @var string
- */
- public $regionId;
- /**
- * @description read timeout
- * @example 10
- * @var int
- */
- public $readTimeout;
- /**
- * @description connect timeout
- * @example 10
- * @var int
- */
- public $connectTimeout;
- /**
- * @description http proxy
- * @example http://localhost
- * @var string
- */
- public $httpProxy;
- /**
- * @description https proxy
- * @example https://localhost
- * @var string
- */
- public $httpsProxy;
- /**
- * @description credential
- * @example
- * @var Credential
- */
- public $credential;
- /**
- * @description endpoint
- * @example cs.aliyuncs.com
- * @var string
- */
- public $endpoint;
- /**
- * @description proxy white list
- * @example http://localhost
- * @var string
- */
- public $noProxy;
- /**
- * @description max idle conns
- * @example 3
- * @var int
- */
- public $maxIdleConns;
- /**
- * @description network for endpoint
- * @example public
- * @var string
- */
- public $network;
- /**
- * @description user agent
- * @example Alibabacloud/1
- * @var string
- */
- public $userAgent;
- /**
- * @description suffix for endpoint
- * @example aliyun
- * @var string
- */
- public $suffix;
- /**
- * @description socks5 proxy
- * @var string
- */
- public $socks5Proxy;
- /**
- * @description socks5 network
- * @example TCP
- * @var string
- */
- public $socks5NetWork;
- /**
- * @description endpoint type
- * @example internal
- * @var string
- */
- public $endpointType;
- /**
- * @description OpenPlatform endpoint
- * @example openplatform.aliyuncs.com
- * @var string
- */
- public $openPlatformEndpoint;
- /**
- * @description credential type
- * @example access_key
- * @deprecated
- * @var string
- */
- public $type;
- /**
- * @description Signature Version
- * @example v1
- * @var string
- */
- public $signatureVersion;
- /**
- * @description Signature Algorithm
- * @example ACS3-HMAC-SHA256
- * @var string
- */
- public $signatureAlgorithm;
- /**
- * @description Global Parameters
- * @var GlobalParameters
- */
- public $globalParameters;
- /**
- * @description privite key for client certificate
- * @example MIIEvQ
- * @var string
- */
- public $key;
- /**
- * @description client certificate
- * @example -----BEGIN CERTIFICATE-----xxx-----END CERTIFICATE-----
- * @var string
- */
- public $cert;
- /**
- * @description server certificate
- * @example -----BEGIN CERTIFICATE-----xxx-----END CERTIFICATE-----
- * @var string
- */
- public $ca;
- /**
- * @description disable HTTP/2
- * @example false
- * @var bool
- */
- public $disableHttp2;
- }
|