文档首页/ 安全云脑 SecMaster/ API参考/ 安全云脑 API V2/ 页面布局/ 展示字段详情 - ShowLayoutFieldInfo
更新时间:2026-01-29 GMT+08:00
分享

展示字段详情 - ShowLayoutFieldInfo

功能介绍

查询布局字段详情

调用方法

请参见如何调用API

授权信息

账号具备所有API的调用权限,如果使用账号下的IAM用户调用当前API,该IAM用户需具备调用API所需的权限,具体权限要求请参见权限和授权项

URI

GET /v2/{project_id}/workspaces/{workspace_id}/soc/layouts/fields/{field_id}

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

参数解释:

项目ID,用于明确项目归属,配置后可通过该ID查询项目下资产,可以通过调用API获取,也可以从控制台获取。获取项目ID

约束限制:

不涉及

取值范围:

不涉及

默认取值:

不涉及

workspace_id

String

参数解释:

工作空间id。

约束限制:

不涉及

取值范围:

不涉及

默认取值:

不涉及

field_id

String

字段ID

表2 Query参数

参数

是否必选

参数类型

描述

layout_id

String

布局id

请求参数

表3 请求Header参数

参数

是否必选

参数类型

描述

X-Auth-Token

String

参数解释:

用户Token,通过调用IAM服务获取用户Token接口获取(响应消息头中X-Subject-Token的值)。获取用户Token

约束限制:

不涉及

取值范围:

不涉及

默认取值:

不涉及

content-type

String

参数解释:

内容类型

  • application/json;charset=UTF-8 普通API请求的类型

约束限制:

不涉及

取值范围:

  • application/json;charset=UTF-8

默认取值:

不涉及

响应参数

状态码:200

表4 响应Header参数

参数

参数类型

描述

X-request-id

String

请求ID,格式为:request_uuid-timestamp-hostname

表5 响应Body参数

参数

参数类型

描述

id

String

字段ID

cloud_pack_id

String

订阅包id

cloud_pack_name

String

订阅包名称

dataclass_id

String

数据类ID

cloud_pack_version

String

订阅包版本

field_key

String

字段key

name

String

字段名称

description

String

字段描述

en_description

String

字段英文描述

default_value

String

默认值

en_default_value

String

字段英文默认值

field_type

String

字段类型,如shorttext,radio,grid等

extra_json

String

附加json

field_tooltip

String

工具提示

en_field_tooltip

String

英文工具提示

json_schema

String

json模式

is_built_in

Boolean

是否内置,true内置,false非内置

read_only

Boolean

只读模式,true只读,false非只读

required

Boolean

是否必填,true必填,false非必填

searchable

Boolean

可搜索,true可搜索,false非可搜索

visible

Boolean

可见,true可见,false非可见

maintainable

Boolean

可维护,true可维护,false非可维护

editable

Boolean

可编辑,true可编辑,false非可编辑

creatable

Boolean

可创建,true可创建,false非可创建

creator_id

String

创建者ID

creator_name

String

创建者名称

modifier_id

String

修改者ID

modifier_name

String

修改者名称

create_time

String

创建时间

update_time

String

更新时间

wizard_id

String

字段绑定的页面id

aopworkflow_id

String

字段绑定的流程id

aopworkflow_version_id

String

字段绑定的流程版本id

playbook_id

String

字段绑定的剧本id

playbook_version_id

String

字段绑定的剧本版本id

boa_version

String

BOA底座版本

version

String

安全云脑版本

状态码:400

表6 响应Header参数

参数

参数类型

描述

X-request-id

String

请求ID,格式为:request_uuid-timestamp-hostname

表7 响应Body参数

参数

参数类型

描述

code

String

参数解释:

错误码

取值范围:

不涉及

message

String

参数解释:

错误描述

取值范围:

不涉及

请求示例

响应示例

状态码:200

请求成功

{
  "boa_version" : "v3",
  "creatable" : false,
  "create_time" : "2025-12-20T11:12:30Z+0800",
  "creator_id" : "7cdfd39950744fc1aff40555a94310f4",
  "creator_name" : "SCC_InfrastructureSecurityService",
  "default_value" : "test",
  "editable" : false,
  "extra_json" : "eyJuYW1lIjoi5qCRIiwiZmllbGRfa2V5IjoidHJlZSIsImVkaXRhYmxlSW5DdXJTcGFjZSI6ZmFsc2V9",
  "field_key" : "tree",
  "id" : "91c6674c-3e6e-422d-841e-036a0890801e",
  "is_built_in" : false,
  "maintainable" : false,
  "name" : "test_yRn2n",
  "required" : false,
  "searchable" : false,
  "update_time" : null,
  "visible" : false
}

SDK代码示例

SDK代码示例如下。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.huaweicloud.sdk.test;

import com.huaweicloud.sdk.core.auth.ICredential;
import com.huaweicloud.sdk.core.auth.BasicCredentials;
import com.huaweicloud.sdk.core.exception.ConnectionException;
import com.huaweicloud.sdk.core.exception.RequestTimeoutException;
import com.huaweicloud.sdk.core.exception.ServiceResponseException;
import com.huaweicloud.sdk.secmaster.v2.region.SecMasterRegion;
import com.huaweicloud.sdk.secmaster.v2.*;
import com.huaweicloud.sdk.secmaster.v2.model.*;


public class ShowLayoutFieldInfoSolution {

    public static void main(String[] args) {
        // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
        String ak = System.getenv("CLOUD_SDK_AK");
        String sk = System.getenv("CLOUD_SDK_SK");
        String projectId = "{project_id}";

        ICredential auth = new BasicCredentials()
                .withProjectId(projectId)
                .withAk(ak)
                .withSk(sk);

        SecMasterClient client = SecMasterClient.newBuilder()
                .withCredential(auth)
                .withRegion(SecMasterRegion.valueOf("<YOUR REGION>"))
                .build();
        ShowLayoutFieldInfoRequest request = new ShowLayoutFieldInfoRequest();
        request.withWorkspaceId("{workspace_id}");
        request.withFieldId("{field_id}");
        try {
            ShowLayoutFieldInfoResponse response = client.showLayoutFieldInfo(request);
            System.out.println(response.toString());
        } catch (ConnectionException e) {
            e.printStackTrace();
        } catch (RequestTimeoutException e) {
            e.printStackTrace();
        } catch (ServiceResponseException e) {
            e.printStackTrace();
            System.out.println(e.getHttpStatusCode());
            System.out.println(e.getRequestId());
            System.out.println(e.getErrorCode());
            System.out.println(e.getErrorMsg());
        }
    }
}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# coding: utf-8

import os
from huaweicloudsdkcore.auth.credentials import BasicCredentials
from huaweicloudsdksecmaster.v2.region.secmaster_region import SecMasterRegion
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdksecmaster.v2 import *

if __name__ == "__main__":
    # The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    # In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
    ak = os.environ["CLOUD_SDK_AK"]
    sk = os.environ["CLOUD_SDK_SK"]
    projectId = "{project_id}"

    credentials = BasicCredentials(ak, sk, projectId)

    client = SecMasterClient.new_builder() \
        .with_credentials(credentials) \
        .with_region(SecMasterRegion.value_of("<YOUR REGION>")) \
        .build()

    try:
        request = ShowLayoutFieldInfoRequest()
        request.workspace_id = "{workspace_id}"
        request.field_id = "{field_id}"
        response = client.show_layout_field_info(request)
        print(response)
    except exceptions.ClientRequestException as e:
        print(e.status_code)
        print(e.request_id)
        print(e.error_code)
        print(e.error_msg)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main

import (
	"fmt"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
    secmaster "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/secmaster/v2"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/secmaster/v2/model"
    region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/secmaster/v2/region"
)

func main() {
    // The AK and SK used for authentication are hard-coded or stored in plaintext, which has great security risks. It is recommended that the AK and SK be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    // In this example, AK and SK are stored in environment variables for authentication. Before running this example, set environment variables CLOUD_SDK_AK and CLOUD_SDK_SK in the local environment
    ak := os.Getenv("CLOUD_SDK_AK")
    sk := os.Getenv("CLOUD_SDK_SK")
    projectId := "{project_id}"

    auth := basic.NewCredentialsBuilder().
        WithAk(ak).
        WithSk(sk).
        WithProjectId(projectId).
        Build()

    client := secmaster.NewSecMasterClient(
        secmaster.SecMasterClientBuilder().
            WithRegion(region.ValueOf("<YOUR REGION>")).
            WithCredential(auth).
            Build())

    request := &model.ShowLayoutFieldInfoRequest{}
	request.WorkspaceId = "{workspace_id}"
	request.FieldId = "{field_id}"
	response, err := client.ShowLayoutFieldInfo(request)
	if err == nil {
        fmt.Printf("%+v\n", response)
    } else {
        fmt.Println(err)
    }
}

更多编程语言的SDK代码示例,请参见API Explorer的代码示例页签,可生成自动对应的SDK代码示例。

状态码

状态码

描述

200

请求成功

400

请求失败

错误码

请参见错误码

相关文档