实例介绍
【全开源】螃蟹霸屏1.6.8.zip
【实例截图】
【核心代码】
文件清单
└── 【全开源】螃蟹霸屏1.6.8
└── crab_hot_video
├── app
│ ├── activity
│ │ ├── Admin.php
│ │ └── view
│ │ ├── form.html
│ │ └── main.html
│ ├── agent
│ │ ├── Admin.php
│ │ ├── Agent.php
│ │ └── view
│ │ ├── activity.html
│ │ ├── add_shop.html
│ │ ├── data.html
│ │ ├── edit.html
│ │ ├── footer.html
│ │ ├── index.html
│ │ ├── login.html
│ │ ├── my.html
│ │ └── shop.html
│ ├── agent_manage
│ │ ├── Admin.php
│ │ └── view
│ │ ├── form.html
│ │ └── main.html
│ ├── card
│ │ ├── Admin.php
│ │ └── view
│ │ ├── form.html
│ │ ├── main.html
│ │ └── record.html
│ ├── command
│ │ ├── Basic.php
│ │ ├── Common.php
│ │ ├── model
│ │ │ ├── hot_video_activity.php
│ │ │ └── hot_video_reissue.php
│ │ ├── Queue.php
│ │ ├── README.md
│ │ └── service
│ │ ├── CommonService.php
│ │ └── DataService.php
│ ├── common
│ │ └── view
│ │ ├── footer.html
│ │ ├── header.html
│ │ ├── message.html
│ │ ├── mobile_footer.html
│ │ └── mobile_header.html
│ ├── common.php
│ ├── defines.php
│ ├── douyin
│ │ ├── Coupon.php
│ │ ├── Demo.php
│ │ ├── Draw.php
│ │ ├── Index.php
│ │ ├── Login.php
│ │ └── view
│ │ ├── card.html
│ │ ├── draw.html
│ │ ├── index_1.html
│ │ ├── index_3.html
│ │ ├── index.html
│ │ └── verify.html
│ ├── function.php
│ ├── material
│ │ ├── Admin.php
│ │ └── view
│ │ ├── form.html
│ │ ├── form_task.html
│ │ ├── main.html
│ │ └── task.html
│ ├── member
│ │ ├── Admin.php
│ │ └── view
│ │ └── main.html
│ ├── merchant
│ │ ├── Admin.php
│ │ └── view
│ │ ├── form.html
│ │ ├── form_manager.html
│ │ ├── main.html
│ │ └── main_manager.html
│ ├── plugs
│ │ ├── Admin.php
│ │ ├── Doc.php
│ │ ├── Interfaces.php
│ │ └── view
│ │ ├── main.html
│ │ └── setting.html
│ ├── queue
│ │ ├── Admin.php
│ │ └── view
│ │ └── main.html
│ ├── README.md
│ ├── relation
│ │ ├── Admin.php
│ │ └── view
│ │ ├── form.html
│ │ └── main.html
│ ├── service
│ │ ├── ActivityService.php
│ │ ├── AgentService.php
│ │ ├── DouyinService.php
│ │ ├── MemberService.php
│ │ ├── QueueService.php
│ │ ├── RelationService.php
│ │ ├── SettingService.php
│ │ ├── ShopService.php
│ │ └── TableService.php
│ └── shop
│ ├── Admin.php
│ ├── Shop.php
│ └── view
│ ├── activity.html
│ ├── coupon_consume.html
│ ├── coupon.html
│ ├── login.html
│ ├── new_activity.html
│ ├── new_coupon.html
│ ├── openid_list.html
│ ├── shop_common_footer.html
│ ├── shop_coupon.html
│ ├── shop_edit.html
│ ├── shop_info.html
│ └── user.html
├── composer.json
├── icon.jpg
├── init.php
├── LICENSE
├── manifest.xml
├── module.php
├── README.md
├── receiver.php
├── ru_rpgrade.php
├── site.php
├── static
│ ├── agent
│ │ ├── css
│ │ │ ├── common.css
│ │ │ ├── index02.css
│ │ │ ├── index03.css
│ │ │ ├── index04.css
│ │ │ ├── index05.css
│ │ │ ├── index06.css
│ │ │ ├── index07.css
│ │ │ ├── index08.css
│ │ │ ├── index09.css
│ │ │ ├── index.css
│ │ │ ├── layui.css
│ │ │ ├── normalize.css
│ │ │ ├── px_Popup.css
│ │ │ ├── px_Popup.css.map
│ │ │ ├── px_Popup.less
│ │ │ └── px_Popup.wxss
│ │ ├── default.png
│ │ ├── fonts
│ │ │ └── iconfont.css
│ │ ├── js
│ │ │ ├── flexible.js
│ │ │ ├── jquery-3.2.1.min.js
│ │ │ ├── layui.all.js
│ │ │ ├── layui.js
│ │ │ ├── Popup.js
│ │ │ └── rolldate.min.js
│ │ ├── logo.png
│ │ └── top_banner.png
│ ├── common.js
│ ├── draw
│ │ ├── common
│ │ │ ├── css
│ │ │ │ ├── common.css
│ │ │ │ ├── common_mobile.css
│ │ │ │ ├── common_mobile.css.map
│ │ │ │ ├── common_mobile.less
│ │ │ │ ├── common_mobile.wxss
│ │ │ │ ├── my.css
│ │ │ │ ├── my.css.map
│ │ │ │ ├── my.less
│ │ │ │ └── swiper.min.css
│ │ │ ├── iconfont
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_fontclass.html
│ │ │ │ ├── demo_symbol.html
│ │ │ │ ├── demo_unicode.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.js
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── image
│ │ │ │ ├── icon
│ │ │ │ │ ├── box0.png
│ │ │ │ │ ├── box1.png
│ │ │ │ │ ├── box2.png
│ │ │ │ │ ├── box3.png
│ │ │ │ │ ├── box4.png
│ │ │ │ │ ├── box5.png
│ │ │ │ │ ├── box6.png
│ │ │ │ │ └── drag
│ │ │ │ │ ├── drag1.png
│ │ │ │ │ ├── drag2.png
│ │ │ │ │ ├── drag3.png
│ │ │ │ │ ├── drag4.png
│ │ │ │ │ ├── drag5.png
│ │ │ │ │ └── drag_box.png
│ │ │ │ ├── prize
│ │ │ │ │ ├── prize1.png
│ │ │ │ │ ├── prize2.png
│ │ │ │ │ └── prize3.png
│ │ │ │ ├── redPack
│ │ │ │ │ ├── bottom2.png
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── dianzhui.png
│ │ │ │ │ ├── gold.png
│ │ │ │ │ ├── middle.png
│ │ │ │ │ ├── top.png
│ │ │ │ │ └── yihan.png
│ │ │ │ └── rule
│ │ │ │ ├── close.png
│ │ │ │ ├── star1.png
│ │ │ │ └── star2.png
│ │ │ └── js
│ │ │ ├── h5_game_common.js
│ │ │ ├── jquery-3.5.1.min.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.rotate.js
│ │ │ └── swiper.jquery.min.js
│ │ └── zhuanpan
│ │ ├── css
│ │ │ ├── index.css
│ │ │ ├── index.css.map
│ │ │ └── index.less
│ │ └── image
│ │ ├── 100.png
│ │ ├── 20.png
│ │ ├── 50.png
│ │ ├── bg.png
│ │ ├── border.png
│ │ ├── button.png
│ │ ├── caidai.png
│ │ ├── circle.png
│ │ ├── dark.png
│ │ ├── face.png
│ │ ├── gift.png
│ │ ├── light.png
│ │ ├── list.png
│ │ └── title.png
│ ├── fonts
│ │ ├── element-icons.535877f.woff
│ │ └── element-icons.732389d.ttf
│ ├── food
│ │ ├── css
│ │ │ ├── app.907a183c.css
│ │ │ └── chunk-vendors.0d53fc90.css
│ │ ├── img
│ │ │ ├── backgrount_bottom.38b6cc72.png
│ │ │ ├── backgrount_bottom_center.0ff1aa8f.png
│ │ │ ├── backgrount_top.bc05e5d8.gif
│ │ │ ├── backgrount_top_center.539dfaf7.png
│ │ │ ├── button.d849e1b8.png
│ │ │ ├── popbg_bottom.e0db1472.png
│ │ │ ├── popbg_top.83dbf111.png
│ │ │ └── pop_button.b39a7f9d.gif
│ │ └── js
│ │ ├── app.94b485d2.js
│ │ └── chunk-vendors.e9cbf76c.js
│ ├── plugs
│ │ ├── cityselect
│ │ │ ├── citydata.min.js
│ │ │ ├── city-select.css
│ │ │ └── cityselect.js
│ │ ├── flexible.js
│ │ └── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 2.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 3.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 4.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 5.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 6.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ └── modules
│ │ │ ├── carousel.js
│ │ │ ├── code.js
│ │ │ ├── colorpicker.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── rate.js
│ │ │ ├── slider.js
│ │ │ ├── table.js
│ │ │ ├── transfer.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ ├── util.js
│ │ │ └── xm_select.js
│ │ ├── layui.all.js
│ │ └── layui.js
│ ├── require.js
│ ├── shop
│ │ ├── css
│ │ │ ├── activity.css
│ │ │ ├── after_index.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap-datetimepicker.min.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── card_ter.css
│ │ │ ├── examine.css
│ │ │ ├── font-awesome.css
│ │ │ ├── infor.css
│ │ │ ├── login.css
│ │ │ ├── mui.css
│ │ │ ├── new_activity.css
│ │ │ ├── new_card.css
│ │ │ ├── openid_list.css
│ │ │ ├── quill.snow.css
│ │ │ ├── receive.css
│ │ │ ├── weui.css
│ │ │ └── write_off.css
│ │ ├── font
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── fonts
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ └── mui.ttf
│ │ ├── img
│ │ │ ├── hj.png
│ │ │ ├── kaquan.png
│ │ │ ├── qiepian.png
│ │ │ ├── shangchaun.png
│ │ │ ├── top_banner.png
│ │ │ └── user.png
│ │ └── js
│ │ ├── bootstrap-datetimepicker.js
│ │ ├── jquery-3.2.1.min.js
│ │ ├── jquery.form.js
│ │ ├── jquery.form.min.js
│ │ ├── mui.min.js
│ │ ├── mystyle.js
│ │ ├── quill.js
│ │ └── wangEditor.min.js
│ ├── theme
│ │ ├── css
│ │ │ ├── card.css
│ │ │ ├── card.css.map
│ │ │ ├── card.less
│ │ │ ├── card.wxss
│ │ │ ├── console.css
│ │ │ ├── console.css.map
│ │ │ ├── console.custom.less
│ │ │ ├── console.dynamic.less
│ │ │ ├── console.layui.css
│ │ │ ├── console.layui.css.map
│ │ │ ├── console.layui.less
│ │ │ ├── console.less
│ │ │ ├── console.we7.css
│ │ │ ├── console.we7.css.map
│ │ │ ├── console.we7.less
│ │ │ ├── console.wxss
│ │ │ ├── icon
│ │ │ │ ├── douyin.css
│ │ │ │ ├── dy_global.css
│ │ │ │ ├── dy_global.css.map
│ │ │ │ ├── dy_global.less
│ │ │ │ ├── dy_global.wxss
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── index.css
│ │ │ ├── index.css.map
│ │ │ ├── index.less
│ │ │ ├── index.wxss
│ │ │ ├── normalize.css
│ │ │ ├── popup.css
│ │ │ ├── pupop.css
│ │ │ ├── pupop.css.map
│ │ │ ├── pupop.less
│ │ │ └── pupop.wxss
│ │ └── img
│ │ ├── 404_icon.png
│ │ ├── 505_icon.png
│ │ ├── couponBg.png
│ │ ├── coupon.png
│ │ ├── erweima.png
│ │ ├── headimg.png
│ │ ├── image.png
│ │ ├── no-data.png
│ │ ├── timg.png
│ │ └── upimg.png
│ ├── uploadself.css
│ └── uploadself.js
├── template
│ └── form.html
└── vendor
├── adbario
│ └── php-dot-notation
│ ├── composer.json
│ ├── LICENSE.md
│ └── src
│ ├── Dot.php
│ └── helpers.php
├── alibabacloud
│ ├── client
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE.md
│ │ ├── NOTICE.md
│ │ ├── README.md
│ │ ├── README-zh-CN.md
│ │ ├── src
│ │ │ ├── Accept.php
│ │ │ ├── AlibabaCloud.php
│ │ │ ├── Clients
│ │ │ │ ├── AccessKeyClient.php
│ │ │ │ ├── BearerTokenClient.php
│ │ │ │ ├── Client.php
│ │ │ │ ├── EcsRamRoleClient.php
│ │ │ │ ├── ManageTrait.php
│ │ │ │ ├── RamRoleArnClient.php
│ │ │ │ ├── RsaKeyPairClient.php
│ │ │ │ └── StsClient.php
│ │ │ ├── Config
│ │ │ │ ├── Config.php
│ │ │ │ └── Data.php
│ │ │ ├── Credentials
│ │ │ │ ├── AccessKeyCredential.php
│ │ │ │ ├── BearerTokenCredential.php
│ │ │ │ ├── CredentialsInterface.php
│ │ │ │ ├── EcsRamRoleCredential.php
│ │ │ │ ├── Ini
│ │ │ │ │ ├── CreateTrait.php
│ │ │ │ │ ├── IniCredential.php
│ │ │ │ │ └── OptionsTrait.php
│ │ │ │ ├── Providers
│ │ │ │ │ ├── CredentialsProvider.php
│ │ │ │ │ ├── EcsRamRoleProvider.php
│ │ │ │ │ ├── Provider.php
│ │ │ │ │ ├── RamRoleArnProvider.php
│ │ │ │ │ └── RsaKeyPairProvider.php
│ │ │ │ ├── RamRoleArnCredential.php
│ │ │ │ ├── Requests
│ │ │ │ │ ├── AssumeRole.php
│ │ │ │ │ └── GenerateSessionAccessKey.php
│ │ │ │ ├── RsaKeyPairCredential.php
│ │ │ │ └── StsCredential.php
│ │ │ ├── DefaultAcsClient.php
│ │ │ ├── Encode.php
│ │ │ ├── Exception
│ │ │ │ ├── AlibabaCloudException.php
│ │ │ │ ├── ClientException.php
│ │ │ │ └── ServerException.php
│ │ │ ├── Filter
│ │ │ │ ├── ApiFilter.php
│ │ │ │ ├── ClientFilter.php
│ │ │ │ ├── CredentialFilter.php
│ │ │ │ ├── Filter.php
│ │ │ │ └── HttpFilter.php
│ │ │ ├── Functions.php
│ │ │ ├── Log
│ │ │ │ └── LogFormatter.php
│ │ │ ├── Profile
│ │ │ │ └── DefaultProfile.php
│ │ │ ├── Regions
│ │ │ │ ├── EndpointProvider.php
│ │ │ │ ├── LocationService.php
│ │ │ │ └── LocationServiceRequest.php
│ │ │ ├── Release.php
│ │ │ ├── Request
│ │ │ │ ├── Request.php
│ │ │ │ ├── RoaRequest.php
│ │ │ │ ├── RpcRequest.php
│ │ │ │ ├── Traits
│ │ │ │ │ ├── AcsTrait.php
│ │ │ │ │ ├── ClientTrait.php
│ │ │ │ │ ├── DeprecatedRoaTrait.php
│ │ │ │ │ ├── DeprecatedTrait.php
│ │ │ │ │ └── RetryTrait.php
│ │ │ │ └── UserAgent.php
│ │ │ ├── Resolver
│ │ │ │ ├── ActionResolverTrait.php
│ │ │ │ ├── ApiResolver.php
│ │ │ │ ├── CallTrait.php
│ │ │ │ ├── Roa.php
│ │ │ │ ├── Rpc.php
│ │ │ │ └── VersionResolver.php
│ │ │ ├── Result
│ │ │ │ └── Result.php
│ │ │ ├── SDK.php
│ │ │ ├── Signature
│ │ │ │ ├── BearerTokenSignature.php
│ │ │ │ ├── ShaHmac1Signature.php
│ │ │ │ ├── ShaHmac256Signature.php
│ │ │ │ ├── ShaHmac256WithRsaSignature.php
│ │ │ │ ├── SignatureInterface.php
│ │ │ │ └── Signature.php
│ │ │ ├── Support
│ │ │ │ ├── Arrays.php
│ │ │ │ ├── Path.php
│ │ │ │ └── Sign.php
│ │ │ └── Traits
│ │ │ ├── ArrayAccessTrait.php
│ │ │ ├── ClientTrait.php
│ │ │ ├── DefaultRegionTrait.php
│ │ │ ├── EndpointTrait.php
│ │ │ ├── HasDataTrait.php
│ │ │ ├── HistoryTrait.php
│ │ │ ├── HttpTrait.php
│ │ │ ├── LogTrait.php
│ │ │ ├── MockTrait.php
│ │ │ ├── ObjectAccessTrait.php
│ │ │ ├── RegionTrait.php
│ │ │ └── RequestTrait.php
│ │ └── UPGRADING.md
│ └── sdk
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── composer.php
│ ├── CONTRIBUTING.md
│ ├── LICENSE.md
│ ├── NOTICE.md
│ ├── README.md
│ ├── README-zh-CN.md
│ ├── src
│ │ ├── Aas
│ │ │ ├── Aas.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20150701
│ │ │ └── AasApiResolver.php
│ │ ├── Acm
│ │ │ ├── Acm.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200206
│ │ │ └── AcmApiResolver.php
│ │ ├── AcmsOpen
│ │ │ ├── AcmsOpen.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200206
│ │ │ └── AcmsOpenApiResolver.php
│ │ ├── Actiontrail
│ │ │ ├── Actiontrail.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20171204
│ │ │ │ └── ActiontrailApiResolver.php
│ │ │ └── V20200706
│ │ │ └── ActiontrailApiResolver.php
│ │ ├── Adb
│ │ │ ├── Adb.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190315
│ │ │ └── AdbApiResolver.php
│ │ ├── Aegis
│ │ │ ├── Aegis.php
│ │ │ ├── AegisVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20161111
│ │ │ ├── AegisApiResolver.php
│ │ │ └── Aegis.php
│ │ ├── Afs
│ │ │ ├── Afs.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180112
│ │ │ └── AfsApiResolver.php
│ │ ├── Aiccs
│ │ │ ├── Aiccs.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191015
│ │ │ └── AiccsApiResolver.php
│ │ ├── Airec
│ │ │ ├── Airec.php
│ │ │ ├── AirecVersion.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20181012
│ │ │ │ ├── AirecApiResolver.php
│ │ │ │ └── Airec.php
│ │ │ └── V20201126
│ │ │ └── AirecApiResolver.php
│ │ ├── Alidns
│ │ │ ├── 2015-01-09
│ │ │ │ ├── AddBatchDomainFromFile.xml
│ │ │ │ ├── AddBatchDomain.xml
│ │ │ │ ├── AddBatchRr.xml
│ │ │ │ ├── AddBatchTempDomains.xml
│ │ │ │ ├── AddCustomLine.xml
│ │ │ │ ├── AddDnsCacheDomain.xml
│ │ │ │ ├── AddDnsGtmAccessStrategy.xml
│ │ │ │ ├── AddDnsGtmAddressPool.xml
│ │ │ │ ├── AddDnsGtmMonitor.xml
│ │ │ │ ├── AddDnsMonitor.xml
│ │ │ │ ├── AddDnsTemplateRecord.xml
│ │ │ │ ├── AddDnsTemplate.xml
│ │ │ │ ├── AddDohUser.xml
│ │ │ │ ├── AddDomainBackup.xml
│ │ │ │ ├── AddDomainGroup.xml
│ │ │ │ ├── AddDomainRecord.xml
│ │ │ │ ├── AddDomain.xml
│ │ │ │ ├── AddGtmAccessStrategy.xml
│ │ │ │ ├── AddGtmAddressPool.xml
│ │ │ │ ├── AddGtmMonitor.xml
│ │ │ │ ├── AddGtmRecoveryPlan.xml
│ │ │ │ ├── AddRecordGroup.xml
│ │ │ │ ├── AddSiteMonitor.xml
│ │ │ │ ├── AddSlaveDnsConfig.xml
│ │ │ │ ├── BatchOperateSubDomainRecords.xml
│ │ │ │ ├── BindInstanceDomains.xml
│ │ │ │ ├── CancelOrder.xml
│ │ │ │ ├── ChangeBatchDomainGroup.xml
│ │ │ │ ├── ChangeDomainGroup.xml
│ │ │ │ ├── ChangeDomainOfDnsProduct.xml
│ │ │ │ ├── ChangeDomainStarmark.xml
│ │ │ │ ├── ChangeRecordGroup.xml
│ │ │ │ ├── CheckDomainRecord.xml
│ │ │ │ ├── CheckSubDomainRecord4Add.xml
│ │ │ │ ├── CloseGslb.xml
│ │ │ │ ├── CopyGtmConfig.xml
│ │ │ │ ├── CreateInstance.xml
│ │ │ │ ├── CreateRenewOrder.xml
│ │ │ │ ├── DeleteBatchDomain.xml
│ │ │ │ ├── DeleteBatchRr.xml
│ │ │ │ ├── DeleteCustomLines.xml
│ │ │ │ ├── DeleteDnsCacheDomain.xml
│ │ │ │ ├── DeleteDnsGtmAccessStrategy.xml
│ │ │ │ ├── DeleteDnsGtmAddressPool.xml
│ │ │ │ ├── DeleteDnsMonitor.xml
│ │ │ │ ├── DeleteDnsTemplateRecord.xml
│ │ │ │ ├── DeleteDnsTemplate.xml
│ │ │ │ ├── DeleteDomainBackup.xml
│ │ │ │ ├── DeleteDomainGroup.xml
│ │ │ │ ├── DeleteDomainRecord.xml
│ │ │ │ ├── DeleteDomain.xml
│ │ │ │ ├── DeleteGtmAccessStrategy.xml
│ │ │ │ ├── DeleteGtmAddressPool.xml
│ │ │ │ ├── DeleteGtmRecoveryPlan.xml
│ │ │ │ ├── DeleteRecordGroup.xml
│ │ │ │ ├── DeleteSiteMonitors.xml
│ │ │ │ ├── DeleteSlaveDnsConfig.xml
│ │ │ │ ├── DeleteSubDomainRecords.xml
│ │ │ │ ├── DescribeAuthorityDomainRecords.xml
│ │ │ │ ├── DescribeBatchLogs.xml
│ │ │ │ ├── DescribeBatchResultCount.xml
│ │ │ │ ├── DescribeBatchResultDetail.xml
│ │ │ │ ├── DescribeBundleRecordTaskResult.xml
│ │ │ │ ├── DescribeBundleTempDomains.xml
│ │ │ │ ├── DescribeCanAddMonitorDomainRrs.xml
│ │ │ │ ├── DescribeCanAddMonitorSubDomainInfo.xml
│ │ │ │ ├── DescribeCustomLines.xml
│ │ │ │ ├── DescribeCustomLine.xml
│ │ │ │ ├── DescribeDnsCacheDomains.xml
│ │ │ │ ├── DescribeDnsGtmAccessStrategies.xml
│ │ │ │ ├── DescribeDnsGtmAccessStrategyAvailableConfig.xml
│ │ │ │ ├── DescribeDnsGtmAccessStrategy.xml
│ │ │ │ ├── DescribeDnsGtmAddrAttributeInfo.xml
│ │ │ │ ├── DescribeDnsGtmAddressPoolAvailableConfig.xml
│ │ │ │ ├── DescribeDnsGtmAvailableAlertGroup.xml
│ │ │ │ ├── DescribeDnsGtmInstanceAddressPools.xml
│ │ │ │ ├── DescribeDnsGtmInstanceAddressPool.xml
│ │ │ │ ├── DescribeDnsGtmInstanceStatus.xml
│ │ │ │ ├── DescribeDnsGtmInstances.xml
│ │ │ │ ├── DescribeDnsGtmInstanceSystemCname.xml
│ │ │ │ ├── DescribeDnsGtmInstance.xml
│ │ │ │ ├── DescribeDnsGtmLatencyAccessOverviews.xml
│ │ │ │ ├── DescribeDnsGtmLogs.xml
│ │ │ │ ├── DescribeDnsGtmMonitorAvailableConfig.xml
│ │ │ │ ├── DescribeDnsGtmMonitorConfig.xml
│ │ │ │ ├── DescribeDnsMonitorAvailableNodes.xml
│ │ │ │ ├── DescribeDnsMonitors.xml
│ │ │ │ ├── DescribeDnsMonitorTaskConfig.xml
│ │ │ │ ├── DescribeDnsMonitor.xml
│ │ │ │ ├── DescribeDnsProductInstances.xml
│ │ │ │ ├── DescribeDnsProductInstance.xml
│ │ │ │ ├── DescribeDNSSLBSubDomains.xml
│ │ │ │ ├── DescribeDnsTemplateInfo.xml
│ │ │ │ ├── DescribeDnsTemplates.xml
│ │ │ │ ├── DescribeDohAccountStatistics.xml
│ │ │ │ ├── DescribeDohDomainStatisticsSummary.xml
│ │ │ │ ├── DescribeDohDomainStatistics.xml
│ │ │ │ ├── DescribeDohSdkList.xml
│ │ │ │ ├── DescribeDohSubDomainStatisticsSummary.xml
│ │ │ │ ├── DescribeDohSubDomainStatistics.xml
│ │ │ │ ├── DescribeDohUserInfo.xml
│ │ │ │ ├── DescribeDomainBackups.xml
│ │ │ │ ├── DescribeDomainBackup.xml
│ │ │ │ ├── DescribeDomainDnsAttackStatistics.xml
│ │ │ │ ├── DescribeDomainDnsProtectLogs.xml
│ │ │ │ ├── DescribeDomainDnssecInfo.xml
│ │ │ │ ├── DescribeDomainDnsStatistics.xml
│ │ │ │ ├── DescribeDomainGroups.xml
│ │ │ │ ├── DescribeDomainInfo.xml
│ │ │ │ ├── DescribeDomainLogs.xml
│ │ │ │ ├── DescribeDomainNs.xml
│ │ │ │ ├── DescribeDomainRecordInfo.xml
│ │ │ │ ├── DescribeDomainRecords.xml
│ │ │ │ ├── DescribeDomainSoa.xml
│ │ │ │ ├── DescribeDomainStatisticsSummary.xml
│ │ │ │ ├── DescribeDomainStatistics.xml
│ │ │ │ ├── DescribeDomains.xml
│ │ │ │ ├── DescribeDomainWhoisInfo.xml
│ │ │ │ ├── DescribeGisInstances.xml
│ │ │ │ ├── DescribeGslbInstances.xml
│ │ │ │ ├── DescribeGslbInstance.xml
│ │ │ │ ├── DescribeGtmAccessStrategies.xml
│ │ │ │ ├── DescribeGtmAccessStrategyAvailableConfig.xml
│ │ │ │ ├── DescribeGtmAccessStrategy.xml
│ │ │ │ ├── DescribeGtmAvailableAlertGroup.xml
│ │ │ │ ├── DescribeGtmInstanceAddressPools.xml
│ │ │ │ ├── DescribeGtmInstanceAddressPool.xml
│ │ │ │ ├── DescribeGtmInstanceStatus.xml
│ │ │ │ ├── DescribeGtmInstances.xml
│ │ │ │ ├── DescribeGtmInstanceSystemCname.xml
│ │ │ │ ├── DescribeGtmInstance.xml
│ │ │ │ ├── DescribeGtmLogs.xml
│ │ │ │ ├── DescribeGtmMonitorAvailableConfig.xml
│ │ │ │ ├── DescribeGtmMonitorConfig.xml
│ │ │ │ ├── DescribeGtmRecoveryPlanAvailableConfig.xml
│ │ │ │ ├── DescribeGtmRecoveryPlans.xml
│ │ │ │ ├── DescribeGtmRecoveryPlan.xml
│ │ │ │ ├── DescribeImportDomainRecordsResult.xml
│ │ │ │ ├── DescribeImportDomainsResult.xml
│ │ │ │ ├── DescribeInstanceDomains.xml
│ │ │ │ ├── DescribeInstanceExtendStatus.xml
│ │ │ │ ├── DescribeRecordGroups.xml
│ │ │ │ ├── DescribeRecordLogs.xml
│ │ │ │ ├── DescribeRecordStatisticsSummary.xml
│ │ │ │ ├── DescribeRecordStatistics.xml
│ │ │ │ ├── DescribeRestoreDomainResults.xml
│ │ │ │ ├── DescribeRestoringDomainTasks.xml
│ │ │ │ ├── DescribeSiteMonitorAlertLogs.xml
│ │ │ │ ├── DescribeSiteMonitorIspCityInfos.xml
│ │ │ │ ├── DescribeSiteMonitorIspInfos.xml
│ │ │ │ ├── DescribeSiteMonitorIspPointTrends.xml
│ │ │ │ ├── DescribeSiteMonitorIspTrends.xml
│ │ │ │ ├── DescribeSiteMonitorNodeTrends.xml
│ │ │ │ ├── DescribeSiteMonitorProvinceTrends.xml
│ │ │ │ ├── DescribeSiteMonitors.xml
│ │ │ │ ├── DescribeSiteMonitor.xml
│ │ │ │ ├── DescribeSlaveDnsConfig.xml
│ │ │ │ ├── DescribeSlaveDnsDomains.xml
│ │ │ │ ├── DescribeSlaveDnsStatus.xml
│ │ │ │ ├── DescribeSubDomainRecords.xml
│ │ │ │ ├── DescribeSupportLines.xml
│ │ │ │ ├── DescribeTags.xml
│ │ │ │ ├── DescribeTransferDomains.xml
│ │ │ │ ├── ExecuteGtmRecoveryPlan.xml
│ │ │ │ ├── GetGisContractStatus.xml
│ │ │ │ ├── GetGisDownloadUrl.xml
│ │ │ │ ├── GetMainDomainName.xml
│ │ │ │ ├── GetTxtRecordForRetrievalDomainName.xml
│ │ │ │ ├── GetTxtRecordForVerify.xml
│ │ │ │ ├── ListTagResources.xml
│ │ │ │ ├── MarkGslbStatusOk.xml
│ │ │ │ ├── ModifyHichinaDomainDNS.xml
│ │ │ │ ├── MoveDomainResourceGroup.xml
│ │ │ │ ├── MoveGtmResourceGroup.xml
│ │ │ │ ├── NotifyDnsAttackBlackHold.xml
│ │ │ │ ├── NotifyDnsAttackClean.xml
│ │ │ │ ├── OpenGslb.xml
│ │ │ │ ├── OperateBatchDomain.xml
│ │ │ │ ├── OrderPaidNotice.xml
│ │ │ │ ├── PreviewGtmRecoveryPlan.xml
│ │ │ │ ├── QueryAllowRenewPeriodList.xml
│ │ │ │ ├── QueryCreateInstancePrice.xml
│ │ │ │ ├── QueryDnsMonitorErrorEvent.xml
│ │ │ │ ├── QueryDnsMonitorFailureRate.xml
│ │ │ │ ├── QueryDnsMonitorHistory.xml
│ │ │ │ ├── QueryDnsMonitorLast.xml
│ │ │ │ ├── QueryDnsMonitorNodeResponseTime.xml
│ │ │ │ ├── QueryDnsMonitorStatistics.xml
│ │ │ │ ├── QueryInstanceUnpaidOrder.xml
│ │ │ │ ├── QueryRenewPrice.xml
│ │ │ │ ├── RefreshDomainRecord.xml
│ │ │ │ ├── RefundOrder.xml
│ │ │ │ ├── ResetBatchResult.xml
│ │ │ │ ├── ResetImportDomainsResult.xml
│ │ │ │ ├── RestoreDomainByBackup.xml
│ │ │ │ ├── RetrieveBatchDomain.xml
│ │ │ │ ├── RetrieveDomain.xml
│ │ │ │ ├── RollbackGtmRecoveryPlan.xml
│ │ │ │ ├── ScanSubdomainRecords.xml
│ │ │ │ ├── SetDnsGtmAccessMode.xml
│ │ │ │ ├── SetDnsGtmMonitorStatus.xml
│ │ │ │ ├── SetDNSSLBStatus.xml
│ │ │ │ ├── SetDomainDnssecStatus.xml
│ │ │ │ ├── SetDomainRecordStatus.xml
│ │ │ │ ├── SetGisContractStatus.xml
│ │ │ │ ├── SetGtmAccessMode.xml
│ │ │ │ ├── SetGtmMonitorStatus.xml
│ │ │ │ ├── SetSiteMonitorsStatus.xml
│ │ │ │ ├── SetSlaveDnsConfigStatus.xml
│ │ │ │ ├── SubmitBundleRecordTask.xml
│ │ │ │ ├── SubmitImportDomainRecordsFile.xml
│ │ │ │ ├── SubmitImportDomainsFile.xml
│ │ │ │ ├── SwitchDnsGtmInstanceStrategyMode.xml
│ │ │ │ ├── SwitchLineType.xml
│ │ │ │ ├── SyncWithMasterDns.xml
│ │ │ │ ├── TagResources.xml
│ │ │ │ ├── TransferBatchDomain.xml
│ │ │ │ ├── TransferDomain.xml
│ │ │ │ ├── UnbindInstanceDomains.xml
│ │ │ │ ├── UntagResources.xml
│ │ │ │ ├── UpdateBatchRr.xml
│ │ │ │ ├── UpdateCustomLine.xml
│ │ │ │ ├── UpdateDnsCacheDomainRemark.xml
│ │ │ │ ├── UpdateDnsCacheDomain.xml
│ │ │ │ ├── UpdateDnsGtmAccessStrategy.xml
│ │ │ │ ├── UpdateDnsGtmAddressPool.xml
│ │ │ │ ├── UpdateDnsGtmInstanceGlobalConfig.xml
│ │ │ │ ├── UpdateDnsGtmMonitor.xml
│ │ │ │ ├── UpdateDnsMonitor.xml
│ │ │ │ ├── UpdateDNSSLBWeight.xml
│ │ │ │ ├── UpdateDnsTemplateName.xml
│ │ │ │ ├── UpdateDnsTemplateRecord.xml
│ │ │ │ ├── UpdateDomainBackup.xml
│ │ │ │ ├── UpdateDomainGroup.xml
│ │ │ │ ├── UpdateDomainRecordRemark.xml
│ │ │ │ ├── UpdateDomainRecord.xml
│ │ │ │ ├── UpdateDomainRemark.xml
│ │ │ │ ├── UpdateGtmAccessStrategy.xml
│ │ │ │ ├── UpdateGtmAddressPool.xml
│ │ │ │ ├── UpdateGtmInstanceGlobalConfig.xml
│ │ │ │ ├── UpdateGtmMonitor.xml
│ │ │ │ ├── UpdateGtmRecoveryPlan.xml
│ │ │ │ ├── UpdateRecordGroup.xml
│ │ │ │ ├── UpdateSiteMonitor.xml
│ │ │ │ ├── UpdateSlaveDnsConfig.xml
│ │ │ │ ├── ValidateDnsGtmAttributeInfo.xml
│ │ │ │ ├── ValidateDomainCanAdd.xml
│ │ │ │ ├── ValidateDomainCanBind.xml
│ │ │ │ ├── VerifyTxtRecordForRetrievalDomainName.xml
│ │ │ │ └── VerifyTxtRecord.xml
│ │ │ ├── Alidns.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20150109
│ │ │ │ └── AlidnsApiResolver.php
│ │ │ └── version-2015-01-09.xml
│ │ ├── Alikafka
│ │ │ ├── Alikafka.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181015
│ │ │ └── AlikafkaApiResolver.php
│ │ ├── Alimt
│ │ │ ├── Alimt.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181012
│ │ │ └── AlimtApiResolver.php
│ │ ├── Alinlp
│ │ │ ├── Alinlp.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200629
│ │ │ └── AlinlpApiResolver.php
│ │ ├── AliProbe
│ │ │ ├── AliProbe.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20161222
│ │ │ └── AliProbeApiResolver.php
│ │ ├── Aliyuncvc
│ │ │ ├── Aliyuncvc.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20191030
│ │ │ │ └── AliyuncvcApiResolver.php
│ │ │ └── V20200330
│ │ │ └── AliyuncvcApiResolver.php
│ │ ├── AmqpOpen
│ │ │ ├── AmqpOpen.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191212
│ │ │ └── AmqpOpenApiResolver.php
│ │ ├── AppMallsService
│ │ │ ├── AppMallsService.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180224
│ │ │ └── AppMallsServiceApiResolver.php
│ │ ├── ARMS
│ │ │ ├── 2019-08-08
│ │ │ │ ├── AddArmsUser.xml
│ │ │ │ ├── AddGrafana.xml
│ │ │ │ ├── AddIntegration.xml
│ │ │ │ ├── ApplyScenario.xml
│ │ │ │ ├── ArmsAgentDownLoadUrlQuery.xml
│ │ │ │ ├── CheckDataConsistency.xml
│ │ │ │ ├── CheckServiceLinkedRoleForDeleting.xml
│ │ │ │ ├── CheckServiceStatus.xml
│ │ │ │ ├── ConfigAgentLabel.xml
│ │ │ │ ├── ConfigApp.xml
│ │ │ │ ├── CreateAlertContactGroup.xml
│ │ │ │ ├── CreateAlertContact.xml
│ │ │ │ ├── CreateApp.xml
│ │ │ │ ├── CreateDispatchRule.xml
│ │ │ │ ├── CreateRetcodeApp.xml
│ │ │ │ ├── CreateWehook.xml
│ │ │ │ ├── DeleteAlertContactGroup.xml
│ │ │ │ ├── DeleteAlertContact.xml
│ │ │ │ ├── DeleteAlertRules.xml
│ │ │ │ ├── DeleteApp.xml
│ │ │ │ ├── DeleteDispatchRule.xml
│ │ │ │ ├── DeleteRetcodeApp.xml
│ │ │ │ ├── DeleteScenario.xml
│ │ │ │ ├── DeleteTraceApp.xml
│ │ │ │ ├── DescribeDispatchRule.xml
│ │ │ │ ├── DescribeTraceLicenseKey.xml
│ │ │ │ ├── DescribeTraceLocation.xml
│ │ │ │ ├── ExportPrometheusRules.xml
│ │ │ │ ├── GetAgentDownloadUrl.xml
│ │ │ │ ├── GetAppApiByPage.xml
│ │ │ │ ├── GetAssumeRoleCredentials.xml
│ │ │ │ ├── GetConsistencySnapshot.xml
│ │ │ │ ├── GetIntegrationToken.xml
│ │ │ │ ├── GetJaegerServiceOperations.xml
│ │ │ │ ├── GetJaegerServices.xml
│ │ │ │ ├── GetJaegerTraces.xml
│ │ │ │ ├── GetJaegerTrace.xml
│ │ │ │ ├── GetMultipleTrace.xml
│ │ │ │ ├── GetPrometheusApiToken.xml
│ │ │ │ ├── GetRetcodeShareUrl.xml
│ │ │ │ ├── GetSlsProjectInfo.xml
│ │ │ │ ├── GetStack.xml
│ │ │ │ ├── GetTraceApp.xml
│ │ │ │ ├── GetTrace.xml
│ │ │ │ ├── ImportAppAlertRules.xml
│ │ │ │ ├── ImportCustomAlertRules.xml
│ │ │ │ ├── ImportPrometheusRules.xml
│ │ │ │ ├── ListClusterFromGrafana.xml
│ │ │ │ ├── ListDashboards.xml
│ │ │ │ ├── ListDispatchRule.xml
│ │ │ │ ├── ListPromClusters.xml
│ │ │ │ ├── ListRetcodeApps.xml
│ │ │ │ ├── ListScenario.xml
│ │ │ │ ├── ListServerlessTopNApps.xml
│ │ │ │ ├── ListTraceApps.xml
│ │ │ │ ├── OpenArmsService.xml
│ │ │ │ ├── OpenVCluster.xml
│ │ │ │ ├── QueryAhasMachineMetric.xml
│ │ │ │ ├── QueryDataset.xml
│ │ │ │ ├── QueryMetricByPage.xml
│ │ │ │ ├── QueryMetric.xml
│ │ │ │ ├── SaveTraceAppConfig.xml
│ │ │ │ ├── SearchAlertContactGroup.xml
│ │ │ │ ├── SearchAlertContact.xml
│ │ │ │ ├── SearchAlertHistories.xml
│ │ │ │ ├── SearchAlertHistorys.xml
│ │ │ │ ├── SearchAlertRules.xml
│ │ │ │ ├── SearchEvents.xml
│ │ │ │ ├── SearchRetcodeAppByPage.xml
│ │ │ │ ├── SearchTraceAppByName.xml
│ │ │ │ ├── SearchTraceAppByPage.xml
│ │ │ │ ├── SearchTracesByPage.xml
│ │ │ │ ├── SearchTraces.xml
│ │ │ │ ├── SendCustomIncidents.xml
│ │ │ │ ├── SendMseIncident.xml
│ │ │ │ ├── SetRetcodeShareStatus.xml
│ │ │ │ ├── StartAlert.xml
│ │ │ │ ├── StopAlert.xml
│ │ │ │ ├── UpdateAlertContactGroup.xml
│ │ │ │ ├── UpdateAlertContact.xml
│ │ │ │ ├── UpdateAlertRule.xml
│ │ │ │ ├── UpdateDispatchRule.xml
│ │ │ │ └── UpdateWebhook.xml
│ │ │ ├── ARMS.php
│ │ │ ├── ARMSVersion.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20181015
│ │ │ │ ├── ARMSApiResolver.php
│ │ │ │ └── ARMS.php
│ │ │ ├── V20190808
│ │ │ │ └── ARMSApiResolver.php
│ │ │ └── version-2019-08-08.xml
│ │ ├── ARMS4FINANCE
│ │ │ ├── ARMS4FINANCE.php
│ │ │ ├── ARMS4FINANCEVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171130
│ │ │ ├── ARMS4FINANCEApiResolver.php
│ │ │ └── ARMS4FINANCE.php
│ │ ├── Baas
│ │ │ ├── Baas.php
│ │ │ ├── BaasVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180731
│ │ │ ├── BaasApiResolver.php
│ │ │ └── Baas.php
│ │ ├── BatchCompute
│ │ │ ├── BatchCompute.php
│ │ │ ├── BatchComputeVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20130111
│ │ │ │ ├── BatchComputeApiResolver.php
│ │ │ │ └── BatchCompute.php
│ │ │ ├── V20150630
│ │ │ │ └── BatchComputeApiResolver.php
│ │ │ └── V20161111
│ │ │ └── BatchComputeApiResolver.php
│ │ ├── Bss
│ │ │ ├── Bss.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20140714
│ │ │ └── BssApiResolver.php
│ │ ├── BssOpenApi
│ │ │ ├── BssOpenApi.php
│ │ │ ├── BssOpenApiVersion.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171214
│ │ │ ├── BssOpenApiApiResolver.php
│ │ │ └── BssOpenApi.php
│ │ ├── Cams
│ │ │ ├── Cams.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200606
│ │ │ └── CamsApiResolver.php
│ │ ├── Cas
│ │ │ ├── Cas.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180713
│ │ │ │ └── CasApiResolver.php
│ │ │ └── V20180813
│ │ │ └── CasApiResolver.php
│ │ ├── Cassandra
│ │ │ ├── Cassandra.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190101
│ │ │ └── CassandraApiResolver.php
│ │ ├── Cbn
│ │ │ ├── Cbn.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170912
│ │ │ └── CbnApiResolver.php
│ │ ├── CCC
│ │ │ ├── CCC.php
│ │ │ ├── CCCVersion.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20170705
│ │ │ │ ├── CCCApiResolver.php
│ │ │ │ └── CCC.php
│ │ │ └── V20200701
│ │ │ └── CCCApiResolver.php
│ │ ├── Ccs
│ │ │ ├── Ccs.php
│ │ │ ├── CcsVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171001
│ │ │ ├── CcsApiResolver.php
│ │ │ └── Ccs.php
│ │ ├── Cdn
│ │ │ ├── 2014-11-11
│ │ │ │ ├── AddCdnDomain.xml
│ │ │ │ ├── AddFCTrigger.xml
│ │ │ │ ├── AddLiveAppRecordConfig.xml
│ │ │ │ ├── AddLiveAppSnapshotConfig.xml
│ │ │ │ ├── AddLiveDomainMapping.xml
│ │ │ │ ├── AddLivePullStreamInfo.xml
│ │ │ │ ├── AddLiveStreamTranscode.xml
│ │ │ │ ├── BatchAddCdnDomain.xml
│ │ │ │ ├── BatchDeleteCdnDomainConfig.xml
│ │ │ │ ├── BatchDescribeDomainBpsData.xml
│ │ │ │ ├── BatchSetCdnDomainConfig.xml
│ │ │ │ ├── BatchStartCdnDomain.xml
│ │ │ │ ├── BatchStopCdnDomain.xml
│ │ │ │ ├── BatchUpdateCdnDomain.xml
│ │ │ │ ├── BlockObjectCaches.xml
│ │ │ │ ├── CreateLiveStreamRecordIndexFiles.xml
│ │ │ │ ├── DeleteCacheExpiredConfig.xml
│ │ │ │ ├── DeleteCdnDomain.xml
│ │ │ │ ├── DeleteFCTrigger.xml
│ │ │ │ ├── DeleteHttpHeaderConfig.xml
│ │ │ │ ├── DeleteLivePullStreamInfo.xml
│ │ │ │ ├── DeleteSpecificConfig.xml
│ │ │ │ ├── DescribeCdnDomainBaseDetail.xml
│ │ │ │ ├── DescribeCdnDomainBillingData.xml
│ │ │ │ ├── DescribeCdnDomainConfigs.xml
│ │ │ │ ├── DescribeCdnDomainDetail.xml
│ │ │ │ ├── DescribeCdnDomainLogs.xml
│ │ │ │ ├── DescribeCdnMonitorData.xml
│ │ │ │ ├── DescribeCdnRegionAndIsp.xml
│ │ │ │ ├── DescribeCdnService.xml
│ │ │ │ ├── DescribeCdnTypes.xml
│ │ │ │ ├── DescribeCdnUserQuota.xml
│ │ │ │ ├── DescribeCurrentCharge95Info.xml
│ │ │ │ ├── DescribeCustomLogConfig.xml
│ │ │ │ ├── DescribeDiamondData.xml
│ │ │ │ ├── DescribeDomainAverageResponseTime.xml
│ │ │ │ ├── DescribeDomainBpsDataByTimeStamp.xml
│ │ │ │ ├── DescribeDomainBpsData.xml
│ │ │ │ ├── DescribeDomainCertificateInfo.xml
│ │ │ │ ├── DescribeDomainCname.xml
│ │ │ │ ├── DescribeDomainConfigs.xml
│ │ │ │ ├── DescribeDomainCustomLogConfig.xml
│ │ │ │ ├── DescribeDomainDownstreamBpsOfEdge.xml
│ │ │ │ ├── DescribeDomainFileSizeProportionData.xml
│ │ │ │ ├── DescribeDomainFlowData.xml
│ │ │ │ ├── DescribeDomainHitRateData.xml
│ │ │ │ ├── DescribeDomainHttpCodeData.xml
│ │ │ │ ├── DescribeDomainHttpsData.xml
│ │ │ │ ├── DescribeDomainISPData.xml
│ │ │ │ ├── DescribeDomainIspLocationDetailData.xml
│ │ │ │ ├── DescribeDomainLogConfig.xml
│ │ │ │ ├── DescribeDomainMax95BpsData.xml
│ │ │ │ ├── DescribeDomainMonthBillingBpsData.xml
│ │ │ │ ├── DescribeDomainOnlineUserNumber.xml
│ │ │ │ ├── DescribeDomainPathData.xml
│ │ │ │ ├── DescribeDomainPnoData.xml
│ │ │ │ ├── DescribeDomainPvData.xml
│ │ │ │ ├── DescribeDomainQoSRt.xml
│ │ │ │ ├── DescribeDomainQpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeBpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeByteHitRateData.xml
│ │ │ │ ├── DescribeDomainRealTimeData.xml
│ │ │ │ ├── DescribeDomainRealTimeHttpCodeData.xml
│ │ │ │ ├── DescribeDomainRealTimeMetric.xml
│ │ │ │ ├── DescribeDomainRealTimeQpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeReqHitRateData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcBpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcHttpCodeData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcTrafficData.xml
│ │ │ │ ├── DescribeDomainRealTimeTrafficData.xml
│ │ │ │ ├── DescribeDomainRegionData.xml
│ │ │ │ ├── DescribeDomainReqHitRateData.xml
│ │ │ │ ├── DescribeDomainsByCustomLogConfig.xml
│ │ │ │ ├── DescribeDomainsBySource.xml
│ │ │ │ ├── DescribeDomainSlowRatio.xml
│ │ │ │ ├── DescribeDomainSrcBpsData.xml
│ │ │ │ ├── DescribeDomainSrcFlowData.xml
│ │ │ │ ├── DescribeDomainsUsageByDay.xml
│ │ │ │ ├── DescribeDomainTopFileTypeVisit.xml
│ │ │ │ ├── DescribeDomainTopReferVisit.xml
│ │ │ │ ├── DescribeDomainTopUrlVisit.xml
│ │ │ │ ├── DescribeDomainUpstreamBpsOfEdge.xml
│ │ │ │ ├── DescribeDomainUpstreamOfCenter.xml
│ │ │ │ ├── DescribeDomainUvData.xml
│ │ │ │ ├── DescribeExtensiveDomainData.xml
│ │ │ │ ├── DescribeFCTrigger.xml
│ │ │ │ ├── DescribeHistoryCharge95Info.xml
│ │ │ │ ├── DescribeIpInfo.xml
│ │ │ │ ├── DescribeL2VipsByDomain.xml
│ │ │ │ ├── DescribeL2VipsByDynamicDomain.xml
│ │ │ │ ├── DescribeLiveAppRecordConfig.xml
│ │ │ │ ├── DescribeLivePullStreamConfig.xml
│ │ │ │ ├── DescribeLiveRecordConfig.xml
│ │ │ │ ├── DescribeLiveSnapshotConfig.xml
│ │ │ │ ├── DescribeLiveSpecificDomainMapping.xml
│ │ │ │ ├── DescribeLiveStreamBitRateData.xml
│ │ │ │ ├── DescribeLiveStreamBpsData.xml
│ │ │ │ ├── DescribeLiveStreamDomainAppInfo.xml
│ │ │ │ ├── DescribeLiveStreamFrameAndBitRateByDomain.xml
│ │ │ │ ├── DescribeLiveStreamFrameInfo.xml
│ │ │ │ ├── DescribeLiveStreamFrameLossRatio.xml
│ │ │ │ ├── DescribeLiveStreamHlsOnlineUserNumByDomain.xml
│ │ │ │ ├── DescribeLiveStreamLimitInfo.xml
│ │ │ │ ├── DescribeLiveStreamNumberList.xml
│ │ │ │ ├── DescribeLiveStreamOnlineBps.xml
│ │ │ │ ├── DescribeLiveStreamOnlineUserNumByDomain.xml
│ │ │ │ ├── DescribeLiveStreamOnlineUserNum.xml
│ │ │ │ ├── DescribeLiveStreamPushData.xml
│ │ │ │ ├── DescribeLiveStreamPushErrors.xml
│ │ │ │ ├── DescribeLiveStreamRecordContent.xml
│ │ │ │ ├── DescribeLiveStreamRecordIndexFiles.xml
│ │ │ │ ├── DescribeLiveStreamRecordIndexFile.xml
│ │ │ │ ├── DescribeLiveStreamRelayPushBitRate.xml
│ │ │ │ ├── DescribeLiveStreamRelayPushData.xml
│ │ │ │ ├── DescribeLiveStreamRelayPushErrors.xml
│ │ │ │ ├── DescribeLiveStreamRoomBitRate.xml
│ │ │ │ ├── DescribeLiveStreamRoomUserNumber.xml
│ │ │ │ ├── DescribeLiveStreamsBlockList.xml
│ │ │ │ ├── DescribeLiveStreamsControlHistory.xml
│ │ │ │ ├── DescribeLiveStreamsFrameRateAndBitRateData.xml
│ │ │ │ ├── DescribeLiveStreamSnapshotInfo.xml
│ │ │ │ ├── DescribeLiveStreamsOnlineList.xml
│ │ │ │ ├── DescribeLiveStreamsPublishList.xml
│ │ │ │ ├── DescribeLiveStreamStreamStatus.xml
│ │ │ │ ├── DescribeLiveStreamTranscodeInfo.xml
│ │ │ │ ├── DescribeLiveStreamTranscodeStreamNum.xml
│ │ │ │ ├── DescribeMacStatistic.xml
│ │ │ │ ├── DescribeOneMinuteData.xml
│ │ │ │ ├── DescribeRangeDataByLocateAndIspService.xml
│ │ │ │ ├── DescribeRefreshQuota.xml
│ │ │ │ ├── DescribeRefreshTasks.xml
│ │ │ │ ├── DescribeTopDomainsByFlow.xml
│ │ │ │ ├── DescribeUserConfigs.xml
│ │ │ │ ├── DescribeUserCustomerLabels.xml
│ │ │ │ ├── DescribeUserCustomLogConfig.xml
│ │ │ │ ├── DescribeUserDomains.xml
│ │ │ │ ├── DescribeUserVipsByDomain.xml
│ │ │ │ ├── ForbidLiveStream.xml
│ │ │ │ ├── GetDomain.xml
│ │ │ │ ├── GetUserDomainBlackList.xml
│ │ │ │ ├── ListDomainsByLogConfigId.xml
│ │ │ │ ├── ListUserCustomLogConfig.xml
│ │ │ │ ├── ModifyCdnDomain.xml
│ │ │ │ ├── ModifyCdnService.xml
│ │ │ │ ├── ModifyDomainCustomLogConfig.xml
│ │ │ │ ├── ModifyFileCacheExpiredConfig.xml
│ │ │ │ ├── ModifyHttpHeaderConfig.xml
│ │ │ │ ├── ModifyPathCacheExpiredConfig.xml
│ │ │ │ ├── ModifyUserCustomLogConfig.xml
│ │ │ │ ├── OpenCdnService.xml
│ │ │ │ ├── PreloadObjectCaches.xml
│ │ │ │ ├── PurgeObjectCaches.xml
│ │ │ │ ├── PushObjectCache.xml
│ │ │ │ ├── RefreshObjectCaches.xml
│ │ │ │ ├── ResumeLiveStream.xml
│ │ │ │ ├── SetAliAuthConfig.xml
│ │ │ │ ├── SetAliBusinessConfig.xml
│ │ │ │ ├── SetCcConfig.xml
│ │ │ │ ├── SetDomainGreenManagerConfig.xml
│ │ │ │ ├── SetDomainServerCertificate.xml
│ │ │ │ ├── SetDynamicConfig.xml
│ │ │ │ ├── SetFileCacheExpiredConfig.xml
│ │ │ │ ├── SetFileTypeForceTtlCodeConfig.xml
│ │ │ │ ├── SetForceRedirectConfig.xml
│ │ │ │ ├── SetForwardSchemeConfig.xml
│ │ │ │ ├── SetHttpHeaderConfig.xml
│ │ │ │ ├── SetHttpsOptionConfig.xml
│ │ │ │ ├── SetIgnoreQueryStringConfig.xml
│ │ │ │ ├── SetIpAllowListConfig.xml
│ │ │ │ ├── SetIpBlackListConfig.xml
│ │ │ │ ├── SetL2OssKeyConfig.xml
│ │ │ │ ├── SetLiveStreamsNotifyUrlConfig.xml
│ │ │ │ ├── SetMacServiceConfig.xml
│ │ │ │ ├── SetOptimizeConfig.xml
│ │ │ │ ├── SetOssLogConfig.xml
│ │ │ │ ├── SetPageCompressConfig.xml
│ │ │ │ ├── SetPathCacheExpiredConfig.xml
│ │ │ │ ├── SetPathForceTtlCodeConfig.xml
│ │ │ │ ├── SetRangeConfig.xml
│ │ │ │ ├── SetRefererConfig.xml
│ │ │ │ ├── SetRegexRuleConfig.xml
│ │ │ │ ├── SetRemoteReqAuthConfig.xml
│ │ │ │ ├── SetRemoveQueryStringConfig.xml
│ │ │ │ ├── SetReqAuthConfig.xml
│ │ │ │ ├── SetReqHeaderConfig.xml
│ │ │ │ ├── SetSourceHostConfig.xml
│ │ │ │ ├── SetUserAgentAcessRestriction.xml
│ │ │ │ ├── SetUserGreenManagerConfig.xml
│ │ │ │ ├── SetVarsConfig.xml
│ │ │ │ ├── SetVideoSeekConfig.xml
│ │ │ │ ├── SetWaitingRoomConfig.xml
│ │ │ │ ├── StartCdnDomain.xml
│ │ │ │ ├── StopCdnDomain.xml
│ │ │ │ ├── UpdateFCTrigger.xml
│ │ │ │ └── UpdateLiveAppSnapshotConfig.xml
│ │ │ ├── 2018-05-10
│ │ │ │ ├── ActivateVersionOfConfigGroup.xml
│ │ │ │ ├── AddCdnDomain.xml
│ │ │ │ ├── AddConfigGroup.xml
│ │ │ │ ├── AddFCTrigger.xml
│ │ │ │ ├── AdvancePurgeObjectCache.xml
│ │ │ │ ├── AttachDomainNameToVersion.xml
│ │ │ │ ├── BatchAddCdnDomain.xml
│ │ │ │ ├── BatchDeleteCdnDomainConfig.xml
│ │ │ │ ├── BatchDescribeDomainBpsData.xml
│ │ │ │ ├── BatchSetCdnDomainConfig.xml
│ │ │ │ ├── BatchSetCdnDomainServerCertificate.xml
│ │ │ │ ├── BatchStartCdnDomain.xml
│ │ │ │ ├── BatchStopCdnDomain.xml
│ │ │ │ ├── BatchUpdateCdnDomain.xml
│ │ │ │ ├── BlockObjectCaches.xml
│ │ │ │ ├── BlockSinaUserCaches.xml
│ │ │ │ ├── CloneVersionOfConfigGroup.xml
│ │ │ │ ├── CreateCdnCertificateSigningRequest.xml
│ │ │ │ ├── CreateCdnDomainOfflineLogDelivery.xml
│ │ │ │ ├── CreateIllegalUrlExportTask.xml
│ │ │ │ ├── CreateRealTimeLogDelivery.xml
│ │ │ │ ├── CreateUsageDetailDataExportTask.xml
│ │ │ │ ├── CreateUserUsageDataExportTask.xml
│ │ │ │ ├── DeactivateConfigOfVersion.xml
│ │ │ │ ├── DeleteCacheExpiredConfig.xml
│ │ │ │ ├── DeleteCdnDomain.xml
│ │ │ │ ├── DeleteConfigGroup.xml
│ │ │ │ ├── DeleteConfigOfVersion.xml
│ │ │ │ ├── DeleteFCTrigger.xml
│ │ │ │ ├── DeleteHttpHeaderConfig.xml
│ │ │ │ ├── DeleteRealtimeLogDelivery.xml
│ │ │ │ ├── DeleteRealTimeLogLogstore.xml
│ │ │ │ ├── DeleteSpecificConfig.xml
│ │ │ │ ├── DeleteSpecificStagingConfig.xml
│ │ │ │ ├── DeleteUsageDetailDataExportTask.xml
│ │ │ │ ├── DeleteUserUsageDataExportTask.xml
│ │ │ │ ├── DeleteVersionOfConfigGroup.xml
│ │ │ │ ├── DescribeActivationHistory.xml
│ │ │ │ ├── DescribeActiveVersionOfConfigGroup.xml
│ │ │ │ ├── DescribeBlockedRegions.xml
│ │ │ │ ├── DescribeByteUrlBlockData.xml
│ │ │ │ ├── DescribeCdnCcSignatureArgList.xml
│ │ │ │ ├── DescribeCdnCcSignatureObjectList.xml
│ │ │ │ ├── DescribeCdnCertificateDetail.xml
│ │ │ │ ├── DescribeCdnCertificateList.xml
│ │ │ │ ├── DescribeCdnDomainBillingData.xml
│ │ │ │ ├── DescribeCdnDomainByCertificate.xml
│ │ │ │ ├── DescribeCdnDomainConfigs.xml
│ │ │ │ ├── DescribeCdnDomainDetail.xml
│ │ │ │ ├── DescribeCdnDomainLogs.xml
│ │ │ │ ├── DescribeCdnDomainStagingConfig.xml
│ │ │ │ ├── DescribeCdnHttpsDomainList.xml
│ │ │ │ ├── DescribeCdnOfflineLogDeliveryField.xml
│ │ │ │ ├── DescribeCdnOfflineLogDeliveryRegions.xml
│ │ │ │ ├── DescribeCdnOfflineLogDeliveryStatus.xml
│ │ │ │ ├── DescribeCdnOfflineLogDelivery.xml
│ │ │ │ ├── DescribeCdnRegionAndIsp.xml
│ │ │ │ ├── DescribeCdnService.xml
│ │ │ │ ├── DescribeCdnTypes.xml
│ │ │ │ ├── DescribeCdnUserAppSecDrop.xml
│ │ │ │ ├── DescribeCdnUserBillHistory.xml
│ │ │ │ ├── DescribeCdnUserBillPrediction.xml
│ │ │ │ ├── DescribeCdnUserBillType.xml
│ │ │ │ ├── DescribeCdnUserConfigs.xml
│ │ │ │ ├── DescribeCdnUserDomainsByFunc.xml
│ │ │ │ ├── DescribeCdnUserQuota.xml
│ │ │ │ ├── DescribeCdnUserResourcePackage.xml
│ │ │ │ ├── DescribeCdnUserSecDrop.xml
│ │ │ │ ├── DescribeCdnWafDomain.xml
│ │ │ │ ├── DescribeCertificateInfoByID.xml
│ │ │ │ ├── DescribeConfigGroupDetail.xml
│ │ │ │ ├── DescribeConfigGroupList.xml
│ │ │ │ ├── DescribeConfigOfVersionForDiff.xml
│ │ │ │ ├── DescribeConfigOfVersion.xml
│ │ │ │ ├── DescribeCurrentCharge95Info.xml
│ │ │ │ ├── DescribeCustomLogConfig.xml
│ │ │ │ ├── DescribeDiamondData.xml
│ │ │ │ ├── DescribeDomainAverageResponseTime.xml
│ │ │ │ ├── DescribeDomainBpsDataByLayer.xml
│ │ │ │ ├── DescribeDomainBpsDataByTimeStamp.xml
│ │ │ │ ├── DescribeDomainBpsData.xml
│ │ │ │ ├── DescribeDomainCcActivityLog.xml
│ │ │ │ ├── DescribeDomainCertificateInfo.xml
│ │ │ │ ├── DescribeDomainCname.xml
│ │ │ │ ├── DescribeDomainCustomLogConfig.xml
│ │ │ │ ├── DescribeDomainDetailDataByLayer.xml
│ │ │ │ ├── DescribeDomainFileSizeProportionData.xml
│ │ │ │ ├── DescribeDomainHitRateData.xml
│ │ │ │ ├── DescribeDomainHttpCodeDataByLayer.xml
│ │ │ │ ├── DescribeDomainHttpCodeData.xml
│ │ │ │ ├── DescribeDomainHttpsData.xml
│ │ │ │ ├── DescribeDomainISPData.xml
│ │ │ │ ├── DescribeDomainIspLocationDetailData.xml
│ │ │ │ ├── DescribeDomainLogConfig.xml
│ │ │ │ ├── DescribeDomainMax95BpsData.xml
│ │ │ │ ├── DescribeDomainNamesOfVersion.xml
│ │ │ │ ├── DescribeDomainPathData.xml
│ │ │ │ ├── DescribeDomainPnoData.xml
│ │ │ │ ├── DescribeDomainPvData.xml
│ │ │ │ ├── DescribeDomainQoSRt.xml
│ │ │ │ ├── DescribeDomainQpsDataByLayer.xml
│ │ │ │ ├── DescribeDomainQpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeBpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeByteHitRateData.xml
│ │ │ │ ├── DescribeDomainRealTimeDetailData.xml
│ │ │ │ ├── DescribeDomainRealTimeHttpCodeData.xml
│ │ │ │ ├── DescribeDomainRealtimeLogDelivery.xml
│ │ │ │ ├── DescribeDomainRealTimeMetric.xml
│ │ │ │ ├── DescribeDomainRealTimeQpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeReqHitRateData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcBpsData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcDetailData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcHttpCodeData.xml
│ │ │ │ ├── DescribeDomainRealTimeSrcTrafficData.xml
│ │ │ │ ├── DescribeDomainRealTimeTrafficData.xml
│ │ │ │ ├── DescribeDomainRegionData.xml
│ │ │ │ ├── DescribeDomainReqHitRateData.xml
│ │ │ │ ├── DescribeDomainsByCustomLogConfig.xml
│ │ │ │ ├── DescribeDomainsBySource.xml
│ │ │ │ ├── DescribeDomainSlowRatio.xml
│ │ │ │ ├── DescribeDomainSrcBpsData.xml
│ │ │ │ ├── DescribeDomainSrcDetailData.xml
│ │ │ │ ├── DescribeDomainSrcHttpCodeData.xml
│ │ │ │ ├── DescribeDomainSrcQpsData.xml
│ │ │ │ ├── DescribeDomainSrcTopUrlVisit.xml
│ │ │ │ ├── DescribeDomainSrcTrafficData.xml
│ │ │ │ ├── DescribeDomainsUsageByDay.xml
│ │ │ │ ├── DescribeDomainTopClientIpVisit.xml
│ │ │ │ ├── DescribeDomainTopReferVisit.xml
│ │ │ │ ├── DescribeDomainTopUrlVisit.xml
│ │ │ │ ├── DescribeDomainTrafficData.xml
│ │ │ │ ├── DescribeDomainUsageData.xml
│ │ │ │ ├── DescribeDomainUvData.xml
│ │ │ │ ├── DescribeExtensiveDomainData.xml
│ │ │ │ ├── DescribeFCTrigger.xml
│ │ │ │ ├── DescribeGifshowView.xml
│ │ │ │ ├── DescribeHistoryCharge95Info.xml
│ │ │ │ ├── DescribeIllegalUrlExportTask.xml
│ │ │ │ ├── DescribeIpInfo.xml
│ │ │ │ ├── DescribeIpStatus.xml
│ │ │ │ ├── DescribeL2VipsByDomain.xml
│ │ │ │ ├── DescribeRangeDataByLocateAndIspService.xml
│ │ │ │ ├── DescribeRealtimeDeliveryAcc.xml
│ │ │ │ ├── DescribeRealTimeDomainDetailData.xml
│ │ │ │ ├── DescribeRealtimeLogAuthorized.xml
│ │ │ │ ├── DescribeRefreshQuota.xml
│ │ │ │ ├── DescribeRefreshTaskById.xml
│ │ │ │ ├── DescribeRefreshTasks.xml
│ │ │ │ ├── DescribeStagingIp.xml
│ │ │ │ ├── DescribeTagResources.xml
│ │ │ │ ├── DescribeTopDomainsByFlow.xml
│ │ │ │ ├── DescribeUserCdnStatus.xml
│ │ │ │ ├── DescribeUserCertificateExpireCount.xml
│ │ │ │ ├── DescribeUserConfigs.xml
│ │ │ │ ├── DescribeUserCustomLogConfig.xml
│ │ │ │ ├── DescribeUserDomains.xml
│ │ │ │ ├── DescribeUserTags.xml
│ │ │ │ ├── DescribeUserUsageDataExportTask.xml
│ │ │ │ ├── DescribeUserUsageDetailDataExportTask.xml
│ │ │ │ ├── DescribeUserVipsByDomain.xml
│ │ │ │ ├── DescribeVerifyContent.xml
│ │ │ │ ├── DescribeVersionInfo.xml
│ │ │ │ ├── DescribeVersionOfConfigGroup.xml
│ │ │ │ ├── DescribeViewAvailTraf.xml
│ │ │ │ ├── DescribeViewUsedTraf.xml
│ │ │ │ ├── DetachDomainNameFromVersion.xml
│ │ │ │ ├── DisableCdnDomainOfflineLogDelivery.xml
│ │ │ │ ├── DisableCdnOfflineLogDelivery.xml
│ │ │ │ ├── DisableRealtimeLogDelivery.xml
│ │ │ │ ├── EnableCdnDomainOfflineLogDelivery.xml
│ │ │ │ ├── EnableRealtimeLogDelivery.xml
│ │ │ │ ├── HttpRequestTestTool.xml
│ │ │ │ ├── ListDomainsByLogConfigId.xml
│ │ │ │ ├── ListFCTrigger.xml
│ │ │ │ ├── ListRealtimeLogDeliveryDomains.xml
│ │ │ │ ├── ListRealtimeLogDeliveryInfos.xml
│ │ │ │ ├── ListRealtimeLogDelivery.xml
│ │ │ │ ├── ListTagResources.xml
│ │ │ │ ├── ListUserCustomLogConfig.xml
│ │ │ │ ├── ModifyBlockSinaUids.xml
│ │ │ │ ├── ModifyByteUrlBlockData.xml
│ │ │ │ ├── ModifyCdnDomainSchdmByProperty.xml
│ │ │ │ ├── ModifyCdnDomain.xml
│ │ │ │ ├── ModifyCdnService.xml
│ │ │ │ ├── ModifyConfigTemplate.xml
│ │ │ │ ├── ModifyDescriptionOfVersion.xml
│ │ │ │ ├── ModifyDomainCustomLogConfig.xml
│ │ │ │ ├── ModifyFileCacheExpiredConfig.xml
│ │ │ │ ├── ModifyRealtimeLogDelivery.xml
│ │ │ │ ├── ModifyUserCustomLogConfig.xml
│ │ │ │ ├── OpenCdnService.xml
│ │ │ │ ├── PreloadObjectCaches.xml
│ │ │ │ ├── PublishStagingConfigToProduction.xml
│ │ │ │ ├── PurgeObjectCaches.xml
│ │ │ │ ├── PushEdgeObjectCache.xml
│ │ │ │ ├── PushObjectCache.xml
│ │ │ │ ├── RefreshObjectCaches.xml
│ │ │ │ ├── RollbackStagingConfig.xml
│ │ │ │ ├── SetAliAuthConfig.xml
│ │ │ │ ├── SetAliBusinessConfig.xml
│ │ │ │ ├── SetCcConfig.xml
│ │ │ │ ├── SetCdnBlockIP.xml
│ │ │ │ ├── SetCdnDomainCSRCertificate.xml
│ │ │ │ ├── SetCdnDomainStagingConfig.xml
│ │ │ │ ├── SetCdnUserConfig.xml
│ │ │ │ ├── SetConfigOfVersion.xml
│ │ │ │ ├── SetDomainGreenManagerConfig.xml
│ │ │ │ ├── SetDomainServerCertificate.xml
│ │ │ │ ├── SetErrorPageConfig.xml
│ │ │ │ ├── SetFileCacheExpiredConfig.xml
│ │ │ │ ├── SetFileTypeForceTtlCodeConfig.xml
│ │ │ │ ├── SetForceRedirectConfig.xml
│ │ │ │ ├── SetForwardSchemeConfig.xml
│ │ │ │ ├── SetHttpErrorPageConfig.xml
│ │ │ │ ├── SetHttpHeaderConfig.xml
│ │ │ │ ├── SetHttpsOptionConfig.xml
│ │ │ │ ├── SetIgnoreQueryStringConfig.xml
│ │ │ │ ├── SetIpAllowListConfig.xml
│ │ │ │ ├── SetIpBlackListConfig.xml
│ │ │ │ ├── SetL2OssKeyConfig.xml
│ │ │ │ ├── SetMacServiceConfig.xml
│ │ │ │ ├── SetOptimizeConfig.xml
│ │ │ │ ├── SetOssLogConfig.xml
│ │ │ │ ├── SetPageCompressConfig.xml
│ │ │ │ ├── SetPathCacheExpiredConfig.xml
│ │ │ │ ├── SetPathForceTtlCodeConfig.xml
│ │ │ │ ├── SetRangeConfig.xml
│ │ │ │ ├── SetRefererConfig.xml
│ │ │ │ ├── SetRegexRuleConfig.xml
│ │ │ │ ├── SetRemoteReqAuthConfig.xml
│ │ │ │ ├── SetRemoveQueryStringConfig.xml
│ │ │ │ ├── SetReqAuthConfig.xml
│ │ │ │ ├── SetReqHeaderConfig.xml
│ │ │ │ ├── SetSkipModuleConfig.xml
│ │ │ │ ├── SetSourceHostConfig.xml
│ │ │ │ ├── SetUserAgentAcessRestriction.xml
│ │ │ │ ├── SetUserGreenManagerConfig.xml
│ │ │ │ ├── SetVarsConfig.xml
│ │ │ │ ├── SetVideoSeekConfig.xml
│ │ │ │ ├── SetWafConfig.xml
│ │ │ │ ├── SetWaitingRoomConfig.xml
│ │ │ │ ├── StartCdnDomain.xml
│ │ │ │ ├── StopCdnDomain.xml
│ │ │ │ ├── TagResources.xml
│ │ │ │ ├── UntagResources.xml
│ │ │ │ ├── UpdateFCTrigger.xml
│ │ │ │ └── VerifyDomainOwner.xml
│ │ │ ├── Cdn.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20141111
│ │ │ │ └── CdnApiResolver.php
│ │ │ ├── V20180510
│ │ │ │ └── CdnApiResolver.php
│ │ │ ├── version-2014-11-11.xml
│ │ │ └── version-2018-05-10.xml
│ │ ├── CDRS
│ │ │ ├── CDRS.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20201101
│ │ │ └── CDRSApiResolver.php
│ │ ├── Cds
│ │ │ ├── Cds.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170925
│ │ │ └── CdsApiResolver.php
│ │ ├── CF
│ │ │ ├── CF.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20151127
│ │ │ └── CFApiResolver.php
│ │ ├── Chatbot
│ │ │ ├── Chatbot.php
│ │ │ ├── ChatbotVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171011
│ │ │ ├── ChatbotApiResolver.php
│ │ │ └── Chatbot.php
│ │ ├── CloudAPI
│ │ │ ├── CloudAPI.php
│ │ │ ├── CloudAPIVersion.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160714
│ │ │ ├── CloudAPIApiResolver.php
│ │ │ └── CloudAPI.php
│ │ ├── Cloudauth
│ │ │ ├── 2017-09-12
│ │ │ │ ├── CompareFaces.xml
│ │ │ │ ├── GetMaterials.xml
│ │ │ │ ├── GetStatus.xml
│ │ │ │ ├── GetVerifyToken.xml
│ │ │ │ └── SubmitMaterials.xml
│ │ │ ├── 2018-09-16
│ │ │ │ ├── CompareFaces.xml
│ │ │ │ ├── CreateAuthKey.xml
│ │ │ │ ├── CreateVerifySDK.xml
│ │ │ │ ├── DescribeDeviceInfo.xml
│ │ │ │ ├── DescribeVerifySDK.xml
│ │ │ │ ├── DetectFaceAttributes.xml
│ │ │ │ ├── GetMaterials.xml
│ │ │ │ ├── GetStatus.xml
│ │ │ │ ├── GetVerifyToken.xml
│ │ │ │ ├── ModifyDeviceInfo.xml
│ │ │ │ ├── SubmitMaterials.xml
│ │ │ │ └── SubmitVerification.xml
│ │ │ ├── 2019-03-07
│ │ │ │ ├── CompareFaces.xml
│ │ │ │ ├── CompareFaceVerify.xml
│ │ │ │ ├── ContrastFaceVerify.xml
│ │ │ │ ├── CreateAntCloudAuthScene.xml
│ │ │ │ ├── CreateAuthKey.xml
│ │ │ │ ├── CreateCloudauthstScene.xml
│ │ │ │ ├── CreateFaceConfig.xml
│ │ │ │ ├── CreateRPSDK.xml
│ │ │ │ ├── CreateVerifySDK.xml
│ │ │ │ ├── CreateVerifySetting.xml
│ │ │ │ ├── CreateWhitelist.xml
│ │ │ │ ├── DeleteAntCloudAuthScene.xml
│ │ │ │ ├── DeleteCloudauthstScene.xml
│ │ │ │ ├── DeleteWhitelist.xml
│ │ │ │ ├── DescribeAntAndCloudAuthUserStatus.xml
│ │ │ │ ├── DescribeAppInfo.xml
│ │ │ │ ├── DescribeCloudauthstProductList.xml
│ │ │ │ ├── DescribeCloudauthstSceneList.xml
│ │ │ │ ├── DescribeDeviceInfo.xml
│ │ │ │ ├── DescribeFaceConfig.xml
│ │ │ │ ├── DescribeFaceUsage.xml
│ │ │ │ ├── DescribeFaceVerify.xml
│ │ │ │ ├── DescribeListAntCloudAuthScenes.xml
│ │ │ │ ├── DescribeListFaceVerifyData.xml
│ │ │ │ ├── DescribeListFaceVerifyInfos.xml
│ │ │ │ ├── DescribeOssStatus.xml
│ │ │ │ ├── DescribeOssUploadToken.xml
│ │ │ │ ├── DescribePageSetting.xml
│ │ │ │ ├── DescribeProductCode.xml
│ │ │ │ ├── DescribeRecordsSetting.xml
│ │ │ │ ├── DescribeRPSDK.xml
│ │ │ │ ├── DescribeSdkUrl.xml
│ │ │ │ ├── DescribeSmartSearchPageList.xml
│ │ │ │ ├── DescribeSmartStatisticsListDownload.xml
│ │ │ │ ├── DescribeSmartStatisticsList.xml
│ │ │ │ ├── DescribeSmartStatisticsPageList.xml
│ │ │ │ ├── DescribeStsToken.xml
│ │ │ │ ├── DescribeUpdatePackageResult.xml
│ │ │ │ ├── DescribeUploadInfo.xml
│ │ │ │ ├── DescribeUserStatus.xml
│ │ │ │ ├── DescribeVerifyDeviceRiskStatistics.xml
│ │ │ │ ├── DescribeVerifyFailStatistics.xml
│ │ │ │ ├── DescribeVerifyPersonasDeviceModelStatistics.xml
│ │ │ │ ├── DescribeVerifyPersonasOsStatistics.xml
│ │ │ │ ├── DescribeVerifyPersonasProvinceStatistics.xml
│ │ │ │ ├── DescribeVerifyPersonasSexStatistics.xml
│ │ │ │ ├── DescribeVerifyRecords.xml
│ │ │ │ ├── DescribeVerifyResult.xml
│ │ │ │ ├── DescribeVerifySDK.xml
│ │ │ │ ├── DescribeVerifySearchPageList.xml
│ │ │ │ ├── DescribeVerifySetting.xml
│ │ │ │ ├── DescribeVerifyStatistics.xml
│ │ │ │ ├── DescribeVerifyToken.xml
│ │ │ │ ├── DescribeVerifyUsage.xml
│ │ │ │ ├── DescribeWhitelist.xml
│ │ │ │ ├── DescribleVerifyFailStatistics.xml
│ │ │ │ ├── DescribleVerifyStatistics.xml
│ │ │ │ ├── DetectFaceAttributes.xml
│ │ │ │ ├── InitDevice.xml
│ │ │ │ ├── InitFaceVerify.xml
│ │ │ │ ├── LivenessFaceVerify.xml
│ │ │ │ ├── ModifyDeviceInfo.xml
│ │ │ │ ├── OcrDevice.xml
│ │ │ │ ├── OpenCloudauthSevice.xml
│ │ │ │ ├── UpdateAntCloudAuthScene.xml
│ │ │ │ ├── UpdateAppPackage.xml
│ │ │ │ ├── UpdateCloudauthstScene.xml
│ │ │ │ ├── UpdateFaceConfig.xml
│ │ │ │ ├── UpdateRecordsSetting.xml
│ │ │ │ ├── UpdateVerifySetting.xml
│ │ │ │ ├── VerifyDevice.xml
│ │ │ │ └── VerifyMaterial.xml
│ │ │ ├── 2020-06-18
│ │ │ │ ├── ContrastSmartVerify.xml
│ │ │ │ ├── DescribeSmartVerify.xml
│ │ │ │ ├── ElementSmartVerify.xml
│ │ │ │ ├── InitSmartDevice.xml
│ │ │ │ ├── InitSmartVerify.xml
│ │ │ │ ├── OcrSmartDevice.xml
│ │ │ │ └── VerifySmartDevice.xml
│ │ │ ├── 2020-11-12
│ │ │ │ ├── LivenessDetect.xml
│ │ │ │ └── UploadDeviceInfos.xml
│ │ │ ├── Cloudauth.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180916
│ │ │ │ └── CloudauthApiResolver.php
│ │ │ ├── V20190307
│ │ │ │ └── CloudauthApiResolver.php
│ │ │ ├── V20200618
│ │ │ │ └── CloudauthApiResolver.php
│ │ │ ├── V20201112
│ │ │ │ └── CloudauthApiResolver.php
│ │ │ ├── version-2017-09-12.xml
│ │ │ ├── version-2018-09-16.xml
│ │ │ ├── version-2019-03-07.xml
│ │ │ ├── version-2020-06-18.xml
│ │ │ └── version-2020-11-12.xml
│ │ ├── Cloudesl
│ │ │ ├── Cloudesl.php
│ │ │ ├── CloudeslVersion.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180801
│ │ │ │ ├── CloudeslApiResolver.php
│ │ │ │ └── Cloudesl.php
│ │ │ ├── V20190801
│ │ │ │ └── CloudeslApiResolver.php
│ │ │ └── V20200201
│ │ │ └── CloudeslApiResolver.php
│ │ ├── Cloudgame
│ │ │ ├── Cloudgame.php
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200429
│ │ │ └── CloudgameApiResolver.php
│ │ ├── Cloudmarketing
│ │ │ ├── Cloudmarketing.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180910
│ │ │ └── CloudmarketingApiResolver.php
│ │ ├── CloudPhoto
│ │ │ ├── CloudPhoto.php
│ │ │ ├── CloudPhotoVersion.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170711
│ │ │ ├── CloudPhotoApiResolver.php
│ │ │ └── CloudPhoto.php
│ │ ├── Cloudwf
│ │ │ ├── Cloudwf.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170328
│ │ │ └── CloudwfApiResolver.php
│ │ ├── Cms
│ │ │ ├── Cms.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190101
│ │ │ └── CmsApiResolver.php
│ │ ├── Codeup
│ │ │ ├── 2020-04-14
│ │ │ │ ├── AcceptMergeRequest.xml
│ │ │ │ ├── AddGroupMember.xml
│ │ │ │ ├── AddRepositoryMember.xml
│ │ │ │ ├── AddWebhook.xml
│ │ │ │ ├── CreateBranch.xml
│ │ │ │ ├── CreateFile.xml
│ │ │ │ ├── CreateMergeRequestComment.xml
│ │ │ │ ├── CreateMergeRequest.xml
│ │ │ │ ├── CreateRepositoryDeployKey.xml
│ │ │ │ ├── CreateRepositoryGroup.xml
│ │ │ │ ├── CreateRepositoryProtectedBranch.xml
│ │ │ │ ├── CreateRepository.xml
│ │ │ │ ├── CreateTag.xml
│ │ │ │ ├── DeleteBranch.xml
│ │ │ │ ├── DeleteFile.xml
│ │ │ │ ├── DeleteGroupMember.xml
│ │ │ │ ├── DeleteRepositoryGroup.xml
│ │ │ │ ├── DeleteRepositoryMember.xml
│ │ │ │ ├── DeleteRepositoryProtectedBranch.xml
│ │ │ │ ├── DeleteRepositoryTagV2.xml
│ │ │ │ ├── DeleteRepositoryTag.xml
│ │ │ │ ├── DeleteRepositoryWebhook.xml
│ │ │ │ ├── DeleteRepository.xml
│ │ │ │ ├── EnableRepositoryDeployKey.xml
│ │ │ │ ├── GetBranchInfo.xml
│ │ │ │ ├── GetCodeupOrganization.xml
│ │ │ │ ├── GetFileBlobs.xml
│ │ │ │ ├── GetGroupDetail.xml
│ │ │ │ ├── GetMergeRequestApproveStatus.xml
│ │ │ │ ├── GetMergeRequestDetail.xml
│ │ │ │ ├── GetMergeRequestSetting.xml
│ │ │ │ ├── GetProjectMember.xml
│ │ │ │ ├── GetRepositoryInfo.xml
│ │ │ │ ├── GetRepositoryTagV2.xml
│ │ │ │ ├── GetRepositoryTag.xml
│ │ │ │ ├── GetUserInfo.xml
│ │ │ │ ├── ListGroupMember.xml
│ │ │ │ ├── ListGroupRepositories.xml
│ │ │ │ ├── ListGroups.xml
│ │ │ │ ├── ListMergeRequestComments.xml
│ │ │ │ ├── ListMergeRequests.xml
│ │ │ │ ├── ListOrganizations.xml
│ │ │ │ ├── ListRepositories.xml
│ │ │ │ ├── ListRepositoryBranches.xml
│ │ │ │ ├── ListRepositoryCommits.xml
│ │ │ │ ├── ListRepositoryMember.xml
│ │ │ │ ├── ListRepositoryTags.xml
│ │ │ │ ├── ListRepositoryTree.xml
│ │ │ │ ├── ListRepositoryWebhook.xml
│ │ │ │ ├── MergeMergeRequest.xml
│ │ │ │ ├── UpdateFile.xml
│ │ │ │ ├── UpdateGroupMember.xml
│ │ │ │ ├── UpdateMergeRequestComment.xml
│ │ │ │ ├── UpdateMergeRequestSetting.xml
│ │ │ │ ├── UpdateMergeRequest.xml
│ │ │ │ ├── UpdateRepositoryMember.xml
│ │ │ │ └── UpdateRepository.xml
│ │ │ ├── Codeup.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200414
│ │ │ │ └── CodeupApiResolver.php
│ │ │ └── version-2020-04-14.xml
│ │ ├── Commondriver
│ │ │ ├── Commondriver.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20151229
│ │ │ └── CommondriverApiResolver.php
│ │ ├── Companyreg
│ │ │ ├── Companyreg.php
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190508
│ │ │ └── CompanyregApiResolver.php
│ │ ├── Config
│ │ │ ├── composer.json
│ │ │ ├── Config.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190108
│ │ │ └── ConfigApiResolver.php
│ │ ├── Cr
│ │ │ ├── composer.json
│ │ │ ├── Cr.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160607
│ │ │ └── CrApiResolver.php
│ │ ├── Crm
│ │ │ ├── composer.json
│ │ │ ├── Crm.php
│ │ │ ├── CrmVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20150408
│ │ │ ├── CrmApiResolver.php
│ │ │ └── Crm.php
│ │ ├── CS
│ │ │ ├── composer.json
│ │ │ ├── CS.php
│ │ │ ├── CSVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20151215
│ │ │ │ ├── CSApiResolver.php
│ │ │ │ └── CS.php
│ │ │ └── V20180418
│ │ │ └── CSApiResolver.php
│ │ ├── CSB
│ │ │ ├── composer.json
│ │ │ ├── CSB.php
│ │ │ ├── CSBVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171118
│ │ │ ├── CSBApiResolver.php
│ │ │ └── CSB.php
│ │ ├── CusanalyticScOnline
│ │ │ ├── composer.json
│ │ │ ├── CusanalyticScOnline.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190524
│ │ │ └── CusanalyticScOnlineApiResolver.php
│ │ ├── DataworksPublic
│ │ │ ├── composer.json
│ │ │ ├── DataworksPublic.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180601
│ │ │ │ └── DataworksPublicApiResolver.php
│ │ │ └── V20200518
│ │ │ └── DataworksPublicApiResolver.php
│ │ ├── Dbs
│ │ │ ├── 2019-03-06
│ │ │ │ ├── CloseDLAService.xml
│ │ │ │ ├── ConfigureBackupPlan.xml
│ │ │ │ ├── CreateAndStartBackupPlan.xml
│ │ │ │ ├── CreateBackupPlan.xml
│ │ │ │ ├── CreateDLAService.xml
│ │ │ │ ├── CreateFullBackupSetDownload.xml
│ │ │ │ ├── CreateGetDBListFromAgentTask.xml
│ │ │ │ ├── CreateIncrementBackupSetDownload.xml
│ │ │ │ ├── CreateRestoreTask.xml
│ │ │ │ ├── DescribeBackupGatewayList.xml
│ │ │ │ ├── DescribeBackupPlanBilling.xml
│ │ │ │ ├── DescribeBackupPlanList.xml
│ │ │ │ ├── DescribeBackupSetDownloadTaskList.xml
│ │ │ │ ├── DescribeDLAService.xml
│ │ │ │ ├── DescribeFullBackupList.xml
│ │ │ │ ├── DescribeIncrementBackupList.xml
│ │ │ │ ├── DescribeJobErrorCode.xml
│ │ │ │ ├── DescribeNodeCidrList.xml
│ │ │ │ ├── DescribePreCheckProgressList.xml
│ │ │ │ ├── DescribeRegions.xml
│ │ │ │ ├── DescribeRestoreRangeInfo.xml
│ │ │ │ ├── DescribeRestoreTaskList.xml
│ │ │ │ ├── DescribeSandboxFromRDS.xml
│ │ │ │ ├── DisableBackupLog.xml
│ │ │ │ ├── EnableBackupLog.xml
│ │ │ │ ├── GetDBListFromAgent.xml
│ │ │ │ ├── InitializeDbsServiceLinkedRole.xml
│ │ │ │ ├── ModifyBackupObjects.xml
│ │ │ │ ├── ModifyBackupPlanName.xml
│ │ │ │ ├── ModifyBackupSetDownloadRules.xml
│ │ │ │ ├── ModifyBackupSourceEndpoint.xml
│ │ │ │ ├── ModifyBackupStrategy.xml
│ │ │ │ ├── ModifyStorageStrategy.xml
│ │ │ │ ├── ReleaseBackupPlan.xml
│ │ │ │ ├── RenewBackupPlan.xml
│ │ │ │ ├── StartBackupPlan.xml
│ │ │ │ ├── StartRestoreTask.xml
│ │ │ │ ├── StartTask.xml
│ │ │ │ ├── StopBackupPlan.xml
│ │ │ │ └── UpgradeBackupPlan.xml
│ │ │ ├── composer.json
│ │ │ ├── Dbs.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20190306
│ │ │ │ └── DbsApiResolver.php
│ │ │ └── version-2019-03-06.xml
│ │ ├── Dcdn
│ │ │ ├── 2018-01-15
│ │ │ │ ├── ActivateDcdnVersionOfConfigGroup.xml
│ │ │ │ ├── AddDcdnConfigGroup.xml
│ │ │ │ ├── AddDcdnDomain.xml
│ │ │ │ ├── AddDcdnIpaDomain.xml
│ │ │ │ ├── AttachDcdnDomainNameToVersion.xml
│ │ │ │ ├── BatchAddDcdnDomain.xml
│ │ │ │ ├── BatchDeleteDcdnDomainConfigs.xml
│ │ │ │ ├── BatchSetDcdnDomainCertificate.xml
│ │ │ │ ├── BatchSetDcdnDomainConfigs.xml
│ │ │ │ ├── BatchSetDcdnIpaDomainConfigs.xml
│ │ │ │ ├── BatchStartDcdnDomain.xml
│ │ │ │ ├── BatchStopDcdnDomain.xml
│ │ │ │ ├── BlockDcdnObjectCaches.xml
│ │ │ │ ├── CloneDcdnVersionOfConfigGroup.xml
│ │ │ │ ├── CreateDcdnCertificateSigningRequest.xml
│ │ │ │ ├── CreateDcdnDeliverTask.xml
│ │ │ │ ├── CreateDcdnDomainOfflineLogDelivery.xml
│ │ │ │ ├── CreateDcdnSubTask.xml
│ │ │ │ ├── DeactivateDcdnConfigOfVersion.xml
│ │ │ │ ├── DeleteDcdnConfigGroup.xml
│ │ │ │ ├── DeleteDcdnConfigOfVersion.xml
│ │ │ │ ├── DeleteDcdnDeliverTask.xml
│ │ │ │ ├── DeleteDcdnDomain.xml
│ │ │ │ ├── DeleteDcdnIpaDomain.xml
│ │ │ │ ├── DeleteDcdnIpaSpecificConfig.xml
│ │ │ │ ├── DeleteDcdnSpecificConfig.xml
│ │ │ │ ├── DeleteDcdnSpecificStagingConfig.xml
│ │ │ │ ├── DeleteDcdnSubTask.xml
│ │ │ │ ├── DeleteDcdnVersionOfConfigGroup.xml
│ │ │ │ ├── DescribeDcdnActivationHistory.xml
│ │ │ │ ├── DescribeDcdnActiveVersionOfConfigGroup.xml
│ │ │ │ ├── DescribeDcdnBgpBpsData.xml
│ │ │ │ ├── DescribeDcdnBgpTrafficData.xml
│ │ │ │ ├── DescribeDcdnCertificateDetail.xml
│ │ │ │ ├── DescribeDcdnCertificateList.xml
│ │ │ │ ├── DescribeDcdnConfigGroupDetail.xml
│ │ │ │ ├── DescribeDcdnConfigGroupList.xml
│ │ │ │ ├── DescribeDcdnConfigOfVersionForDiff.xml
│ │ │ │ ├── DescribeDcdnConfigOfVersion.xml
│ │ │ │ ├── DescribeDcdnDeliverList.xml
│ │ │ │ ├── DescribeDcdnDomainBpsData.xml
│ │ │ │ ├── DescribeDcdnDomainByCertificate.xml
│ │ │ │ ├── DescribeDcdnDomainCertificateInfo.xml
│ │ │ │ ├── DescribeDcdnDomainCname.xml
│ │ │ │ ├── DescribeDcdnDomainConfigs.xml
│ │ │ │ ├── DescribeDcdnDomainDetail.xml
│ │ │ │ ├── DescribeDcdnDomainHitRateData.xml
│ │ │ │ ├── DescribeDcdnDomainHttpCodeData.xml
│ │ │ │ ├── DescribeDcdnDomainIpaBpsData.xml
│ │ │ │ ├── DescribeDcdnDomainIpaTrafficData.xml
│ │ │ │ ├── DescribeDcdnDomainIspData.xml
│ │ │ │ ├── DescribeDcdnDomainLog.xml
│ │ │ │ ├── DescribeDcdnDomainMultiUsageData.xml
│ │ │ │ ├── DescribeDcdnDomainNamesOfVersion.xml
│ │ │ │ ├── DescribeDcdnDomainOriginBpsData.xml
│ │ │ │ ├── DescribeDcdnDomainOriginTrafficData.xml
│ │ │ │ ├── DescribeDcdnDomainProperty.xml
│ │ │ │ ├── DescribeDcdnDomainPvData.xml
│ │ │ │ ├── DescribeDcdnDomainQpsData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeBpsData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeByteHitRateData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeDetailData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeHttpCodeData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeQpsData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeReqHitRateData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeSrcBpsData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeSrcHttpCodeData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeSrcTrafficData.xml
│ │ │ │ ├── DescribeDcdnDomainRealTimeTrafficData.xml
│ │ │ │ ├── DescribeDcdnDomainRegionData.xml
│ │ │ │ ├── DescribeDcdnDomainStagingConfig.xml
│ │ │ │ ├── DescribeDcdnDomainTopReferVisit.xml
│ │ │ │ ├── DescribeDcdnDomainTopUrlVisit.xml
│ │ │ │ ├── DescribeDcdnDomainTrafficData.xml
│ │ │ │ ├── DescribeDcdnDomainUvData.xml
│ │ │ │ ├── DescribeDcdnDomainWebsocketBpsData.xml
│ │ │ │ ├── DescribeDcdnDomainWebsocketHttpCodeData.xml
│ │ │ │ ├── DescribeDcdnDomainWebsocketTrafficData.xml
│ │ │ │ ├── DescribeDcdnHttpsDomainList.xml
│ │ │ │ ├── DescribeDcdnIpaDomainConfigs.xml
│ │ │ │ ├── DescribeDcdnIpaDomainDetail.xml
│ │ │ │ ├── DescribeDcdnIpaService.xml
│ │ │ │ ├── DescribeDcdnIpaUserDomains.xml
│ │ │ │ ├── DescribeDcdnIpInfo.xml
│ │ │ │ ├── DescribeDcdnOfflineLogDeliveryField.xml
│ │ │ │ ├── DescribeDcdnOfflineLogDeliveryRegions.xml
│ │ │ │ ├── DescribeDcdnOfflineLogDeliveryStatus.xml
│ │ │ │ ├── DescribeDcdnOfflineLogDelivery.xml
│ │ │ │ ├── DescribeDcdnRefreshQuota.xml
│ │ │ │ ├── DescribeDcdnRefreshTasks.xml
│ │ │ │ ├── DescribeDcdnRegionAndIsp.xml
│ │ │ │ ├── DescribeDcdnReportList.xml
│ │ │ │ ├── DescribeDcdnReport.xml
│ │ │ │ ├── DescribeDcdnService.xml
│ │ │ │ ├── DescribeDcdnStagingIp.xml
│ │ │ │ ├── DescribeDcdnSubList.xml
│ │ │ │ ├── DescribeDcdnTagResources.xml
│ │ │ │ ├── DescribeDcdnTopDomainsByFlow.xml
│ │ │ │ ├── DescribeDcdnUserBillHistory.xml
│ │ │ │ ├── DescribeDcdnUserBillType.xml
│ │ │ │ ├── DescribeDcdnUserConfigs.xml
│ │ │ │ ├── DescribeDcdnUserDomainsByFunc.xml
│ │ │ │ ├── DescribeDcdnUserDomains.xml
│ │ │ │ ├── DescribeDcdnUserQuota.xml
│ │ │ │ ├── DescribeDcdnUserResourcePackage.xml
│ │ │ │ ├── DescribeDcdnUserSecDrop.xml
│ │ │ │ ├── DescribeDcdnUserTags.xml
│ │ │ │ ├── DescribeDcdnVerifyContent.xml
│ │ │ │ ├── DescribeDcdnVersionInfo.xml
│ │ │ │ ├── DescribeDcdnVersionOfConfigGroup.xml
│ │ │ │ ├── DescribeDcdnWafDomain.xml
│ │ │ │ ├── DescribeUserDcdnIpaStatus.xml
│ │ │ │ ├── DescribeUserDcdnStatus.xml
│ │ │ │ ├── DetachDcdnDomainNameFromVersion.xml
│ │ │ │ ├── DisableDcdnDomainOfflineLogDelivery.xml
│ │ │ │ ├── DisableDcdnOfflineLogDelivery.xml
│ │ │ │ ├── EnableDcdnDomainOfflineLogDelivery.xml
│ │ │ │ ├── IsDiamondUser.xml
│ │ │ │ ├── ListDcdnTagResources.xml
│ │ │ │ ├── ModifyDcdnConfigTemplate.xml
│ │ │ │ ├── ModifyDcdnDescriptionOfVersion.xml
│ │ │ │ ├── ModifyDCdnDomainSchdmByProperty.xml
│ │ │ │ ├── ModifyDcdnService.xml
│ │ │ │ ├── OpenDcdnService.xml
│ │ │ │ ├── PreloadDcdnObjectCaches.xml
│ │ │ │ ├── PublishDcdnStagingConfigToProduction.xml
│ │ │ │ ├── RefreshDcdnObjectCaches.xml
│ │ │ │ ├── RollbackDcdnStagingConfig.xml
│ │ │ │ ├── SetDcdnBlockIP.xml
│ │ │ │ ├── SetDcdnConfigOfVersion.xml
│ │ │ │ ├── SetDcdnDomainCertificate.xml
│ │ │ │ ├── SetDcdnDomainCSRCertificate.xml
│ │ │ │ ├── SetDcdnDomainRouteTunnelConfig.xml
│ │ │ │ ├── SetDcdnDomainStagingConfig.xml
│ │ │ │ ├── SetDcdnUserConfig.xml
│ │ │ │ ├── StartDcdnDomain.xml
│ │ │ │ ├── StartDcdnIpaDomain.xml
│ │ │ │ ├── StopDcdnDomain.xml
│ │ │ │ ├── StopDcdnIpaDomain.xml
│ │ │ │ ├── TagDcdnResources.xml
│ │ │ │ ├── UntagDcdnResources.xml
│ │ │ │ ├── UpdateDcdnDeliverTask.xml
│ │ │ │ ├── UpdateDcdnDomain.xml
│ │ │ │ ├── UpdateDcdnIpaDomain.xml
│ │ │ │ ├── UpdateDcdnSubTask.xml
│ │ │ │ └── VerifyDcdnDomainOwner.xml
│ │ │ ├── composer.json
│ │ │ ├── Dcdn.php
│ │ │ ├── DcdnVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180115
│ │ │ │ ├── DcdnApiResolver.php
│ │ │ │ └── Dcdn.php
│ │ │ └── version-2018-01-15.xml
│ │ ├── Ddoscoo
│ │ │ ├── composer.json
│ │ │ ├── Ddoscoo.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200101
│ │ │ └── DdoscooApiResolver.php
│ │ ├── Dds
│ │ │ ├── composer.json
│ │ │ ├── Dds.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20151201
│ │ │ └── DdsApiResolver.php
│ │ ├── DemoCenter
│ │ │ ├── composer.json
│ │ │ ├── DemoCenter.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200121
│ │ │ └── DemoCenterApiResolver.php
│ │ ├── DevopsRdc
│ │ │ ├── composer.json
│ │ │ ├── DevopsRdc.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200303
│ │ │ └── DevopsRdcApiResolver.php
│ │ ├── Dg
│ │ │ ├── composer.json
│ │ │ ├── Dg.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190327
│ │ │ └── DgApiResolver.php
│ │ ├── Dm
│ │ │ ├── composer.json
│ │ │ ├── Dm.php
│ │ │ ├── DmVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20151123
│ │ │ ├── DmApiResolver.php
│ │ │ └── Dm.php
│ │ ├── DmsEnterprise
│ │ │ ├── composer.json
│ │ │ ├── DmsEnterprise.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181101
│ │ │ └── DmsEnterpriseApiResolver.php
│ │ ├── Domain
│ │ │ ├── composer.json
│ │ │ ├── Domain.php
│ │ │ ├── DomainVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180129
│ │ │ │ ├── DomainApiResolver.php
│ │ │ │ └── Domain.php
│ │ │ └── V20180208
│ │ │ ├── DomainApiResolver.php
│ │ │ └── Domain.php
│ │ ├── DomainIntl
│ │ │ ├── composer.json
│ │ │ ├── DomainIntl.php
│ │ │ ├── DomainIntlVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171218
│ │ │ ├── DomainIntlApiResolver.php
│ │ │ └── DomainIntl.php
│ │ ├── Drcloud
│ │ │ ├── composer.json
│ │ │ ├── Drcloud.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190213
│ │ │ └── DrcloudApiResolver.php
│ │ ├── Drds
│ │ │ ├── composer.json
│ │ │ ├── Drds.php
│ │ │ ├── DrdsVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20150413
│ │ │ │ └── DrdsApiResolver.php
│ │ │ ├── V20160506
│ │ │ │ └── DrdsApiResolver.php
│ │ │ ├── V20161213
│ │ │ │ └── DrdsApiResolver.php
│ │ │ ├── V20171016
│ │ │ │ ├── DrdsApiResolver.php
│ │ │ │ └── Drds.php
│ │ │ └── V20190123
│ │ │ └── DrdsApiResolver.php
│ │ ├── Dts
│ │ │ ├── composer.json
│ │ │ ├── Dts.php
│ │ │ ├── DtsVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20160801
│ │ │ │ ├── DtsApiResolver.php
│ │ │ │ └── Dts.php
│ │ │ └── V20200101
│ │ │ └── DtsApiResolver.php
│ │ ├── Dybaseapi
│ │ │ ├── composer.json
│ │ │ ├── Dybaseapi.php
│ │ │ ├── DybaseapiVersion.php
│ │ │ ├── MNS
│ │ │ │ ├── Constants.php
│ │ │ │ ├── HttpHelper.php
│ │ │ │ ├── MnsClient.php
│ │ │ │ ├── Requests
│ │ │ │ │ ├── BaseRequest.php
│ │ │ │ │ ├── BatchDeleteMessage.php
│ │ │ │ │ └── BatchReceiveMessage.php
│ │ │ │ └── Signature.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170525
│ │ │ ├── DybaseapiApiResolver.php
│ │ │ └── Dybaseapi.php
│ │ ├── Dyplsapi
│ │ │ ├── composer.json
│ │ │ ├── Dyplsapi.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170525
│ │ │ └── DyplsapiApiResolver.php
│ │ ├── Dypnsapi
│ │ │ ├── composer.json
│ │ │ ├── Dypnsapi.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170525
│ │ │ └── DypnsapiApiResolver.php
│ │ ├── Dysmsapi
│ │ │ ├── composer.json
│ │ │ ├── Dysmsapi.php
│ │ │ ├── DysmsapiVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170525
│ │ │ ├── DysmsapiApiResolver.php
│ │ │ └── Dysmsapi.php
│ │ ├── Dyvmsapi
│ │ │ ├── composer.json
│ │ │ ├── Dyvmsapi.php
│ │ │ ├── DyvmsapiVersion.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170525
│ │ │ ├── DyvmsapiApiResolver.php
│ │ │ └── Dyvmsapi.php
│ │ ├── Eais
│ │ │ ├── composer.json
│ │ │ ├── Eais.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190624
│ │ │ └── EaisApiResolver.php
│ │ ├── Eci
│ │ │ ├── composer.json
│ │ │ ├── Eci.php
│ │ │ ├── EciVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180808
│ │ │ ├── EciApiResolver.php
│ │ │ └── Eci.php
│ │ ├── Ecs
│ │ │ ├── composer.json
│ │ │ ├── Ecs.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20140526
│ │ │ └── EcsApiResolver.php
│ │ ├── EcsInc
│ │ │ ├── composer.json
│ │ │ ├── EcsInc.php
│ │ │ ├── EcsIncVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160314
│ │ │ ├── EcsIncApiResolver.php
│ │ │ └── EcsInc.php
│ │ ├── Edas
│ │ │ ├── composer.json
│ │ │ ├── Edas.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170801
│ │ │ └── EdasApiResolver.php
│ │ ├── EHPC
│ │ │ ├── composer.json
│ │ │ ├── EHPC.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180412
│ │ │ └── EHPCApiResolver.php
│ │ ├── Elasticsearch
│ │ │ ├── composer.json
│ │ │ ├── Elasticsearch.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170613
│ │ │ └── ElasticsearchApiResolver.php
│ │ ├── Emap
│ │ │ ├── composer.json
│ │ │ ├── Emap.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20201010
│ │ │ └── EmapApiResolver.php
│ │ ├── EmasAppmonitor
│ │ │ ├── composer.json
│ │ │ ├── EmasAppmonitor.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190611
│ │ │ └── EmasAppmonitorApiResolver.php
│ │ ├── Emr
│ │ │ ├── composer.json
│ │ │ ├── Emr.php
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160408
│ │ │ └── EmrApiResolver.php
│ │ ├── Ess
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Ess.php
│ │ │ ├── EssVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20140828
│ │ │ ├── EssApiResolver.php
│ │ │ └── Ess.php
│ │ ├── Facebody
│ │ │ ├── 2019-12-30
│ │ │ │ ├── AddBodyTrace.xml
│ │ │ │ ├── AddFaceEntity.xml
│ │ │ │ ├── AddFaceImageTemplate.xml
│ │ │ │ ├── AddFace.xml
│ │ │ │ ├── BlurFace.xml
│ │ │ │ ├── BodyPosture.xml
│ │ │ │ ├── CompareFace.xml
│ │ │ │ ├── CountCrowd.xml
│ │ │ │ ├── CreateBodyDb.xml
│ │ │ │ ├── CreateBodyPerson.xml
│ │ │ │ ├── CreateFaceDb.xml
│ │ │ │ ├── DeleteBodyDb.xml
│ │ │ │ ├── DeleteBodyPerson.xml
│ │ │ │ ├── DeleteFaceDb.xml
│ │ │ │ ├── DeleteFaceEntity.xml
│ │ │ │ ├── DeleteFaceImageTemplate.xml
│ │ │ │ ├── DeleteFace.xml
│ │ │ │ ├── DetectBodyCount.xml
│ │ │ │ ├── DetectCelebrity.xml
│ │ │ │ ├── DetectChefCap.xml
│ │ │ │ ├── DetectFace.xml
│ │ │ │ ├── DetectIPCPedestrian.xml
│ │ │ │ ├── DetectLivingFace.xml
│ │ │ │ ├── DetectMask.xml
│ │ │ │ ├── DetectPedestrianIntrusion.xml
│ │ │ │ ├── DetectPedestrian.xml
│ │ │ │ ├── DetectVideoLivingFace.xml
│ │ │ │ ├── EnhanceFace.xml
│ │ │ │ ├── ExecuteServerSideVerification.xml
│ │ │ │ ├── ExtractFaceFeature.xml
│ │ │ │ ├── ExtractPedestrianFeatureAttribute.xml
│ │ │ │ ├── ExtractPedestrianFeatureAttr.xml
│ │ │ │ ├── FaceBeauty.xml
│ │ │ │ ├── FaceFilter.xml
│ │ │ │ ├── FaceMakeup.xml
│ │ │ │ ├── FaceTidyup.xml
│ │ │ │ ├── GenerateHumanAnimeStyle.xml
│ │ │ │ ├── GenerateHumanSketchStyle.xml
│ │ │ │ ├── GenRealPersonVerificationToken.xml
│ │ │ │ ├── GetBodyPerson.xml
│ │ │ │ ├── GetFaceEntity.xml
│ │ │ │ ├── GetRealPersonVerificationResult.xml
│ │ │ │ ├── HandPosture.xml
│ │ │ │ ├── ListBodyDbs.xml
│ │ │ │ ├── ListBodyPerson.xml
│ │ │ │ ├── ListFaceDbs.xml
│ │ │ │ ├── ListFaceEntities.xml
│ │ │ │ ├── ListFaceLabels.xml
│ │ │ │ ├── MergeImageFace.xml
│ │ │ │ ├── PedestrianDetectAttribute.xml
│ │ │ │ ├── QueryFaceImageTemplate.xml
│ │ │ │ ├── RecognizeAction.xml
│ │ │ │ ├── RecognizeExpression.xml
│ │ │ │ ├── RecognizeFace.xml
│ │ │ │ ├── RecognizeGesture.xml
│ │ │ │ ├── RecognizePublicFace.xml
│ │ │ │ ├── ReplaceObjectDetVirtualfromObjectDetVirtual.xml
│ │ │ │ ├── SearchBodyTrace.xml
│ │ │ │ ├── SearchFace.xml
│ │ │ │ ├── SwapFacialFeatures.xml
│ │ │ │ ├── Test.xml
│ │ │ │ ├── UpdateFaceEntity.xml
│ │ │ │ └── VerifyFaceMask.xml
│ │ │ ├── 2020-09-10
│ │ │ │ ├── DetectIPCPedestrianOptimized.xml
│ │ │ │ └── ExecuteServerSideVerification.xml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Facebody.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20191230
│ │ │ │ └── FacebodyApiResolver.php
│ │ │ ├── V20200910
│ │ │ │ └── FacebodyApiResolver.php
│ │ │ ├── version-2019-12-30.xml
│ │ │ └── version-2020-09-10.xml
│ │ ├── Fnf
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Fnf.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190315
│ │ │ └── FnfApiResolver.php
│ │ ├── Foas
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Foas.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181111
│ │ │ └── FoasApiResolver.php
│ │ ├── Ft
│ │ │ ├── 2015-02-02
│ │ │ │ ├── RoaAnonymousApi.xml
│ │ │ │ ├── RoaCommon.xml
│ │ │ │ ├── RoaDubboApi.xml
│ │ │ │ ├── RoaDynamicHostHttpApi.xml
│ │ │ │ ├── RoaGzip.xml
│ │ │ │ ├── RoaHttpApi.xml
│ │ │ │ ├── RoaHttpIgnoreHttpsApi.xml
│ │ │ │ ├── RoaIllegalDynamicHostHttpApi.xml
│ │ │ │ ├── StartService2.xml
│ │ │ │ └── ValidateAkProven.xml
│ │ │ ├── 2018-07-13
│ │ │ │ ├── BatchAuditTest01.xml
│ │ │ │ ├── BatchAuditTest02.xml
│ │ │ │ ├── CountCloudProductCallTimes.xml
│ │ │ │ ├── DeleteAllStrategy.xml
│ │ │ │ ├── DescribeResourceType.xml
│ │ │ │ ├── FTApiAliasApi.xml
│ │ │ │ ├── FtDynamicAddressDubbo.xml
│ │ │ │ ├── FtDynamicAddressHsf.xml
│ │ │ │ ├── FtDynamicAddressHttpVpc.xml
│ │ │ │ ├── FtEagleEye.xml
│ │ │ │ ├── FtFlowSpecial1586868138332.xml
│ │ │ │ ├── FtFlowSpecial.xml
│ │ │ │ ├── FtGatedLaunchPolicy3Api.xml
│ │ │ │ ├── FtGatedLaunchPolicy4_GatedLaunch.xml
│ │ │ │ ├── FtGatedLaunchPolicy4.xml
│ │ │ │ ├── FtGatedLaunchPolicyApi.xml
│ │ │ │ ├── FtIpFlowControl.xml
│ │ │ │ ├── FtParamList.xml
│ │ │ │ ├── GetMigrateStrategyResult.xml
│ │ │ │ ├── GetTairData.xml
│ │ │ │ ├── MigrateStrategy.xml
│ │ │ │ ├── QueryDomainChangeRecords.xml
│ │ │ │ ├── QueryErrorApis.xml
│ │ │ │ ├── RpcDubboServiceRouteApi.xml
│ │ │ │ ├── RpcHsfServiceRouteMatchApi.xml
│ │ │ │ ├── TestDubboRetryApi.xml
│ │ │ │ ├── TestErrorCodeForGateWay.xml
│ │ │ │ ├── TestFlowStrategy01.xml
│ │ │ │ ├── TestHttpApi.xml
│ │ │ │ ├── TestIspHttpValidator.xml
│ │ │ │ ├── TestXmlServiceRoutePolicy.xml
│ │ │ │ └── UpdateDomainRecordsRegionId.xml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Ft.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180713
│ │ │ │ └── FtApiResolver.php
│ │ │ ├── version-2015-02-02.xml
│ │ │ └── version-2018-07-13.xml
│ │ ├── Geoip
│ │ │ ├── composer.json
│ │ │ ├── Geoip.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200101
│ │ │ └── GeoipApiResolver.php
│ │ ├── Goodstech
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Goodstech.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191230
│ │ │ └── GoodstechApiResolver.php
│ │ ├── Gpdb
│ │ │ ├── composer.json
│ │ │ ├── Gpdb.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160503
│ │ │ └── GpdbApiResolver.php
│ │ ├── Green
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Green.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20161222
│ │ │ │ └── GreenApiResolver.php
│ │ │ ├── V20170823
│ │ │ │ └── GreenApiResolver.php
│ │ │ └── V20180509
│ │ │ └── GreenApiResolver.php
│ │ ├── HBase
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── HBase.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190101
│ │ │ └── HBaseApiResolver.php
│ │ ├── Hiknoengine
│ │ │ ├── composer.json
│ │ │ ├── Hiknoengine.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190625
│ │ │ └── HiknoengineApiResolver.php
│ │ ├── Hitsdb
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Hitsdb.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20170601
│ │ │ │ └── HitsdbApiResolver.php
│ │ │ └── V20200615
│ │ │ └── HitsdbApiResolver.php
│ │ ├── HPC
│ │ │ ├── composer.json
│ │ │ ├── HPC.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20160603
│ │ │ │ └── HPCApiResolver.php
│ │ │ └── V20161213
│ │ │ └── HPCApiResolver.php
│ │ ├── Hsm
│ │ │ ├── composer.json
│ │ │ ├── Hsm.php
│ │ │ ├── HsmVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180111
│ │ │ ├── HsmApiResolver.php
│ │ │ └── Hsm.php
│ │ ├── Httpdns
│ │ │ ├── composer.json
│ │ │ ├── Httpdns.php
│ │ │ ├── HttpdnsVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160201
│ │ │ ├── HttpdnsApiResolver.php
│ │ │ └── Httpdns.php
│ │ ├── IdeHelper.php
│ │ ├── Idrsservice
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Idrsservice.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200630
│ │ │ └── IdrsserviceApiResolver.php
│ │ ├── IDST
│ │ │ ├── composer.json
│ │ │ ├── IDST.php
│ │ │ ├── IDSTVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170922
│ │ │ ├── IDSTApiResolver.php
│ │ │ └── IDST.php
│ │ ├── Imageaudit
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imageaudit.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191230
│ │ │ └── ImageauditApiResolver.php
│ │ ├── Imageenhan
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imageenhan.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190930
│ │ │ └── ImageenhanApiResolver.php
│ │ ├── Imageprocess
│ │ │ ├── 2020-03-20
│ │ │ │ ├── CalcCACS.xml
│ │ │ │ ├── ClassifyFNF.xml
│ │ │ │ ├── DetectCovid19Cad.xml
│ │ │ │ ├── DetectHipKeypointXRay.xml
│ │ │ │ ├── DetectKneeKeypointXRay.xml
│ │ │ │ ├── DetectKneeXRay.xml
│ │ │ │ ├── DetectLungNodule.xml
│ │ │ │ ├── DetectRibFracture.xml
│ │ │ │ ├── DetectSkinDisease.xml
│ │ │ │ ├── DetectSpineMRI.xml
│ │ │ │ ├── GetAsyncJobResult.xml
│ │ │ │ ├── RunCTRegistration.xml
│ │ │ │ ├── RunMedQA.xml
│ │ │ │ ├── ScreenChestCT.xml
│ │ │ │ └── TranslateMed.xml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imageprocess.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200320
│ │ │ │ └── ImageprocessApiResolver.php
│ │ │ └── version-2020-03-20.xml
│ │ ├── Imagerecog
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imagerecog.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190930
│ │ │ └── ImagerecogApiResolver.php
│ │ ├── ImageSearch
│ │ │ ├── composer.json
│ │ │ ├── ImageSearch.php
│ │ │ ├── ImageSearchVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180120
│ │ │ │ ├── ImageSearchApiResolver.php
│ │ │ │ ├── ImageSearch.php
│ │ │ │ └── Traits
│ │ │ │ ├── AddItemTrait.php
│ │ │ │ ├── DeleteItemTrait.php
│ │ │ │ └── SearchItemTrait.php
│ │ │ └── V20190325
│ │ │ └── ImageSearchApiResolver.php
│ │ ├── Imageseg
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imageseg.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191230
│ │ │ └── ImagesegApiResolver.php
│ │ ├── Imgsearch
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imgsearch.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200320
│ │ │ └── ImgsearchApiResolver.php
│ │ ├── Imm
│ │ │ ├── 2017-09-06
│ │ │ │ ├── CompareImageFaces.xml
│ │ │ │ ├── ConvertOfficeFormat.xml
│ │ │ │ ├── CreateCADConversionTask.xml
│ │ │ │ ├── CreateDocIndexTask.xml
│ │ │ │ ├── CreateGrabFrameTask.xml
│ │ │ │ ├── CreateGroupFacesJob.xml
│ │ │ │ ├── CreateGroupTravelsJob.xml
│ │ │ │ ├── CreateImageProcessTask.xml
│ │ │ │ ├── CreateMediaComplexTask.xml
│ │ │ │ ├── CreateMergeFaceGroupsJob.xml
│ │ │ │ ├── CreateOfficeConversionTask.xml
│ │ │ │ ├── CreateSet.xml
│ │ │ │ ├── CreateStickersJob.xml
│ │ │ │ ├── CreateStreamAnalyseTask.xml
│ │ │ │ ├── CreateVideoAbstractTask.xml
│ │ │ │ ├── CreateVideoAIJob.xml
│ │ │ │ ├── CreateVideoAnalyseTask.xml
│ │ │ │ ├── CreateVideoCompressTask.xml
│ │ │ │ ├── CreateVideoProduceTask.xml
│ │ │ │ ├── DecodeBlindWatermark.xml
│ │ │ │ ├── DeleteDocIndex.xml
│ │ │ │ ├── DeleteImageJob.xml
│ │ │ │ ├── DeleteImage.xml
│ │ │ │ ├── DeleteOfficeConversionTask.xml
│ │ │ │ ├── DeleteProject.xml
│ │ │ │ ├── DeleteSet.xml
│ │ │ │ ├── DeleteVideoTask.xml
│ │ │ │ ├── DeleteVideo.xml
│ │ │ │ ├── DescribeRegions.xml
│ │ │ │ ├── DetectImageBodies.xml
│ │ │ │ ├── DetectImageCelebrity.xml
│ │ │ │ ├── DetectImageFaces.xml
│ │ │ │ ├── DetectImageHands.xml
│ │ │ │ ├── DetectImageLogos.xml
│ │ │ │ ├── DetectImageQRCodes.xml
│ │ │ │ ├── DetectImageTags.xml
│ │ │ │ ├── DetectImageTexts.xml
│ │ │ │ ├── DetectPorn.xml
│ │ │ │ ├── DetectQRCodes.xml
│ │ │ │ ├── EncodeBlindWatermark.xml
│ │ │ │ ├── FindFeaturedImages.xml
│ │ │ │ ├── FindImagesByTagNames.xml
│ │ │ │ ├── FindImages.xml
│ │ │ │ ├── FindSimilarFaces.xml
│ │ │ │ ├── FindTravelGroups.xml
│ │ │ │ ├── GetBasicStatistics.xml
│ │ │ │ ├── GetContentKey.xml
│ │ │ │ ├── GetDocIndexTask.xml
│ │ │ │ ├── GetDocIndex.xml
│ │ │ │ ├── GetDRMLicense.xml
│ │ │ │ ├── GetImageCroppingSuggestions.xml
│ │ │ │ ├── GetImageJob.xml
│ │ │ │ ├── GetImageQuality.xml
│ │ │ │ ├── GetImage.xml
│ │ │ │ ├── GetMediaMeta.xml
│ │ │ │ ├── GetOfficeConversionTask.xml
│ │ │ │ ├── GetOfficeEditURL.xml
│ │ │ │ ├── GetOfficePreviewURL.xml
│ │ │ │ ├── GetProjectTest.xml
│ │ │ │ ├── GetProject.xml
│ │ │ │ ├── GetSet.xml
│ │ │ │ ├── GetVideoAIJob.xml
│ │ │ │ ├── GetVideoTask.xml
│ │ │ │ ├── GetVideo.xml
│ │ │ │ ├── GetWebofficeURL.xml
│ │ │ │ ├── HelloWorld.xml
│ │ │ │ ├── IndexImage.xml
│ │ │ │ ├── IndexVideo.xml
│ │ │ │ ├── ListFaceGroups.xml
│ │ │ │ ├── ListImageJobs.xml
│ │ │ │ ├── ListImages.xml
│ │ │ │ ├── ListOfficeConversionTask.xml
│ │ │ │ ├── ListProjectAPIs.xml
│ │ │ │ ├── ListProjects.xml
│ │ │ │ ├── ListSets.xml
│ │ │ │ ├── ListSetTags.xml
│ │ │ │ ├── ListVideoAudios.xml
│ │ │ │ ├── ListVideoFrames.xml
│ │ │ │ ├── ListVideos.xml
│ │ │ │ ├── ListVideoTasks.xml
│ │ │ │ ├── OpenImmService.xml
│ │ │ │ ├── OssUdfBindProject.xml
│ │ │ │ ├── OssUdfGetBindProject.xml
│ │ │ │ ├── OssUdfUnbindProject.xml
│ │ │ │ ├── ParseQuery.xml
│ │ │ │ ├── PutProject.xml
│ │ │ │ ├── RefreshOfficeEditToken.xml
│ │ │ │ ├── RefreshOfficePreviewToken.xml
│ │ │ │ ├── RefreshWebofficeToken.xml
│ │ │ │ ├── SearchDocIndex.xml
│ │ │ │ ├── StopStreamAnalyseTask.xml
│ │ │ │ ├── UpdateDocIndexMeta.xml
│ │ │ │ ├── UpdateFaceGroup.xml
│ │ │ │ ├── UpdateImage.xml
│ │ │ │ ├── UpdateProject.xml
│ │ │ │ ├── UpdateSet.xml
│ │ │ │ ├── UpdateTravelGroup.xml
│ │ │ │ └── VideoAnalyseFeedback.xml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Imm.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20170906
│ │ │ │ └── ImmApiResolver.php
│ │ │ └── version-2017-09-06.xml
│ │ ├── IndustryBrain
│ │ │ ├── composer.json
│ │ │ ├── IndustryBrain.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180712
│ │ │ │ └── IndustryBrainApiResolver.php
│ │ │ ├── V20190629
│ │ │ │ └── IndustryBrainApiResolver.php
│ │ │ └── V20190630
│ │ │ └── IndustryBrainApiResolver.php
│ │ ├── Iot
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Iot.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180120
│ │ │ └── IotApiResolver.php
│ │ ├── Iqa
│ │ │ ├── composer.json
│ │ │ ├── Iqa.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190813
│ │ │ └── IqaApiResolver.php
│ │ ├── ITaaS
│ │ │ ├── composer.json
│ │ │ ├── ITaaS.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170505
│ │ │ └── ITaaSApiResolver.php
│ │ ├── Ivision
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Ivision.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190308
│ │ │ └── IvisionApiResolver.php
│ │ ├── Ivpd
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Ivpd.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190625
│ │ │ └── IvpdApiResolver.php
│ │ ├── Jaq
│ │ │ ├── composer.json
│ │ │ ├── Jaq.php
│ │ │ ├── JaqVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20161123
│ │ │ ├── JaqApiResolver.php
│ │ │ └── Jaq.php
│ │ ├── Jarvis
│ │ │ ├── composer.json
│ │ │ ├── Jarvis.php
│ │ │ ├── JarvisVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180206
│ │ │ ├── JarvisApiResolver.php
│ │ │ └── Jarvis.php
│ │ ├── JarvisPublic
│ │ │ ├── composer.json
│ │ │ ├── JarvisPublic.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180621
│ │ │ └── JarvisPublicApiResolver.php
│ │ ├── Kms
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Kms.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160120
│ │ │ └── KmsApiResolver.php
│ │ ├── Ledgerdb
│ │ │ ├── composer.json
│ │ │ ├── Ledgerdb.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191122
│ │ │ └── LedgerdbApiResolver.php
│ │ ├── Linkedmall
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Linkedmall.php
│ │ │ ├── LinkedmallVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180116
│ │ │ ├── LinkedmallApiResolver.php
│ │ │ └── Linkedmall.php
│ │ ├── LinkFace
│ │ │ ├── composer.json
│ │ │ ├── LinkFace.php
│ │ │ ├── LinkFaceVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180720
│ │ │ └── LinkFaceApiResolver.php
│ │ ├── LinkWAN
│ │ │ ├── composer.json
│ │ │ ├── LinkWAN.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181230
│ │ │ └── LinkWANApiResolver.php
│ │ ├── Live
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Live.php
│ │ │ ├── LiveVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20161101
│ │ │ ├── LiveApiResolver.php
│ │ │ └── Live.php
│ │ ├── Lubancloud
│ │ │ ├── composer.json
│ │ │ ├── Lubancloud.php
│ │ │ ├── LubancloudVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180509
│ │ │ ├── LubancloudApiResolver.php
│ │ │ └── Lubancloud.php
│ │ ├── Lubanruler
│ │ │ ├── composer.json
│ │ │ ├── Lubanruler.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171228
│ │ │ └── LubanrulerApiResolver.php
│ │ ├── Market
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Market.php
│ │ │ ├── MarketVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20151101
│ │ │ ├── MarketApiResolver.php
│ │ │ └── Market.php
│ │ ├── MoPen
│ │ │ ├── composer.json
│ │ │ ├── MoPen.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180211
│ │ │ └── MoPenApiResolver.php
│ │ ├── MPaaS
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── MPaaS.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190821
│ │ │ └── MPaaSApiResolver.php
│ │ ├── MPServerless
│ │ │ ├── composer.json
│ │ │ ├── MPServerless.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20190615
│ │ │ │ └── MPServerlessApiResolver.php
│ │ │ └── V20190930
│ │ │ └── MPServerlessApiResolver.php
│ │ ├── Mts
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Mts.php
│ │ │ ├── MtsVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20140618
│ │ │ ├── MtsApiResolver.php
│ │ │ └── Mts.php
│ │ ├── Multimediaai
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Multimediaai.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190810
│ │ │ └── MultimediaaiApiResolver.php
│ │ ├── NAS
│ │ │ ├── composer.json
│ │ │ ├── NAS.php
│ │ │ ├── NASVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170626
│ │ │ ├── NASApiResolver.php
│ │ │ └── NAS.php
│ │ ├── Netana
│ │ │ ├── composer.json
│ │ │ ├── Netana.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181018
│ │ │ └── NetanaApiResolver.php
│ │ ├── Nlp
│ │ │ ├── composer.json
│ │ │ ├── Nlp.php
│ │ │ ├── NlpVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180408
│ │ │ ├── NlpApiResolver.php
│ │ │ └── Nlp.php
│ │ ├── NlpAutoml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── NlpAutoml.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20190701
│ │ │ │ └── NlpAutomlApiResolver.php
│ │ │ └── V20191111
│ │ │ └── NlpAutomlApiResolver.php
│ │ ├── NlsCloudMeta
│ │ │ ├── composer.json
│ │ │ ├── NlsCloudMeta.php
│ │ │ ├── NlsCloudMetaVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180518
│ │ │ ├── NlsCloudMetaApiResolver.php
│ │ │ └── NlsCloudMeta.php
│ │ ├── NlsFiletrans
│ │ │ ├── composer.json
│ │ │ ├── NlsFiletrans.php
│ │ │ ├── NlsFiletransVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180817
│ │ │ ├── NlsFiletransApiResolver.php
│ │ │ └── NlsFiletrans.php
│ │ ├── Objectdet
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Objectdet.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191230
│ │ │ └── ObjectdetApiResolver.php
│ │ ├── Ocr
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Ocr.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191230
│ │ │ └── OcrApiResolver.php
│ │ ├── Ocs
│ │ │ ├── composer.json
│ │ │ ├── Ocs.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20150301
│ │ │ └── OcsApiResolver.php
│ │ ├── Oms
│ │ │ ├── composer.json
│ │ │ ├── Oms.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20150212
│ │ │ └── OmsApiResolver.php
│ │ ├── Ons
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Ons.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190214
│ │ │ └── OnsApiResolver.php
│ │ ├── OnsMqtt
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── OnsMqtt.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20191211
│ │ │ │ └── OnsMqttApiResolver.php
│ │ │ └── V20200420
│ │ │ └── OnsMqttApiResolver.php
│ │ ├── Oos
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Oos.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190601
│ │ │ └── OosApiResolver.php
│ │ ├── Openanalytics
│ │ │ ├── composer.json
│ │ │ ├── Openanalytics.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180301
│ │ │ └── OpenanalyticsApiResolver.php
│ │ ├── OpenanalyticsOpen
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── OpenanalyticsOpen.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180619
│ │ │ │ └── OpenanalyticsOpenApiResolver.php
│ │ │ └── V20200928
│ │ │ └── OpenanalyticsOpenApiResolver.php
│ │ ├── OpenSearch
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── OpenSearch.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20171225
│ │ │ └── OpenSearchApiResolver.php
│ │ ├── OssAdmin
│ │ │ ├── composer.json
│ │ │ ├── OssAdmin.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20130712
│ │ │ │ └── OssAdminApiResolver.php
│ │ │ ├── V20140326
│ │ │ │ └── OssAdminApiResolver.php
│ │ │ ├── V20150302
│ │ │ │ └── OssAdminApiResolver.php
│ │ │ └── V20150520
│ │ │ └── OssAdminApiResolver.php
│ │ ├── Ots
│ │ │ ├── composer.json
│ │ │ ├── Ots.php
│ │ │ ├── OtsVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160620
│ │ │ ├── OtsApiResolver.php
│ │ │ └── Ots.php
│ │ ├── OutboundBot
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── OutboundBot.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20191226
│ │ │ └── OutboundBotApiResolver.php
│ │ ├── PetaData
│ │ │ ├── composer.json
│ │ │ ├── PetaData.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160101
│ │ │ └── PetaDataApiResolver.php
│ │ ├── Polardb
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Polardb.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20170801
│ │ │ └── PolardbApiResolver.php
│ │ ├── Polardbx
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Polardbx.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200202
│ │ │ └── PolardbxApiResolver.php
│ │ ├── Privatelink
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Privatelink.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20200415
│ │ │ └── PrivatelinkApiResolver.php
│ │ ├── ProductCatalog
│ │ │ ├── composer.json
│ │ │ ├── ProductCatalog.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180918
│ │ │ └── ProductCatalogApiResolver.php
│ │ ├── PTS
│ │ │ ├── composer.json
│ │ │ ├── PTS.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20181111
│ │ │ └── PTSApiResolver.php
│ │ ├── Push
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Push.php
│ │ │ ├── PushVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20160801
│ │ │ └── PushApiResolver.php
│ │ ├── Pvtz
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Pvtz.php
│ │ │ ├── PvtzVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20180101
│ │ │ ├── PvtzApiResolver.php
│ │ │ └── Pvtz.php
│ │ ├── Qualitycheck
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Qualitycheck.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ └── V20190115
│ │ │ └── QualitycheckApiResolver.php
│ │ ├── Ram
│ │ │ ├── composer.json
│ │ │ ├── Ram.php
│ │ │ ├── RamVersion.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20140214
│ │ │ │ └── RamApiResolver.php
│ │ │ ├── V20150501
│ │ │ │ ├── RamApiResolver.php
│ │ │ │ └── Ram.php
│ │ │ └── V20180302
│ │ │ └── RamApiResolver.php
│ │ ├── Rds
│ │ │ ├── 2014-08-15
│ │ │ │ ├── AddBuDBInstanceRelation.xml
│ │ │ │ ├── AddTagsToResource.xml
│ │ │ │ ├── AllocateClassicNetworkType.xml
│ │ │ │ ├── AllocateCloudInstanceIp.xml
│ │ │ │ ├── AllocateInstancePrivateConnection.xml
│ │ │ │ ├── AllocateInstancePublicConnection.xml
│ │ │ │ ├── AllocateInstanceVpcNetworkType.xml
│ │ │ │ ├── AllocateReadWriteSplittingConnection.xml
│ │ │ │ ├── AuthorizeBackupEncryption.xml
│ │ │ │ ├── BatchGrantAccountPrivilege.xml
│ │ │ │ ├── BatchRevokeAccountPrivilege.xml
│ │ │ │ ├── CalculateDBInstanceWeight.xml
│ │ │ │ ├── CancelImport.xml
│ │ │ │ ├── CheckAccountNameAvailable.xml
│ │ │ │ ├── CheckBackupEncryptionAuthorized.xml
│ │ │ │ ├── CheckCloudResourceAuthorized.xml
│ │ │ │ ├── CheckCreateDdrDBInstance.xml
│ │ │ │ ├── CheckDBInstances.xml
│ │ │ │ ├── CheckDBNameAvailable.xml
│ │ │ │ ├── CheckInstanceExist.xml
│ │ │ │ ├── CheckInstanceExsit.xml
│ │ │ │ ├── CheckRecoveryConditions.xml
│ │ │ │ ├── CheckRegionSupportBackupEncryption.xml
│ │ │ │ ├── CheckResource.xml
│ │ │ │ ├── CheckSqlLogHistoryEnable.xml
│ │ │ │ ├── ClearDedicatedHost.xml
│ │ │ │ ├── CloneDBInstanceForSecurity.xml
│ │ │ │ ├── CloneDBInstance.xml
│ │ │ │ ├── CloneParameterGroup.xml
│ │ │ │ ├── CompensateInstanceForChannel.xml
│ │ │ │ ├── CopyDatabaseBetweenInstances.xml
│ │ │ │ ├── CopyDatabase.xml
│ │ │ │ ├── CreateAccountForInner.xml
│ │ │ │ ├── CreateAccount.xml
│ │ │ │ ├── CreateAdminAccount.xml
│ │ │ │ ├── CreateBackup.xml
│ │ │ │ ├── CreateDampPolicy.xml
│ │ │ │ ├── CreateDatabaseForInner.xml
│ │ │ │ ├── CreateDatabase.xml
│ │ │ │ ├── CreateDBInstanceForChannel.xml
│ │ │ │ ├── CreateDBInstanceforFirstPay.xml
│ │ │ │ ├── CreateDBInstanceReplica.xml
│ │ │ │ ├── CreateDBInstances.xml
│ │ │ │ ├── CreateDBInstance.xml
│ │ │ │ ├── CreateDBProxyEndpointAddress.xml
│ │ │ │ ├── CreateDdrInstance.xml
│ │ │ │ ├── CreateDedicatedHostAccount.xml
│ │ │ │ ├── CreateDedicatedHostGroup.xml
│ │ │ │ ├── CreateDedicatedHostUser.xml
│ │ │ │ ├── CreateDedicatedHost.xml
│ │ │ │ ├── CreateDiagnosticReport.xml
│ │ │ │ ├── CreateFCTrigger.xml
│ │ │ │ ├── CreateHostAccount.xml
│ │ │ │ ├── CreateMigrateTaskForSQLServer.xml
│ │ │ │ ├── CreateMigrateTask.xml
│ │ │ │ ├── CreateMulOrderForBuy.xml
│ │ │ │ ├── CreateMulOrderForDefer.xml
│ │ │ │ ├── CreateOnlineDatabaseTask.xml
│ │ │ │ ├── CreateOpenSearchDBInstance.xml
│ │ │ │ ├── CreateOrderForClone.xml
│ │ │ │ ├── CreateOrderForDdr.xml
│ │ │ │ ├── CreateOrderForDefer.xml
│ │ │ │ ├── CreateOrderForDegrade.xml
│ │ │ │ ├── CreateOrderForModify.xml
│ │ │ │ ├── CreateOrderForRebuild.xml
│ │ │ │ ├── CreateOrderForTempUpgrade.xml
│ │ │ │ ├── CreateOrder.xml
│ │ │ │ ├── CreateParameterGroup.xml
│ │ │ │ ├── CreatePolicyWithSpecifiedPolicy.xml
│ │ │ │ ├── CreatePostpaidDBInstanceForChannel.xml
│ │ │ │ ├── CreatePostpaidDBInstance.xml
│ │ │ │ ├── CreateReadOnlyDBInstance.xml
│ │ │ │ ├── CreateSQLDiagnosis.xml
│ │ │ │ ├── CreateStaticVerification.xml
│ │ │ │ ├── CreateTddlDBInstance.xml
│ │ │ │ ├── CreateTempDBInstanceForChannel.xml
│ │ │ │ ├── CreateTempDBInstance.xml
│ │ │ │ ├── CreateUploadPathForSQLServer.xml
│ │ │ │ ├── DecribeSqlLogDumpStatus.xml
│ │ │ │ ├── DegradeDBInstanceSpec.xml
│ │ │ │ ├── DeleteAccount.xml
│ │ │ │ ├── DeleteADSetting.xml
│ │ │ │ ├── DeleteBackupFile.xml
│ │ │ │ ├── DeleteBackup.xml
│ │ │ │ ├── DeleteCloudInstanceIp.xml
│ │ │ │ ├── DeleteDampPolicy.xml
│ │ │ │ ├── DeleteDatabase.xml
│ │ │ │ ├── DeleteDBInstance.xml
│ │ │ │ ├── DeleteDBProxyEndpointAddress.xml
│ │ │ │ ├── DeleteDedicatedHostAccount.xml
│ │ │ │ ├── DeleteDedicatedHostGroup.xml
│ │ │ │ ├── DeleteDedicatedHost.xml
│ │ │ │ ├── DeleteFCTrigger.xml
│ │ │ │ ├── DeleteHostAccount.xml
│ │ │ │ ├── DeleteOpenSearchDBInstance.xml
│ │ │ │ ├── DeleteParameterGroup.xml
│ │ │ │ ├── DescibeImportsFromDatabase.xml
│ │ │ │ ├── DescribeAbnormalDBInstances.xml
│ │ │ │ ├── DescribeAccountCompleteProgress.xml
│ │ │ │ ├── DescribeAccounts.xml
│ │ │ │ ├── DescribeActionEventPolicy.xml
│ │ │ │ ├── DescribeActiveOperationTaskCount.xml
│ │ │ │ ├── DescribeActiveOperationTaskRegion.xml
│ │ │ │ ├── DescribeActiveOperationTaskType.xml
│ │ │ │ ├── DescribeActiveOperationTask.xml
│ │ │ │ ├── DescribeADInfo.xml
│ │ │ │ ├── DescribeAnalyticdbByPrimaryDBInstance.xml
│ │ │ │ ├── DescribeArchiveSQLLogFromKepler.xml
│ │ │ │ ├── DescribeAvailableClasses.xml
│ │ │ │ ├── DescribeAvailableCrossRegion.xml
│ │ │ │ ├── DescribeAvailableDedicatedHostClasses.xml
│ │ │ │ ├── DescribeAvailableDedicatedHostZones.xml
│ │ │ │ ├── DescribeAvailableInstanceClass.xml
│ │ │ │ ├── DescribeAvailableRecoveryTime.xml
│ │ │ │ ├── DescribeAvailableResource.xml
│ │ │ │ ├── DescribeAvailableZones.xml
│ │ │ │ ├── DescribeBackupDatabase.xml
│ │ │ │ ├── DescribeBackupEncryption.xml
│ │ │ │ ├── DescribeBackupPolicy.xml
│ │ │ │ ├── DescribeBackupSetsForSecurity.xml
│ │ │ │ ├── DescribeBackupsForSecurity.xml
│ │ │ │ ├── DescribeBackups.xml
│ │ │ │ ├── DescribeBackupTasks.xml
│ │ │ │ ├── DescribeBatchTask.xml
│ │ │ │ ├── DescribeBinlogFiles.xml
│ │ │ │ ├── DescribeByolLicense.xml
│ │ │ │ ├── DescribeCharacterSetName.xml
│ │ │ │ ├── DescribeClassList.xml
│ │ │ │ ├── DescribeCloudDBAService.xml
│ │ │ │ ├── DescribeCloudDbExpertService.xml
│ │ │ │ ├── DescribeCollationTimeZones.xml
│ │ │ │ ├── DescribeCommodity.xml
│ │ │ │ ├── DescribeControlEventConfig.xml
│ │ │ │ ├── DescribeControlEvents.xml
│ │ │ │ ├── DescribeCrossBackupMetaList.xml
│ │ │ │ ├── DescribeCrossRegionBackupDBInstance.xml
│ │ │ │ ├── DescribeCrossRegionBackups.xml
│ │ │ │ ├── DescribeCrossRegionLogBackupFiles.xml
│ │ │ │ ├── DescribeCustinsKernelReleaseNotes.xml
│ │ │ │ ├── DescribeCustinsResourceInfo.xml
│ │ │ │ ├── DescribeDampPoliciesByCid.xml
│ │ │ │ ├── DescribeDampPolicyByComment.xml
│ │ │ │ ├── DescribeDampPolicyByPolicyName.xml
│ │ │ │ ├── DescribeDasInstanceConfig.xml
│ │ │ │ ├── DescribeDatabaseLockDiagnosis.xml
│ │ │ │ ├── DescribeDatabases.xml
│ │ │ │ ├── DescribeDBInstanceAttribute.xml
│ │ │ │ ├── DescribeDBInstanceByTags.xml
│ │ │ │ ├── DescribeDBInstanceChargeTypeForJuShiTa.xml
│ │ │ │ ├── DescribeDBInstanceDetail.xml
│ │ │ │ ├── DescribeDBInstanceECSSGRelation.xml
│ │ │ │ ├── DescribeDBInstanceEncryptionKey.xml
│ │ │ │ ├── DescribeDBInstanceExtendAttribute.xml
│ │ │ │ ├── DescribeDBInstanceHAConfig.xml
│ │ │ │ ├── DescribeDBInstanceInfo.xml
│ │ │ │ ├── DescribeDBInstanceIPArrayList.xml
│ │ │ │ ├── DescribeDBInstanceIpHostname.xml
│ │ │ │ ├── DescribeDBInstanceMonitor.xml
│ │ │ │ ├── DescribeDBInstanceNetInfoForChannel.xml
│ │ │ │ ├── DescribeDBInstanceNetInfo.xml
│ │ │ │ ├── DescribeDBInstanceNetworkDetail.xml
│ │ │ │ ├── DescribeDBInstanceNetwork.xml
│ │ │ │ ├── DescribeDBInstanceNodes.xml
│ │ │ │ ├── DescribeDBInstancePerformance.xml
│ │ │ │ ├── DescribeDBInstancePromoteActivity.xml
│ │ │ │ ├── DescribeDBInstanceProxyConfiguration.xml
│ │ │ │ ├── DescribeDBInstancesAsCsv.xml
│ │ │ │ ├── DescribeDBInstancesByExpireTime.xml
│ │ │ │ ├── DescribeDBInstancesByPerformance.xml
│ │ │ │ ├── DescribeDBInstancesForClone.xml
│ │ │ │ ├── DescribeDBInstancesOverview.xml
│ │ │ │ ├── DescribeDBInstanceSSL.xml
│ │ │ │ ├── DescribeDBInstanceSwitchLog.xml
│ │ │ │ ├── DescribeDBInstancesWithCloudResource.xml
│ │ │ │ ├── DescribeDBInstances.xml
│ │ │ │ ├── DescribeDBInstanceTDE.xml
│ │ │ │ ├── DescribeDBInstanceUpgradeActivity.xml
│ │ │ │ ├── DescribeDBMiniEngineVersions.xml
│ │ │ │ ├── DescribeDBProxyEndpoint.xml
│ │ │ │ ├── DescribeDBProxyPerformance.xml
│ │ │ │ ├── DescribeDBProxy.xml
│ │ │ │ ├── DescribeDedicatedHostAttribute.xml
│ │ │ │ ├── DescribeDedicatedHostGroups.xml
│ │ │ │ ├── DescribeDedicatedHostImageCategories.xml
│ │ │ │ ├── DescribeDedicatedHosts.xml
│ │ │ │ ├── DescribeDetachedBackups.xml
│ │ │ │ ├── DescribeDiagnosticReportList.xml
│ │ │ │ ├── DescribeDTCSecurityIpHostsForSQLServer.xml
│ │ │ │ ├── DescribeDynamicVerificationList.xml
│ │ │ │ ├── DescribeEncryptionKeyList.xml
│ │ │ │ ├── DescribeErrorLogs.xml
│ │ │ │ ├── DescribeEvents.xml
│ │ │ │ ├── DescribeFCTrigger.xml
│ │ │ │ ├── DescribeFilesForSQLServer.xml
│ │ │ │ ├── DescribeHASwitchConfig.xml
│ │ │ │ ├── DescribeHostAccounts.xml
│ │ │ │ ├── DescribeHostGroupElasticStrategyParameters.xml
│ │ │ │ ├── DescribeImportsForSQLServer.xml
│ │ │ │ ├── DescribeInstanceAutoRenewalAttribute.xml
│ │ │ │ ├── DescribeInstanceAutoRenewAttribute.xml
│ │ │ │ ├── DescribeInstanceCrossBackupPolicy.xml
│ │ │ │ ├── DescribeInstanceKeywords.xml
│ │ │ │ ├── DescribeInstanceLevelList.xml
│ │ │ │ ├── DescribeInstanceVpcMigrateInfo.xml
│ │ │ │ ├── DescribeLocalAvailableRecoveryTime.xml
│ │ │ │ ├── DescribeLogBackupFiles.xml
│ │ │ │ ├── DescribeLogicDBInstanceTopology.xml
│ │ │ │ ├── DescribeMetaList.xml
│ │ │ │ ├── DescribeMigrateCountInfo.xml
│ │ │ │ ├── DescribeMigrateTaskById.xml
│ │ │ │ ├── DescribeMigrateTasksForSQLServer.xml
│ │ │ │ ├── DescribeMigrateTasks.xml
│ │ │ │ ├── DescribeModifyParameterLog.xml
│ │ │ │ ├── DescribeNextEventForSign.xml
│ │ │ │ ├── DescribeNodeTypeList.xml
│ │ │ │ ├── DescribeOpenSearchDBInstance.xml
│ │ │ │ ├── DescribeOperationLogs.xml
│ │ │ │ ├── DescribeOperatorPermission.xml
│ │ │ │ ├── DescribeOptimizeAdviceByDBA.xml
│ │ │ │ ├── DescribeOptimizeAdviceOnBigTable.xml
│ │ │ │ ├── DescribeOptimizeAdviceOnExcessIndex.xml
│ │ │ │ ├── DescribeOptimizeAdviceOnMissIndex.xml
│ │ │ │ ├── DescribeOptimizeAdviceOnMissPK.xml
│ │ │ │ ├── DescribeOptimizeAdviceOnStorage.xml
│ │ │ │ ├── DescribeOrderHistory.xml
│ │ │ │ ├── DescribeOssDownloadsForSQLServer.xml
│ │ │ │ ├── DescribeOssDownloads.xml
│ │ │ │ ├── DescribeParameterGroups.xml
│ │ │ │ ├── DescribeParameterGroup.xml
│ │ │ │ ├── DescribeParameters.xml
│ │ │ │ ├── DescribeParameterTemplates.xml
│ │ │ │ ├── DescribePreCheckResults.xml
│ │ │ │ ├── DescribePrice.xml
│ │ │ │ ├── DescribeProxyFunctionSupport.xml
│ │ │ │ ├── DescribeRdsResourceSettings.xml
│ │ │ │ ├── DescribeRdsVpcs.xml
│ │ │ │ ├── DescribeRdsVSwitchs.xml
│ │ │ │ ├── DescribeReadDBInstanceDelay.xml
│ │ │ │ ├── DescribeRealtimeDiagnoses.xml
│ │ │ │ ├── DescribeRegionAvailability.xml
│ │ │ │ ├── DescribeRegionsForChannel.xml
│ │ │ │ ├── DescribeRegions.xml
│ │ │ │ ├── DescribeRenewalPrice.xml
│ │ │ │ ├── DescribeReplicaConflictInfo.xml
│ │ │ │ ├── DescribeReplicaInitializeProgress.xml
│ │ │ │ ├── DescribeReplicaPerformance.xml
│ │ │ │ ├── DescribeReplicas.xml
│ │ │ │ ├── DescribeReplicaUsage.xml
│ │ │ │ ├── DescribeResourceDiagnosis.xml
│ │ │ │ ├── DescribeResourceUsage.xml
│ │ │ │ ├── DescribeSecurityGroupConfiguration.xml
│ │ │ │ ├── DescribeServiceOfCloudDBA.xml
│ │ │ │ ├── DescribeSignedEventActions.xml
│ │ │ │ ├── DescribeSlowLogRecords.xml
│ │ │ │ ├── DescribeSlowLogs.xml
│ │ │ │ ├── DescribeSQLCollectorPolicy.xml
│ │ │ │ ├── DescribeSQLCollectorRetention.xml
│ │ │ │ ├── DescribeSQLCollectorVersion.xml
│ │ │ │ ├── DescribeSQLDiagnosisList.xml
│ │ │ │ ├── DescribeSQLDiagnosis.xml
│ │ │ │ ├── DescribeSQLInjectionInfos.xml
│ │ │ │ ├── DescribeSqlLogDetailArchiveStatus.xml
│ │ │ │ ├── DescribeSqlLogDumpStatus.xml
│ │ │ │ ├── DescribeSQLLogFiles.xml
│ │ │ │ ├── DescribeSqlLogInstances.xml
│ │ │ │ ├── DescribeSQLLogRecordsList.xml
│ │ │ │ ├── DescribeSQLLogRecords.xml
│ │ │ │ ├── DescribeSQLLogReportList.xml
│ │ │ │ ├── DescribeSQLLogReports.xml
│ │ │ │ ├── DescribeSqlLogTemplatesList.xml
│ │ │ │ ├── DescribeSqlLogTemplatesTimeDistribution.xml
│ │ │ │ ├── DescribeSqlLogTimeDistribution.xml
│ │ │ │ ├── DescribeSqlLogTrialStatus.xml
│ │ │ │ ├── DescribeSQLReports.xml
│ │ │ │ ├── DescribeSQLServerUpgradeVersions.xml
│ │ │ │ ├── DescribeSqlTemplatesConsumeAndScanRows.xml
│ │ │ │ ├── DescribeStaticVerificationList.xml
│ │ │ │ ├── DescribeStorageList.xml
│ │ │ │ ├── DescribeStrategy.xml
│ │ │ │ ├── DescribeSyncAccountForInner.xml
│ │ │ │ ├── DescribeSyncAccounts.xml
│ │ │ │ ├── DescribeTags.xml
│ │ │ │ ├── DescribeTaskInfo.xml
│ │ │ │ ├── DescribeTasks.xml
│ │ │ │ ├── DescribeTemplatesConsumeAndScanRows.xml
│ │ │ │ ├── DescribeTemplatesList.xml
│ │ │ │ ├── DescribeTemplateSqlDetail.xml
│ │ │ │ ├── DescribeTemplatesSqlType.xml
│ │ │ │ ├── DescribeUpgradeMajorVersionPrecheckTask.xml
│ │ │ │ ├── DescribeUpgradeMajorVersionTasks.xml
│ │ │ │ ├── DescribeUserEncryptionKeyList.xml
│ │ │ │ ├── DescribeUserInfo.xml
│ │ │ │ ├── DescribeVerificationList.xml
│ │ │ │ ├── DescribeVpcs.xml
│ │ │ │ ├── DescribeVpcZoneNos.xml
│ │ │ │ ├── DescribeZones.xml
│ │ │ │ ├── DestroyDBInstance.xml
│ │ │ │ ├── DisableSqlLogDistribution.xml
│ │ │ │ ├── DropDedicatedHostUser.xml
│ │ │ │ ├── EnableBackupEncryption.xml
│ │ │ │ ├── EnableSqlLogDistribution.xml
│ │ │ │ ├── EvaluateDedicatedHostInstanceResource.xml
│ │ │ │ ├── EvaluateFailOverSwitch.xml
│ │ │ │ ├── EvaluateFailover.xml
│ │ │ │ ├── EvaluateResource.xml
│ │ │ │ ├── EvaluateSupportByokShow.xml
│ │ │ │ ├── ExtractBackupFromOAS.xml
│ │ │ │ ├── Failover.xml
│ │ │ │ ├── GetDBInstanceTopology.xml
│ │ │ │ ├── GetDbProxyInstanceSsl.xml
│ │ │ │ ├── GrantAccountPrivilege.xml
│ │ │ │ ├── GrantOperatorPermission.xml
│ │ │ │ ├── ImportDatabaseBetweenInstances.xml
│ │ │ │ ├── ImportDataForSQLServer.xml
│ │ │ │ ├── ImportDataFromDatabase.xml
│ │ │ │ ├── ListAvailableClasses.xml
│ │ │ │ ├── ListTagResources.xml
│ │ │ │ ├── LockAccount.xml
│ │ │ │ ├── LockDBInstance.xml
│ │ │ │ ├── LoginDBInstancefromCloudDBA.xml
│ │ │ │ ├── MigrateConnectionToOtherZone.xml
│ │ │ │ ├── MigrateDBInstance.xml
│ │ │ │ ├── MigrateSecurityIPMode.xml
│ │ │ │ ├── MigrateToOtherRegion.xml
│ │ │ │ ├── MigrateToOtherZone.xml
│ │ │ │ ├── ModifyAccountDescription.xml
│ │ │ │ ├── ModifyActionEventPolicy.xml
│ │ │ │ ├── ModifyActionEventVerifyPolicy.xml
│ │ │ │ ├── ModifyActiveOperationTask.xml
│ │ │ │ ├── ModifyADInfo.xml
│ │ │ │ ├── ModifyBackupPolicy.xml
│ │ │ │ ├── ModifyCollationTimeZone.xml
│ │ │ │ ├── ModifyCommodity.xml
│ │ │ │ ├── ModifyControlEventConfig.xml
│ │ │ │ ├── ModifyCustinsResource.xml
│ │ │ │ ├── ModifyDampPolicy.xml
│ │ │ │ ├── ModifyDasInstanceConfig.xml
│ │ │ │ ├── ModifyDBDescription.xml
│ │ │ │ ├── ModifyDBInstanceAutoUpgradeMinorVersion.xml
│ │ │ │ ├── ModifyDBInstanceChargeTypeForJuShiTa.xml
│ │ │ │ ├── ModifyDBInstanceConnectionMode.xml
│ │ │ │ ├── ModifyDBInstanceConnectionString.xml
│ │ │ │ ├── ModifyDBInstanceDelayedReplicationTime.xml
│ │ │ │ ├── ModifyDBInstanceDelayReplicationTime.xml
│ │ │ │ ├── ModifyDBInstanceDescription.xml
│ │ │ │ ├── ModifyDBInstanceECSSGRelation.xml
│ │ │ │ ├── ModifyDBInstanceHAConfig.xml
│ │ │ │ ├── ModifyDBInstanceMaintainTime.xml
│ │ │ │ ├── ModifyDBInstanceMonitor.xml
│ │ │ │ ├── ModifyDBInstanceNetExpireTime.xml
│ │ │ │ ├── ModifyDBInstanceNetworkExpireTime.xml
│ │ │ │ ├── ModifyDBInstanceNetworkType.xml
│ │ │ │ ├── ModifyDBInstanceOwner.xml
│ │ │ │ ├── ModifyDBInstancePayType.xml
│ │ │ │ ├── ModifyDBInstanceProxyConfiguration.xml
│ │ │ │ ├── ModifyDBInstanceSpec.xml
│ │ │ │ ├── ModifyDBInstanceSSL.xml
│ │ │ │ ├── ModifyDBInstancesSpec.xml
│ │ │ │ ├── ModifyDBInstanceTDE.xml
│ │ │ │ ├── ModifyDBProxyEndpointAddress.xml
│ │ │ │ ├── ModifyDBProxyEndpoint.xml
│ │ │ │ ├── ModifyDbProxyInstanceSsl.xml
│ │ │ │ ├── ModifyDBProxyInstance.xml
│ │ │ │ ├── ModifyDBProxy.xml
│ │ │ │ ├── ModifyDedicatedHostAccount.xml
│ │ │ │ ├── ModifyDedicatedHostAttribute.xml
│ │ │ │ ├── ModifyDedicatedHostGroupAttribute.xml
│ │ │ │ ├── ModifyDedicatedHostUser.xml
│ │ │ │ ├── ModifyDTCSecurityIpHostsForSQLServer.xml
│ │ │ │ ├── ModifyDynamicMode.xml
│ │ │ │ ├── ModifyDynamicResource.xml
│ │ │ │ ├── ModifyFCTrigger.xml
│ │ │ │ ├── ModifyGuardDomainMode.xml
│ │ │ │ ├── ModifyHASwitchConfig.xml
│ │ │ │ ├── ModifyInstanceAutoRenewalAttribute.xml
│ │ │ │ ├── ModifyInstanceAutoRenewAttribute.xml
│ │ │ │ ├── ModifyInstanceCrossBackupPolicy.xml
│ │ │ │ ├── ModifyLicenseInfo.xml
│ │ │ │ ├── ModifyMySQLDBInstanceDelay.xml
│ │ │ │ ├── ModifyOpenSearchDBInstance.xml
│ │ │ │ ├── ModifyParameterGroup.xml
│ │ │ │ ├── ModifyParameter.xml
│ │ │ │ ├── ModifyPostpaidDBInstanceSpec.xml
│ │ │ │ ├── ModifyReadonlyInstanceDelayReplicationTime.xml
│ │ │ │ ├── ModifyReadWriteSplittingConnection.xml
│ │ │ │ ├── ModifyReplicaDescription.xml
│ │ │ │ ├── ModifyReplicaDynamicMode.xml
│ │ │ │ ├── ModifyReplicaFilterMode.xml
│ │ │ │ ├── ModifyReplicaMode.xml
│ │ │ │ ├── ModifyReplicaRecoverMode.xml
│ │ │ │ ├── ModifyReplicaRecoveryMode.xml
│ │ │ │ ├── ModifyReplicaRelation.xml
│ │ │ │ ├── ModifyReplicaVerificationMode.xml
│ │ │ │ ├── ModifyResourceGroup.xml
│ │ │ │ ├── ModifySecurityGroupConfiguration.xml
│ │ │ │ ├── ModifySecurityIpsForChannel.xml
│ │ │ │ ├── ModifySecurityIps.xml
│ │ │ │ ├── ModifySQLCollectorPolicy.xml
│ │ │ │ ├── ModifySQLCollectorRetention.xml
│ │ │ │ ├── ModifySysadminAccountStatus.xml
│ │ │ │ ├── PreCheckBeforeImportData.xml
│ │ │ │ ├── PreCheckCreateOrderForClone.xml
│ │ │ │ ├── PreCheckCreateOrderForDefer.xml
│ │ │ │ ├── PreCheckCreateOrderForDegrade.xml
│ │ │ │ ├── PreCheckCreateOrderForModify.xml
│ │ │ │ ├── PreCheckCreateOrderForRebuild.xml
│ │ │ │ ├── PreCheckCreateOrderForTempUpgrade.xml
│ │ │ │ ├── PreCheckCreateOrder.xml
│ │ │ │ ├── PreCheckDBInstanceOperation.xml
│ │ │ │ ├── PurgeDBInstanceLog.xml
│ │ │ │ ├── QueryOssBuckets.xml
│ │ │ │ ├── QueryPriceForBuy.xml
│ │ │ │ ├── QueryPriceForRefund.xml
│ │ │ │ ├── QueryPriceForTempUpgrade.xml
│ │ │ │ ├── QueryPriceMultiForDefer.xml
│ │ │ │ ├── QueryPriceMulti.xml
│ │ │ │ ├── QueryPrice.xml
│ │ │ │ ├── RebuildDBInstance.xml
│ │ │ │ ├── ReceiveDBInstance.xml
│ │ │ │ ├── RecoveryDBInstance.xml
│ │ │ │ ├── ReleaseInstanceConnection.xml
│ │ │ │ ├── ReleaseInstancePublicConnection.xml
│ │ │ │ ├── ReleaseReadWriteSplittingConnection.xml
│ │ │ │ ├── ReleaseReplica.xml
│ │ │ │ ├── RemoveTagsFromResource.xml
│ │ │ │ ├── RenewDBInstance.xml
│ │ │ │ ├── RenewInstance.xml
│ │ │ │ ├── ReplaceDedicatedHost.xml
│ │ │ │ ├── RequestServiceOfCloudDBA.xml
│ │ │ │ ├── RequestServiceOfCloudDBExpert.xml
│ │ │ │ ├── ResetAccountForPG.xml
│ │ │ │ ├── ResetAccountPassword.xml
│ │ │ │ ├── ResetAccount.xml
│ │ │ │ ├── ResetAdminAccountPassword.xml
│ │ │ │ ├── ResetHostAccountPassword.xml
│ │ │ │ ├── RestartDBInstances.xml
│ │ │ │ ├── RestartDBInstance.xml
│ │ │ │ ├── RestartDedicatedHost.xml
│ │ │ │ ├── RestoreDdrTable.xml
│ │ │ │ ├── RestoreTable.xml
│ │ │ │ ├── RevokeAccountPrivilege.xml
│ │ │ │ ├── RevokeOperatorPermission.xml
│ │ │ │ ├── SignEventAction.xml
│ │ │ │ ├── StartArchiveSQLLog.xml
│ │ │ │ ├── StartDBInstanceDiagnose.xml
│ │ │ │ ├── StartDBInstance.xml
│ │ │ │ ├── StartSqlLogDetailArchive.xml
│ │ │ │ ├── StartSqlLogDump.xml
│ │ │ │ ├── StartSqlLogTrail.xml
│ │ │ │ ├── StopDBInstance.xml
│ │ │ │ ├── StopSyncing.xml
│ │ │ │ ├── SwitchDBInstanceChargeType.xml
│ │ │ │ ├── SwitchDBInstanceHA.xml
│ │ │ │ ├── SwitchDBInstanceNetType.xml
│ │ │ │ ├── SwitchDBInstancesHA.xml
│ │ │ │ ├── SwitchDBInstanceVpc.xml
│ │ │ │ ├── SwitchGuardToMasterInstance.xml
│ │ │ │ ├── SwitchOver.xml
│ │ │ │ ├── TagResources.xml
│ │ │ │ ├── TerminateMigrateTask.xml
│ │ │ │ ├── TransferMultipleTenantToSingleTenant.xml
│ │ │ │ ├── TransformDBInstancePayType.xml
│ │ │ │ ├── UnlockAccount.xml
│ │ │ │ ├── UnlockDBInstance.xml
│ │ │ │ ├── UntagResources.xml
│ │ │ │ ├── UpdateControlEventStatus.xml
│ │ │ │ ├── UpgradeDBInstanceEngineVersion.xml
│ │ │ │ ├── UpgradeDBInstanceKernelVersion.xml
│ │ │ │ ├── UpgradeDBInstanceMajorVersionPrecheck.xml
│ │ │ │ ├── UpgradeDBInstanceMajorVersion.xml
│ │ │ │ ├── UpgradeDBInstanceNetWorkInfo.xml
│ │ │ │ ├── UpgradeDBInstanceNetwork.xml
│ │ │ │ ├── UpgradeDBInstancesKernelVersion.xml
│ │ │ │ └── UpgradeDBProxyInstanceKernelVersion.xml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── Rds.php
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20140815
│ │ │ │ └── RdsApiResolver.php
│ │ │ └── version-2014-08-15.xml
│ │ ├── Reid
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Reid.php
│ │ │ └── V20190928
│ │ │ └── ReidApiResolver.php
│ │ ├── Release.php
│ │ ├── RetailadvqaPublic
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── RetailadvqaPublic.php
│ │ │ └── V20200515
│ │ │ └── RetailadvqaPublicApiResolver.php
│ │ ├── Retailcloud
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Retailcloud.php
│ │ │ └── V20180313
│ │ │ └── RetailcloudApiResolver.php
│ │ ├── RKvstore
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── RKvstore.php
│ │ │ └── V20150101
│ │ │ └── RKvstoreApiResolver.php
│ │ ├── ROS
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── ROS.php
│ │ │ ├── V20150901
│ │ │ │ └── ROSApiResolver.php
│ │ │ └── V20190910
│ │ │ └── ROSApiResolver.php
│ │ ├── Rtc
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Rtc.php
│ │ │ └── V20180111
│ │ │ └── RtcApiResolver.php
│ │ ├── Sae
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Sae.php
│ │ │ └── V20190506
│ │ │ └── SaeApiResolver.php
│ │ ├── Saf
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Saf.php
│ │ │ ├── V20180919
│ │ │ │ └── SafApiResolver.php
│ │ │ └── V20190521
│ │ │ └── SafApiResolver.php
│ │ ├── Safconsole
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Safconsole.php
│ │ │ └── V20210112
│ │ │ └── SafconsoleApiResolver.php
│ │ ├── Sas
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Sas.php
│ │ │ └── V20181203
│ │ │ └── SasApiResolver.php
│ │ ├── SasApi
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── SasApi.php
│ │ │ ├── SasApiVersion.php
│ │ │ └── V20170705
│ │ │ ├── SasApiApiResolver.php
│ │ │ └── SasApi.php
│ │ ├── Scdn
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Scdn.php
│ │ │ ├── ScdnVersion.php
│ │ │ └── V20171115
│ │ │ ├── ScdnApiResolver.php
│ │ │ └── Scdn.php
│ │ ├── Schedulerx2
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Schedulerx2.php
│ │ │ └── V20190430
│ │ │ └── Schedulerx2ApiResolver.php
│ │ ├── Scsp
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Scsp.php
│ │ │ └── V20200702
│ │ │ └── ScspApiResolver.php
│ │ ├── Servicemesh
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Servicemesh.php
│ │ │ └── V20200111
│ │ │ └── ServicemeshApiResolver.php
│ │ ├── Sgw
│ │ │ ├── 2018-05-11
│ │ │ │ ├── ActivateAllInOneGateway.xml
│ │ │ │ ├── ActivateGateway.xml
│ │ │ │ ├── AddSharesToExpressSync.xml
│ │ │ │ ├── AddTagsToGateway.xml
│ │ │ │ ├── CheckActivationKey.xml
│ │ │ │ ├── CheckBlockVolumeName.xml
│ │ │ │ ├── CheckGatewayEssdSupport.xml
│ │ │ │ ├── CheckMnsService.xml
│ │ │ │ ├── CheckRole.xml
│ │ │ │ ├── CheckSlrRole.xml
│ │ │ │ ├── CheckUpgradeVersion.xml
│ │ │ │ ├── CreateCache.xml
│ │ │ │ ├── CreateElasticGatewayPrivateZone.xml
│ │ │ │ ├── CreateElasticGateway.xml
│ │ │ │ ├── CreateExpressSync.xml
│ │ │ │ ├── CreateGatewayBlockVolume.xml
│ │ │ │ ├── CreateGatewayCacheDisk.xml
│ │ │ │ ├── CreateGatewayFileShare.xml
│ │ │ │ ├── CreateGatewayLogging.xml
│ │ │ │ ├── CreateGatewaySMBUser.xml
│ │ │ │ ├── CreateGatewayStorageTarget.xml
│ │ │ │ ├── CreateGateway.xml
│ │ │ │ ├── CreateStorageBundle.xml
│ │ │ │ ├── DeleteElasticGatewayPrivateZone.xml
│ │ │ │ ├── DeleteExpressSync.xml
│ │ │ │ ├── DeleteGatewayBlockVolumes.xml
│ │ │ │ ├── DeleteGatewayCacheDisk.xml
│ │ │ │ ├── DeleteGatewayFileShares.xml
│ │ │ │ ├── DeleteGatewayLogging.xml
│ │ │ │ ├── DeleteGatewaySMBUser.xml
│ │ │ │ ├── DeleteGatewayStorageTarget.xml
│ │ │ │ ├── DeleteGateway.xml
│ │ │ │ ├── DeleteStorageBundle.xml
│ │ │ │ ├── DeployCacheDisk.xml
│ │ │ │ ├── DeployGateway.xml
│ │ │ │ ├── DescribeAccountConfig.xml
│ │ │ │ ├── DescribeBlockVolumeSnapshots.xml
│ │ │ │ ├── DescribeDashboard.xml
│ │ │ │ ├── DescribeExpireCaches.xml
│ │ │ │ ├── DescribeExpressSyncShares.xml
│ │ │ │ ├── DescribeExpressSyncs.xml
│ │ │ │ ├── DescribeGatewayActions.xml
│ │ │ │ ├── DescribeGatewayADInfo.xml
│ │ │ │ ├── DescribeGatewayAuthInfo.xml
│ │ │ │ ├── DescribeGatewayBlockVolumes.xml
│ │ │ │ ├── DescribeGatewayBucketCaches.xml
│ │ │ │ ├── DescribeGatewayCaches.xml
│ │ │ │ ├── DescribeGatewayCapacityLimit.xml
│ │ │ │ ├── DescribeGatewayCategories.xml
│ │ │ │ ├── DescribeGatewayClasses.xml
│ │ │ │ ├── DescribeGatewayCredential.xml
│ │ │ │ ├── DescribeGatewayDNS.xml
│ │ │ │ ├── DescribeGatewayFileShares.xml
│ │ │ │ ├── DescribeGatewayFileStatus.xml
│ │ │ │ ├── DescribeGatewayImages.xml
│ │ │ │ ├── DescribeGatewayInfo.xml
│ │ │ │ ├── DescribeGatewayLDAPInfo.xml
│ │ │ │ ├── DescribeGatewayLocations.xml
│ │ │ │ ├── DescribeGatewayLogging.xml
│ │ │ │ ├── DescribeGatewayLogs.xml
│ │ │ │ ├── DescribeGatewayModificationClasses.xml
│ │ │ │ ├── DescribeGatewayMonitorData.xml
│ │ │ │ ├── DescribeGatewayNFSClients.xml
│ │ │ │ ├── DescribeGatewaysForCms.xml
│ │ │ │ ├── DescribeGatewaySMBUsers.xml
│ │ │ │ ├── DescribeGatewaysTags.xml
│ │ │ │ ├── DescribeGatewayStatistics.xml
│ │ │ │ ├── DescribeGatewayStock.xml
│ │ │ │ ├── DescribeGatewayStorageTargets.xml
│ │ │ │ ├── DescribeGateways.xml
│ │ │ │ ├── DescribeGatewayTypes.xml
│ │ │ │ ├── DescribeGateway.xml
│ │ │ │ ├── DescribeKmsKey.xml
│ │ │ │ ├── DescribeMqttConfig.xml
│ │ │ │ ├── DescribeOssBucketInfo.xml
│ │ │ │ ├── DescribeOssBuckets.xml
│ │ │ │ ├── DescribePayAsYouGoPrice.xml
│ │ │ │ ├── DescribeRegions.xml
│ │ │ │ ├── DescribeSharesBucketInfoForExpressSync.xml
│ │ │ │ ├── DescribeStorageBundles.xml
│ │ │ │ ├── DescribeStorageBundle.xml
│ │ │ │ ├── DescribeSubscriptionPrice.xml
│ │ │ │ ├── DescribeTasks.xml
│ │ │ │ ├── DescribeUserBusinessStatus.xml
│ │ │ │ ├── DescribeVpcs.xml
│ │ │ │ ├── DescribeVSwitches.xml
│ │ │ │ ├── DescribeZones.xml
│ │ │ │ ├── DisableGatewayLogging.xml
│ │ │ │ ├── DisableGatewayNFSVersion.xml
│ │ │ │ ├── EnableGatewayIpv6.xml
│ │ │ │ ├── EnableGatewayLogging.xml
│ │ │ │ ├── ExpandCacheDisk.xml
│ │ │ │ ├── ExpandGatewayNetworkBandwidth.xml
│ │ │ │ ├── GenerateGatewayToken.xml
│ │ │ │ ├── GenerateMqttToken.xml
│ │ │ │ ├── GenerateStsToken.xml
│ │ │ │ ├── ListTagResources.xml
│ │ │ │ ├── ModifyElasticGatewaySpec.xml
│ │ │ │ ├── ModifyGatewayBlockVolume.xml
│ │ │ │ ├── ModifyGatewayClass.xml
│ │ │ │ ├── ModifyGatewayFileShareWatermark.xml
│ │ │ │ ├── ModifyGatewayFileShare.xml
│ │ │ │ ├── ModifyGatewayStorageTarget.xml
│ │ │ │ ├── ModifyGateway.xml
│ │ │ │ ├── ModifyStorageBundle.xml
│ │ │ │ ├── OpenSgwService.xml
│ │ │ │ ├── OperateGateway.xml
│ │ │ │ ├── ReleaseService.xml
│ │ │ │ ├── RemoveSharesFromExpressSync.xml
│ │ │ │ ├── RemoveTagsFromGateway.xml
│ │ │ │ ├── ReportBlockVolumes.xml
│ │ │ │ ├── ReportFileShares.xml
│ │ │ │ ├── ReportGatewayInfo.xml
│ │ │ │ ├── ReportGatewayUsage.xml
│ │ │ │ ├── ResetGatewayPassword.xml
│ │ │ │ ├── RestartFileShares.xml
│ │ │ │ ├── SetElasticGatewayDataPolicy.xml
│ │ │ │ ├── SetGatewayADInfo.xml
│ │ │ │ ├── SetGatewayDNS.xml
│ │ │ │ ├── SetGatewayLDAPInfo.xml
│ │ │ │ ├── StartElasticGateway.xml
│ │ │ │ ├── StopElasticGateway.xml
│ │ │ │ ├── SwitchGatewayExpirationPolicy.xml
│ │ │ │ ├── SwitchToSubscription.xml
│ │ │ │ ├── TagResources.xml
│ │ │ │ ├── UntagResources.xml
│ │ │ │ ├── UpdateGatewayBlockVolume.xml
│ │ │ │ ├── UpdateGatewayFileShare.xml
│ │ │ │ ├── UpgradeGateway.xml
│ │ │ │ ├── UploadGatewayLog.xml
│ │ │ │ ├── ValidateExpressSyncConfig.xml
│ │ │ │ └── ValidateGatewayName.xml
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Sgw.php
│ │ │ ├── V20180511
│ │ │ │ └── SgwApiResolver.php
│ │ │ └── version-2018-05-11.xml
│ │ ├── Skyeye
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Skyeye.php
│ │ │ ├── SkyeyeVersion.php
│ │ │ └── V20171201
│ │ │ ├── SkyeyeApiResolver.php
│ │ │ └── Skyeye.php
│ │ ├── Slb
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Slb.php
│ │ │ ├── SlbVersion.php
│ │ │ └── V20140515
│ │ │ ├── SlbApiResolver.php
│ │ │ └── Slb.php
│ │ ├── Smartag
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Smartag.php
│ │ │ ├── SmartagVersion.php
│ │ │ └── V20180313
│ │ │ ├── SmartagApiResolver.php
│ │ │ └── Smartag.php
│ │ ├── SmartHosting
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── SmartHosting.php
│ │ │ └── V20200801
│ │ │ └── SmartHostingApiResolver.php
│ │ ├── Smc
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Smc.php
│ │ │ └── V20190601
│ │ │ └── SmcApiResolver.php
│ │ ├── Sms
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Sms.php
│ │ │ ├── SmsVersion.php
│ │ │ └── V20160927
│ │ │ ├── SmsApiResolver.php
│ │ │ └── Sms.php
│ │ ├── SmsIntl
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── SmsIntl.php
│ │ │ └── V20180501
│ │ │ └── SmsIntlApiResolver.php
│ │ ├── Snsuapi
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Snsuapi.php
│ │ │ └── V20180709
│ │ │ └── SnsuapiApiResolver.php
│ │ ├── Sts
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Sts.php
│ │ │ ├── StsVersion.php
│ │ │ └── V20150401
│ │ │ ├── StsApiResolver.php
│ │ │ └── Sts.php
│ │ ├── Tag
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Tag.php
│ │ │ └── V20180828
│ │ │ └── TagApiResolver.php
│ │ ├── TagINner
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── TagINner.php
│ │ │ ├── TagINnerVersion.php
│ │ │ └── V20181109
│ │ │ ├── TagINnerApiResolver.php
│ │ │ └── TagINner.php
│ │ ├── Tdsr
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Tdsr.php
│ │ │ └── V20200101
│ │ │ └── TdsrApiResolver.php
│ │ ├── TeambitionAliyun
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── TeambitionAliyun.php
│ │ │ └── V20200226
│ │ │ └── TeambitionAliyunApiResolver.php
│ │ ├── TeslaDam
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── TeslaDam.php
│ │ │ ├── TeslaDamVersion.php
│ │ │ └── V20180118
│ │ │ ├── TeslaDamApiResolver.php
│ │ │ └── TeslaDam.php
│ │ ├── TeslaMaxCompute
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── TeslaMaxCompute.php
│ │ │ ├── TeslaMaxComputeVersion.php
│ │ │ └── V20180104
│ │ │ ├── TeslaMaxComputeApiResolver.php
│ │ │ └── TeslaMaxCompute.php
│ │ ├── TeslaStream
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── TeslaStream.php
│ │ │ ├── TeslaStreamVersion.php
│ │ │ └── V20180115
│ │ │ ├── TeslaStreamApiResolver.php
│ │ │ └── TeslaStream.php
│ │ ├── Ubsms
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Ubsms.php
│ │ │ ├── UbsmsVersion.php
│ │ │ └── V20150623
│ │ │ ├── UbsmsApiResolver.php
│ │ │ └── Ubsms.php
│ │ ├── UbsmsInner
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── UbsmsInner.php
│ │ │ ├── UbsmsInnerVersion.php
│ │ │ └── V20150623
│ │ │ ├── UbsmsInnerApiResolver.php
│ │ │ └── UbsmsInner.php
│ │ ├── Uis
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── Uis.php
│ │ │ ├── UisVersion.php
│ │ │ └── V20180821
│ │ │ ├── UisApiResolver.php
│ │ │ └── Uis.php
│ │ ├── UniMkt
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── UniMkt.php
│ │ │ ├── V20181207
│ │ │ │ └── UniMktApiResolver.php
│ │ │ └── V20181212
│ │ │ └── UniMktApiResolver.php
│ │ ├── Vcs
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200515
│ │ │ │ └── VcsApiResolver.php
│ │ │ └── Vcs.php
│ │ ├── Videoenhan
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200320
│ │ │ │ └── VideoenhanApiResolver.php
│ │ │ └── Videoenhan.php
│ │ ├── Videorecog
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200320
│ │ │ │ └── VideorecogApiResolver.php
│ │ │ └── Videorecog.php
│ │ ├── Videosearch
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200225
│ │ │ │ └── VideosearchApiResolver.php
│ │ │ └── Videosearch.php
│ │ ├── Videoseg
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200320
│ │ │ │ └── VideosegApiResolver.php
│ │ │ └── Videoseg.php
│ │ ├── Visionai
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20191024
│ │ │ │ └── VisionaiApiResolver.php
│ │ │ └── Visionai.php
│ │ ├── VisionaiPoc
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200408
│ │ │ │ └── VisionaiPocApiResolver.php
│ │ │ └── VisionaiPoc.php
│ │ ├── Vod
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20170321
│ │ │ │ ├── VodApiResolver.php
│ │ │ │ └── Vod.php
│ │ │ ├── Vod.php
│ │ │ └── VodVersion.php
│ │ ├── VoiceNavigator
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180612
│ │ │ │ └── VoiceNavigatorApiResolver.php
│ │ │ └── VoiceNavigator.php
│ │ ├── Vpc
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20160428
│ │ │ │ └── VpcApiResolver.php
│ │ │ └── Vpc.php
│ │ ├── Vs
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20181212
│ │ │ │ └── VsApiResolver.php
│ │ │ └── Vs.php
│ │ ├── WafOpenapi
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20161111
│ │ │ │ └── WafOpenapiApiResolver.php
│ │ │ ├── V20190910
│ │ │ │ └── WafOpenapiApiResolver.php
│ │ │ └── WafOpenapi.php
│ │ ├── WelfareInner
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20180524
│ │ │ │ └── WelfareInnerApiResolver.php
│ │ │ └── WelfareInner.php
│ │ ├── Workorder
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20200326
│ │ │ │ └── WorkorderApiResolver.php
│ │ │ └── Workorder.php
│ │ ├── Xspace
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20170720
│ │ │ │ └── XspaceApiResolver.php
│ │ │ └── Xspace.php
│ │ ├── Xtrace
│ │ │ ├── composer.json
│ │ │ ├── endpoints.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20190808
│ │ │ │ └── XtraceApiResolver.php
│ │ │ └── Xtrace.php
│ │ ├── YqBridge
│ │ │ ├── composer.json
│ │ │ ├── README-EN.md
│ │ │ ├── README.md
│ │ │ ├── V20170810
│ │ │ │ ├── YqBridgeApiResolver.php
│ │ │ │ └── YqBridge.php
│ │ │ ├── YqBridge.php
│ │ │ └── YqBridgeVersion.php
│ │ └── Yundun
│ │ ├── composer.json
│ │ ├── README-EN.md
│ │ ├── README.md
│ │ ├── V20150227
│ │ │ └── YundunApiResolver.php
│ │ └── Yundun.php
│ ├── SUPPORTED-EN.md
│ ├── SUPPORTED.md
│ └── UPGRADING.md
├── aliyuncs
│ └── oss-sdk-php
│ ├── autoload.php
│ ├── build-phar.sh
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── example.jpg
│ ├── index.php
│ ├── LICENSE.md
│ ├── phpunit.xml
│ ├── README-CN.md
│ ├── README.md
│ ├── samples
│ │ ├── BucketCors.php
│ │ ├── BucketLifecycle.php
│ │ ├── BucketLogging.php
│ │ ├── Bucket.php
│ │ ├── BucketReferer.php
│ │ ├── BucketWebsite.php
│ │ ├── Callback.php
│ │ ├── Common.php
│ │ ├── Config.php
│ │ ├── Image.php
│ │ ├── LiveChannel.php
│ │ ├── MultipartUpload.php
│ │ ├── Object.php
│ │ ├── RunAll.php
│ │ └── Signature.php
│ ├── src
│ │ └── OSS
│ │ ├── Core
│ │ │ ├── MimeTypes.php
│ │ │ ├── OssException.php
│ │ │ └── OssUtil.php
│ │ ├── Http
│ │ │ ├── LICENSE
│ │ │ ├── RequestCore_Exception.php
│ │ │ ├── RequestCore.php
│ │ │ └── ResponseCore.php
│ │ ├── Model
│ │ │ ├── BucketInfo.php
│ │ │ ├── BucketListInfo.php
│ │ │ ├── BucketStat.php
│ │ │ ├── CnameConfig.php
│ │ │ ├── CorsConfig.php
│ │ │ ├── CorsRule.php
│ │ │ ├── DeletedObjectInfo.php
│ │ │ ├── DeleteMarkerInfo.php
│ │ │ ├── DeleteObjectInfo.php
│ │ │ ├── ExtendWormConfig.php
│ │ │ ├── GetLiveChannelHistory.php
│ │ │ ├── GetLiveChannelInfo.php
│ │ │ ├── GetLiveChannelStatus.php
│ │ │ ├── InitiateWormConfig.php
│ │ │ ├── LifecycleAction.php
│ │ │ ├── LifecycleConfig.php
│ │ │ ├── LifecycleRule.php
│ │ │ ├── ListMultipartUploadInfo.php
│ │ │ ├── ListPartsInfo.php
│ │ │ ├── LiveChannelConfig.php
│ │ │ ├── LiveChannelHistory.php
│ │ │ ├── LiveChannelInfo.php
│ │ │ ├── LiveChannelListInfo.php
│ │ │ ├── LoggingConfig.php
│ │ │ ├── ObjectInfo.php
│ │ │ ├── ObjectListInfo.php
│ │ │ ├── ObjectVersionInfo.php
│ │ │ ├── ObjectVersionListInfo.php
│ │ │ ├── PartInfo.php
│ │ │ ├── PrefixInfo.php
│ │ │ ├── RefererConfig.php
│ │ │ ├── RequestPaymentConfig.php
│ │ │ ├── RestoreConfig.php
│ │ │ ├── ServerSideEncryptionConfig.php
│ │ │ ├── StorageCapacityConfig.php
│ │ │ ├── TaggingConfig.php
│ │ │ ├── Tag.php
│ │ │ ├── UploadInfo.php
│ │ │ ├── VersioningConfig.php
│ │ │ ├── WebsiteConfig.php
│ │ │ ├── WormConfig.php
│ │ │ └── XmlConfig.php
│ │ ├── OssClient.php
│ │ └── Result
│ │ ├── AclResult.php
│ │ ├── AppendResult.php
│ │ ├── BodyResult.php
│ │ ├── CallbackResult.php
│ │ ├── CopyObjectResult.php
│ │ ├── DeleteObjectsResult.php
│ │ ├── DeleteObjectVersionsResult.php
│ │ ├── ExistResult.php
│ │ ├── GetBucketEncryptionResult.php
│ │ ├── GetBucketInfoResult.php
│ │ ├── GetBucketRequestPaymentResult.php
│ │ ├── GetBucketStatResult.php
│ │ ├── GetBucketTagsResult.php
│ │ ├── GetBucketVersioningResult.php
│ │ ├── GetBucketWormResult.php
│ │ ├── GetCnameResult.php
│ │ ├── GetCorsResult.php
│ │ ├── GetLifecycleResult.php
│ │ ├── GetLiveChannelHistoryResult.php
│ │ ├── GetLiveChannelInfoResult.php
│ │ ├── GetLiveChannelStatusResult.php
│ │ ├── GetLocationResult.php
│ │ ├── GetLoggingResult.php
│ │ ├── GetRefererResult.php
│ │ ├── GetStorageCapacityResult.php
│ │ ├── GetWebsiteResult.php
│ │ ├── HeaderResult.php
│ │ ├── InitiateBucketWormResult.php
│ │ ├── InitiateMultipartUploadResult.php
│ │ ├── ListBucketsResult.php
│ │ ├── ListLiveChannelResult.php
│ │ ├── ListMultipartUploadResult.php
│ │ ├── ListObjectsResult.php
│ │ ├── ListObjectVersionsResult.php
│ │ ├── ListPartsResult.php
│ │ ├── PutLiveChannelResult.php
│ │ ├── PutSetDeleteResult.php
│ │ ├── Result.php
│ │ ├── SymlinkResult.php
│ │ └── UploadPartResult.php
│ └── tests
│ └── OSS
│ └── Tests
│ ├── AclResultTest.php
│ ├── BodyResultTest.php
│ ├── BucketCnameTest.php
│ ├── BucketInfoTest.php
│ ├── BucketLiveChannelTest.php
│ ├── CallbackTest.php
│ ├── CnameConfigTest.php
│ ├── Common.php
│ ├── ContentTypeTest.php
│ ├── CopyObjectResult.php
│ ├── CorsConfigTest.php
│ ├── DeleteObjectVersionsResultTest.php
│ ├── ExistResultTest.php
│ ├── GetBucketEncryptionResultTest.php
│ ├── GetBucketRequestPaymentResultTest.php
│ ├── GetBucketStatResultTest.php
│ ├── GetBucketTagsResultTest.php
│ ├── GetBucketWormResultTest.php
│ ├── GetCorsResultTest.php
│ ├── GetLifecycleResultTest.php
│ ├── GetLoggingResultTest.php
│ ├── GetRefererResultTest.php
│ ├── GetWebsiteResultTest.php
│ ├── HeaderResultTest.php
│ ├── HttpTest.php
│ ├── InitiateMultipartUploadResultTest.php
│ ├── LifecycleConfigTest.php
│ ├── ListBucketsResultTest.php
│ ├── ListMultipartUploadResultTest.php
│ ├── ListObjectsResultTest.php
│ ├── ListObjectVersionsResultTest.php
│ ├── ListPartsResultTest.php
│ ├── LiveChannelXmlTest.php
│ ├── LoggingConfigTest.php
│ ├── MimeTypesTest.php
│ ├── ObjectAclTest.php
│ ├── OssClientBucketCorsTest.php
│ ├── OssClientBucketEncryptionTest.php
│ ├── OssClientBucketInfoTest.php
│ ├── OssClientBucketLifecycleTest.php
│ ├── OssClientBucketLoggingTest.php
│ ├── OssClientBucketPolicyTest.php
│ ├── OssClientBucketRefererTest.php
│ ├── OssClientBucketRequestPaymentTest.php
│ ├── OssClientBucketStatTestTest.php
│ ├── OssClientBucketStorageCapacityTest.php
│ ├── OssClientBucketTagsTest.php
│ ├── OssClientBucketTest.php
│ ├── OssClientBucketVersioningTest.php
│ ├── OssClientBucketWebsiteTest.php
│ ├── OssClientBucketWormTest.php
│ ├── OssClientImageTest.php
│ ├── OssClientListObjectsTest.php
│ ├── OssClientMultipartUploadTest.php
│ ├── OssClientObjectRequestPaymentTest.php
│ ├── OssClientObjectTaggingTest.php
│ ├── OssClientObjectTest.php
│ ├── OssClientObjectVersioningTest.php
│ ├── OssClientRestoreObjectTest.php
│ ├── OssClientSignatureTest.php
│ ├── OssClientTest.php
│ ├── OssExceptionTest.php
│ ├── OssTrafficLimitTest.php
│ ├── OssUtilTest.php
│ ├── PutSetDeleteResultTest.php
│ ├── RefererConfigTest.php
│ ├── StorageCapacityConfigTest.php
│ ├── StorageCapacityTest.php
│ ├── SymlinkTest.php
│ ├── TestOssClientBase.php
│ ├── UploadPartResultTest.php
│ └── WebsiteConfigTest.php
├── autoload.php
├── bin
│ ├── jp.php
│ └── jp.php.bat
├── clagiordano
│ └── weblibs-configmanager
│ ├── composer.json
│ ├── composer.lock
│ ├── phpunit.xml
│ ├── README.md
│ ├── src
│ │ └── ConfigManager.php
│ ├── tests
│ │ └── ConfigManagerTest.php
│ └── testsdata
│ └── sample_config_data.php
├── composer
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ ├── ClassLoader.php
│ ├── installed.json
│ └── LICENSE
├── danielstjules
│ └── stringy
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── LICENSE.txt
│ ├── README.md
│ └── src
│ ├── Create.php
│ ├── StaticStringy.php
│ └── Stringy.php
├── endroid
│ └── qr-code
│ ├── assets
│ │ ├── data
│ │ │ ├── qrv10_0.dat
│ │ │ ├── qrv10_1.dat
│ │ │ ├── qrv10_2.dat
│ │ │ ├── qrv10_3.dat
│ │ │ ├── qrv1_0.dat
│ │ │ ├── qrv11_0.dat
│ │ │ ├── qrv11_1.dat
│ │ │ ├── qrv11_2.dat
│ │ │ ├── qrv11_3.dat
│ │ │ ├── qrv1_1.dat
│ │ │ ├── qrv12_0.dat
│ │ │ ├── qrv12_1.dat
│ │ │ ├── qrv12_2.dat
│ │ │ ├── qrv12_3.dat
│ │ │ ├── qrv1_2.dat
│ │ │ ├── qrv13_0.dat
│ │ │ ├── qrv13_1.dat
│ │ │ ├── qrv13_2.dat
│ │ │ ├── qrv13_3.dat
│ │ │ ├── qrv1_3.dat
│ │ │ ├── qrv14_0.dat
│ │ │ ├── qrv14_1.dat
│ │ │ ├── qrv14_2.dat
│ │ │ ├── qrv14_3.dat
│ │ │ ├── qrv15_0.dat
│ │ │ ├── qrv15_1.dat
│ │ │ ├── qrv15_2.dat
│ │ │ ├── qrv15_3.dat
│ │ │ ├── qrv16_0.dat
│ │ │ ├── qrv16_1.dat
│ │ │ ├── qrv16_2.dat
│ │ │ ├── qrv16_3.dat
│ │ │ ├── qrv17_0.dat
│ │ │ ├── qrv17_1.dat
│ │ │ ├── qrv17_2.dat
│ │ │ ├── qrv17_3.dat
│ │ │ ├── qrv18_0.dat
│ │ │ ├── qrv18_1.dat
│ │ │ ├── qrv18_2.dat
│ │ │ ├── qrv18_3.dat
│ │ │ ├── qrv19_0.dat
│ │ │ ├── qrv19_1.dat
│ │ │ ├── qrv19_2.dat
│ │ │ ├── qrv19_3.dat
│ │ │ ├── qrv20_0.dat
│ │ │ ├── qrv20_1.dat
│ │ │ ├── qrv20_2.dat
│ │ │ ├── qrv20_3.dat
│ │ │ ├── qrv2_0.dat
│ │ │ ├── qrv21_0.dat
│ │ │ ├── qrv21_1.dat
│ │ │ ├── qrv21_2.dat
│ │ │ ├── qrv21_3.dat
│ │ │ ├── qrv2_1.dat
│ │ │ ├── qrv22_0.dat
│ │ │ ├── qrv22_1.dat
│ │ │ ├── qrv22_2.dat
│ │ │ ├── qrv22_3.dat
│ │ │ ├── qrv2_2.dat
│ │ │ ├── qrv23_0.dat
│ │ │ ├── qrv23_1.dat
│ │ │ ├── qrv23_2.dat
│ │ │ ├── qrv23_3.dat
│ │ │ ├── qrv2_3.dat
│ │ │ ├── qrv24_0.dat
│ │ │ ├── qrv24_1.dat
│ │ │ ├── qrv24_2.dat
│ │ │ ├── qrv24_3.dat
│ │ │ ├── qrv25_0.dat
│ │ │ ├── qrv25_1.dat
│ │ │ ├── qrv25_2.dat
│ │ │ ├── qrv25_3.dat
│ │ │ ├── qrv26_0.dat
│ │ │ ├── qrv26_1.dat
│ │ │ ├── qrv26_2.dat
│ │ │ ├── qrv26_3.dat
│ │ │ ├── qrv27_0.dat
│ │ │ ├── qrv27_1.dat
│ │ │ ├── qrv27_2.dat
│ │ │ ├── qrv27_3.dat
│ │ │ ├── qrv28_0.dat
│ │ │ ├── qrv28_1.dat
│ │ │ ├── qrv28_2.dat
│ │ │ ├── qrv28_3.dat
│ │ │ ├── qrv29_0.dat
│ │ │ ├── qrv29_1.dat
│ │ │ ├── qrv29_2.dat
│ │ │ ├── qrv29_3.dat
│ │ │ ├── qrv30_0.dat
│ │ │ ├── qrv30_1.dat
│ │ │ ├── qrv30_2.dat
│ │ │ ├── qrv30_3.dat
│ │ │ ├── qrv3_0.dat
│ │ │ ├── qrv31_0.dat
│ │ │ ├── qrv31_1.dat
│ │ │ ├── qrv31_2.dat
│ │ │ ├── qrv31_3.dat
│ │ │ ├── qrv3_1.dat
│ │ │ ├── qrv32_0.dat
│ │ │ ├── qrv32_1.dat
│ │ │ ├── qrv32_2.dat
│ │ │ ├── qrv32_3.dat
│ │ │ ├── qrv3_2.dat
│ │ │ ├── qrv33_0.dat
│ │ │ ├── qrv33_1.dat
│ │ │ ├── qrv33_2.dat
│ │ │ ├── qrv33_3.dat
│ │ │ ├── qrv3_3.dat
│ │ │ ├── qrv34_0.dat
│ │ │ ├── qrv34_1.dat
│ │ │ ├── qrv34_2.dat
│ │ │ ├── qrv34_3.dat
│ │ │ ├── qrv35_0.dat
│ │ │ ├── qrv35_1.dat
│ │ │ ├── qrv35_2.dat
│ │ │ ├── qrv35_3.dat
│ │ │ ├── qrv36_0.dat
│ │ │ ├── qrv36_1.dat
│ │ │ ├── qrv36_2.dat
│ │ │ ├── qrv36_3.dat
│ │ │ ├── qrv37_0.dat
│ │ │ ├── qrv37_1.dat
│ │ │ ├── qrv37_2.dat
│ │ │ ├── qrv37_3.dat
│ │ │ ├── qrv38_0.dat
│ │ │ ├── qrv38_1.dat
│ │ │ ├── qrv38_2.dat
│ │ │ ├── qrv38_3.dat
│ │ │ ├── qrv39_0.dat
│ │ │ ├── qrv39_1.dat
│ │ │ ├── qrv39_2.dat
│ │ │ ├── qrv39_3.dat
│ │ │ ├── qrv40_0.dat
│ │ │ ├── qrv40_1.dat
│ │ │ ├── qrv40_2.dat
│ │ │ ├── qrv40_3.dat
│ │ │ ├── qrv4_0.dat
│ │ │ ├── qrv4_1.dat
│ │ │ ├── qrv4_2.dat
│ │ │ ├── qrv4_3.dat
│ │ │ ├── qrv5_0.dat
│ │ │ ├── qrv5_1.dat
│ │ │ ├── qrv5_2.dat
│ │ │ ├── qrv5_3.dat
│ │ │ ├── qrv6_0.dat
│ │ │ ├── qrv6_1.dat
│ │ │ ├── qrv6_2.dat
│ │ │ ├── qrv6_3.dat
│ │ │ ├── qrv7_0.dat
│ │ │ ├── qrv7_1.dat
│ │ │ ├── qrv7_2.dat
│ │ │ ├── qrv7_3.dat
│ │ │ ├── qrv8_0.dat
│ │ │ ├── qrv8_1.dat
│ │ │ ├── qrv8_2.dat
│ │ │ ├── qrv8_3.dat
│ │ │ ├── qrv9_0.dat
│ │ │ ├── qrv9_1.dat
│ │ │ ├── qrv9_2.dat
│ │ │ ├── qrv9_3.dat
│ │ │ ├── qrvfr10.dat
│ │ │ ├── qrvfr11.dat
│ │ │ ├── qrvfr12.dat
│ │ │ ├── qrvfr13.dat
│ │ │ ├── qrvfr14.dat
│ │ │ ├── qrvfr15.dat
│ │ │ ├── qrvfr16.dat
│ │ │ ├── qrvfr17.dat
│ │ │ ├── qrvfr18.dat
│ │ │ ├── qrvfr19.dat
│ │ │ ├── qrvfr1.dat
│ │ │ ├── qrvfr20.dat
│ │ │ ├── qrvfr21.dat
│ │ │ ├── qrvfr22.dat
│ │ │ ├── qrvfr23.dat
│ │ │ ├── qrvfr24.dat
│ │ │ ├── qrvfr25.dat
│ │ │ ├── qrvfr26.dat
│ │ │ ├── qrvfr27.dat
│ │ │ ├── qrvfr28.dat
│ │ │ ├── qrvfr29.dat
│ │ │ ├── qrvfr2.dat
│ │ │ ├── qrvfr30.dat
│ │ │ ├── qrvfr31.dat
│ │ │ ├── qrvfr32.dat
│ │ │ ├── qrvfr33.dat
│ │ │ ├── qrvfr34.dat
│ │ │ ├── qrvfr35.dat
│ │ │ ├── qrvfr36.dat
│ │ │ ├── qrvfr37.dat
│ │ │ ├── qrvfr38.dat
│ │ │ ├── qrvfr39.dat
│ │ │ ├── qrvfr3.dat
│ │ │ ├── qrvfr40.dat
│ │ │ ├── qrvfr4.dat
│ │ │ ├── qrvfr5.dat
│ │ │ ├── qrvfr6.dat
│ │ │ ├── qrvfr7.dat
│ │ │ ├── qrvfr8.dat
│ │ │ ├── qrvfr9.dat
│ │ │ ├── rsc10.dat
│ │ │ ├── rsc13.dat
│ │ │ ├── rsc15.dat
│ │ │ ├── rsc16.dat
│ │ │ ├── rsc17.dat
│ │ │ ├── rsc18.dat
│ │ │ ├── rsc20.dat
│ │ │ ├── rsc22.dat
│ │ │ ├── rsc24.dat
│ │ │ ├── rsc26.dat
│ │ │ ├── rsc28.dat
│ │ │ ├── rsc30.dat
│ │ │ ├── rsc32.dat
│ │ │ ├── rsc34.dat
│ │ │ ├── rsc36.dat
│ │ │ ├── rsc40.dat
│ │ │ ├── rsc42.dat
│ │ │ ├── rsc44.dat
│ │ │ ├── rsc46.dat
│ │ │ ├── rsc48.dat
│ │ │ ├── rsc50.dat
│ │ │ ├── rsc52.dat
│ │ │ ├── rsc54.dat
│ │ │ ├── rsc56.dat
│ │ │ ├── rsc58.dat
│ │ │ ├── rsc60.dat
│ │ │ ├── rsc62.dat
│ │ │ ├── rsc64.dat
│ │ │ ├── rsc66.dat
│ │ │ ├── rsc68.dat
│ │ │ └── rsc7.dat
│ │ ├── font
│ │ │ └── opensans.ttf
│ │ └── image
│ │ ├── b.png
│ │ ├── d.png
│ │ ├── logo.png
│ │ ├── qrv10.png
│ │ ├── qrv11.png
│ │ ├── qrv12.png
│ │ ├── qrv13.png
│ │ ├── qrv14.png
│ │ ├── qrv15.png
│ │ ├── qrv16.png
│ │ ├── qrv17.png
│ │ ├── qrv18.png
│ │ ├── qrv19.png
│ │ ├── qrv1.png
│ │ ├── qrv20.png
│ │ ├── qrv21.png
│ │ ├── qrv22.png
│ │ ├── qrv23.png
│ │ ├── qrv24.png
│ │ ├── qrv25.png
│ │ ├── qrv26.png
│ │ ├── qrv27.png
│ │ ├── qrv28.png
│ │ ├── qrv29.png
│ │ ├── qrv2.png
│ │ ├── qrv30.png
│ │ ├── qrv31.png
│ │ ├── qrv32.png
│ │ ├── qrv33.png
│ │ ├── qrv34.png
│ │ ├── qrv35.png
│ │ ├── qrv36.png
│ │ ├── qrv37.png
│ │ ├── qrv38.png
│ │ ├── qrv39.png
│ │ ├── qrv3.png
│ │ ├── qrv40.png
│ │ ├── qrv4.png
│ │ ├── qrv5.png
│ │ ├── qrv6.png
│ │ ├── qrv7.png
│ │ ├── qrv8.png
│ │ └── qrv9.png
│ ├── composer.json
│ ├── LICENSE
│ ├── phpunit.xml.dist
│ ├── README.md
│ ├── src
│ │ ├── Bundle
│ │ │ ├── Controller
│ │ │ │ └── QrCodeController.php
│ │ │ ├── DependencyInjection
│ │ │ │ ├── Configuration.php
│ │ │ │ └── EndroidQrCodeExtension.php
│ │ │ ├── EndroidQrCodeBundle.php
│ │ │ ├── Resources
│ │ │ │ └── config
│ │ │ │ └── services.yml
│ │ │ └── Twig
│ │ │ └── Extension
│ │ │ └── QrCodeExtension.php
│ │ ├── Exceptions
│ │ │ ├── DataDoesntExistsException.php
│ │ │ ├── FreeTypeLibraryMissingException.php
│ │ │ ├── ImageFunctionFailedException.php
│ │ │ ├── ImageFunctionUnknownException.php
│ │ │ ├── ImageSizeTooLargeException.php
│ │ │ ├── ImageTypeInvalidException.php
│ │ │ └── VersionTooLargeException.php
│ │ ├── Factory
│ │ │ └── QrCodeFactory.php
│ │ └── QrCode.php
│ └── tests
│ ├── Bundle
│ │ ├── app
│ │ │ ├── AppKernel.php
│ │ │ ├── bootstrap.php
│ │ │ └── config
│ │ │ ├── config.yml
│ │ │ └── routing.yml
│ │ ├── Controller
│ │ │ └── QrCodeControllerTest.php
│ │ └── EndroidQrCodeBundleTest.php
│ └── QrCodeTest.php
├── guzzlehttp
│ ├── command
│ │ ├── composer.json
│ │ ├── README.md
│ │ └── src
│ │ ├── CommandInterface.php
│ │ ├── Command.php
│ │ ├── Exception
│ │ │ ├── CommandClientException.php
│ │ │ ├── CommandException.php
│ │ │ └── CommandServerException.php
│ │ ├── HasDataTrait.php
│ │ ├── ResultInterface.php
│ │ ├── Result.php
│ │ ├── ServiceClientInterface.php
│ │ ├── ServiceClient.php
│ │ └── ToArrayInterface.php
│ ├── guzzle
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── Dockerfile
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── ClientInterface.php
│ │ │ ├── Client.php
│ │ │ ├── Cookie
│ │ │ │ ├── CookieJarInterface.php
│ │ │ │ ├── CookieJar.php
│ │ │ │ ├── FileCookieJar.php
│ │ │ │ ├── SessionCookieJar.php
│ │ │ │ └── SetCookie.php
│ │ │ ├── Exception
│ │ │ │ ├── BadResponseException.php
│ │ │ │ ├── ClientException.php
│ │ │ │ ├── ConnectException.php
│ │ │ │ ├── GuzzleException.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── RequestException.php
│ │ │ │ ├── SeekException.php
│ │ │ │ ├── ServerException.php
│ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ └── TransferException.php
│ │ │ ├── functions_include.php
│ │ │ ├── functions.php
│ │ │ ├── Handler
│ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ ├── CurlFactory.php
│ │ │ │ ├── CurlHandler.php
│ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ ├── EasyHandle.php
│ │ │ │ ├── MockHandler.php
│ │ │ │ ├── Proxy.php
│ │ │ │ └── StreamHandler.php
│ │ │ ├── HandlerStack.php
│ │ │ ├── MessageFormatter.php
│ │ │ ├── Middleware.php
│ │ │ ├── Pool.php
│ │ │ ├── PrepareBodyMiddleware.php
│ │ │ ├── RedirectMiddleware.php
│ │ │ ├── RequestOptions.php
│ │ │ ├── RetryMiddleware.php
│ │ │ ├── TransferStats.php
│ │ │ ├── UriTemplate.php
│ │ │ └── Utils.php
│ │ └── UPGRADING.md
│ ├── guzzle-services
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── Makefile
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── DescriptionInterface.php
│ │ │ ├── Description.php
│ │ │ ├── Deserializer.php
│ │ │ ├── GuzzleClient.php
│ │ │ ├── Handler
│ │ │ │ └── ValidatedDescriptionHandler.php
│ │ │ ├── Operation.php
│ │ │ ├── Parameter.php
│ │ │ ├── QuerySerializer
│ │ │ │ ├── QuerySerializerInterface.php
│ │ │ │ └── Rfc3986Serializer.php
│ │ │ ├── RequestLocation
│ │ │ │ ├── AbstractLocation.php
│ │ │ │ ├── BodyLocation.php
│ │ │ │ ├── FormParamLocation.php
│ │ │ │ ├── HeaderLocation.php
│ │ │ │ ├── JsonLocation.php
│ │ │ │ ├── MultiPartLocation.php
│ │ │ │ ├── QueryLocation.php
│ │ │ │ ├── RequestLocationInterface.php
│ │ │ │ └── XmlLocation.php
│ │ │ ├── ResponseLocation
│ │ │ │ ├── AbstractLocation.php
│ │ │ │ ├── BodyLocation.php
│ │ │ │ ├── HeaderLocation.php
│ │ │ │ ├── JsonLocation.php
│ │ │ │ ├── ReasonPhraseLocation.php
│ │ │ │ ├── ResponseLocationInterface.php
│ │ │ │ ├── StatusCodeLocation.php
│ │ │ │ └── XmlLocation.php
│ │ │ ├── SchemaFormatter.php
│ │ │ ├── SchemaValidator.php
│ │ │ └── Serializer.php
│ │ └── tests
│ │ ├── Asset
│ │ │ ├── Exception
│ │ │ │ ├── CustomCommandException.php
│ │ │ │ └── OtherCustomCommandException.php
│ │ │ └── test.html
│ │ ├── DescriptionTest.php
│ │ ├── DeserializerTest.php
│ │ ├── GuzzleClientTest.php
│ │ ├── Handler
│ │ │ └── ValidatedDescriptionHandlerTest.php
│ │ ├── OperationTest.php
│ │ ├── ParameterTest.php
│ │ ├── QuerySerializer
│ │ │ └── Rfc3986SerializerTest.php
│ │ ├── RequestLocation
│ │ │ ├── BodyLocationTest.php
│ │ │ ├── FormParamLocationTest.php
│ │ │ ├── HeaderLocationTest.php
│ │ │ ├── JsonLocationTest.php
│ │ │ ├── MultiPartLocationTest.php
│ │ │ ├── QueryLocationTest.php
│ │ │ └── XmlLocationTest.php
│ │ ├── ResponseLocation
│ │ │ ├── BodyLocationTest.php
│ │ │ ├── HeaderLocationTest.php
│ │ │ ├── JsonLocationTest.php
│ │ │ ├── ReasonPhraseLocationTest.php
│ │ │ ├── StatusCodeLocationTest.php
│ │ │ └── XmlLocationTest.php
│ │ ├── SchemaFormatterTest.php
│ │ ├── SchemaValidatorTest.php
│ │ └── SerializerTest.php
│ ├── promises
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── phpstan-baseline.neon
│ │ ├── phpstan.neon.dist
│ │ ├── psalm.xml
│ │ ├── README.md
│ │ └── src
│ │ ├── AggregateException.php
│ │ ├── CancellationException.php
│ │ ├── Coroutine.php
│ │ ├── Create.php
│ │ ├── Each.php
│ │ ├── EachPromise.php
│ │ ├── FulfilledPromise.php
│ │ ├── functions_include.php
│ │ ├── functions.php
│ │ ├── Is.php
│ │ ├── PromiseInterface.php
│ │ ├── Promise.php
│ │ ├── PromisorInterface.php
│ │ ├── RejectedPromise.php
│ │ ├── RejectionException.php
│ │ ├── TaskQueueInterface.php
│ │ ├── TaskQueue.php
│ │ └── Utils.php
│ └── psr7
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── LICENSE
│ ├── README.md
│ └── src
│ ├── AppendStream.php
│ ├── BufferStream.php
│ ├── CachingStream.php
│ ├── DroppingStream.php
│ ├── FnStream.php
│ ├── functions_include.php
│ ├── functions.php
│ ├── Header.php
│ ├── InflateStream.php
│ ├── LazyOpenStream.php
│ ├── LimitStream.php
│ ├── Message.php
│ ├── MessageTrait.php
│ ├── MimeType.php
│ ├── MultipartStream.php
│ ├── NoSeekStream.php
│ ├── PumpStream.php
│ ├── Query.php
│ ├── Request.php
│ ├── Response.php
│ ├── Rfc7230.php
│ ├── ServerRequest.php
│ ├── StreamDecoratorTrait.php
│ ├── Stream.php
│ ├── StreamWrapper.php
│ ├── UploadedFile.php
│ ├── UriNormalizer.php
│ ├── Uri.php
│ ├── UriResolver.php
│ └── Utils.php
├── mtdowling
│ └── jmespath.php
│ ├── bin
│ │ ├── jp.php
│ │ └── perf.php
│ ├── composer.json
│ ├── LICENSE
│ ├── README.rst
│ └── src
│ ├── AstRuntime.php
│ ├── CompilerRuntime.php
│ ├── DebugRuntime.php
│ ├── Env.php
│ ├── FnDispatcher.php
│ ├── JmesPath.php
│ ├── Lexer.php
│ ├── Parser.php
│ ├── SyntaxErrorException.php
│ ├── TreeCompiler.php
│ ├── TreeInterpreter.php
│ └── Utils.php
├── phpwdk
│ └── douyin-sdk
│ ├── ApiExcepion.php
│ ├── ByteDance
│ │ ├── Douyin.php
│ │ ├── Kernel
│ │ │ ├── BaseApi.php
│ │ │ └── DataArray.php
│ │ ├── Model
│ │ │ └── VideoDataBody.php
│ │ ├── Oauth.php
│ │ ├── Othe.php
│ │ ├── Poi.php
│ │ ├── Toutiao.php
│ │ ├── User.php
│ │ └── Video.php
│ ├── composer.json
│ ├── Dy.php
│ └── README.md
├── psr
│ └── http-message
│ ├── CHANGELOG.md
│ ├── composer.json
│ ├── LICENSE
│ ├── README.md
│ └── src
│ ├── MessageInterface.php
│ ├── RequestInterface.php
│ ├── ResponseInterface.php
│ ├── ServerRequestInterface.php
│ ├── StreamInterface.php
│ ├── UploadedFileInterface.php
│ └── UriInterface.php
├── ralouphie
│ └── getallheaders
│ ├── composer.json
│ ├── LICENSE
│ ├── README.md
│ └── src
│ └── getallheaders.php
├── symfony
│ ├── options-resolver
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── Debug
│ │ │ └── OptionsResolverIntrospector.php
│ │ ├── Exception
│ │ │ ├── AccessException.php
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── InvalidOptionsException.php
│ │ │ ├── MissingOptionsException.php
│ │ │ ├── NoConfigurationException.php
│ │ │ ├── NoSuchOptionException.php
│ │ │ ├── OptionDefinitionException.php
│ │ │ └── UndefinedOptionsException.php
│ │ ├── LICENSE
│ │ ├── Options.php
│ │ ├── OptionsResolver.php
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ └── Tests
│ │ ├── Debug
│ │ │ └── OptionsResolverIntrospectorTest.php
│ │ └── OptionsResolverTest.php
│ ├── polyfill-intl-idn
│ │ ├── bootstrap80.php
│ │ ├── bootstrap.php
│ │ ├── composer.json
│ │ ├── Idn.php
│ │ ├── Info.php
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── Resources
│ │ └── unidata
│ │ ├── deviation.php
│ │ ├── disallowed.php
│ │ ├── DisallowedRanges.php
│ │ ├── disallowed_STD3_mapped.php
│ │ ├── disallowed_STD3_valid.php
│ │ ├── ignored.php
│ │ ├── mapped.php
│ │ ├── Regex.php
│ │ └── virama.php
│ ├── polyfill-intl-normalizer
│ │ ├── bootstrap80.php
│ │ ├── bootstrap.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Normalizer.php
│ │ ├── README.md
│ │ └── Resources
│ │ ├── stubs
│ │ │ └── Normalizer.php
│ │ └── unidata
│ │ ├── canonicalComposition.php
│ │ ├── canonicalDecomposition.php
│ │ ├── combiningClass.php
│ │ └── compatibilityDecomposition.php
│ ├── polyfill-mbstring
│ │ ├── bootstrap80.php
│ │ ├── bootstrap.php
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Mbstring.php
│ │ ├── README.md
│ │ └── Resources
│ │ └── unidata
│ │ ├── lowerCase.php
│ │ ├── titleCaseRegexp.php
│ │ └── upperCase.php
│ └── polyfill-php72
│ ├── bootstrap.php
│ ├── composer.json
│ ├── LICENSE
│ ├── Php72.php
│ └── README.md
└── thingengineer
└── mysqli-database-class
├── composer.json
├── dbObject.md
├── dbObject.php
├── LICENSE
├── MysqliDb.php
└── readme.md
704 directories, 4670 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论