You need to enable JavaScript to run this app.
导航

查询上级视图列表

最近更新时间2022.11.01 17:47:38

首次发布时间2022.11.01 17:47:38

查询已创建的上级视图列表。

请求方式

使用 GET 方式发起请求。

请求参数

下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考「公共参数」。

字段
位置
类型
必填
说明

Action

Query

String

公共参数,OpenAPI 接口名称

ListStructuredViewCascadePlatform

Version

Query

String

公共参数,OpenAPI 接口版本

2021-01-01

PlatformName

Query

String

筛选条件,上级视图名称

支持模糊搜索

Order

Query

Integer

查询结果排序方式

可选枚举值:

  • 1(正序)

  • -1(倒序,默认)

返回结果

返回参数说明

通用返回参数,请参考 ResponseMetadata 结构体说明

Result 字段包含以下参数:

字段
类型
说明
PlatformListArray of objects查询到的上级视图列表,参考以下 List<PlatformList> 数据结构说明

List<PlatformList> 数据结构说明

字段
类型
说明
IDString上级视图 ID
PlatformNameString上级视图名称
PlatformCodeString上级视图接入编码
PlatformIPString上级视图 IP
PlatformPortInt端口号
DescriptionString描述
UsernameString用户名
PasswordString密码
CreateTimestampInt创建时间,Unix 时间戳,单位:秒
UpdateTimestampInt更新时间,Unix 时间戳,单位:秒

Status

String

状态:

  • 注册中

  • 启用

  • 停用

示例

请求示例

GET https://open.volcengineapi.com?Action=ListStructuredViewCascadePlatform
&Version=2021-01-01
&PlatformName=RECEIVE_MESSAGE
&<公共请求参数>

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20221024153658010225082199071AD97B",
        "Action": "ListStructuredViewCascadePlatform",
        "Version": "2021-01-01",
        "Service": "aiotvideo",
        "Region": "cn-north-1"
    },
    "Result": {
        "PageNumber": 1,
        "PageSize": 20,
        "TotalCount": 2,
        "PlatformList": [
            {
                "ID": "cp_i1lg6jw4uuxxxxxx",
                "PlatformName": "sectest1'/**/and/**/DBMS_PIPE.RECEIVE_MESSAGE('s',2)='s",
                "PlatformCode": "82895684005030xxxxxx",
                "PlatformIP": "123.xxx.xxx.xxx",
                "PlatformPort": 20020,
                "Description": "aaa",
                "Username": "82895684005030xxxxxx",
                "Password": "C42D5a0c-7ccA-4676-a752-DffBxxxxxxxx",
                "CreateTimestamp": 1664457981,
                "UpdateTimestamp": 0,
                "Status": "注册中"
            },
            {
                "ID": "cp_k8kzxxxxxx",
                "PlatformName": "sectest1'/**/and/**/DBMS_PIPE.RECEIVE_MESSAGE('v',0)='v",
                "PlatformCode": "82895684005030xxxxxx",
                "PlatformIP": "123.xxx.xxx.xxx",
                "PlatformPort": 20020,
                "Description": "aaa",
                "Username": "82895684005030xxxxxx",
                "Password": "C42D5a0c-7ccA-4676-a752-Dfxxxxxx",
                "CreateTimestamp": 1664457981,
                "UpdateTimestamp": 0,
                "Status": "注册中"
            }
        ]
    }
}