GET https://[endpoint].ctapi.ctyun.cn/v1/api/getAuthInfo
URI参数说明:
参数名 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|
prodInstId | String | 是 | 实例ID |
返回参数说明:
参数名 | 参数类型 | 参数描述 |
---|---|---|
returnObj | Object | 返回对象 |
returnObj.id | Integer | id |
returnObj.ip | String | ip |
returnObj.port | Integer | 端口 |
returnObj.dbName | String | 数据库名 |
returnObj.accessAccount | String | mysql用户名 |
returnObj.authKeyCryType | String | 认证密码类型,plain和sha256 |
returnObj.prodInstId | String | 实例ID |
returnObj.enableStatus | Integer | enableStatus 0-停用 1-启用 |
returnObj.updateTime | String | 更新时间 |
返回示例:成功
{"returnObj": [{"id": 2,"ip": "127.0.0.1","port": 3323,"dbName": "test","accessAccount": "test","authKeyCryType": "plain","salt": null,"tenantId": 3127,"prodInstId": "7661f2c0afa849258b4e9f4038142f9d","enableStatus": 0,"updateTime": "2022-08-23 10:41:02"}]"message": "success","statusCode": "800"} |
---|
返回示例:失败
{"returnObj": null,"message": "error","statusCode": 900} |
---|