diff options
| author | Zhineng Li <im@zhineng.li> | 2026-07-12 17:11:17 +0800 |
|---|---|---|
| committer | Zhineng Li <im@zhineng.li> | 2026-07-12 17:11:17 +0800 |
| commit | 1c7f908ce09f98fdcbf79ed2a8ae21be60eaa634 (patch) | |
| tree | 5f0857666365b7e40cdaa3733ebe1f3ba9e13c67 /data/zh_cn/aisc | |
| parent | 7347bac4ab7e136157fc94777e6cf87ef9e08599 (diff) | |
| download | afterglow-metadata-full-1c7f908ce09f98fdcbf79ed2a8ae21be60eaa634.tar.gz afterglow-metadata-full-1c7f908ce09f98fdcbf79ed2a8ae21be60eaa634.zip | |
update APIs 20260712
Diffstat (limited to 'data/zh_cn/aisc')
| -rw-r--r-- | data/zh_cn/aisc/2026-01-01/api-docs.php | 341 |
1 files changed, 341 insertions, 0 deletions
diff --git a/data/zh_cn/aisc/2026-01-01/api-docs.php b/data/zh_cn/aisc/2026-01-01/api-docs.php new file mode 100644 index 0000000..82cd32f --- /dev/null +++ b/data/zh_cn/aisc/2026-01-01/api-docs.php @@ -0,0 +1,341 @@ +<?php return [ + 'version' => '1.0', + 'info' => ['style' => 'RPC', 'product' => 'AISC', 'version' => '2026-01-01'], + 'directories' => ['CreateSkillFileCheck', 'ListSubTasks'], + 'components' => [ + 'schemas' => [], + ], + 'apis' => [ + 'CreateSkillFileCheck' => [ + 'summary' => '批量发起用户自定义Skill检测', + 'path' => '', + 'methods' => ['post'], + 'schemes' => ['https'], + 'security' => [ + [ + 'AK' => [], + ], + ], + 'operationType' => 'readAndWrite', + 'deprecated' => false, + 'systemTags' => [ + 'operationType' => 'none', + 'riskType' => 'none', + 'chargeType' => 'paid', + 'abilityTreeNodes' => ['FEATUREsasRREUQK'], + 'tenantRelevance' => 'publicInformation', + ], + 'parameters' => [ + [ + 'name' => 'Files', + 'in' => 'query', + 'style' => 'repeatList', + 'schema' => [ + 'description' => '文件信息。', + 'type' => 'array', + 'items' => [ + 'description' => '文件列表。', + 'type' => 'object', + 'properties' => [ + 'DownloadUrl' => [ + 'description' => '文件下载的公网URL,下载文件必须为 tar.gz 或 zip 格式的压缩包。', + 'type' => 'string', + 'required' => false, + 'enumValueTitles' => [], + 'example' => 'https://test.oss-cn-hangzhou.aliyuncs.com/xxxx', + ], + 'FileName' => ['description' => '文件名,如不填写将从DownloadUrl中解析。', 'type' => 'string', 'required' => false, 'example' => 'test-file'], + ], + 'required' => false, + ], + 'required' => false, + 'maxItems' => 100, + ], + ], + ], + 'responses' => [ + 200 => [ + 'schema' => [ + 'title' => 'Schema of Response', + 'description' => 'Schema of Response', + 'type' => 'object', + 'properties' => [ + 'RequestId' => ['title' => 'Id of the request', 'description' => 'Id of the request', 'type' => 'string', 'example' => '9FDE3D6F-26BD-5937-B0E5-8F47962B****'], + 'Data' => [ + 'description' => '任务创建结果。', + 'type' => 'object', + 'properties' => [ + 'RootTaskId' => ['description' => '提交任务返回的主任务ID。', 'type' => 'string', 'example' => 'c6e7fa8a77df6e182ac3fcf1478ab83a'], + 'SuccessCount' => ['description' => '上传成功文件的数量。', 'type' => 'integer', 'format' => 'int32', 'example' => '10'], + 'FailCount' => ['description' => '上传失败文件的数量。', 'type' => 'integer', 'format' => 'int32', 'example' => '0'], + 'UploadResults' => [ + 'description' => '上传结果。', + 'type' => 'array', + 'items' => [ + 'type' => 'object', + 'properties' => [ + 'FileHash' => ['description' => '上传文件的SHA256值。', 'type' => 'string', 'example' => '514f44ebed1d0c1df5e16a116080b64b'], + 'IdentifyId' => ['description' => '上传文件的唯一ID,可用于查询任务结果。', 'type' => 'string', 'example' => '1824jcadg01bsl10b'], + 'ErrorMsg' => ['description' => '文件上传失败时的报错信息。', 'type' => 'string', 'example' => 'Network error.'], + 'Success' => ['description' => '操作是否成功。取值:true:成功。false:失败', 'type' => 'boolean', 'example' => 'true'], + 'FileName' => ['description' => '文件的名称。', 'type' => 'string', 'example' => 'test-file'], + ], + 'description' => '', + ], + ], + ], + ], + ], + ], + ], + ], + 'staticInfo' => ['returnType' => 'synchronous'], + 'title' => '创建Skill检测任务', + 'changeSet' => [], + 'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"9FDE3D6F-26BD-5937-B0E5-8F47962B****\\",\\n \\"Data\\": {\\n \\"RootTaskId\\": \\"c6e7fa8a77df6e182ac3fcf1478ab83a\\",\\n \\"SuccessCount\\": 10,\\n \\"FailCount\\": 0,\\n \\"UploadResults\\": [\\n {\\n \\"FileHash\\": \\"514f44ebed1d0c1df5e16a116080b64b\\",\\n \\"IdentifyId\\": \\"1824jcadg01bsl10b\\",\\n \\"ErrorMsg\\": \\"Network error.\\",\\n \\"Success\\": true,\\n \\"FileName\\": \\"test-file\\"\\n }\\n ]\\n }\\n}","type":"json"}]', + ], + 'ListSubTasks' => [ + 'summary' => '获取子任务信息。', + 'path' => '', + 'methods' => ['get', 'post'], + 'schemes' => ['https'], + 'security' => [ + [ + 'AK' => [], + ], + ], + 'operationType' => 'read', + 'deprecated' => false, + 'systemTags' => [ + 'operationType' => 'none', + 'riskType' => 'none', + 'chargeType' => 'free', + 'abilityTreeNodes' => ['FEATUREsasRREUQK'], + 'tenantRelevance' => 'tenant', + ], + 'parameters' => [ + [ + 'name' => 'RootTaskId', + 'in' => 'query', + 'schema' => ['description' => '提交任务返回的主任务ID。', 'type' => 'string', 'required' => false, 'example' => '110146ac282314fe4f7cd11afc7540eb'], + ], + [ + 'name' => 'TaskType', + 'in' => 'query', + 'schema' => ['description' => '任务类型。', 'type' => 'string', 'required' => false, 'example' => 'SKILL_CHECK'], + ], + [ + 'name' => 'CurrentPage', + 'in' => 'query', + 'schema' => ['description' => '当前页码。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'], + ], + [ + 'name' => 'PageSize', + 'in' => 'query', + 'schema' => ['description' => '分页大小。', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '10'], + ], + ], + 'responses' => [ + 200 => [ + 'schema' => [ + 'title' => 'Schema of Response', + 'description' => 'Schema of Response', + 'type' => 'object', + 'properties' => [ + 'RequestId' => ['title' => 'Id of the request', 'description' => 'Id of the request', 'type' => 'string', 'example' => '9FDE3D6F-26BD-5937-B0E5-8F47962B****'], + 'Data' => [ + 'description' => '任务结果列表。', + 'type' => 'array', + 'items' => [ + 'description' => '任务结果。', + 'type' => 'object', + 'properties' => [ + 'Id' => ['description' => '任务ID。', 'type' => 'integer', 'format' => 'int64', 'example' => '4190063324899520'], + 'TaskStatus' => ['description' => '任务状态。', 'type' => 'string', 'example' => 'success'], + 'TaskResultMessage' => [ + 'description' => '任务结果信息。', + 'type' => 'object', + 'properties' => [ + 'SkillCheckResult' => [ + 'description' => 'Skill检测任务结果。', + 'type' => 'object', + 'properties' => [ + 'RiskInfo' => [ + 'description' => '文件检测风险信息。', + 'type' => 'array', + 'items' => [ + 'description' => '风险详情列表。', + 'type' => 'object', + 'properties' => [ + 'Path' => ['description' => '文件路径。', 'type' => 'string', 'example' => '/home/97e55e6af371836f/'], + 'ResultType' => ['description' => '结果类型。', 'type' => 'string', 'example' => 'file'], + 'Ext' => [ + 'description' => '文件检测风险列表。', + 'type' => 'object', + 'properties' => [ + 'Virus' => [ + 'description' => '病毒检测风险。', + 'type' => 'array', + 'items' => [ + 'description' => '风险详情列表。', + 'type' => 'object', + 'properties' => [ + 'Ext' => ['description' => '扩展信息字段,备用参数。', 'type' => 'string', 'example' => '{}'], + 'Score' => ['description' => '风险分数,满分100。', 'type' => 'integer', 'format' => 'int32', 'example' => '100'], + 'Type' => ['description' => '病毒类型。', 'type' => 'string', 'example' => 'Backdoor'], + ], + ], + ], + 'Guardrail' => [ + 'description' => '安全护栏检测风险。', + 'type' => 'object', + 'properties' => [ + 'Suggestion' => ['description' => '处理建议。', 'type' => 'string', 'example' => 'block'], + 'Detail' => [ + 'description' => '风险详情列表。', + 'type' => 'array', + 'items' => [ + 'description' => '风险详情。', + 'type' => 'object', + 'properties' => [ + 'Level' => ['description' => '风险等级,枚举值:'."\n" + ."\n" + .'- **high**:高风险。'."\n" + .'- **medium**:中风险'."\n" + .'- **low**:低风险'."\n" + .'- **none**:无风险', 'type' => 'string', 'example' => 'high'], + 'Suggestion' => ['description' => '处理建议。', 'type' => 'string', 'example' => 'block'], + 'Type' => ['description' => '风险类型。', 'type' => 'string', 'example' => 'promptAttack'], + 'Result' => [ + 'description' => '结果详情列表。', + 'type' => 'array', + 'items' => [ + 'description' => '结果详情。', + 'type' => 'object', + 'properties' => [ + 'Confidence' => ['description' => '置信度,取值范围为0到100。', 'type' => 'number', 'format' => 'float', 'example' => '25'], + 'Description' => ['description' => '结果描述信息。', 'type' => 'string', 'example' => 'Suspicious attacks.'], + 'Label' => ['description' => '标签信息。', 'type' => 'string', 'example' => 'attack'], + 'Level' => ['description' => '风险等级,枚举值:'."\n" + ."\n" + .'- **high**:高风险。'."\n" + .'- **medium**:中风险'."\n" + .'- **low**:低风险'."\n" + .'- **none**:无风险', 'type' => 'string', 'example' => 'high'], + ], + ], + ], + ], + ], + ], + ], + ], + 'Sensitive' => [ + 'description' => '敏感信息风险。', + 'type' => 'object', + 'properties' => [ + 'Detail' => [ + 'description' => '风险详情列表。', + 'type' => 'array', + 'items' => [ + 'description' => '风险详情。', + 'type' => 'object', + 'properties' => [ + 'Desc' => ['description' => '描述信息。', 'type' => 'string', 'example' => 'aliyun_ak_24'], + 'Result' => [ + 'description' => '敏感信息列表。', + 'type' => 'array', + 'items' => ['description' => '敏感信息。', 'type' => 'string', 'example' => 'LTAIvdi11f0b****'], + ], + ], + ], + ], + ], + ], + 'Config' => [ + 'description' => '配置检测风险。', + 'type' => 'object', + 'properties' => [ + 'Detail' => [ + 'description' => '风险详情列表。', + 'type' => 'array', + 'items' => [ + 'description' => '风险详情。', + 'type' => 'object', + 'properties' => [ + 'Line' => ['description' => '检测命中内容的行数。', 'type' => 'string', 'example' => '2555'], + 'Description' => ['description' => '描述信息。', 'type' => 'string', 'example' => 'The skill configuration allows Bash execution via agent-browser:* pattern without requiring user confirmation. This enables potentially dangerous command execution through the browser automation CLI.'], + 'Content' => ['description' => '检测命中内容。', 'type' => 'string', 'example' => 'allowed-tools: Bash(agent-browser:*)'], + 'ItemName' => ['description' => '检查项名称。', 'type' => 'string', 'example' => 'Dangerous Tools Without Confirmation'], + ], + ], + ], + ], + ], + ], + ], + ], + ], + ], + ], + ], + ], + ], + 'Target' => ['description' => '检测对象。', 'type' => 'string', 'example' => 'c7acb2f1264e4467887ef8f4c36c44ca1'], + 'FileHash' => ['description' => '上传文件的Hash值。', 'type' => 'string', 'example' => '03d1f08455e965cac0351eaa59256fd9'], + ], + ], + ], + 'PageInfo' => [ + 'description' => '分页信息。', + 'type' => 'object', + 'properties' => [ + 'CurrentPage' => ['description' => '当前页码。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'], + 'PageSize' => ['description' => '分页大小。', 'type' => 'integer', 'format' => 'int32', 'example' => '10'], + 'TotalCount' => ['description' => '查询结果的总记录数。', 'type' => 'integer', 'format' => 'int32', 'example' => '1'], + 'Count' => ['description' => '当前页显示的数据条数。', 'type' => 'string', 'example' => '1'], + ], + ], + ], + ], + ], + ], + 'staticInfo' => ['returnType' => 'synchronous'], + 'title' => '获取子任务信息', + 'changeSet' => [], + 'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"9FDE3D6F-26BD-5937-B0E5-8F47962B****\\",\\n \\"Data\\": [\\n {\\n \\"Id\\": 4190063324899520,\\n \\"TaskStatus\\": \\"success\\",\\n \\"TaskResultMessage\\": {\\n \\"SkillCheckResult\\": {\\n \\"RiskInfo\\": [\\n {\\n \\"Path\\": \\"/home/97e55e6af371836f/\\",\\n \\"ResultType\\": \\"file\\",\\n \\"Ext\\": {\\n \\"Virus\\": [\\n {\\n \\"Ext\\": \\"{}\\",\\n \\"Score\\": 100,\\n \\"Type\\": \\"Backdoor\\"\\n }\\n ],\\n \\"Guardrail\\": {\\n \\"Suggestion\\": \\"block\\",\\n \\"Detail\\": [\\n {\\n \\"Level\\": \\"high\\",\\n \\"Suggestion\\": \\"block\\",\\n \\"Type\\": \\"promptAttack\\",\\n \\"Result\\": [\\n {\\n \\"Confidence\\": 25,\\n \\"Description\\": \\"Suspicious attacks.\\",\\n \\"Label\\": \\"attack\\",\\n \\"Level\\": \\"high\\"\\n }\\n ]\\n }\\n ]\\n },\\n \\"Sensitive\\": {\\n \\"Detail\\": [\\n {\\n \\"Desc\\": \\"aliyun_ak_24\\",\\n \\"Result\\": [\\n \\"LTAIvdi11f0b****\\"\\n ]\\n }\\n ]\\n },\\n \\"Config\\": {\\n \\"Detail\\": [\\n {\\n \\"Line\\": \\"2555\\",\\n \\"Description\\": \\"The skill configuration allows Bash execution via agent-browser:* pattern without requiring user confirmation. This enables potentially dangerous command execution through the browser automation CLI.\\",\\n \\"Content\\": \\"allowed-tools: Bash(agent-browser:*)\\",\\n \\"ItemName\\": \\"Dangerous Tools Without Confirmation\\"\\n }\\n ]\\n }\\n }\\n }\\n ]\\n }\\n },\\n \\"Target\\": \\"c7acb2f1264e4467887ef8f4c36c44ca1\\",\\n \\"FileHash\\": \\"03d1f08455e965cac0351eaa59256fd9\\"\\n }\\n ],\\n \\"PageInfo\\": {\\n \\"CurrentPage\\": 1,\\n \\"PageSize\\": 10,\\n \\"TotalCount\\": 1,\\n \\"Count\\": \\"1\\"\\n }\\n}","type":"json"}]', + ], + ], + 'endpoints' => [ + ['regionId' => 'cn-zhangjiakou', 'regionName' => '华北3(张家口)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-wulanchabu', 'regionName' => '华北6(乌兰察布)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-shanghai', 'regionName' => '华东2(上海)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-qingdao', 'regionName' => '华北1(青岛)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-nanjing', 'regionName' => '华东5(南京-本地地域)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-huhehaote', 'regionName' => '华北5(呼和浩特)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-hangzhou', 'regionName' => '华东1(杭州)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-guangzhou', 'regionName' => '华南3(广州)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-beijing', 'regionName' => '华北2(北京)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'ap-southeast-7', 'regionName' => '泰国(曼谷)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'ap-southeast-6', 'regionName' => '菲律宾(马尼拉)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'ap-southeast-5', 'regionName' => '印度尼西亚(雅加达)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'ap-southeast-1', 'regionName' => '新加坡', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'ap-northeast-2', 'regionName' => '韩国(首尔)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'ap-northeast-1', 'regionName' => '日本(东京)', 'areaId' => 'asiaPacific', 'areaName' => '亚太', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'eu-central-1', 'regionName' => '德国(法兰克福)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'eu-west-1', 'regionName' => '英国(伦敦)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'us-east-1', 'regionName' => '美国(弗吉尼亚)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'us-west-1', 'regionName' => '美国(硅谷)', 'areaId' => 'europeAmerica', 'areaName' => '欧洲与美洲', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'me-east-1', 'regionName' => '阿联酋(迪拜)', 'areaId' => 'middleEast', 'areaName' => '中东', 'public' => 'aisc.ap-southeast-1.aliyuncs.com', 'endpoint' => 'aisc.ap-southeast-1.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-beijing-finance-1', 'regionName' => '华北2 金融云(邀测)', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-hangzhou-finance', 'regionName' => '华东1 金融云', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-heyuan-acdr-1', 'regionName' => '河源专属云汽车合规', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-shanghai-finance-1', 'regionName' => '华东2 金融云', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ['regionId' => 'cn-shenzhen-finance-1', 'regionName' => '华南1 金融云', 'areaId' => 'industryCloud', 'areaName' => '行业云', 'public' => 'aisc.cn-shanghai.aliyuncs.com', 'endpoint' => 'aisc.cn-shanghai.aliyuncs.com', 'vpc' => ''], + ], + 'errorCodes' => [ + ['code' => 'DataNotExists', 'message' => 'Specified data does not exist.', 'http_code' => 400, 'description' => '操作的数据不存在。'], + ['code' => 'Forbidden', 'message' => 'You are not authorized to perform this operation.', 'http_code' => 403, 'description' => '当前用户无权执行该操作。'], + ], + 'changeSet' => [], +]; |
