kb-cloud-client-typescript 2.3.0-alpha.227 → 2.3.0-alpha.229
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adminapi/api.d.ts +1 -0
- package/dist/adminapi/api.d.ts.map +1 -1
- package/dist/adminapi/api.js +1 -0
- package/dist/adminapi/api.js.map +1 -1
- package/dist/adminapi/apis/cluster-loki-log-api.d.ts +885 -0
- package/dist/adminapi/apis/cluster-loki-log-api.d.ts.map +1 -0
- package/dist/adminapi/apis/cluster-loki-log-api.js +853 -0
- package/dist/adminapi/apis/cluster-loki-log-api.js.map +1 -0
- package/dist/adminapi/apis/shared-api.d.ts +848 -15
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +845 -56
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/environment.d.ts +7 -0
- package/dist/adminapi/models/environment.d.ts.map +1 -1
- package/dist/adminapi/models/index.d.ts +1 -0
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +1 -0
- package/dist/adminapi/models/index.js.map +1 -1
- package/dist/adminapi/models/log-backend-type.d.ts +22 -0
- package/dist/adminapi/models/log-backend-type.d.ts.map +1 -0
- package/dist/adminapi/models/log-backend-type.js +26 -0
- package/dist/adminapi/models/log-backend-type.js.map +1 -0
- package/dist/openapi/api.d.ts +1 -0
- package/dist/openapi/api.d.ts.map +1 -1
- package/dist/openapi/api.js +1 -0
- package/dist/openapi/api.js.map +1 -1
- package/dist/openapi/apis/cluster-loki-log-api.d.ts +885 -0
- package/dist/openapi/apis/cluster-loki-log-api.d.ts.map +1 -0
- package/dist/openapi/apis/cluster-loki-log-api.js +853 -0
- package/dist/openapi/apis/cluster-loki-log-api.js.map +1 -0
- package/dist/openapi/apis/shared-api.d.ts +844 -11
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +845 -56
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/environment.d.ts +7 -0
- package/dist/openapi/models/environment.d.ts.map +1 -1
- package/dist/openapi/models/index.d.ts +1 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +1 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/dist/openapi/models/log-backend-type.d.ts +22 -0
- package/dist/openapi/models/log-backend-type.d.ts.map +1 -0
- package/dist/openapi/models/log-backend-type.js +26 -0
- package/dist/openapi/models/log-backend-type.js.map +1 -0
- package/package.json +1 -1
- package/src/adminapi/.openapi-generator/FILES +2 -0
- package/src/adminapi/api.ts +1 -0
- package/src/adminapi/apis/cluster-loki-log-api.ts +1525 -0
- package/src/adminapi/apis/shared-api.ts +1620 -173
- package/src/adminapi/models/environment.ts +9 -0
- package/src/adminapi/models/index.ts +1 -0
- package/src/adminapi/models/log-backend-type.ts +31 -0
- package/src/adminapi.yaml +309 -0
- package/src/openapi/.openapi-generator/FILES +2 -0
- package/src/openapi/api.ts +1 -0
- package/src/openapi/apis/cluster-loki-log-api.ts +1525 -0
- package/src/openapi/apis/shared-api.ts +1620 -173
- package/src/openapi/models/environment.ts +9 -0
- package/src/openapi/models/index.ts +1 -0
- package/src/openapi/models/log-backend-type.ts +31 -0
- package/src/openapi.yaml +309 -0
|
@@ -30,6 +30,9 @@ import type { EnvironmentType } from './environment-type';
|
|
|
30
30
|
import type { IpPoolProvider } from './ip-pool-provider';
|
|
31
31
|
// May contain unused imports in some cases
|
|
32
32
|
// @ts-ignore
|
|
33
|
+
import type { LogBackendType } from './log-backend-type';
|
|
34
|
+
// May contain unused imports in some cases
|
|
35
|
+
// @ts-ignore
|
|
33
36
|
import type { NetworkConfig } from './network-config';
|
|
34
37
|
|
|
35
38
|
/**
|
|
@@ -62,6 +65,12 @@ export interface Environment {
|
|
|
62
65
|
* @memberof Environment
|
|
63
66
|
*/
|
|
64
67
|
'networkConfig'?: NetworkConfig;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {LogBackendType}
|
|
71
|
+
* @memberof Environment
|
|
72
|
+
*/
|
|
73
|
+
'logBackend'?: LogBackendType;
|
|
65
74
|
/**
|
|
66
75
|
* CreatedAt is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists
|
|
67
76
|
* @type {string}
|
|
@@ -502,6 +502,7 @@ export * from './load-balancer-available-type';
|
|
|
502
502
|
export * from './load-balancer-ipam-status';
|
|
503
503
|
export * from './load-balancer-status';
|
|
504
504
|
export * from './localized-description';
|
|
505
|
+
export * from './log-backend-type';
|
|
505
506
|
export * from './log-disk';
|
|
506
507
|
export * from './log-option';
|
|
507
508
|
export * from './mapping-description';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* KubeBlocks Cloud API
|
|
5
|
+
* KubeBlocks Cloud API is a RESTful API for managing KubeBlocks Cloud resources. The API is organized around REST. Our API has predictable resource-oriented URLs, accepts `JSON-encoded` request bodies, returns `JSON-encoded` responses, and uses standard HTTP response codes, authentication, and verbs. We use standard HTTP authentication and provide API keys to identify who you are. Your API keys carry many privileges, so be sure to keep them secret! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
* Contact: support@apecloud.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Log query backend configured for this environment.
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const LogBackendType = {
|
|
24
|
+
loki: 'loki',
|
|
25
|
+
victoria_logs: 'victoria-logs'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type LogBackendType = typeof LogBackendType[keyof typeof LogBackendType];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
package/src/openapi.yaml
CHANGED
|
@@ -3847,6 +3847,251 @@ paths:
|
|
|
3847
3847
|
tags:
|
|
3848
3848
|
- clusterLog
|
|
3849
3849
|
- shared
|
|
3850
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/pod:
|
|
3851
|
+
get:
|
|
3852
|
+
description: Query pod logs through the Loki compatibility API.
|
|
3853
|
+
summary: Query Loki pod logs
|
|
3854
|
+
operationId: queryLokiPodLogs
|
|
3855
|
+
parameters:
|
|
3856
|
+
- $ref: '#/components/parameters/orgName'
|
|
3857
|
+
- $ref: '#/components/parameters/clusterName'
|
|
3858
|
+
- $ref: '#/components/parameters/componentName'
|
|
3859
|
+
- $ref: '#/components/parameters/instanceName'
|
|
3860
|
+
- $ref: '#/components/parameters/filename'
|
|
3861
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
3862
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
3863
|
+
- $ref: '#/components/parameters/limit'
|
|
3864
|
+
- $ref: '#/components/parameters/sortType'
|
|
3865
|
+
responses:
|
|
3866
|
+
'200':
|
|
3867
|
+
description: Successful operation
|
|
3868
|
+
content:
|
|
3869
|
+
application/json:
|
|
3870
|
+
schema:
|
|
3871
|
+
$ref: '#/components/schemas/clusterRawLogResponse'
|
|
3872
|
+
'401':
|
|
3873
|
+
$ref: '#/components/responses/401'
|
|
3874
|
+
'403':
|
|
3875
|
+
$ref: '#/components/responses/403'
|
|
3876
|
+
'404':
|
|
3877
|
+
$ref: '#/components/responses/404'
|
|
3878
|
+
tags:
|
|
3879
|
+
- clusterLokiLog
|
|
3880
|
+
- shared
|
|
3881
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/running:
|
|
3882
|
+
get:
|
|
3883
|
+
description: Query running logs through the Loki compatibility API.
|
|
3884
|
+
summary: Query Loki running logs
|
|
3885
|
+
operationId: queryLokiRunningLogs
|
|
3886
|
+
parameters:
|
|
3887
|
+
- $ref: '#/components/parameters/orgName'
|
|
3888
|
+
- $ref: '#/components/parameters/clusterName'
|
|
3889
|
+
- $ref: '#/components/parameters/componentName'
|
|
3890
|
+
- $ref: '#/components/parameters/instanceName'
|
|
3891
|
+
- $ref: '#/components/parameters/filename'
|
|
3892
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
3893
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
3894
|
+
- $ref: '#/components/parameters/limit'
|
|
3895
|
+
- $ref: '#/components/parameters/query'
|
|
3896
|
+
- $ref: '#/components/parameters/sortType'
|
|
3897
|
+
responses:
|
|
3898
|
+
'200':
|
|
3899
|
+
description: Successful operation
|
|
3900
|
+
content:
|
|
3901
|
+
application/json:
|
|
3902
|
+
schema:
|
|
3903
|
+
$ref: '#/components/schemas/clusterRawLogResponse'
|
|
3904
|
+
'401':
|
|
3905
|
+
$ref: '#/components/responses/401'
|
|
3906
|
+
'403':
|
|
3907
|
+
$ref: '#/components/responses/403'
|
|
3908
|
+
'404':
|
|
3909
|
+
$ref: '#/components/responses/404'
|
|
3910
|
+
tags:
|
|
3911
|
+
- clusterLokiLog
|
|
3912
|
+
- shared
|
|
3913
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/error:
|
|
3914
|
+
get:
|
|
3915
|
+
description: Query error logs through the Loki compatibility API.
|
|
3916
|
+
summary: Query Loki error logs
|
|
3917
|
+
operationId: queryLokiErrorLogs
|
|
3918
|
+
parameters:
|
|
3919
|
+
- $ref: '#/components/parameters/orgName'
|
|
3920
|
+
- $ref: '#/components/parameters/clusterName'
|
|
3921
|
+
- $ref: '#/components/parameters/componentName'
|
|
3922
|
+
- $ref: '#/components/parameters/instanceName'
|
|
3923
|
+
- $ref: '#/components/parameters/filename'
|
|
3924
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
3925
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
3926
|
+
- $ref: '#/components/parameters/query'
|
|
3927
|
+
- $ref: '#/components/parameters/limit'
|
|
3928
|
+
- $ref: '#/components/parameters/sortType'
|
|
3929
|
+
responses:
|
|
3930
|
+
'200':
|
|
3931
|
+
description: Successful operation
|
|
3932
|
+
content:
|
|
3933
|
+
application/json:
|
|
3934
|
+
schema:
|
|
3935
|
+
$ref: '#/components/schemas/clusterRawLogResponse'
|
|
3936
|
+
'401':
|
|
3937
|
+
$ref: '#/components/responses/401'
|
|
3938
|
+
'403':
|
|
3939
|
+
$ref: '#/components/responses/403'
|
|
3940
|
+
'404':
|
|
3941
|
+
$ref: '#/components/responses/404'
|
|
3942
|
+
tags:
|
|
3943
|
+
- clusterLokiLog
|
|
3944
|
+
- shared
|
|
3945
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/slow:
|
|
3946
|
+
get:
|
|
3947
|
+
description: Query slow logs through the Loki compatibility API.
|
|
3948
|
+
summary: Query Loki slow logs
|
|
3949
|
+
operationId: queryLokiSlowLogs
|
|
3950
|
+
parameters:
|
|
3951
|
+
- $ref: '#/components/parameters/orgName'
|
|
3952
|
+
- $ref: '#/components/parameters/clusterName'
|
|
3953
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
3954
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
3955
|
+
- $ref: '#/components/parameters/componentName'
|
|
3956
|
+
- $ref: '#/components/parameters/instanceName'
|
|
3957
|
+
- $ref: '#/components/parameters/query'
|
|
3958
|
+
- $ref: '#/components/parameters/limit'
|
|
3959
|
+
- $ref: '#/components/parameters/sortType'
|
|
3960
|
+
responses:
|
|
3961
|
+
'200':
|
|
3962
|
+
description: Successful operation
|
|
3963
|
+
content:
|
|
3964
|
+
application/json:
|
|
3965
|
+
schema:
|
|
3966
|
+
$ref: '#/components/schemas/clusterExecutionLog'
|
|
3967
|
+
'401':
|
|
3968
|
+
$ref: '#/components/responses/401'
|
|
3969
|
+
'403':
|
|
3970
|
+
$ref: '#/components/responses/403'
|
|
3971
|
+
'404':
|
|
3972
|
+
$ref: '#/components/responses/404'
|
|
3973
|
+
tags:
|
|
3974
|
+
- clusterLokiLog
|
|
3975
|
+
- shared
|
|
3976
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/audit:
|
|
3977
|
+
get:
|
|
3978
|
+
description: Query audit logs through the Loki compatibility API.
|
|
3979
|
+
summary: Query Loki audit logs
|
|
3980
|
+
operationId: queryLokiAuditLogs
|
|
3981
|
+
parameters:
|
|
3982
|
+
- $ref: '#/components/parameters/orgName'
|
|
3983
|
+
- $ref: '#/components/parameters/clusterName'
|
|
3984
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
3985
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
3986
|
+
- $ref: '#/components/parameters/limit'
|
|
3987
|
+
- $ref: '#/components/parameters/componentName'
|
|
3988
|
+
- $ref: '#/components/parameters/instanceName'
|
|
3989
|
+
- $ref: '#/components/parameters/sortType'
|
|
3990
|
+
responses:
|
|
3991
|
+
'200':
|
|
3992
|
+
description: Successful operation
|
|
3993
|
+
content:
|
|
3994
|
+
application/json:
|
|
3995
|
+
schema:
|
|
3996
|
+
$ref: '#/components/schemas/clusterExecutionLog'
|
|
3997
|
+
'401':
|
|
3998
|
+
$ref: '#/components/responses/401'
|
|
3999
|
+
'403':
|
|
4000
|
+
$ref: '#/components/responses/403'
|
|
4001
|
+
'404':
|
|
4002
|
+
$ref: '#/components/responses/404'
|
|
4003
|
+
tags:
|
|
4004
|
+
- clusterLokiLog
|
|
4005
|
+
- shared
|
|
4006
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/slow/stats:
|
|
4007
|
+
get:
|
|
4008
|
+
description: Query slow-log statistics through the Loki compatibility API.
|
|
4009
|
+
summary: Query Loki slow-log statistics
|
|
4010
|
+
operationId: getLokiSlowLogStats
|
|
4011
|
+
parameters:
|
|
4012
|
+
- $ref: '#/components/parameters/orgName'
|
|
4013
|
+
- $ref: '#/components/parameters/clusterName'
|
|
4014
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
4015
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
4016
|
+
- $ref: '#/components/parameters/componentName'
|
|
4017
|
+
- $ref: '#/components/parameters/instanceName'
|
|
4018
|
+
responses:
|
|
4019
|
+
'200':
|
|
4020
|
+
description: Successful operation
|
|
4021
|
+
content:
|
|
4022
|
+
application/json:
|
|
4023
|
+
schema:
|
|
4024
|
+
$ref: '#/components/schemas/clusterSlowLogStats'
|
|
4025
|
+
'401':
|
|
4026
|
+
$ref: '#/components/responses/401'
|
|
4027
|
+
'403':
|
|
4028
|
+
$ref: '#/components/responses/403'
|
|
4029
|
+
'404':
|
|
4030
|
+
$ref: '#/components/responses/404'
|
|
4031
|
+
tags:
|
|
4032
|
+
- clusterLokiLog
|
|
4033
|
+
- shared
|
|
4034
|
+
/api/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/export:
|
|
4035
|
+
get:
|
|
4036
|
+
description: Export logs through the Loki compatibility API.
|
|
4037
|
+
summary: Export Loki logs
|
|
4038
|
+
operationId: exportLokiClusterLogs
|
|
4039
|
+
parameters:
|
|
4040
|
+
- $ref: '#/components/parameters/orgName'
|
|
4041
|
+
- $ref: '#/components/parameters/clusterName'
|
|
4042
|
+
- in: query
|
|
4043
|
+
name: logType
|
|
4044
|
+
required: true
|
|
4045
|
+
description: 'Log type: runninglog, errorlog, slow, auditlog'
|
|
4046
|
+
schema:
|
|
4047
|
+
type: string
|
|
4048
|
+
- in: query
|
|
4049
|
+
name: startTime
|
|
4050
|
+
description: Start time in epoch nanoseconds. If omitted, exports from the earliest available log
|
|
4051
|
+
schema:
|
|
4052
|
+
type: integer
|
|
4053
|
+
format: int64
|
|
4054
|
+
- in: query
|
|
4055
|
+
name: endTime
|
|
4056
|
+
description: End time in epoch nanoseconds. If omitted, exports up to the latest available log
|
|
4057
|
+
schema:
|
|
4058
|
+
type: integer
|
|
4059
|
+
format: int64
|
|
4060
|
+
- in: query
|
|
4061
|
+
name: format
|
|
4062
|
+
description: 'Export format: csv, raw, jsonl'
|
|
4063
|
+
schema:
|
|
4064
|
+
type: string
|
|
4065
|
+
default: csv
|
|
4066
|
+
- $ref: '#/components/parameters/query'
|
|
4067
|
+
- $ref: '#/components/parameters/filename'
|
|
4068
|
+
- $ref: '#/components/parameters/componentName'
|
|
4069
|
+
- $ref: '#/components/parameters/instanceName'
|
|
4070
|
+
- in: query
|
|
4071
|
+
name: maxLines
|
|
4072
|
+
description: Maximum number of lines to export. Defaults to 100000 if omitted
|
|
4073
|
+
schema:
|
|
4074
|
+
type: integer
|
|
4075
|
+
format: int64
|
|
4076
|
+
responses:
|
|
4077
|
+
'200':
|
|
4078
|
+
description: File download
|
|
4079
|
+
content:
|
|
4080
|
+
application/octet-stream:
|
|
4081
|
+
schema:
|
|
4082
|
+
type: string
|
|
4083
|
+
format: binary
|
|
4084
|
+
'400':
|
|
4085
|
+
$ref: '#/components/responses/400'
|
|
4086
|
+
'401':
|
|
4087
|
+
$ref: '#/components/responses/401'
|
|
4088
|
+
'403':
|
|
4089
|
+
$ref: '#/components/responses/403'
|
|
4090
|
+
'404':
|
|
4091
|
+
$ref: '#/components/responses/404'
|
|
4092
|
+
tags:
|
|
4093
|
+
- clusterLokiLog
|
|
4094
|
+
- shared
|
|
3850
4095
|
/api/v1/organizations/{orgName}/clusters/{clusterName}/reconfigure:
|
|
3851
4096
|
post:
|
|
3852
4097
|
operationId: reconfigureCluster
|
|
@@ -20732,6 +20977,12 @@ components:
|
|
|
20732
20977
|
items:
|
|
20733
20978
|
$ref: '#/components/schemas/networkMode'
|
|
20734
20979
|
description: Network modes of the environment
|
|
20980
|
+
logBackendType:
|
|
20981
|
+
type: string
|
|
20982
|
+
description: Log query backend configured for this environment.
|
|
20983
|
+
enum:
|
|
20984
|
+
- loki
|
|
20985
|
+
- victoria-logs
|
|
20735
20986
|
environmentState:
|
|
20736
20987
|
type: string
|
|
20737
20988
|
description: Output only. State of the Environment resource
|
|
@@ -20794,6 +21045,8 @@ components:
|
|
|
20794
21045
|
type: array
|
|
20795
21046
|
networkConfig:
|
|
20796
21047
|
$ref: '#/components/schemas/networkConfig'
|
|
21048
|
+
logBackend:
|
|
21049
|
+
$ref: '#/components/schemas/logBackendType'
|
|
20797
21050
|
createdAt:
|
|
20798
21051
|
description: CreatedAt is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists
|
|
20799
21052
|
format: date-time
|
|
@@ -37638,6 +37891,62 @@ components:
|
|
|
37638
37891
|
type: boolean
|
|
37639
37892
|
required: false
|
|
37640
37893
|
default: true
|
|
37894
|
+
orgName:
|
|
37895
|
+
in: path
|
|
37896
|
+
name: orgName
|
|
37897
|
+
required: true
|
|
37898
|
+
schema:
|
|
37899
|
+
type: string
|
|
37900
|
+
clusterName:
|
|
37901
|
+
in: path
|
|
37902
|
+
name: clusterName
|
|
37903
|
+
required: true
|
|
37904
|
+
schema:
|
|
37905
|
+
type: string
|
|
37906
|
+
componentName:
|
|
37907
|
+
in: query
|
|
37908
|
+
name: componentName
|
|
37909
|
+
schema:
|
|
37910
|
+
type: string
|
|
37911
|
+
instanceName:
|
|
37912
|
+
in: query
|
|
37913
|
+
name: instanceName
|
|
37914
|
+
schema:
|
|
37915
|
+
type: string
|
|
37916
|
+
filename:
|
|
37917
|
+
in: query
|
|
37918
|
+
name: filename
|
|
37919
|
+
schema:
|
|
37920
|
+
type: string
|
|
37921
|
+
startTime-2:
|
|
37922
|
+
in: query
|
|
37923
|
+
name: startTime
|
|
37924
|
+
description: Start time in epoch nanoseconds.
|
|
37925
|
+
required: true
|
|
37926
|
+
schema:
|
|
37927
|
+
type: string
|
|
37928
|
+
endTime-2:
|
|
37929
|
+
in: query
|
|
37930
|
+
name: endTime
|
|
37931
|
+
description: End time in epoch nanoseconds.
|
|
37932
|
+
required: true
|
|
37933
|
+
schema:
|
|
37934
|
+
type: string
|
|
37935
|
+
limit:
|
|
37936
|
+
in: query
|
|
37937
|
+
name: limit
|
|
37938
|
+
schema:
|
|
37939
|
+
type: string
|
|
37940
|
+
sortType:
|
|
37941
|
+
in: query
|
|
37942
|
+
name: sortType
|
|
37943
|
+
schema:
|
|
37944
|
+
$ref: '#/components/schemas/sortType'
|
|
37945
|
+
query:
|
|
37946
|
+
in: query
|
|
37947
|
+
name: query
|
|
37948
|
+
schema:
|
|
37949
|
+
type: string
|
|
37641
37950
|
x-tagGroups:
|
|
37642
37951
|
- name: User
|
|
37643
37952
|
tags:
|