Browse Source

project init

TzuxinChen 3 months ago
commit
d74b7d302e

+ 6 - 0
README.md

@@ -0,0 +1,6 @@
+### 运行环境
+
+python 3.9(python>=3.6, python<=3.10)
+
+
+

BIN
__pycache__/fastapi_main.cpython-39.pyc


+ 3 - 0
common/__init__.py

@@ -0,0 +1,3 @@
+from common.setting import Config
+
+config = Config()

BIN
common/__pycache__/__init__.cpython-39.pyc


BIN
common/__pycache__/error.cpython-39.pyc


BIN
common/__pycache__/ext_database.cpython-39.pyc


BIN
common/__pycache__/logger.cpython-39.pyc


BIN
common/__pycache__/setting.cpython-39.pyc


BIN
common/__pycache__/utils.cpython-39.pyc


+ 4 - 0
common/error.py

@@ -0,0 +1,4 @@
+
+class NoValidError(Exception):
+    code = 'NoValidError'
+    message = 'NoValidError'

+ 25 - 0
common/ext_database.py

@@ -0,0 +1,25 @@
+from sqlalchemy import create_engine, MetaData
+from sqlalchemy.orm import sessionmaker, scoped_session
+from sqlalchemy.ext.declarative import declarative_base
+from common import config
+
+
+# 定义元数据和命名约定
+POSTGRES_INDEXES_NAMING_CONVENTION = {
+    "ix": "ix_%(column_0_label)s",
+    "uq": "uq_%(table_name)s_%(column_0_name)s",
+    "ck": "ck_%(table_name)s_%(constraint_name)s",
+    "fk": "fk_%(table_name)s_%(column_0_name)s",
+    "pk": "pk_%(table_name)s"
+}
+metadata = MetaData(naming_convention=POSTGRES_INDEXES_NAMING_CONVENTION)
+
+# SQLAlchemy 基础设置
+Base = declarative_base(metadata=metadata)
+engine = create_engine(config.DB_URL)
+Session = scoped_session(sessionmaker(bind=engine))
+
+# 初始化数据库
+def init_db():
+    pass
+    # Base.metadata.create_all(bind=engine)

+ 13 - 0
common/logger.py

@@ -0,0 +1,13 @@
+import logging
+import sys
+
+logger = logging.getLogger(__name__)
+logger.setLevel(logging.INFO)
+
+handler = logging.StreamHandler(sys.stdout)
+handler.setLevel(logging.INFO)
+
+formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
+handler.setFormatter(formatter)
+
+logger.addHandler(handler)

+ 145 - 0
common/model.py

@@ -0,0 +1,145 @@
+from sqlalchemy import Column, String, Integer, Boolean, Text, DateTime, Float
+from sqlalchemy.ext.declarative import declarative_base
+
+Base = declarative_base()
+
+
+class Event(Base):
+    __tablename__ = 'events'
+
+    id = Column(Integer, primary_key=True, autoincrement=True)  # 主键
+    name = Column(String, nullable=False)
+    time = Column(Integer, nullable=False)
+    level = Column(String, nullable=True)
+    res_name = Column(String, nullable=True)
+    view_type = Column(String, nullable=True)
+    event_state = Column(String, nullable=True)
+    event_type = Column(String, nullable=True)
+    res_temp_id = Column(String, nullable=True)
+    event_id = Column(String, unique=True, nullable=False)
+    res_type = Column(String, nullable=True)
+    ip = Column(String, nullable=True)
+    policy_id = Column(String, nullable=True)
+    metric_id = Column(String, nullable=True)
+    metric_name = Column(String, nullable=True)
+    res_id = Column(String, nullable=True)
+    collect_type = Column(String, nullable=True)
+    is_app = Column(String, nullable=True)
+    create_time = Column(String, nullable=True)
+    sub_res_id = Column(String, nullable=True)
+    recovered = Column(String, nullable=True)
+    show_accept = Column(Boolean, nullable=False, default=False)
+    show_maintain = Column(Boolean, nullable=False, default=False)
+    recovered_event_id = Column(String, nullable=True)
+
+    def __repr__(self):
+        return f"<Event(name='{self.name}', event_id='{self.event_id}')>"
+
+
+class LogEvent(Base):
+    __tablename__ = 'log_events'
+
+    id = Column(String, primary_key=True, nullable=False)
+    log_type = Column(String, nullable=True)
+    alarm_level = Column(String, nullable=True)
+    receiver = Column(String, nullable=True)
+    resource_name = Column(String, nullable=True)
+    send_type = Column(String, nullable=True)
+    send_time = Column(String, nullable=True)
+    alarm_content = Column(Text, nullable=True)
+    send_result = Column(String, nullable=True)
+    alarms_id = Column(String, nullable=True)
+    log_host = Column(String, nullable=True)
+    name = Column(String, nullable=True)
+    company_id = Column(String, nullable=True)
+    tag1 = Column(String, nullable=True)
+    tag2 = Column(String, nullable=True)
+    tag3 = Column(String, nullable=True)
+    tag4 = Column(String, nullable=True)
+
+
+
+class Resource(Base):
+    __tablename__ = 'resources'
+
+    res_id = Column(String, primary_key=True, nullable=False)  # 主键字段
+    state = Column(String, nullable=True)  # 状态
+    name = Column(String, nullable=True)  # 名称
+    location = Column(String, nullable=True)  # 位置
+    type = Column(String, nullable=True)  # 类型
+    desc = Column(String, nullable=True)  # 描述
+    policy_name = Column(String, nullable=True)  # 策略名称
+    usability = Column(String, nullable=True)  # 可用性
+    sysoid = Column(String, nullable=True)  # 系统 OID
+    vender_name = Column(String, nullable=True)  # 厂商名称
+    name_display = Column(String, nullable=True)  # 显示名称
+    contact = Column(String, nullable=True)  # 联系方式
+    model_number = Column(String, nullable=True)  # 型号
+    ip = Column(String, nullable=True)  # IP 地址
+    tree_node_id = Column(String, nullable=True)  # 树节点 ID
+    res_type_id = Column(String, nullable=True)  # 资源类型 ID
+    series = Column(String, nullable=True)  # 系列
+    mac = Column(String, nullable=True)  # MAC 地址
+    location_name = Column(String, nullable=True)  # 位置名称
+    contact_name = Column(String, nullable=True)  # 联系人名称
+    mem_rate = Column(String, nullable=True)  # 内存使用率
+    cpu_rate = Column(String, nullable=True)  # CPU 使用率
+    busy = Column(String, nullable=True)  # 繁忙状态
+    sys_info = Column(String, nullable=True)  # 系统信息
+    vender_id = Column(String, nullable=True)  # 厂商 ID
+
+
+class Location(Base):
+    __tablename__ = 'locations'
+
+    id = Column(String, primary_key=True, nullable=False)  # 主键,网段 ID
+    name = Column(String, nullable=True)  # 名称
+    parent_id = Column(String, nullable=True)  # 父节点 ID
+    full_path_name = Column(String, nullable=True)  # 完整路径名称
+
+
+class Segment(Base):
+    __tablename__ = 'segments'
+
+    id = Column(String, primary_key=True, nullable=False)  # 主键,子网 ID
+    name = Column(String, nullable=True)  # 名称
+    ip_subnet = Column(String, nullable=True)  # 子网地址
+    vlan_id = Column(Integer, nullable=True)  # VLAN ID
+    vlan_name = Column(String, nullable=True)  # VLAN 名称
+    location_id = Column(String, nullable=True)  # 网段 ID,关联Location.id
+    location_full_path = Column(String, nullable=True)  # 网段完整路径
+    location_name = Column(String, nullable=True)  # 网段名称
+
+
+class Room(Base):
+    __tablename__ = 'rooms'
+
+    id = Column(String, primary_key=True, nullable=False)  # 主键,机房 ID
+    display_name = Column(String, nullable=True)  # 机房显示名称
+    level = Column(String, nullable=True)  # 机房等级
+    rack_count = Column(Integer, nullable=True)  # 机柜数量
+    res_count = Column(Integer, nullable=True)  # 资源数量
+    capacity = Column(Integer, nullable=True)  # 总容量
+    used_capacity = Column(Integer, nullable=True)  # 已用容量
+    used_capacity_rate = Column(Float, nullable=True)  # 容量使用率
+    area = Column(Integer, nullable=True)  # 面积
+
+
+class Element(Base):
+    __tablename__ = 'elements'
+
+    id = Column(String, primary_key=True, autoincrement=True)  # 自动生成主键
+    value = Column(String, nullable=True)  # 元素值
+    time = Column(DateTime, nullable=True)  # 时间
+    room_id = Column(String,  nullable=False)  # 机房 ID,外键关联
+    is_cross = Column(String, nullable=True)  # 是否跨域
+    element_name = Column(String, nullable=True)  # 元素名称
+    metric_id = Column(String, nullable=True)  # 指标 ID
+    metric_name = Column(String, nullable=True)  # 指标名称
+    unit = Column(String, nullable=True)  # 单位
+    metric_definition_id = Column(String, nullable=True)  # 指标定义 ID
+    element_definition_name = Column(String, nullable=True)  # 元素定义名称
+    element_display_name = Column(String, nullable=True)  # 元素显示名称
+    metric_definition_name = Column(String, nullable=True)  # 指标定义名称
+    data_type = Column(String, nullable=True)  # 数据类型
+    element_definition_id = Column(String, nullable=True)  # 元素定义 ID

+ 5 - 0
common/service.py

@@ -0,0 +1,5 @@
+from common.model import Event
+from ext_database import Session
+
+def save_event(event_list:list):
+    session = Session()

+ 33 - 0
common/setting.py

@@ -0,0 +1,33 @@
+from pydantic import Field
+from pydantic_settings import BaseSettings
+from pydantic_settings import SettingsConfigDict
+
+
+class Config(BaseSettings):
+    model_config = SettingsConfigDict(
+        # read from dotenv format config file
+        env_file=".env",
+        env_file_encoding="utf-8",
+        # ignore extra attributes
+        extra="ignore",
+    )
+
+    BASE_URL: str = Field(
+        description='base url',
+        default='http://127.0.0.1:8000'
+    )
+
+    USERNAME: str = Field(
+        description='username',
+        default='admin'
+    )
+
+    PASSWORD: str = Field(
+        description='password',
+        default='admin'
+    )
+
+    DB_URL: str = Field(
+        description='database url',
+        default='postgresql+psycopg2://user:password@localhost/dbname'
+    )

+ 42 - 0
common/utils.py

@@ -0,0 +1,42 @@
+import json
+
+import requests
+
+from common.error import NoValidError
+from common.logger import logger
+from common import config
+from util.login import LoginApi
+
+cookies = {}
+
+def call_api(endpoint, method="GET", params=None, data=None) -> dict:
+    """
+    通用的API调用方法。
+    """
+    # 记录调用的信息
+    global cookies
+    url = f"{config.BASE_URL}{endpoint}"
+    for i in range(3):
+        try:
+            if method.upper() == "GET":
+                response = requests.get(url, params=params, cookies=cookies)
+            elif method.upper() == "POST":
+                response = requests.post(url, json=data, params=params, cookies=cookies)
+            else:
+                raise ValueError("Unsupported HTTP method")
+            logger.info(f"Calling API: {endpoint}, Method: {method}, Params: {params}, Data: {data}, ResCode:{response.status_code}, ResData: {response.text}")
+            if response.status_code == 502:
+                cookies = LoginApi().login_bmc(config.USERNAME, config.PASSWORD)
+                raise NoValidError()
+            response.raise_for_status()
+            return response.json()
+        except requests.RequestException as e:
+            print(f"Error calling API {endpoint}: {e}")
+            logger.warning(f"Calling API: {endpoint}, Method: {method}, Params: {params}, Data: {data}, Error:{e}")
+    logger.error(f"Failed to call API 3 times: {endpoint}, Method: {method}, Params: {params}, Data: {data}")
+    raise Exception("Failed to call API 3 times")
+
+
+def save_json(data, filename):
+    with open(filename, "w") as f:
+        f.write(json.dumps(data))

+ 1060 - 0
doc_json/event_client.json

@@ -0,0 +1,1060 @@
+{
+  "apiVersion": "1.0",
+  "apis": [
+    {
+      "description": "acceptEvent",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "受理事件",
+          "notes": "受理事件",
+          "nickname": "acceptEvent",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "事件ID,可通过/event/client/getEventList接口获得",
+              "name": "eventId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "void"
+        }
+      ],
+      "path": "/event/client/accept/{eventId}"
+    },
+    {
+      "description": "getEventData",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "第三方系统根据系统ID,实时获取BMC产生的告警",
+          "notes": "第三方系统根据系统ID,实时获取BMC产生的告警",
+          "nickname": "getEventData",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "第三方系统ID。可通过系统管理->监控配置->告警推送标准化->第三方标识获得",
+              "name": "thirdSysId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "第三方获取事件列表"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "第三方获取事件列表"
+        }
+      ],
+      "path": "/event/client/get3rdEventData/{thirdSysId}"
+    },
+    {
+      "description": "getEventList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "查询事件列表",
+          "notes": "查询事件列表",
+          "nickname": "getEventList",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "查询事件类型(未受理:unaccepted_event_view 已受理:accepted_event_view)",
+              "name": "viewType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "域ID,可通过/login接口获得",
+              "name": "domainId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "事件名称",
+              "name": "eventName",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "资源类型",
+              "name": "resType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "资源IP地址",
+              "name": "resIp",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "资源名称",
+              "name": "resName",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "是否显示未受理但已恢复的告警,默认false",
+              "name": "relRecoveredEvent",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "事件级别,默认全部(1:信息,2:未知,3:警告,4:次要,5:主要,6:严重)",
+              "name": "level",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "是否分页,默认不分页(0:不分页,1:分页)",
+              "name": "isPageing",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "列表分页的请求页数,默认1",
+              "name": "pageIndex",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "IP或者是资源名称",
+              "name": "ipOrResName",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "事件类型",
+              "name": "eventTypes",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "name": "resRange",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "选填,排序字段值,只支持一个排序sortColumn和sortType 必须同时不为空才生效字段",
+              "name": "sortColumn",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "选填,排序字段值,只支持一个排序sortColumn和sortType 必须同时不为空才生效字段,无默认值",
+              "name": "sortType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "事件对应资源所属的主资源的treenodeid, 如果事件对应的资源是主资源,就放他自己的",
+              "name": "mainTreeNodeId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "tree节点ID,如:base为00;host为00.01,AIX就是00.01.01 如果是此模板为子资源模板,此列为空",
+              "name": "treeNodeId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "列表分页中每页条数,可不传,默认20",
+              "name": "pageSize",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "name": "eventTimeType",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "告警首次发生时间",
+              "name": "eventTimeStart",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "告警结束时间",
+              "name": "eventTimeEnd",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "事件列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "事件列表数据"
+        }
+      ],
+      "path": "/event/client/getEventList"
+    },
+    {
+      "description": "getLogAlarmList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取日志事件列表",
+          "notes": "getLogAlarmList",
+          "nickname": "getLogAlarmList",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "是否分页,默认不分页",
+              "name": "isPageing",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "列表分页中每页条数,可不传,默认20",
+              "name": "pageSize",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "列表分页的请求页数,默认1",
+              "name": "pageIndex",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "日志类型(Window:logmonitor-plugin-windows Syslog:logmonitor-plugin-syslog)",
+              "name": "plugId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "告警级别,可穿多个以“,”分割(严重:CRITICAL 主要: MAJOR 次要: MINOR 警告: WARNING 信息: CLEARED)",
+              "name": "alarmLevels",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "IP地址",
+              "name": "alarmsModeContext",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "日志事件列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "日志事件列表数据"
+        }
+      ],
+      "path": "/event/client/getLogAlarmList"
+    }
+  ],
+  "basePath": "/adapter",
+  "consumes": [
+    "application/json"
+  ],
+  "models": {
+    "Alarm3rdEventDataVO": {
+      "description": "",
+      "id": "Alarm3rdEventDataVO",
+      "properties": {
+        "id": {
+          "description": "告警ID",
+          "required": false,
+          "type": "string"
+        },
+        "source": {
+          "description": "告警来源",
+          "required": false,
+          "type": "string"
+        },
+        "firstTime": {
+          "description": "告警产生时间",
+          "required": false,
+          "type": "string"
+        },
+        "resName": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "eventState": {
+          "description": "告警状态,(-1:未恢复,1:恢复)",
+          "required": false,
+          "type": "string"
+        },
+        "eventType": {
+          "description": "告警类型,(AVAIL_EVENT:可用性告警,PERF_EVENT:性能预警,CONF_EVENT:配置预警)",
+          "required": false,
+          "type": "string"
+        },
+        "resTypeName": {
+          "description": "资源类型名称",
+          "required": false,
+          "type": "string"
+        },
+        "instId": {
+          "description": "主资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "treeNodeId": {
+          "description": "tree节点ID,如:base为00;host为00.01,AIX就是00.01.01 如果是此模板为子资源模板,此列为空",
+          "required": false,
+          "type": "string"
+        },
+        "subInstId": {
+          "description": "子资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "resTypeId": {
+          "description": "资源类型ID",
+          "required": false,
+          "type": "string"
+        },
+        "metricId": {
+          "description": "指标ID",
+          "required": false,
+          "type": "string"
+        },
+        "eventName": {
+          "description": "告警名称",
+          "required": false,
+          "type": "string"
+        },
+        "recoverTime": {
+          "description": "告警恢复时间",
+          "required": false,
+          "type": "string"
+        },
+        "mainTreeNodeId": {
+          "description": "告警对应资源所属的主资源的tree节点Id, 如果告警对应的资源是主资源,就放它自己的节点Id",
+          "required": false,
+          "type": "string"
+        },
+        "eventTypeName": {
+          "description": "告警类型名称,(AVAIL_EVENT:可用性告警,PERF_EVENT:性能预警,CONF_EVENT:配置预警)",
+          "required": false,
+          "type": "string"
+        },
+        "eventLevelName": {
+          "description": "告警级别名称,(1:信息,2:未知,3:警告,4:次要,5:主要,6:严重)",
+          "required": false,
+          "type": "string"
+        },
+        "recoverEventId": {
+          "description": "恢复的告警ID",
+          "required": false,
+          "type": "string"
+        },
+        "eventLevel": {
+          "description": "告警级别,(1:信息,2:未知,3:警告,4:次要,5:主要,6:严重)",
+          "required": false,
+          "type": "string"
+        },
+        "resIp": {
+          "description": "资源IP",
+          "required": false,
+          "type": "string"
+        },
+        "eventMsg": {
+          "description": "告警信息内容",
+          "required": false,
+          "type": "string"
+        },
+        "recovered": {
+          "description": "记录告警是否恢复,(0:未恢复,1:恢复)",
+          "required": false,
+          "type": "string"
+        },
+        "resIpV6": {
+          "description": "ipv6地址",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "第三方获取事件列表": {
+      "description": "",
+      "id": "第三方获取事件列表",
+      "properties": {
+        "eventDatas": {
+          "items": {
+            "type": "Alarm3rdEventDataVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "EventVO": {
+      "description": "",
+      "id": "EventVO",
+      "properties": {
+        "name": {
+          "description": "事件名称",
+          "required": false,
+          "type": "string"
+        },
+        "time": {
+          "description": "事件产生时间, 长整型,毫秒数",
+          "required": false,
+          "format": "int64",
+          "type": "integer"
+        },
+        "level": {
+          "description": "事件级别",
+          "required": false,
+          "type": "string"
+        },
+        "resName": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "viewType": {
+          "description": "未受理:unaccepted_event_view已受理:accepted_event_view",
+          "required": false,
+          "type": "string"
+        },
+        "eventState": {
+          "description": "事件状态",
+          "required": false,
+          "type": "string"
+        },
+        "eventType": {
+          "description": "事件类型(AVAIL_EVENT(可用性事件)CONF_EVENT(配置事件)PERF_EVENT(性能事件))",
+          "required": false,
+          "type": "string"
+        },
+        "resTempId": {
+          "description": "模板ID",
+          "required": false,
+          "type": "string"
+        },
+        "eventId": {
+          "description": "事件ID",
+          "required": false,
+          "type": "string"
+        },
+        "resType": {
+          "description": "资源类型",
+          "required": false,
+          "type": "string"
+        },
+        "ip": {
+          "description": "IP",
+          "required": false,
+          "type": "string"
+        },
+        "policyId": {
+          "description": "策略ID",
+          "required": false,
+          "type": "string"
+        },
+        "metricId": {
+          "description": "指标ID",
+          "required": false,
+          "type": "string"
+        },
+        "metricName": {
+          "description": "指标名称",
+          "required": false,
+          "type": "string"
+        },
+        "resId": {
+          "description": "资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "collectType": {
+          "description": "采集类型",
+          "required": false,
+          "type": "string"
+        },
+        "isApp": {
+          "description": "是否为基础应用(1:是基础应用,0:非基础应用)",
+          "required": false,
+          "type": "string"
+        },
+        "createTime": {
+          "description": "产生时间",
+          "required": false,
+          "type": "string"
+        },
+        "subResId": {
+          "description": "子资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "recovered": {
+          "description": "recovered",
+          "required": false,
+          "type": "string"
+        },
+        "showAccept": {
+          "required": false,
+          "type": "boolean"
+        },
+        "showMaintain": {
+          "required": false,
+          "type": "boolean"
+        },
+        "recoveredEventId": {
+          "description": "事件ID",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "获取事件列表查询对象": {
+      "description": "",
+      "id": "获取事件列表查询对象",
+      "properties": {
+        "viewType": {
+          "description": "查询事件类型(未受理:unaccepted_event_view 已受理:accepted_event_view)",
+          "required": true,
+          "type": "string"
+        },
+        "domainId": {
+          "description": "域ID,可通过/login接口获得",
+          "required": false,
+          "type": "string"
+        },
+        "eventName": {
+          "description": "事件名称",
+          "required": false,
+          "type": "string"
+        },
+        "resType": {
+          "description": "资源类型",
+          "required": false,
+          "type": "string"
+        },
+        "resIp": {
+          "description": "资源IP地址",
+          "required": false,
+          "type": "string"
+        },
+        "resName": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "relRecoveredEvent": {
+          "description": "是否显示未受理但已恢复的告警,默认false",
+          "required": false,
+          "type": "string"
+        },
+        "level": {
+          "description": "事件级别,默认全部(1:信息,2:未知,3:警告,4:次要,5:主要,6:严重)",
+          "required": false,
+          "type": "string"
+        },
+        "isPageing": {
+          "description": "是否分页,默认不分页(0:不分页,1:分页)",
+          "required": false,
+          "type": "string"
+        },
+        "pageIndex": {
+          "description": "列表分页的请求页数,默认1",
+          "required": false,
+          "type": "string"
+        },
+        "ipOrResName": {
+          "description": "IP或者是资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "eventTypes": {
+          "description": "事件类型",
+          "required": false,
+          "type": "string"
+        },
+        "resRange": {
+          "required": false,
+          "type": "string"
+        },
+        "sortColumn": {
+          "description": "选填,排序字段值,只支持一个排序sortColumn和sortType 必须同时不为空才生效字段",
+          "required": false,
+          "type": "string"
+        },
+        "sortType": {
+          "description": "选填,排序字段值,只支持一个排序sortColumn和sortType 必须同时不为空才生效字段,无默认值",
+          "required": false,
+          "type": "string"
+        },
+        "mainTreeNodeId": {
+          "description": "事件对应资源所属的主资源的treenodeid, 如果事件对应的资源是主资源,就放他自己的",
+          "required": false,
+          "type": "string"
+        },
+        "treeNodeId": {
+          "description": "tree节点ID,如:base为00;host为00.01,AIX就是00.01.01 如果是此模板为子资源模板,此列为空",
+          "required": false,
+          "type": "string"
+        },
+        "pageSize": {
+          "description": "列表分页中每页条数,可不传,默认20",
+          "required": false,
+          "type": "string"
+        },
+        "eventTimeType": {
+          "required": false,
+          "type": "string"
+        },
+        "eventTimeStart": {
+          "description": "告警首次发生时间",
+          "required": false,
+          "type": "string"
+        },
+        "eventTimeEnd": {
+          "description": "告警结束时间",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "获取登录信息": {
+      "description": "",
+      "id": "获取登录信息",
+      "properties": {
+        "_openCLIENT": {
+          "description": "_openCLIENT 默认值是RIIL",
+          "required": true,
+          "type": "string"
+        }
+      }
+    },
+    "事件列表数据": {
+      "description": "",
+      "id": "事件列表数据",
+      "properties": {
+        "eventCount": {
+          "items": {
+            "type": "Entry«string,int»"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "totalCount": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "totalPage": {
+          "description": "总页数(分页显示时使用)",
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "eventList": {
+          "description": "EventVO对象集合",
+          "items": {
+            "type": "EventVO"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "pageIndex": {
+          "description": "当前显示页(分页显示时使用)",
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        }
+      }
+    },
+    "Entry«string,int»": {
+      "description": "",
+      "id": "Entry«string,int»",
+      "properties": {
+        "key": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        }
+      }
+    },
+    "Void": {
+      "description": "",
+      "id": "Void",
+      "properties": {}
+    },
+    "日志事件列表数据": {
+      "description": "",
+      "id": "日志事件列表数据",
+      "properties": {
+        "logEventList": {
+          "description": "LogSummaryEventAlarmPojo 对象集合",
+          "items": {
+            "type": "LogSummaryEventAlarmVo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "日志事件列表的查询对象": {
+      "description": "",
+      "id": "日志事件列表的查询对象",
+      "properties": {
+        "isPageing": {
+          "description": "是否分页,默认不分页",
+          "required": false,
+          "type": "string"
+        },
+        "pageSize": {
+          "description": "列表分页中每页条数,可不传,默认20",
+          "required": false,
+          "type": "string"
+        },
+        "pageIndex": {
+          "description": "列表分页的请求页数,默认1",
+          "required": false,
+          "type": "string"
+        },
+        "plugId": {
+          "description": "日志类型(Window:logmonitor-plugin-windows Syslog:logmonitor-plugin-syslog)",
+          "required": false,
+          "type": "string"
+        },
+        "alarmLevels": {
+          "description": "告警级别,可穿多个以“,”分割(严重:CRITICAL 主要: MAJOR 次要: MINOR 警告: WARNING 信息: CLEARED)",
+          "required": false,
+          "type": "string"
+        },
+        "alarmsModeContext": {
+          "description": "IP地址",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "LogSummaryEventAlarmVo": {
+      "description": "",
+      "id": "LogSummaryEventAlarmVo",
+      "properties": {
+        "logType": {
+          "description": "日志类型",
+          "required": false,
+          "type": "string"
+        },
+        "alarmLevel": {
+          "description": "告警级别",
+          "required": false,
+          "type": "string"
+        },
+        "receiver": {
+          "description": "接收人",
+          "required": false,
+          "type": "string"
+        },
+        "resourceName": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "sendType": {
+          "description": "消息类型",
+          "required": false,
+          "type": "string"
+        },
+        "sendTime": {
+          "description": "发送时间",
+          "required": false,
+          "type": "string"
+        },
+        "alarmContent": {
+          "description": "告警内容",
+          "required": false,
+          "type": "string"
+        },
+        "sendResult": {
+          "description": "发送结果",
+          "required": false,
+          "type": "string"
+        },
+        "alarmsId": {
+          "description": "事件ID",
+          "required": false,
+          "type": "string"
+        },
+        "logHost": {
+          "description": "日志主机",
+          "required": false,
+          "type": "string"
+        },
+        "name": {
+          "required": false,
+          "type": "string"
+        },
+        "id": {
+          "required": false,
+          "type": "string"
+        },
+        "companyId": {
+          "required": false,
+          "type": "string"
+        },
+        "tag1": {
+          "required": false,
+          "type": "string"
+        },
+        "tag2": {
+          "required": false,
+          "type": "string"
+        },
+        "tag3": {
+          "required": false,
+          "type": "string"
+        },
+        "tag4": {
+          "required": false,
+          "type": "string"
+        },
+        "endIndex": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "pageCountSqlId": {
+          "required": false,
+          "type": "string"
+        },
+        "pageSqlId": {
+          "required": false,
+          "type": "string"
+        },
+        "pageSize": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "sortColumn": {
+          "items": {
+            "type": "string"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "customParamers": {
+          "required": false,
+          "type": "object"
+        },
+        "pageIndex": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "sortType": {
+          "enum": [
+            "ASC",
+            "DESC"
+          ],
+          "required": false,
+          "type": "string"
+        },
+        "orderBy": {
+          "required": false,
+          "type": "string"
+        },
+        "startIndex": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        }
+      }
+    }
+  },
+  "produces": [
+    "*/*"
+  ],
+  "resourcePath": "/event/client",
+  "swaggerVersion": "1.2"
+}

+ 906 - 0
doc_json/ipam.json

@@ -0,0 +1,906 @@
+{
+  "apiVersion": "1.0",
+  "apis": [
+    {
+      "description": "applyIpmacList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "申请IP",
+          "notes": "applyIpmacList",
+          "nickname": "applyIpmacList",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "子网信息ID",
+              "name": "segmentId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "MAC地址",
+              "name": "mac",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "用户名",
+              "name": "user",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "上联设备IP",
+              "name": "devIp",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "上联接口索引",
+              "name": "ifIdx",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "部门",
+              "name": "department",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "申请AP结果"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "申请AP结果"
+        }
+      ],
+      "path": "/ipam/applyIpmacList"
+    },
+    {
+      "description": "daleteByIp",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "根据IP删除基准表记录",
+          "notes": "daleteByIp",
+          "nickname": "daleteByIp",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "IP",
+              "name": "ip",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "结果"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "结果"
+        }
+      ],
+      "path": "/ipam/daleteByIp"
+    },
+    {
+      "description": "getIpmacAllSegmentList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取所有子网列表信息",
+          "notes": "getIpmacAllSegmentList",
+          "nickname": "getIpmacAllSegmentList",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "子网信息列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "子网信息列表数据"
+        }
+      ],
+      "path": "/ipam/getIpmacAllSegmentList"
+    },
+    {
+      "description": "getIpmacListC",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "根据IP查询基准表IPMAC列表",
+          "notes": "getIpmacListC",
+          "nickname": "getIpmacListC",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "IP",
+              "name": "ip",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "上联设备IP",
+              "name": "devIp",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "查表标记,默认或者传入benchmark字符串时查基准表。其他情况查实时表",
+              "name": "tableFlag",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "主资源及其包含的子资源数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "主资源及其包含的子资源数据"
+        }
+      ],
+      "path": "/ipam/getIpmacList"
+    },
+    {
+      "description": "getIpmacLocationList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取网段列表信息",
+          "notes": "getIpmacLocationList",
+          "nickname": "getIpmacLocationList",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "网段列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "网段列表数据"
+        }
+      ],
+      "path": "/ipam/getIpmacLocationList"
+    },
+    {
+      "description": "getIpmacSegmentList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "根据网段获取可用子网列表信息",
+          "notes": "getIpmacSegmentList",
+          "nickname": "getIpmacSegmentList",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "网段ID",
+              "name": "locationId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "子网列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "子网列表数据"
+        }
+      ],
+      "path": "/ipam/getIpmacSegmentList"
+    },
+    {
+      "description": "modifyIpmacInfo",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "修改IP信息",
+          "notes": "modifyIpmacInfo",
+          "nickname": "modifyIpmacInfo",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "IP",
+              "name": "ip",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "MAC地址",
+              "name": "mac",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "用户名",
+              "name": "user",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "上联设备IP",
+              "name": "devIp",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "上联接口索引",
+              "name": "ifIdx",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "部门",
+              "name": "department",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "结果"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "结果"
+        }
+      ],
+      "path": "/ipam/modifyIpmacInfo"
+    }
+  ],
+  "basePath": "/adapter",
+  "consumes": [
+    "application/json"
+  ],
+  "models": {
+    "通过网段获取子网列表的查询对象": {
+      "description": "",
+      "id": "通过网段获取子网列表的查询对象",
+      "properties": {
+        "locationId": {
+          "description": "网段ID",
+          "required": true,
+          "type": "string"
+        }
+      }
+    },
+    "子网列表数据": {
+      "description": "",
+      "id": "子网列表数据",
+      "properties": {
+        "segmentList": {
+          "description": "ipmacSegmentPojo 对象集合",
+          "items": {
+            "type": "IpmacSegmentPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "获取登录信息": {
+      "description": "",
+      "id": "获取登录信息",
+      "properties": {
+        "_openCLIENT": {
+          "description": "_openCLIENT 默认值是RIIL",
+          "required": true,
+          "type": "string"
+        }
+      }
+    },
+    "IpmacSegmentPojo": {
+      "description": "",
+      "id": "IpmacSegmentPojo",
+      "properties": {
+        "name": {
+          "description": "子网名称",
+          "required": false,
+          "type": "string"
+        },
+        "id": {
+          "description": "子网ID",
+          "required": false,
+          "type": "string"
+        },
+        "ipPlanrate": {
+          "description": "网段规划率",
+          "required": false,
+          "type": "string"
+        },
+        "ipSubnet": {
+          "description": "子网地址",
+          "required": false,
+          "type": "string"
+        },
+        "vlanId": {
+          "description": "VLAN ID",
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "vlanName": {
+          "description": "VLAN 名称",
+          "required": false,
+          "type": "string"
+        },
+        "locationId": {
+          "description": "网段ID",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "IpmacSegmentInfoPojo": {
+      "description": "",
+      "id": "IpmacSegmentInfoPojo",
+      "properties": {
+        "name": {
+          "description": "子网名称",
+          "required": false,
+          "type": "string"
+        },
+        "id": {
+          "description": "子网ID",
+          "required": false,
+          "type": "string"
+        },
+        "ipSubnet": {
+          "description": "子网地址",
+          "required": false,
+          "type": "string"
+        },
+        "vlanId": {
+          "description": "VLAN ID",
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "vlanName": {
+          "description": "VLAN 名称",
+          "required": false,
+          "type": "string"
+        },
+        "locationId": {
+          "description": "网段ID",
+          "required": false,
+          "type": "string"
+        },
+        "locationFullPath": {
+          "description": "位置全名称",
+          "required": false,
+          "type": "string"
+        },
+        "locationName": {
+          "description": "位置名称",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "子网信息列表数据": {
+      "description": "",
+      "id": "子网信息列表数据",
+      "properties": {
+        "segmentList": {
+          "description": "IpmacSegmentInfoPojo 对象集合",
+          "items": {
+            "type": "IpmacSegmentInfoPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "通过IP获取实时表记录": {
+      "description": "",
+      "id": "通过IP获取实时表记录",
+      "properties": {
+        "ip": {
+          "description": "IP",
+          "required": true,
+          "type": "string"
+        },
+        "devIp": {
+          "description": "上联设备IP",
+          "required": false,
+          "type": "string"
+        },
+        "tableFlag": {
+          "description": "查表标记,默认或者传入benchmark字符串时查基准表。其他情况查实时表",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "主资源及其包含的子资源数据": {
+      "description": "",
+      "id": "主资源及其包含的子资源数据",
+      "properties": {
+        "ipmacList": {
+          "description": "ipmac集合",
+          "items": {
+            "type": "IpmacPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "IpmacPojo": {
+      "description": "",
+      "id": "IpmacPojo",
+      "properties": {
+        "id": {
+          "description": "资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "result": {
+          "description": "查询无数据时的结果",
+          "required": false,
+          "type": "string"
+        },
+        "time": {
+          "required": false,
+          "format": "date-time",
+          "type": "string"
+        },
+        "user": {
+          "required": false,
+          "type": "string"
+        },
+        "status": {
+          "required": false,
+          "type": "string"
+        },
+        "vlanId": {
+          "required": false,
+          "type": "string"
+        },
+        "vlanName": {
+          "required": false,
+          "type": "string"
+        },
+        "mac": {
+          "description": "资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "ipSetStr": {
+          "description": "资源IP",
+          "required": false,
+          "type": "string"
+        },
+        "devIp": {
+          "required": false,
+          "type": "string"
+        },
+        "ifName": {
+          "required": false,
+          "type": "string"
+        },
+        "devId": {
+          "required": false,
+          "type": "string"
+        },
+        "devName": {
+          "required": false,
+          "type": "string"
+        },
+        "ifIdx": {
+          "required": false,
+          "type": "string"
+        },
+        "department": {
+          "required": false,
+          "type": "string"
+        },
+        "room": {
+          "required": false,
+          "type": "string"
+        },
+        "point": {
+          "required": false,
+          "type": "string"
+        },
+        "use": {
+          "required": false,
+          "type": "string"
+        },
+        "remark": {
+          "required": false,
+          "type": "string"
+        },
+        "devType": {
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "根据IP删除基准表记录": {
+      "description": "",
+      "id": "根据IP删除基准表记录",
+      "properties": {
+        "ip": {
+          "description": "IP",
+          "required": true,
+          "type": "string"
+        }
+      }
+    },
+    "结果": {
+      "description": "",
+      "id": "结果",
+      "properties": {
+        "success": {
+          "description": "成功",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "申请AP结果": {
+      "description": "",
+      "id": "申请AP结果",
+      "properties": {
+        "success": {
+          "description": "成功",
+          "required": false,
+          "type": "string"
+        },
+        "ip": {
+          "description": "申请成功的IP",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "申请IP": {
+      "description": "",
+      "id": "申请IP",
+      "properties": {
+        "segmentId": {
+          "description": "子网信息ID",
+          "required": true,
+          "type": "string"
+        },
+        "mac": {
+          "description": "MAC地址",
+          "required": false,
+          "type": "string"
+        },
+        "user": {
+          "description": "用户名",
+          "required": false,
+          "type": "string"
+        },
+        "devIp": {
+          "description": "上联设备IP",
+          "required": false,
+          "type": "string"
+        },
+        "ifIdx": {
+          "description": "上联接口索引",
+          "required": false,
+          "type": "string"
+        },
+        "department": {
+          "description": "部门",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "修改IP": {
+      "description": "",
+      "id": "修改IP",
+      "properties": {
+        "ip": {
+          "description": "IP",
+          "required": true,
+          "type": "string"
+        },
+        "mac": {
+          "description": "MAC地址",
+          "required": false,
+          "type": "string"
+        },
+        "user": {
+          "description": "用户名",
+          "required": false,
+          "type": "string"
+        },
+        "devIp": {
+          "description": "上联设备IP",
+          "required": false,
+          "type": "string"
+        },
+        "ifIdx": {
+          "description": "上联接口索引",
+          "required": false,
+          "type": "string"
+        },
+        "department": {
+          "description": "部门",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "网段列表数据": {
+      "description": "",
+      "id": "网段列表数据",
+      "properties": {
+        "locationList": {
+          "description": "ipmacLocationPojo 对象集合",
+          "items": {
+            "type": "IpmacLocationPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "IpmacLocationPojo": {
+      "description": "",
+      "id": "IpmacLocationPojo",
+      "properties": {
+        "name": {
+          "description": "网段名称",
+          "required": false,
+          "type": "string"
+        },
+        "id": {
+          "description": "网段ID",
+          "required": false,
+          "type": "string"
+        },
+        "parentId": {
+          "description": "网段父ID",
+          "required": false,
+          "type": "string"
+        },
+        "fullPathName": {
+          "description": "网段全路径名称",
+          "required": false,
+          "type": "string"
+        }
+      }
+    }
+  },
+  "produces": [
+    "*/*"
+  ],
+  "resourcePath": "/ipam",
+  "swaggerVersion": "1.2"
+}

+ 483 - 0
doc_json/login.json

@@ -0,0 +1,483 @@
+{
+  "apiVersion": "1.0",
+  "apis": [
+    {
+      "description": "login",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        },
+        {
+          "method": "GET",
+          "summary": "登录BMC",
+          "notes": "登录成功,在消息头的Set-Cookie中可以获取SSOToken,请求其他接口时,需在Cookie中携带SSOToken,才可通过系统认证,获取数据。SSOToken的有效时长为30分钟。",
+          "nickname": "login",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "用户名",
+              "name": "username",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "密码",
+              "name": "password",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "RIIL",
+              "description": "调用接口的客户端,默认为RIIL",
+              "name": "_openCLIENT",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": "登录成功",
+              "responseModel": "sso登录成功返回消息"
+            }
+          ],
+          "deprecated": "false",
+          "type": "sso登录成功返回消息"
+        }
+      ],
+      "path": "/login"
+    }
+  ],
+  "basePath": "/adapter",
+  "consumes": [
+    "application/json"
+  ],
+  "models": {
+    "Void": {
+      "description": "",
+      "id": "Void",
+      "properties": {}
+    },
+    "domain": {
+      "description": "",
+      "id": "domain",
+      "properties": {
+        "domainId": {
+          "description": "domain",
+          "required": false,
+          "type": "string"
+        },
+        "domainName": {
+          "description": "domainName",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "sso登录成功返回消息": {
+      "description": "",
+      "id": "sso登录成功返回消息",
+      "properties": {
+        "success": {
+          "description": "登录结果标志",
+          "required": false,
+          "type": "boolean"
+        },
+        "domainList": {
+          "description": "用户信息集合",
+          "items": {
+            "type": "domain"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "errMsg": {
+          "description": "登录失败时的错误信息",
+          "required": false,
+          "type": "string"
+        }
+      }
+    }
+  },
+  "produces": [
+    "application/json"
+  ],
+  "resourcePath": "/login",
+  "swaggerVersion": "1.2"
+}

+ 719 - 0
doc_json/res.json

@@ -0,0 +1,719 @@
+{
+  "apiVersion": "1.0",
+  "apis": [
+    {
+      "description": "getResInstanceById",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "通过主资源ID获取单个主资源以及包含的所有子资源.",
+          "notes": "通过主资源ID获取单个主资源以及包含的所有子资源.",
+          "nickname": "getResInstanceById",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "主资源ID(可通过/res/getResInstanceList接口获得)",
+              "name": "resId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "ResInstPojo"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "ResInstPojo"
+        }
+      ],
+      "path": "/res/getResInstanceById"
+    },
+    {
+      "description": "getResInstanceList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取所有资源及子资源信息",
+          "notes": "获取所有资源及子资源信息",
+          "nickname": "getResInstanceList",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "资源类型ID(可通过/res/client/getResTypes4Json接口获得)",
+              "name": "resType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "资源列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "资源列表数据"
+        }
+      ],
+      "path": "/res/getResInstanceList"
+    },
+    {
+      "description": "getResMetricList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取主资源指标详细信息",
+          "notes": "获取主资源指标详细信息",
+          "nickname": "getResMetricList",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "主资源ID(可通过/res/getResInstanceList接口获得)",
+              "name": "resId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "指标类型,默认取所有类型(可用性指标:AVAIL 配置指标:CONF 信息指标:INFO 性能指标:PERF)",
+              "name": "metricType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "主资源指标详细信息."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "主资源指标详细信息."
+        }
+      ],
+      "path": "/res/getResMetricList"
+    },
+    {
+      "description": "getSubResMetricList",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取子资源指标详细信息",
+          "notes": "获取子资源指标详细信息",
+          "nickname": "getSubResMetricList",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "子资源ID(可通过/res/getResInstanceList接口获得)",
+              "name": "subResId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "指标类型,默认取所有类型(可用性指标:AVAIL 配置指标:CONF 信息指标:INFO 性能指标:PERF)",
+              "name": "metricType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "主资源指标详细信息."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "主资源指标详细信息."
+        }
+      ],
+      "path": "/res/getSubResMetricList"
+    },
+    {
+      "description": "getResList",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "获取主资源列表",
+          "notes": "获取主资源列表",
+          "nickname": "getResList",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "资源树节点ID(00:代表所有资源)",
+              "name": "treeNodeId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "域ID,可通过/login接口获得",
+              "name": "domainId",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "可用性状态,默认为全部 1:可用,-1:不可用,-2:未知,all:全部",
+              "name": "state",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "页数",
+              "name": "pageIndex",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "每页条数,默认值为20",
+              "name": "pageSize",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "排序字段,只可按照一个字段排序,sortColumn和sortType同时不为空才生效",
+              "name": "sortColumn",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            },
+            {
+              "allowMultiple": false,
+              "description": "排序方式(ASC/DESC),sortColumn和sortType同时不为空才生效",
+              "name": "sortType",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": false
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "主资源列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "主资源列表数据"
+        }
+      ],
+      "path": "/res/list"
+    }
+  ],
+  "basePath": "/adapter",
+  "consumes": [
+    "application/json"
+  ],
+  "models": {
+    "ResVO": {
+      "description": "",
+      "id": "ResVO",
+      "properties": {
+        "state": {
+          "description": "可用状态",
+          "required": false,
+          "type": "string"
+        },
+        "name": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "location": {
+          "description": "物理位置",
+          "required": false,
+          "type": "string"
+        },
+        "type": {
+          "description": "资源类型",
+          "required": false,
+          "type": "string"
+        },
+        "desc": {
+          "description": "描述",
+          "required": false,
+          "type": "string"
+        },
+        "policyName": {
+          "description": "策略名称",
+          "required": false,
+          "type": "string"
+        },
+        "usability": {
+          "description": "可用率",
+          "required": false,
+          "type": "string"
+        },
+        "sysoid": {
+          "description": "系统OID",
+          "required": false,
+          "type": "string"
+        },
+        "venderName": {
+          "description": "厂商名称",
+          "required": false,
+          "type": "string"
+        },
+        "nameDisplay": {
+          "description": "资源展示名称",
+          "required": false,
+          "type": "string"
+        },
+        "contact": {
+          "description": "联系人ID",
+          "required": false,
+          "type": "string"
+        },
+        "modelNumber": {
+          "description": "设备型号",
+          "required": false,
+          "type": "string"
+        },
+        "ip": {
+          "description": "资源IP",
+          "required": false,
+          "type": "string"
+        },
+        "treeNodeId": {
+          "description": "tree节点ID",
+          "required": false,
+          "type": "string"
+        },
+        "resTypeId": {
+          "description": "资源类型ID",
+          "required": false,
+          "type": "string"
+        },
+        "resId": {
+          "description": "资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "series": {
+          "description": "系列",
+          "required": false,
+          "type": "string"
+        },
+        "mac": {
+          "description": "mac地址",
+          "required": false,
+          "type": "string"
+        },
+        "locationName": {
+          "description": "物理位置",
+          "required": false,
+          "type": "string"
+        },
+        "contactName": {
+          "description": "联系人名称",
+          "required": false,
+          "type": "string"
+        },
+        "memRate": {
+          "description": "内存利用率",
+          "required": false,
+          "type": "string"
+        },
+        "cpuRate": {
+          "description": "CPU利用率",
+          "required": false,
+          "type": "string"
+        },
+        "busy": {
+          "description": "繁忙度",
+          "required": false,
+          "type": "string"
+        },
+        "sysInfo": {
+          "description": "系统信息",
+          "required": false,
+          "type": "string"
+        },
+        "venderId": {
+          "description": "厂商ID",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "主资源列表数据": {
+      "description": "",
+      "id": "主资源列表数据",
+      "properties": {
+        "resList": {
+          "description": "ResVO 对象集合",
+          "items": {
+            "type": "ResVO"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "totalPage": {
+          "description": "总页数(分页显示时使用)",
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "pageIndex": {
+          "description": "当前显示页(分页显示时使用)",
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        }
+      }
+    },
+    "获取资源列表的查询对象": {
+      "description": "",
+      "id": "获取资源列表的查询对象",
+      "properties": {
+        "treeNodeId": {
+          "description": "资源树节点ID(00:代表所有资源)",
+          "required": true,
+          "type": "string"
+        },
+        "domainId": {
+          "description": "域ID,可通过/login接口获得",
+          "required": false,
+          "type": "string"
+        },
+        "state": {
+          "description": "可用性状态,默认为全部 1:可用,-1:不可用,-2:未知,all:全部",
+          "required": false,
+          "type": "string"
+        },
+        "pageIndex": {
+          "description": "页数",
+          "required": false,
+          "type": "string"
+        },
+        "pageSize": {
+          "description": "每页条数,默认值为20",
+          "required": false,
+          "type": "string"
+        },
+        "sortColumn": {
+          "description": "排序字段,只可按照一个字段排序,sortColumn和sortType同时不为空才生效",
+          "required": false,
+          "type": "string"
+        },
+        "sortType": {
+          "description": "排序方式(ASC/DESC),sortColumn和sortType同时不为空才生效",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "资源列表数据": {
+      "description": "",
+      "id": "资源列表数据",
+      "properties": {
+        "resInstList": {
+          "description": "resInstPojo 对象集合",
+          "items": {
+            "type": "ResInstPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "SubResPojo": {
+      "description": "",
+      "id": "SubResPojo",
+      "properties": {
+        "subName": {
+          "description": "子资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "resId": {
+          "description": "主资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "subResId": {
+          "description": "子资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "subResType": {
+          "description": "子资源类型",
+          "required": false,
+          "type": "string"
+        },
+        "manage": {
+          "description": "是否加入了监控(ture/false)",
+          "required": false,
+          "type": "boolean"
+        }
+      }
+    },
+    "通过资源类型获取资源列表的查询对象": {
+      "description": "",
+      "id": "通过资源类型获取资源列表的查询对象",
+      "properties": {
+        "resType": {
+          "description": "资源类型ID(可通过/res/client/getResTypes4Json接口获得)",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "ResInstPojo": {
+      "description": "",
+      "id": "ResInstPojo",
+      "properties": {
+        "resName": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "resType": {
+          "description": "资源类型",
+          "required": false,
+          "type": "string"
+        },
+        "resId": {
+          "description": "资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "resIp": {
+          "description": "资源IP",
+          "required": false,
+          "type": "string"
+        },
+        "subResList": {
+          "description": "子资源对象集合",
+          "items": {
+            "type": "SubResPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "通过主资源ID获取单个主资源以及包含的所有子资源的查询对象": {
+      "description": "",
+      "id": "通过主资源ID获取单个主资源以及包含的所有子资源的查询对象",
+      "properties": {
+        "resId": {
+          "description": "主资源ID(可通过/res/getResInstanceList接口获得)",
+          "required": true,
+          "type": "string"
+        }
+      }
+    },
+    "获取主资源指标详细信息的查询对象": {
+      "description": "",
+      "id": "获取主资源指标详细信息的查询对象",
+      "properties": {
+        "resId": {
+          "description": "主资源ID(可通过/res/getResInstanceList接口获得)",
+          "required": true,
+          "type": "string"
+        },
+        "metricType": {
+          "description": "指标类型,默认取所有类型(可用性指标:AVAIL 配置指标:CONF 信息指标:INFO 性能指标:PERF)",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "ResMetricPojo": {
+      "description": "",
+      "id": "ResMetricPojo",
+      "properties": {
+        "metricValue": {
+          "description": "值",
+          "required": false,
+          "type": "string"
+        },
+        "metricId": {
+          "description": "指标Id",
+          "required": false,
+          "type": "string"
+        },
+        "metricName": {
+          "description": "指标名称",
+          "required": false,
+          "type": "string"
+        },
+        "metricUnit": {
+          "description": "指标单位",
+          "required": false,
+          "type": "string"
+        },
+        "resId": {
+          "description": "主资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "metricStatus": {
+          "description": "指标状态",
+          "required": false,
+          "type": "string"
+        },
+        "metricStatus4Display": {
+          "description": "指标状态的显示",
+          "required": false,
+          "type": "string"
+        },
+        "subResId": {
+          "description": "子资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "metricType": {
+          "description": "指标类型",
+          "required": false,
+          "type": "string"
+        },
+        "gatherTime": {
+          "required": false,
+          "format": "date-time",
+          "type": "string"
+        }
+      }
+    },
+    "主资源指标详细信息.": {
+      "description": "",
+      "id": "主资源指标详细信息.",
+      "properties": {
+        "resMetricList": {
+          "description": "ResMetricPojo对象集合",
+          "items": {
+            "type": "ResMetricPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "GetSubResMetricListPojo": {
+      "description": "",
+      "id": "GetSubResMetricListPojo",
+      "properties": {
+        "subResId": {
+          "description": "子资源ID(可通过/res/getResInstanceList接口获得)",
+          "required": true,
+          "type": "string"
+        },
+        "metricType": {
+          "description": "指标类型,默认取所有类型(可用性指标:AVAIL 配置指标:CONF 信息指标:INFO 性能指标:PERF)",
+          "required": false,
+          "type": "string"
+        }
+      }
+    }
+  },
+  "produces": [
+    "application/json"
+  ],
+  "resourcePath": "/res",
+  "swaggerVersion": "1.2"
+}

+ 611 - 0
doc_json/res_client.json

@@ -0,0 +1,611 @@
+{
+  "apiVersion": "1.0",
+  "apis": [
+    {
+      "description": "getInstances",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "根据资源树节点ID和资源类型ID获取主资源列表",
+          "notes": "获取主资源列表",
+          "nickname": "getInstances",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "资源树节点ID,可通过/res/client/getResTypes4Json接口获得",
+              "name": "treeNodeId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "资源类型ID,可通过/res/client/getResTypes4Json接口获得",
+              "name": "resTypeId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "主资源列表."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "主资源列表."
+        }
+      ],
+      "path": "/res/client/getInstances/{treeNodeId}/{resTypeId}"
+    },
+    {
+      "description": "getMetrics",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "根据资源类型ID获取该资源类型下的所有性能指标定义",
+          "notes": "根据资源类型ID获取该资源类型下的所有性能指标定义",
+          "nickname": "getMetrics",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "资源类型ID,可通过/res/client/getResTypes4Json接口获得",
+              "name": "resTypeId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "指标列表."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "指标列表."
+        }
+      ],
+      "path": "/res/client/getMetrics/{resTypeId}"
+    },
+    {
+      "description": "getResProtocols",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取资源的链接信息",
+          "notes": "根据资源ID列表,获取链接信息",
+          "nickname": "getResProtocols",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "资源ID,多个ID用逗号隔开",
+              "name": "resIds",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "资源连接信息结果对象"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "资源连接信息结果对象"
+        }
+      ],
+      "path": "/res/client/getResProtocols"
+    },
+    {
+      "description": "getResTypes4Json",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取资源类型列表",
+          "notes": "获取资源类型列表",
+          "nickname": "getResTypes4Json",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "资源模板列表."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "资源模板列表."
+        }
+      ],
+      "path": "/res/client/getResTypes4Json"
+    },
+    {
+      "description": "getSubResInstances4Json",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "根据资源数ID和子资源类型ID获取子资源列表",
+          "notes": "根据资源数ID和子资源类型ID获取子资源列表",
+          "nickname": "getSubResInstances4Json",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "主资源树节点Id,可通过/res/client/getSubResTypes/{resTypeId}接口获得",
+              "name": "treeNodeId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "子资源类型ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得",
+              "name": "subResTypeId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "子资源列表."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "子资源列表."
+        }
+      ],
+      "path": "/res/client/getSubResInstances4Json/{treeNodeId}/{subResTypeId}"
+    },
+    {
+      "description": "getSubResTypes",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "根据资源类型ID获取子资源类型定义",
+          "notes": "根据资源类型的ID获取子资源类型定义",
+          "nickname": "getSubResTypes",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "资源类型ID,可通过/res/client/getResTypes4Json接口获得",
+              "name": "resTypeId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "子模板列表."
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "子模板列表."
+        }
+      ],
+      "path": "/res/client/getSubResTypes/{resTypeId}"
+    },
+    {
+      "description": "resTypeNumber",
+      "operations": [
+        {
+          "method": "GET",
+          "summary": "通过主资源类型ID获取资源数量",
+          "notes": "通过主资源类型ID获取资源数量",
+          "nickname": "resTypeNumber",
+          "produces": [
+            "application/json"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "资源类型ID,可通过/res/client/getResTypes4Json接口获得,填写“ALL”获取所以资源数量总和",
+              "name": "resTypeIds",
+              "paramType": "query",
+              "items": {
+                "type": "string"
+              },
+              "type": "array",
+              "uniqueItems": false,
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "资源数量"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "资源数量"
+        }
+      ],
+      "path": "/res/client/resTypeNumber"
+    }
+  ],
+  "basePath": "/adapter",
+  "consumes": [
+    "application/json"
+  ],
+  "models": {
+    "主资源列表.": {
+      "description": "",
+      "id": "主资源列表.",
+      "properties": {
+        "resInstances": {
+          "description": "ResTypeVO对象集合",
+          "items": {
+            "type": "ResTypeVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "ResTypeVO": {
+      "description": "",
+      "id": "ResTypeVO",
+      "properties": {
+        "name": {
+          "description": "资源类型名称",
+          "required": false,
+          "type": "string"
+        },
+        "id": {
+          "description": "资源类型ID",
+          "required": false,
+          "type": "string"
+        },
+        "resInstList": {
+          "description": "主资源List(其中对象为ResInstanceVO)",
+          "items": {
+            "type": "ResInstanceVO"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "treeNodeId": {
+          "description": "Tree Node Id 可通过/res/client/getResTypes4Json接口获得",
+          "required": false,
+          "type": "string"
+        },
+        "parentId": {
+          "description": "主资源类型ID",
+          "required": false,
+          "type": "string"
+        },
+        "subResTypeList": {
+          "description": "子资源类型List(其中对象为ResTypeVO)",
+          "items": {
+            "type": "ResTypeVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "ResInstanceVO": {
+      "description": "",
+      "id": "ResInstanceVO",
+      "properties": {
+        "name": {
+          "description": "资源名称",
+          "required": false,
+          "type": "string"
+        },
+        "main": {
+          "description": "是否主资源.",
+          "required": false,
+          "type": "boolean"
+        },
+        "ip": {
+          "description": "资源IP.",
+          "required": false,
+          "type": "string"
+        },
+        "instId": {
+          "description": "主资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "subInstId": {
+          "description": "子资源ID",
+          "required": false,
+          "type": "string"
+        },
+        "resTypeId": {
+          "description": "资源类型ID.",
+          "required": false,
+          "type": "string"
+        },
+        "subResInstVOList": {
+          "description": "子资源List.",
+          "items": {
+            "type": "ResInstanceVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "指标列表.": {
+      "description": "",
+      "id": "指标列表.",
+      "properties": {
+        "metricList": {
+          "description": "MetricVO对象集合",
+          "items": {
+            "type": "MetricVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "MetricVO": {
+      "description": "",
+      "id": "MetricVO",
+      "properties": {
+        "metricId": {
+          "description": "指标ID",
+          "required": false,
+          "type": "string"
+        },
+        "metricName": {
+          "description": "指标名称",
+          "required": false,
+          "type": "string"
+        },
+        "metricUnit": {
+          "description": "指标单位",
+          "required": false,
+          "type": "string"
+        },
+        "metricType": {
+          "description": "指标类型",
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "资源连接信息": {
+      "description": "",
+      "id": "资源连接信息",
+      "properties": {
+        "connectInfo": {
+          "description": "链接信息集合",
+          "items": {
+            "type": "链接信息"
+          },
+          "required": false,
+          "type": "array"
+        },
+        "resId": {
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "资源连接信息结果对象": {
+      "description": "",
+      "id": "资源连接信息结果对象",
+      "properties": {
+        "resConnections": {
+          "description": "资源链接信息集合",
+          "items": {
+            "type": "资源连接信息"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "链接信息": {
+      "description": "",
+      "id": "链接信息",
+      "properties": {
+        "propId": {
+          "required": false,
+          "type": "string"
+        },
+        "propValue": {
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "资源模板列表.": {
+      "description": "",
+      "id": "资源模板列表.",
+      "properties": {
+        "resTypes": {
+          "description": "ResTypeVO对象集合",
+          "items": {
+            "type": "ResTypeVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "子模板列表.": {
+      "description": "",
+      "id": "子模板列表.",
+      "properties": {
+        "subResTypes": {
+          "description": "ResTypeVO对象集合",
+          "items": {
+            "type": "ResTypeVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "子资源列表.": {
+      "description": "",
+      "id": "子资源列表.",
+      "properties": {
+        "subResInstances": {
+          "description": "ResInstanceVO对象集合",
+          "items": {
+            "type": "ResInstanceVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "ResNumPojo": {
+      "description": "",
+      "id": "ResNumPojo",
+      "properties": {
+        "resTypeId": {
+          "required": false,
+          "type": "string"
+        },
+        "resTypeName": {
+          "required": false,
+          "type": "string"
+        },
+        "num": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        }
+      }
+    },
+    "资源数量": {
+      "description": "",
+      "id": "资源数量",
+      "properties": {
+        "resNumPojo": {
+          "description": "resNumPojo对象集合",
+          "items": {
+            "type": "ResNumPojo"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    }
+  },
+  "produces": [
+    "application/json"
+  ],
+  "resourcePath": "/res/client",
+  "swaggerVersion": "1.2"
+}

+ 268 - 0
doc_json/room.json

@@ -0,0 +1,268 @@
+{
+  "apiVersion": "1.0",
+  "apis": [
+    {
+      "description": "getElementByRoomId",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取机房下元素.",
+          "notes": "获取机房下元素",
+          "nickname": "getElementByRoomId",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "defaultValue": "",
+              "description": "roomId",
+              "name": "roomId",
+              "paramType": "path",
+              "type": "string",
+              "required": true
+            },
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "机房元素数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "机房元素数据"
+        }
+      ],
+      "path": "/room/getElement/{roomId}"
+    },
+    {
+      "description": "getAllRoom",
+      "operations": [
+        {
+          "method": "POST",
+          "summary": "获取所有机房.",
+          "notes": "获取所有机房",
+          "nickname": "getAllRoom",
+          "produces": [
+            "*/*"
+          ],
+          "consumes": [
+            "application/json"
+          ],
+          "parameters": [
+            {
+              "allowMultiple": false,
+              "description": "_openCLIENT 默认值是RIIL",
+              "name": "_openCLIENT",
+              "paramAccess": "",
+              "paramType": "query",
+              "type": "string",
+              "required": true
+            }
+          ],
+          "responseMessages": [
+            {
+              "code": 200,
+              "message": null,
+              "responseModel": "机房列表数据"
+            },
+            {
+              "code": 500,
+              "message": "请求出错,返回JSON: {message:\"错误信息\"}"
+            },
+            {
+              "code": 502,
+              "message": "缺少ssoToken或ssoToken已过期"
+            }
+          ],
+          "deprecated": "false",
+          "type": "机房列表数据"
+        }
+      ],
+      "path": "/room/getRoom"
+    }
+  ],
+  "basePath": "/adapter",
+  "consumes": [
+    "application/json"
+  ],
+  "models": {
+    "获取登录信息": {
+      "description": "",
+      "id": "获取登录信息",
+      "properties": {
+        "_openCLIENT": {
+          "description": "_openCLIENT 默认值是RIIL",
+          "required": true,
+          "type": "string"
+        }
+      }
+    },
+    "机房元素数据": {
+      "description": "",
+      "id": "机房元素数据",
+      "properties": {
+        "elementPojoList": {
+          "description": "ElementVO 对象集合",
+          "items": {
+            "type": "RoomElementVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    },
+    "RoomElementVO": {
+      "description": "",
+      "id": "RoomElementVO",
+      "properties": {
+        "value": {
+          "required": false,
+          "type": "string"
+        },
+        "time": {
+          "required": false,
+          "format": "date-time",
+          "type": "string"
+        },
+        "roomId": {
+          "required": false,
+          "type": "string"
+        },
+        "isCross": {
+          "required": false,
+          "format": "byte",
+          "type": "string"
+        },
+        "elementName": {
+          "required": false,
+          "type": "string"
+        },
+        "metricId": {
+          "required": false,
+          "type": "string"
+        },
+        "metricName": {
+          "required": false,
+          "type": "string"
+        },
+        "unit": {
+          "required": false,
+          "type": "string"
+        },
+        "metricDefinitionId": {
+          "required": false,
+          "type": "string"
+        },
+        "elementDefinitionName": {
+          "required": false,
+          "type": "string"
+        },
+        "elementDisplayName": {
+          "required": false,
+          "type": "string"
+        },
+        "metricDefinitionName": {
+          "required": false,
+          "type": "string"
+        },
+        "dataType": {
+          "required": false,
+          "type": "string"
+        },
+        "elementDefinitionId": {
+          "required": false,
+          "type": "string"
+        }
+      }
+    },
+    "RoomVO": {
+      "description": "",
+      "id": "RoomVO",
+      "properties": {
+        "id": {
+          "required": false,
+          "type": "string"
+        },
+        "displayName": {
+          "required": false,
+          "type": "string"
+        },
+        "level": {
+          "required": false,
+          "type": "string"
+        },
+        "rackCount": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "resCount": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "capacity": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "usedCapacity": {
+          "required": false,
+          "format": "int32",
+          "type": "integer"
+        },
+        "usedCapacityRate": {
+          "required": false,
+          "format": "double",
+          "type": "number"
+        },
+        "area": {
+          "required": false,
+          "format": "double",
+          "type": "number"
+        }
+      }
+    },
+    "机房列表数据": {
+      "description": "",
+      "id": "机房列表数据",
+      "properties": {
+        "roomVOList": {
+          "description": "RoomVO 对象集合",
+          "items": {
+            "type": "RoomVO"
+          },
+          "required": false,
+          "type": "array"
+        }
+      }
+    }
+  },
+  "produces": [
+    "*/*"
+  ],
+  "resourcePath": "/room",
+  "swaggerVersion": "1.2"
+}

+ 81 - 0
main.py

@@ -0,0 +1,81 @@
+from common.ext_database import init_db
+from common.utils import save_json
+from common.logger import logger
+from util.riil_api import RiilApi
+
+
+class Main:
+    def __init__(self):
+        init_db()
+        self.api = RiilApi()
+
+    def get_events(self):
+        all_unaccepted_event_list = []
+        all_accepted_event_list = []
+        res_id_set = set()
+        # for i in range(1, 26):
+        #     unaccepted_event_list = self.api.query_event_list("unaccepted_event_view", pageIndex=i)
+        #     all_unaccepted_event_list.extend(unaccepted_event_list.get('eventList'))
+        # save_json(all_unaccepted_event_list, "result/event/unaccepted_event_list.json")
+
+        for i in range(1, 26):
+            unaccepted_event_list = self.api.query_event_list("accepted_event_view", pageIndex=i)
+            all_accepted_event_list.extend(unaccepted_event_list.get('eventList'))
+        save_json(all_accepted_event_list, "result/event/accepted_event_list.json")
+
+        # event_list = self.api.get_log_alarm_list()
+        # save_json(event_list, "result/event/event_list.json")
+
+        for i in all_accepted_event_list:
+            res_id_set.add(i.get('resId'))
+
+        all_res_list = []
+        for res_id in res_id_set:
+            res = self.api.get_res_instance_by_id(res_id)
+            all_res_list.append(res)
+        save_json(all_res_list, "result/res/res.json")
+
+    def get_resources(self):
+        # 获取主资源列表
+        page_index = 1
+        res_list = []
+        while True:
+            res_dict = self.api.get_res_list('00')
+            if page_index >= res_dict.get('totalPage'):
+                break
+            page_index += 1
+            res = res_dict.get('resList', [])
+            res_list.extend(res)
+        save_json(res_list, "result/res/res_list.json")
+
+
+    def get_ip_all_segment(self):
+        res = self.api.get_all_subnet_info()
+        save_json(res, "result/ip/ip_all_segment.json")
+
+        res_location = self.api.get_ipmac_location_list()
+
+
+    def get_room(self):
+        res = self.api.get_all_room()
+        save_json(res, "result/room/room_list.json")
+        event_from_room = []
+        for room in res.get("roomVOList", []):
+            room_id = room.get("id")
+            res = self.api.get_element_by_room_id(room_id)
+            event_from_room.extend(res.get('elementPojoList', []))
+
+        save_json(event_from_room, "result/room/event_from_room.json")
+
+
+    def run(self):
+        # 运行
+        self.get_events()
+        # self.get_resources()
+        # self.get_ip_all_segment()
+        # self.get_room()
+
+if __name__ == '__main__':
+    main = Main()
+    main.run()
+

BIN
util/__pycache__/event_client.cpython-39.pyc


BIN
util/__pycache__/ipam.cpython-39.pyc


BIN
util/__pycache__/login.cpython-39.pyc


BIN
util/__pycache__/res.cpython-39.pyc


BIN
util/__pycache__/res_client.cpython-39.pyc


BIN
util/__pycache__/riil_api.cpython-39.pyc


BIN
util/__pycache__/room.cpython-39.pyc


+ 49 - 0
util/event_client.py

@@ -0,0 +1,49 @@
+from common.utils import call_api, save_json
+
+class EventClientApi:
+    def accept_event(self, event_id):
+        """
+        受理事件。
+        """
+        endpoint = f"/event/client/accept/{event_id}"
+        params = {"_openCLIENT": "RIIL"}
+        return call_api(endpoint, method="GET", params=params)
+
+
+    def query_event_list(self, view_type, isPageing=0, pageIndex=1, pageSize=20):
+        """
+        查询事件列表。
+        """
+        params = {
+            "viewType": view_type,
+            "_openCLIENT": "RIIL",
+            "isPageing": isPageing,
+            "pageSize": pageSize,
+            "pageIndex": pageIndex
+        }
+        return call_api("/event/client/getEventList", method="POST", params=params)
+
+
+    def get_log_alarm_list(self):
+        """
+        获取日志事件列表。
+        """
+        params = {
+            # "isPageing": "1",
+            # "pageSize": "20",
+            # "pageIndex": "1",
+            "_openCLIENT": "RIIL"
+        }
+        return call_api("/event/client/getLogAlarmList", method="POST", params=params)
+
+
+# if __name__ == '__main__':
+#     api = EventClientApi()
+#     unaccepted_event_list = api.query_event_list("unaccepted_event_view")
+#     accepted_event_list = api.query_event_list("accepted_event_view")
+#     event_list = api.get_log_alarm_list()
+#
+#     save_json(unaccepted_event_list, "result/event/unaccepted_event_list.json")
+#     save_json(accepted_event_list, "result/event/accepted_event_list.json")
+#     save_json(event_list, "result/event/event_list.json")
+#

+ 98 - 0
util/ipam.py

@@ -0,0 +1,98 @@
+from common.setting import Config
+import requests
+
+from common.utils import call_api
+
+class IpamApi:
+    def apply_ip(self, segmentId, _openCLIENT="RIIL", mac=None, user=None, devIp=None, ifIdx=None, department=None):
+        """
+        申请IP接口
+        """
+        endpoint = "/ipam/applyIpmacList"
+        params = {
+            "segmentId": segmentId,
+            "mac": mac,
+            "user": user,
+            "devIp": devIp,
+            "ifIdx": ifIdx,
+            "department": department,
+            "_openCLIENT": _openCLIENT
+        }
+        # Remove any None values
+        params = {key: value for key, value in params.items() if value is not None}
+        return call_api(endpoint, method="POST", params=params)
+
+    def delete_by_ip(self, ip, _openCLIENT="RIIL"):
+        """
+        根据IP删除基准表记录
+        """
+        endpoint = "/ipam/daleteByIp"
+        params = {
+            "ip": ip,
+            "_openCLIENT": _openCLIENT
+        }
+        return call_api(endpoint, method="POST", params=params)
+
+    def get_all_subnet_info(self, _openCLIENT="RIIL"):
+        """
+        获取所有子网列表信息
+        """
+        endpoint = "/ipam/getIpmacAllSegmentList"
+        params = {
+            "_openCLIENT": _openCLIENT
+        }
+        return call_api(endpoint, method="POST", params=params)
+
+    def get_ipmac_list(self, ip, _openCLIENT="RIIL", devIp=None, tableFlag=None):
+        """
+        根据IP查询基准表IPMAC列表
+        """
+        endpoint = "/ipam/getIpmacList"
+        params = {
+            "ip": ip,
+            "devIp": devIp,
+            "tableFlag": tableFlag,
+            "_openCLIENT": _openCLIENT
+        }
+        # Remove any None values
+        params = {key: value for key, value in params.items() if value is not None}
+        return call_api(endpoint, method="POST", params=params)
+
+    def get_ipmac_location_list(self, _openCLIENT="RIIL"):
+        """
+        获取网段列表信息
+        """
+        endpoint = "/ipam/getIpmacLocationList"
+        params = {
+            "_openCLIENT": _openCLIENT
+        }
+        return call_api(endpoint, method="POST", params=params)
+
+    def get_ipmac_segment_list(self, locationId, _openCLIENT="RIIL"):
+        """
+        根据网段获取可用子网列表信息
+        """
+        endpoint = "/ipam/getIpmacSegmentList"
+        params = {
+            "locationId": locationId,
+            "_openCLIENT": _openCLIENT
+        }
+        return call_api(endpoint, method="POST", params=params)
+
+    def modify_ipmac_info(self, ip, _openCLIENT="RIIL", mac=None, user=None, devIp=None, ifIdx=None, department=None):
+        """
+        修改IP信息
+        """
+        endpoint = "/ipam/modifyIpmacInfo"
+        params = {
+            "ip": ip,
+            "mac": mac,
+            "user": user,
+            "devIp": devIp,
+            "ifIdx": ifIdx,
+            "department": department,
+            "_openCLIENT": _openCLIENT
+        }
+        # Remove any None values
+        params = {key: value for key, value in params.items() if value is not None}
+        return call_api(endpoint, method="POST", params=params)

+ 46 - 0
util/login.py

@@ -0,0 +1,46 @@
+import requests
+from typing import Dict, Any
+from common.setting import Config
+
+class LoginApi:
+    def __init__(self):
+        self.token = None
+
+    def login_bmc(self, username: str, password: str, client: str = "RIIL") -> Dict[str, Any]:
+        """
+        登录BMC接口方法。
+
+        :param base_url: API的基地址,例如"http://example.com"
+        :param username: 用户名
+        :param password: 密码
+        :param client: 调用接口的客户端,默认为"RIIL"
+        :return: 包含响应数据的字典
+        :raises: 请求错误或响应异常
+        """
+        url = f"{Config.BASE_URL}/login"
+
+        # 构造请求参数
+        params = {
+            "username": username,
+            "password": password,
+            "_openCLIENT": client
+        }
+
+        try:
+            # 发送GET请求
+            response = requests.get(url, params=params)
+
+            # 处理响应
+            if response.status_code == 200:
+                return {
+                    "success": True,
+                    "data": response.json(),
+                    "cookies": response.cookies.get_dict()
+                }
+            return {
+                "success": False,
+                "data": response.json(),
+                "cookies": None
+            }
+        except requests.RequestException as e:
+            raise RuntimeError(f"请求失败: {str(e)}")

+ 81 - 0
util/res.py

@@ -0,0 +1,81 @@
+from common.utils import call_api
+
+
+class ResApi:
+    def get_res_instance_list(self, res_type=None):
+        """
+        获取所有资源及子资源信息。
+
+        :param res_type: 资源类型ID(可通过 /res/client/getResTypes4Json 接口获得),默认为 None。
+        :return: API 返回的资源列表数据。
+        """
+        params = {"resType": res_type}
+        return call_api("/res/getResInstanceList", method="POST", params=params)
+
+    def get_res_instance_by_id(self, res_id):
+        """
+        通过主资源ID获取单个主资源及其所有子资源。
+
+        :param res_id: 主资源ID(必填,可通过 /res/getResInstanceList 接口获得)。
+        :return: API 返回的主资源及其子资源详情数据。
+        """
+        params = {"resId": res_id}
+        return call_api("/res/getResInstanceById", method="POST", params=params)
+
+    def get_res_metric_list(self, res_id, metric_type=None):
+        """
+        获取主资源的指标详细信息。
+
+        :param res_id: 主资源ID(必填,可通过 /res/getResInstanceList 接口获得)。
+        :param metric_type: 指标类型,默认为 None,可选值为:
+            - AVAIL:可用性指标
+            - CONF:配置指标
+            - INFO:信息指标
+            - PERF:性能指标
+        :return: API 返回的主资源指标详细信息。
+        """
+        params = {"resId": res_id, "metricType": metric_type}
+        return call_api("/res/getResMetricList", method="POST", params=params)
+
+    def get_sub_res_metric_list(self, sub_res_id, metric_type=None):
+        """
+        获取子资源的指标详细信息。
+
+        :param sub_res_id: 子资源ID(必填,可通过 /res/getResInstanceList 接口获得)。
+        :param metric_type: 指标类型,默认为 None,可选值为:
+            - AVAIL:可用性指标
+            - CONF:配置指标
+            - INFO:信息指标
+            - PERF:性能指标
+        :return: API 返回的子资源指标详细信息。
+        """
+        params = {"subResId": sub_res_id, "metricType": metric_type}
+        return call_api("/res/getSubResMetricList", method="POST", params=params)
+
+    def get_res_list(self, tree_node_id, domain_id=None, state=None, page_index=1, page_size=20, sort_column=None, sort_type=None) -> dict:
+        """
+        获取主资源列表。
+
+        :param tree_node_id: 资源树节点ID(必填,00 表示所有资源)。
+        :param domain_id: 域ID,可通过 /login 接口获得,默认为 None。
+        :param state: 可用性状态,默认为 None,可选值为:
+            - 1:可用
+            - -1:不可用
+            - -2:未知
+            - all:全部
+        :param page_index: 页数,默认为 1。
+        :param page_size: 每页条数,默认为 20。
+        :param sort_column: 排序字段,仅支持单字段排序,默认为 None。
+        :param sort_type: 排序方式(ASC/DESC),需与 sort_column 同时设置,默认为 None。
+        :return: API 返回的主资源列表数据。
+        """
+        params = {
+            "treeNodeId": tree_node_id,
+            "domainId": domain_id,
+            "state": state,
+            "pageIndex": page_index,
+            "pageSize": page_size,
+            "sortColumn": sort_column,
+            "sortType": sort_type,
+        }
+        return call_api("/res/list", method="GET", params=params)

+ 76 - 0
util/res_client.py

@@ -0,0 +1,76 @@
+from typing import Any, Dict, List
+
+from common.utils import call_api
+
+
+class ResClientApi:
+    def get_instances(self, tree_node_id: str, res_type_id: str) -> Dict[str, Any]:
+        """
+        根据资源树节点ID和资源类型ID获取主资源列表。
+
+        :param tree_node_id: 资源树节点ID, 可通过/res/client/getResTypes4Json接口获得
+        :param res_type_id: 资源类型ID, 可通过/res/client/getResTypes4Json接口获得
+        :return: 主资源列表
+        """
+        url = f"/res/client/getInstances/{tree_node_id}/{res_type_id}"
+        return call_api(url, method="GET")
+
+    def get_metrics(self, res_type_id: str) -> Dict[str, Any]:
+        """
+        根据资源类型ID获取该资源类型下的所有性能指标定义。
+
+        :param res_type_id: 资源类型ID,可通过/res/client/getResTypes4Json接口获得
+        :return: 指标列表
+        """
+        url = f"/res/client/getMetrics/{res_type_id}"
+        return call_api(url, method="GET")
+
+    def get_res_protocols(self, res_ids: str) -> Dict[str, Any]:
+        """
+        根据资源ID列表获取资源的链接信息。
+
+        :param res_ids: 资源ID,多个ID用逗号隔开
+        :return: 资源连接信息结果对象
+        """
+        url = f"/res/client/getResProtocols"
+        params = {"resIds": res_ids}
+        return call_api(url, method="POST", params=params)
+
+    def get_res_types(self) -> Dict[str, Any]:
+        """
+        获取资源类型列表。
+
+        :return: 资源模板列表
+        """
+        return call_api("/res/client/getResTypes4Json", method="POST")
+
+    def get_sub_res_instances(self, tree_node_id: str, sub_res_type_id: str) -> Dict[str, Any]:
+        """
+        根据资源树节点ID和子资源类型ID获取子资源列表。
+
+        :param tree_node_id: 主资源树节点ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得
+        :param sub_res_type_id: 子资源类型ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得
+        :return: 子资源列表
+        """
+        url = f"/res/client/getSubResInstances4Json/{tree_node_id}/{sub_res_type_id}"
+        return call_api(url, method="GET")
+
+    def get_sub_res_types(self, res_type_id: str) -> Dict[str, Any]:
+        """
+        根据资源类型ID获取子资源类型定义。
+
+        :param res_type_id: 资源类型ID,可通过/res/client/getResTypes4Json接口获得
+        :return: 子模板列表
+        """
+        url = f"/res/client/getSubResTypes/{res_type_id}"
+        return call_api(url, method="GET")
+
+    def get_res_type_number(self, res_type_ids: List[str]) -> Dict[str, Any]:
+        """
+        通过主资源类型ID获取资源数量。
+
+        :param res_type_ids: 资源类型ID列表,可通过/res/client/getResTypes4Json接口获得;填写"ALL"获取所有资源数量总和
+        :return: 资源数量
+        """
+        params = {"resTypeIds": ",".join(res_type_ids)}
+        return call_api("/res/client/resTypeNumber", method="GET", params=params)

+ 23 - 0
util/riil_api.py

@@ -0,0 +1,23 @@
+from util.event_client import EventClientApi
+from util.ipam import IpamApi
+from util.login import LoginApi
+from util.res import ResApi
+from util.res_client import ResClientApi
+from util.room import RoomApi
+
+
+class RiilApi(
+    LoginApi,
+    EventClientApi,
+    IpamApi,
+    ResClientApi,
+    RoomApi,
+    ResApi
+):
+    pass
+
+
+
+if __name__ == '__main__':
+    api = RiilApi()
+    api.get_all_room()

+ 31 - 0
util/room.py

@@ -0,0 +1,31 @@
+from common.setting import Config
+import requests
+
+from common.utils import call_api
+
+
+class RoomApi:
+    def get_element_by_room_id(self, room_id, open_client="RIIL"):
+        """
+        获取机房下的元素。
+
+        :param room_id: 机房ID
+        :param open_client: 客户端标识,默认为"RIIL"
+        :return: 机房元素数据的JSON响应
+        """
+        endpoint = f"/room/getElement/{room_id}"
+        params = {"_openCLIENT": open_client}
+        return call_api(endpoint, method="POST", params=params)
+
+
+    def get_all_room(self, open_client="RIIL"):
+        """
+        获取所有机房的列表。
+
+        :param open_client: 客户端标识,默认为"RIIL"
+        :return: 机房列表数据的JSON响应
+        """
+        endpoint = "/room/getRoom"
+        params = {"_openCLIENT": open_client}
+        return call_api(endpoint, method="POST", params=params)
+