You need to enable JavaScript to run this app.
导航
【旧版】查询机型参数规则列表 ListPropertyRule
最近更新时间:2025.10.30 14:41:35首次发布时间:2024.09.23 20:27:38
复制全文
我的收藏
有用
有用
无用
无用

查询已创建的机型参数规则列表。

请求说明

  • 请求方式:GET
  • 请求地址:https://open.volcengineapi.com?Action=ListPropertyRule&Version=2023-10-30

请求参数

下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数

Query

参数类型是否必选示例值描述
ActionStringListPropertyRule接口名称。当前 API 的名称为 ListPropertyRule
VersionString2023-10-30接口版本。当前 API 的版本为 2023-10-30
RuleNameStringOppo1机型参数规则名称,账户下规则名称唯一

Offset

Long

0

查询结果的起始位置,用于指定从哪一条记录开始返回数据。例如,若 Offset 为 10,则表示从第 11 条记录开始。默认值为 0。

说明

可与 Count 配合使用。假设当前数据集的记录总数为 200 条,如需查询第 101~150 条数据,需设置 Offset 为 100,Count 为 50。

Count

Long

10

单次查询返回的最大记录数,用于控制每次查询返回的数据量。例如,若 Count 为 100,则表示在查询数据时,系统将每次返回 100 条记录。

说明

可与 Offset 配合使用。假设当前数据集的记录总数为 200 条,如需查询第 101~150 条数据,需设置 Offset 为 100,Count 为 50。

返回参数

下表仅列出本接口特有的返回参数。更多信息请参见返回结构

参数类型示例值描述
RowArray of PropertyRule-查询到的参数规则信息。参看 PropertyRule定义。
TotalLong1查询结果总数。

PropertyRule

参数类型示例值描述
RuleNameStringOppo1规则名称。
OverlayPropertyArray of SystemPropertyResult-实例 System Properties 系统属性。
OverlaySettingsArray of SettingsResult-实例 Settings 属性。
OverlayPersistPropertyArray of SystemPropertyResult-实例初始化系统属性。

SystemPropertyResult

参数类型示例值描述
SystemPropertyNameStringro.product.name属性名称。
SystemPropertyValueStringLYA_AL00属性值。
SystemPropertyValueTypeStringstring属性值数据类型。

SettingsResult

参数类型示例值描述
SettingsNameStringlocale_language属性名称。
SettingsTypeStringglobal设置类型。
SettingsValueStringzh-CN属性值。
SettingsValueTypeStringstring属性值数据类型。

请求示例

GET https://open.volcengineapi.com?Action=ListPropertyRule&Version=2023-10-30&RuleName=Oppo1&Offset=0&Count=10

返回示例

{
    "ResponseMetadata": {
        "Action": "ListPropertyRule",
        "Region": "cn-north-1",
        "Service": "ACEP",
        "Version": "2023-10-30",
        "RequestId": "20230604110420****100232280022D31"
    },
    "Result": {
        "Row": [
            {
                "RuleName": "Oppo1",
                "OverlayProperty": [
                    {
                        "SystemPropertyName": "ro.product.name",
                        "SystemPropertyValue": "LYA_AL00",
                        "SystemPropertyValueType": "string"
                    }
                ],
                "OverlaySettings": [
                    {
                        "SettingsName": "locale_language",
                        "SettingsType": "global",
                        "SettingsValue": "zh-CN",
                        "SettingsValueType": "string"
                    }
                ],
                "OverlayPersistProperty": [
                    {
                        "SystemPropertyName": "ro.product.name",
                        "SystemPropertyValue": "LYA_AL00",
                        "SystemPropertyValueType": "string"
                    }
                ]
            }
        ],
        "Total": 1
    }
}

错误码

您可访问公共错误码,获取更多错误码信息。