更新时间:2025-05-09 GMT+08:00
分享

获取审批工单列表

功能介绍

获取审批工单列表

调用方法

请参见如何调用API

URI

GET /v1/{project_id}/security/openapi/permission-approve/approvals

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

项目ID,获取方法请参见项目ID和账号ID

表2 Query参数

参数

是否必选

参数类型

描述

limit

Integer

每页显示的条目数量。

offset

Integer

偏移量,表示从此偏移量开始查询,该值大于等于0。

proposer_name

String

申请人名称

approval_id

String

工单id

workspace_id

String

工作空间id

status_list

Array of integers

工单状态

application_start_time

Long

申请开始时间

application_end_time

Long

申请结束时间

order_by_desc

Boolean

升降序

order_by

String

排序参数, START_TIME,END_TIME

请求参数

表3 请求Header参数

参数

是否必选

参数类型

描述

workspace

String

工作空间ID,获取方法请参见实例ID和工作空间ID

X-Auth-Token

String

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

响应参数

状态码:200

表4 响应Body参数

参数

参数类型

描述

approvals

Array of PermissionApprovalOpenapiDTO objects

工单列表

total

Long

规则组总数

表5 PermissionApprovalOpenapiDTO

参数

参数类型

描述

approval_dispatch_error_msg

String

审批外发失败消息

approval_dispatch_status

String

审批外发状态,0表示成功,1表示失败,null表示非SMN节点

approval_type

String

申请类型, DATA_PERMISSION

approve_reason

String

申请原因

current_node_id

String

当前审批节点id

current_node_name

String

当前审批节点审批人

current_node_type

String

当前审批节点审批人类型

detail

PermissionApprovalDetailDTO object

审批详细信息

end_time

Long

工单结束时间

expire_time

Long

到期时间

id

String

工单id

instance_id

String

实例id

permission_set_id

String

审批人所在权限集id

project_id

String

项目id

proposer_id

String

申请人id

proposer_name

String

申请人名称

proposer_workspace_id

String

用户申请权限时所在工作空间id

reason

String

拒绝理由

start_time

Long

工单开始时间

status

String

工单状态, WAITING_APPROVE,APPROVED,REJECT,REVOKE

workspace_id

String

工作空间id

workspace_name

String

工作空间名称

表6 PermissionApprovalDetailDTO

参数

参数类型

描述

cluster_id

String

集群id

cluster_name

String

集群名称

datasource_type

String

数据源类型

  • HIVE数据源

  • DWS数据源

  • DLI数据源

expire_time

Long

超时时间

permissions

Array of permissions objects

申请权限详情列表

proposers

Array of proposers objects

申请人详情列表

表7 permissions

参数

参数类型

描述

column_name

String

列名称

database_name

String

库名称

permission_action

Array of strings

权限

permission_set_id

String

申请权限所在的空间权限集

schema_name

String

schema名称

secrecy_level_id

String

密级

table_name

String

表名

表8 proposers

参数

参数类型

描述

id

String

申请人id

name

String

申请人名称

type

String

申请人类型,USER,USER_GROUP,ROLE,WORKSPACE_ACCOUNT

状态码:400

表9 响应Body参数

参数

参数类型

描述

error_code

String

错误码。

error_msg

String

错误描述。

请求示例

/v1/{project_id}/security/openapi/permission-approve/approvals

响应示例

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
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.dataartsstudio.v1.region.DataArtsStudioRegion;
import com.huaweicloud.sdk.dataartsstudio.v1.*;
import com.huaweicloud.sdk.dataartsstudio.v1.model.*;


public class ListSecurityApprovalsSolution {

    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);

        DataArtsStudioClient client = DataArtsStudioClient.newBuilder()
                .withCredential(auth)
                .withRegion(DataArtsStudioRegion.valueOf("<YOUR REGION>"))
                .build();
        ListSecurityApprovalsRequest request = new ListSecurityApprovalsRequest();
        try {
            ListSecurityApprovalsResponse response = client.listSecurityApprovals(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
# coding: utf-8

import os
from huaweicloudsdkcore.auth.credentials import BasicCredentials
from huaweicloudsdkdataartsstudio.v1.region.dataartsstudio_region import DataArtsStudioRegion
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdkdataartsstudio.v1 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 = DataArtsStudioClient.new_builder() \
        .with_credentials(credentials) \
        .with_region(DataArtsStudioRegion.value_of("<YOUR REGION>")) \
        .build()

    try:
        request = ListSecurityApprovalsRequest()
        response = client.list_security_approvals(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
package main

import (
	"fmt"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
    dataartsstudio "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/dataartsstudio/v1"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/dataartsstudio/v1/model"
    region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/dataartsstudio/v1/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 := dataartsstudio.NewDataArtsStudioClient(
        dataartsstudio.DataArtsStudioClientBuilder().
            WithRegion(region.ValueOf("<YOUR REGION>")).
            WithCredential(auth).
            Build())

    request := &model.ListSecurityApprovalsRequest{}
	response, err := client.ListSecurityApprovals(request)
	if err == nil {
        fmt.Printf("%+v\n", response)
    } else {
        fmt.Println(err)
    }
}

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

状态码

状态码

描述

200

ok

400

Bad Request

相关文档