Config.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace Darabonba\OpenApi\Models;
  4. use AlibabaCloud\Tea\Model;
  5. use AlibabaCloud\Credentials\Credential;
  6. use Darabonba\OpenApi\Models\GlobalParameters;
  7. /**
  8. * Model for initing client
  9. */
  10. class Config extends Model
  11. {
  12. protected $_default = [
  13. 'accessKeyId' => '',
  14. 'accessKeySecret' => '',
  15. 'securityToken' => '',
  16. 'bearerToken' => '',
  17. 'protocol' => 'http',
  18. 'method' => '',
  19. 'regionId' => '',
  20. 'readTimeout' => '',
  21. 'connectTimeout' => '',
  22. 'httpProxy' => '',
  23. 'httpsProxy' => '',
  24. 'credential' => '',
  25. 'endpoint' => '',
  26. 'noProxy' => '',
  27. 'maxIdleConns' => '',
  28. 'network' => '',
  29. 'userAgent' => '',
  30. 'suffix' => '',
  31. 'socks5Proxy' => '',
  32. 'socks5NetWork' => '',
  33. 'endpointType' => '',
  34. 'openPlatformEndpoint' => '',
  35. 'type' => '',
  36. 'signatureVersion' => '',
  37. 'signatureAlgorithm' => '',
  38. 'key' => '',
  39. 'cert' => '',
  40. 'ca' => '',
  41. ];
  42. public function validate()
  43. {
  44. }
  45. public function toMap()
  46. {
  47. $res = [];
  48. if (null !== $this->accessKeyId) {
  49. $res['accessKeyId'] = $this->accessKeyId;
  50. }
  51. if (null !== $this->accessKeySecret) {
  52. $res['accessKeySecret'] = $this->accessKeySecret;
  53. }
  54. if (null !== $this->securityToken) {
  55. $res['securityToken'] = $this->securityToken;
  56. }
  57. if (null !== $this->bearerToken) {
  58. $res['bearerToken'] = $this->bearerToken;
  59. }
  60. if (null !== $this->protocol) {
  61. $res['protocol'] = $this->protocol;
  62. }
  63. if (null !== $this->method) {
  64. $res['method'] = $this->method;
  65. }
  66. if (null !== $this->regionId) {
  67. $res['regionId'] = $this->regionId;
  68. }
  69. if (null !== $this->readTimeout) {
  70. $res['readTimeout'] = $this->readTimeout;
  71. }
  72. if (null !== $this->connectTimeout) {
  73. $res['connectTimeout'] = $this->connectTimeout;
  74. }
  75. if (null !== $this->httpProxy) {
  76. $res['httpProxy'] = $this->httpProxy;
  77. }
  78. if (null !== $this->httpsProxy) {
  79. $res['httpsProxy'] = $this->httpsProxy;
  80. }
  81. if (null !== $this->credential) {
  82. $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null;
  83. }
  84. if (null !== $this->endpoint) {
  85. $res['endpoint'] = $this->endpoint;
  86. }
  87. if (null !== $this->noProxy) {
  88. $res['noProxy'] = $this->noProxy;
  89. }
  90. if (null !== $this->maxIdleConns) {
  91. $res['maxIdleConns'] = $this->maxIdleConns;
  92. }
  93. if (null !== $this->network) {
  94. $res['network'] = $this->network;
  95. }
  96. if (null !== $this->userAgent) {
  97. $res['userAgent'] = $this->userAgent;
  98. }
  99. if (null !== $this->suffix) {
  100. $res['suffix'] = $this->suffix;
  101. }
  102. if (null !== $this->socks5Proxy) {
  103. $res['socks5Proxy'] = $this->socks5Proxy;
  104. }
  105. if (null !== $this->socks5NetWork) {
  106. $res['socks5NetWork'] = $this->socks5NetWork;
  107. }
  108. if (null !== $this->endpointType) {
  109. $res['endpointType'] = $this->endpointType;
  110. }
  111. if (null !== $this->openPlatformEndpoint) {
  112. $res['openPlatformEndpoint'] = $this->openPlatformEndpoint;
  113. }
  114. if (null !== $this->type) {
  115. $res['type'] = $this->type;
  116. }
  117. if (null !== $this->signatureVersion) {
  118. $res['signatureVersion'] = $this->signatureVersion;
  119. }
  120. if (null !== $this->signatureAlgorithm) {
  121. $res['signatureAlgorithm'] = $this->signatureAlgorithm;
  122. }
  123. if (null !== $this->globalParameters) {
  124. $res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toMap() : null;
  125. }
  126. if (null !== $this->key) {
  127. $res['key'] = $this->key;
  128. }
  129. if (null !== $this->cert) {
  130. $res['cert'] = $this->cert;
  131. }
  132. if (null !== $this->ca) {
  133. $res['ca'] = $this->ca;
  134. }
  135. if (null !== $this->disableHttp2) {
  136. $res['disableHttp2'] = $this->disableHttp2;
  137. }
  138. return $res;
  139. }
  140. /**
  141. * @param array $map
  142. * @return Config
  143. */
  144. public static function fromMap($map = [])
  145. {
  146. $model = new self();
  147. if (isset($map['accessKeyId'])) {
  148. $model->accessKeyId = $map['accessKeyId'];
  149. }
  150. if (isset($map['accessKeySecret'])) {
  151. $model->accessKeySecret = $map['accessKeySecret'];
  152. }
  153. if (isset($map['securityToken'])) {
  154. $model->securityToken = $map['securityToken'];
  155. }
  156. if (isset($map['bearerToken'])) {
  157. $model->bearerToken = $map['bearerToken'];
  158. }
  159. if (isset($map['protocol'])) {
  160. $model->protocol = $map['protocol'];
  161. }
  162. if (isset($map['method'])) {
  163. $model->method = $map['method'];
  164. }
  165. if (isset($map['regionId'])) {
  166. $model->regionId = $map['regionId'];
  167. }
  168. if (isset($map['readTimeout'])) {
  169. $model->readTimeout = $map['readTimeout'];
  170. }
  171. if (isset($map['connectTimeout'])) {
  172. $model->connectTimeout = $map['connectTimeout'];
  173. }
  174. if (isset($map['httpProxy'])) {
  175. $model->httpProxy = $map['httpProxy'];
  176. }
  177. if (isset($map['httpsProxy'])) {
  178. $model->httpsProxy = $map['httpsProxy'];
  179. }
  180. if (isset($map['credential'])) {
  181. $model->credential = Credential::fromMap($map['credential']);
  182. }
  183. if (isset($map['endpoint'])) {
  184. $model->endpoint = $map['endpoint'];
  185. }
  186. if (isset($map['noProxy'])) {
  187. $model->noProxy = $map['noProxy'];
  188. }
  189. if (isset($map['maxIdleConns'])) {
  190. $model->maxIdleConns = $map['maxIdleConns'];
  191. }
  192. if (isset($map['network'])) {
  193. $model->network = $map['network'];
  194. }
  195. if (isset($map['userAgent'])) {
  196. $model->userAgent = $map['userAgent'];
  197. }
  198. if (isset($map['suffix'])) {
  199. $model->suffix = $map['suffix'];
  200. }
  201. if (isset($map['socks5Proxy'])) {
  202. $model->socks5Proxy = $map['socks5Proxy'];
  203. }
  204. if (isset($map['socks5NetWork'])) {
  205. $model->socks5NetWork = $map['socks5NetWork'];
  206. }
  207. if (isset($map['endpointType'])) {
  208. $model->endpointType = $map['endpointType'];
  209. }
  210. if (isset($map['openPlatformEndpoint'])) {
  211. $model->openPlatformEndpoint = $map['openPlatformEndpoint'];
  212. }
  213. if (isset($map['type'])) {
  214. $model->type = $map['type'];
  215. }
  216. if (isset($map['signatureVersion'])) {
  217. $model->signatureVersion = $map['signatureVersion'];
  218. }
  219. if (isset($map['signatureAlgorithm'])) {
  220. $model->signatureAlgorithm = $map['signatureAlgorithm'];
  221. }
  222. if (isset($map['globalParameters'])) {
  223. $model->globalParameters = GlobalParameters::fromMap($map['globalParameters']);
  224. }
  225. if (isset($map['key'])) {
  226. $model->key = $map['key'];
  227. }
  228. if (isset($map['cert'])) {
  229. $model->cert = $map['cert'];
  230. }
  231. if (isset($map['ca'])) {
  232. $model->ca = $map['ca'];
  233. }
  234. if (isset($map['disableHttp2'])) {
  235. $model->disableHttp2 = $map['disableHttp2'];
  236. }
  237. return $model;
  238. }
  239. /**
  240. * @description accesskey id
  241. * @var string
  242. */
  243. public $accessKeyId;
  244. /**
  245. * @description accesskey secret
  246. * @var string
  247. */
  248. public $accessKeySecret;
  249. /**
  250. * @description security token
  251. * @example a.txt
  252. * @var string
  253. */
  254. public $securityToken;
  255. /**
  256. * @description bearer token
  257. * @example the-bearer-token
  258. * @var string
  259. */
  260. public $bearerToken;
  261. /**
  262. * @description http protocol
  263. * @example http
  264. * @var string
  265. */
  266. public $protocol;
  267. /**
  268. * @description http method
  269. * @example GET
  270. * @var string
  271. */
  272. public $method;
  273. /**
  274. * @description region id
  275. * @example cn-hangzhou
  276. * @var string
  277. */
  278. public $regionId;
  279. /**
  280. * @description read timeout
  281. * @example 10
  282. * @var int
  283. */
  284. public $readTimeout;
  285. /**
  286. * @description connect timeout
  287. * @example 10
  288. * @var int
  289. */
  290. public $connectTimeout;
  291. /**
  292. * @description http proxy
  293. * @example http://localhost
  294. * @var string
  295. */
  296. public $httpProxy;
  297. /**
  298. * @description https proxy
  299. * @example https://localhost
  300. * @var string
  301. */
  302. public $httpsProxy;
  303. /**
  304. * @description credential
  305. * @example
  306. * @var Credential
  307. */
  308. public $credential;
  309. /**
  310. * @description endpoint
  311. * @example cs.aliyuncs.com
  312. * @var string
  313. */
  314. public $endpoint;
  315. /**
  316. * @description proxy white list
  317. * @example http://localhost
  318. * @var string
  319. */
  320. public $noProxy;
  321. /**
  322. * @description max idle conns
  323. * @example 3
  324. * @var int
  325. */
  326. public $maxIdleConns;
  327. /**
  328. * @description network for endpoint
  329. * @example public
  330. * @var string
  331. */
  332. public $network;
  333. /**
  334. * @description user agent
  335. * @example Alibabacloud/1
  336. * @var string
  337. */
  338. public $userAgent;
  339. /**
  340. * @description suffix for endpoint
  341. * @example aliyun
  342. * @var string
  343. */
  344. public $suffix;
  345. /**
  346. * @description socks5 proxy
  347. * @var string
  348. */
  349. public $socks5Proxy;
  350. /**
  351. * @description socks5 network
  352. * @example TCP
  353. * @var string
  354. */
  355. public $socks5NetWork;
  356. /**
  357. * @description endpoint type
  358. * @example internal
  359. * @var string
  360. */
  361. public $endpointType;
  362. /**
  363. * @description OpenPlatform endpoint
  364. * @example openplatform.aliyuncs.com
  365. * @var string
  366. */
  367. public $openPlatformEndpoint;
  368. /**
  369. * @description credential type
  370. * @example access_key
  371. * @deprecated
  372. * @var string
  373. */
  374. public $type;
  375. /**
  376. * @description Signature Version
  377. * @example v1
  378. * @var string
  379. */
  380. public $signatureVersion;
  381. /**
  382. * @description Signature Algorithm
  383. * @example ACS3-HMAC-SHA256
  384. * @var string
  385. */
  386. public $signatureAlgorithm;
  387. /**
  388. * @description Global Parameters
  389. * @var GlobalParameters
  390. */
  391. public $globalParameters;
  392. /**
  393. * @description privite key for client certificate
  394. * @example MIIEvQ
  395. * @var string
  396. */
  397. public $key;
  398. /**
  399. * @description client certificate
  400. * @example -----BEGIN CERTIFICATE-----xxx-----END CERTIFICATE-----
  401. * @var string
  402. */
  403. public $cert;
  404. /**
  405. * @description server certificate
  406. * @example -----BEGIN CERTIFICATE-----xxx-----END CERTIFICATE-----
  407. * @var string
  408. */
  409. public $ca;
  410. /**
  411. * @description disable HTTP/2
  412. * @example false
  413. * @var bool
  414. */
  415. public $disableHttp2;
  416. }