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
|
@@ -39,6 +39,9 @@ import type { EnvironmentType } from './environment-type';
|
|
|
39
39
|
import type { IpPoolProvider } from './ip-pool-provider';
|
|
40
40
|
// May contain unused imports in some cases
|
|
41
41
|
// @ts-ignore
|
|
42
|
+
import type { LogBackendType } from './log-backend-type';
|
|
43
|
+
// May contain unused imports in some cases
|
|
44
|
+
// @ts-ignore
|
|
42
45
|
import type { NetworkConfig } from './network-config';
|
|
43
46
|
// May contain unused imports in some cases
|
|
44
47
|
// @ts-ignore
|
|
@@ -53,6 +56,12 @@ import type { SchedulingConfig } from './scheduling-config';
|
|
|
53
56
|
* @interface Environment
|
|
54
57
|
*/
|
|
55
58
|
export interface Environment {
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {LogBackendType}
|
|
62
|
+
* @memberof Environment
|
|
63
|
+
*/
|
|
64
|
+
'logBackend'?: LogBackendType;
|
|
56
65
|
/**
|
|
57
66
|
* Cloud Provider
|
|
58
67
|
* @type {string}
|
|
@@ -548,6 +548,7 @@ export * from './load-balancer-available-type';
|
|
|
548
548
|
export * from './load-balancer-ipam-status';
|
|
549
549
|
export * from './load-balancer-status';
|
|
550
550
|
export * from './localized-description';
|
|
551
|
+
export * from './log-backend-type';
|
|
551
552
|
export * from './log-disk';
|
|
552
553
|
export * from './log-entry';
|
|
553
554
|
export * from './log-option';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Admin API
|
|
5
|
+
* The Admin API is used to manage the ApeCloud platform.
|
|
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/adminapi.yaml
CHANGED
|
@@ -8712,6 +8712,251 @@ paths:
|
|
|
8712
8712
|
tags:
|
|
8713
8713
|
- clusterLog
|
|
8714
8714
|
- shared
|
|
8715
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/pod:
|
|
8716
|
+
get:
|
|
8717
|
+
description: Query pod logs through the Loki compatibility API.
|
|
8718
|
+
summary: Query Loki pod logs
|
|
8719
|
+
operationId: queryLokiPodLogs
|
|
8720
|
+
parameters:
|
|
8721
|
+
- $ref: '#/components/parameters/orgName'
|
|
8722
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8723
|
+
- $ref: '#/components/parameters/componentName'
|
|
8724
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8725
|
+
- $ref: '#/components/parameters/filename'
|
|
8726
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
8727
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
8728
|
+
- $ref: '#/components/parameters/limit'
|
|
8729
|
+
- $ref: '#/components/parameters/sortType'
|
|
8730
|
+
responses:
|
|
8731
|
+
'200':
|
|
8732
|
+
description: Successful operation
|
|
8733
|
+
content:
|
|
8734
|
+
application/json:
|
|
8735
|
+
schema:
|
|
8736
|
+
$ref: '#/components/schemas/clusterRawLogResponse'
|
|
8737
|
+
'401':
|
|
8738
|
+
$ref: '#/components/responses/401'
|
|
8739
|
+
'403':
|
|
8740
|
+
$ref: '#/components/responses/403'
|
|
8741
|
+
'404':
|
|
8742
|
+
$ref: '#/components/responses/404'
|
|
8743
|
+
tags:
|
|
8744
|
+
- clusterLokiLog
|
|
8745
|
+
- shared
|
|
8746
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/running:
|
|
8747
|
+
get:
|
|
8748
|
+
description: Query running logs through the Loki compatibility API.
|
|
8749
|
+
summary: Query Loki running logs
|
|
8750
|
+
operationId: queryLokiRunningLogs
|
|
8751
|
+
parameters:
|
|
8752
|
+
- $ref: '#/components/parameters/orgName'
|
|
8753
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8754
|
+
- $ref: '#/components/parameters/componentName'
|
|
8755
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8756
|
+
- $ref: '#/components/parameters/filename'
|
|
8757
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
8758
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
8759
|
+
- $ref: '#/components/parameters/limit'
|
|
8760
|
+
- $ref: '#/components/parameters/query'
|
|
8761
|
+
- $ref: '#/components/parameters/sortType'
|
|
8762
|
+
responses:
|
|
8763
|
+
'200':
|
|
8764
|
+
description: Successful operation
|
|
8765
|
+
content:
|
|
8766
|
+
application/json:
|
|
8767
|
+
schema:
|
|
8768
|
+
$ref: '#/components/schemas/clusterRawLogResponse'
|
|
8769
|
+
'401':
|
|
8770
|
+
$ref: '#/components/responses/401'
|
|
8771
|
+
'403':
|
|
8772
|
+
$ref: '#/components/responses/403'
|
|
8773
|
+
'404':
|
|
8774
|
+
$ref: '#/components/responses/404'
|
|
8775
|
+
tags:
|
|
8776
|
+
- clusterLokiLog
|
|
8777
|
+
- shared
|
|
8778
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/error:
|
|
8779
|
+
get:
|
|
8780
|
+
description: Query error logs through the Loki compatibility API.
|
|
8781
|
+
summary: Query Loki error logs
|
|
8782
|
+
operationId: queryLokiErrorLogs
|
|
8783
|
+
parameters:
|
|
8784
|
+
- $ref: '#/components/parameters/orgName'
|
|
8785
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8786
|
+
- $ref: '#/components/parameters/componentName'
|
|
8787
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8788
|
+
- $ref: '#/components/parameters/filename'
|
|
8789
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
8790
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
8791
|
+
- $ref: '#/components/parameters/query'
|
|
8792
|
+
- $ref: '#/components/parameters/limit'
|
|
8793
|
+
- $ref: '#/components/parameters/sortType'
|
|
8794
|
+
responses:
|
|
8795
|
+
'200':
|
|
8796
|
+
description: Successful operation
|
|
8797
|
+
content:
|
|
8798
|
+
application/json:
|
|
8799
|
+
schema:
|
|
8800
|
+
$ref: '#/components/schemas/clusterRawLogResponse'
|
|
8801
|
+
'401':
|
|
8802
|
+
$ref: '#/components/responses/401'
|
|
8803
|
+
'403':
|
|
8804
|
+
$ref: '#/components/responses/403'
|
|
8805
|
+
'404':
|
|
8806
|
+
$ref: '#/components/responses/404'
|
|
8807
|
+
tags:
|
|
8808
|
+
- clusterLokiLog
|
|
8809
|
+
- shared
|
|
8810
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/slow:
|
|
8811
|
+
get:
|
|
8812
|
+
description: Query slow logs through the Loki compatibility API.
|
|
8813
|
+
summary: Query Loki slow logs
|
|
8814
|
+
operationId: queryLokiSlowLogs
|
|
8815
|
+
parameters:
|
|
8816
|
+
- $ref: '#/components/parameters/orgName'
|
|
8817
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8818
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
8819
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
8820
|
+
- $ref: '#/components/parameters/componentName'
|
|
8821
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8822
|
+
- $ref: '#/components/parameters/query'
|
|
8823
|
+
- $ref: '#/components/parameters/limit'
|
|
8824
|
+
- $ref: '#/components/parameters/sortType'
|
|
8825
|
+
responses:
|
|
8826
|
+
'200':
|
|
8827
|
+
description: Successful operation
|
|
8828
|
+
content:
|
|
8829
|
+
application/json:
|
|
8830
|
+
schema:
|
|
8831
|
+
$ref: '#/components/schemas/clusterExecutionLog'
|
|
8832
|
+
'401':
|
|
8833
|
+
$ref: '#/components/responses/401'
|
|
8834
|
+
'403':
|
|
8835
|
+
$ref: '#/components/responses/403'
|
|
8836
|
+
'404':
|
|
8837
|
+
$ref: '#/components/responses/404'
|
|
8838
|
+
tags:
|
|
8839
|
+
- clusterLokiLog
|
|
8840
|
+
- shared
|
|
8841
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/audit:
|
|
8842
|
+
get:
|
|
8843
|
+
description: Query audit logs through the Loki compatibility API.
|
|
8844
|
+
summary: Query Loki audit logs
|
|
8845
|
+
operationId: queryLokiAuditLogs
|
|
8846
|
+
parameters:
|
|
8847
|
+
- $ref: '#/components/parameters/orgName'
|
|
8848
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8849
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
8850
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
8851
|
+
- $ref: '#/components/parameters/limit'
|
|
8852
|
+
- $ref: '#/components/parameters/componentName'
|
|
8853
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8854
|
+
- $ref: '#/components/parameters/sortType'
|
|
8855
|
+
responses:
|
|
8856
|
+
'200':
|
|
8857
|
+
description: Successful operation
|
|
8858
|
+
content:
|
|
8859
|
+
application/json:
|
|
8860
|
+
schema:
|
|
8861
|
+
$ref: '#/components/schemas/clusterExecutionLog'
|
|
8862
|
+
'401':
|
|
8863
|
+
$ref: '#/components/responses/401'
|
|
8864
|
+
'403':
|
|
8865
|
+
$ref: '#/components/responses/403'
|
|
8866
|
+
'404':
|
|
8867
|
+
$ref: '#/components/responses/404'
|
|
8868
|
+
tags:
|
|
8869
|
+
- clusterLokiLog
|
|
8870
|
+
- shared
|
|
8871
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/slow/stats:
|
|
8872
|
+
get:
|
|
8873
|
+
description: Query slow-log statistics through the Loki compatibility API.
|
|
8874
|
+
summary: Query Loki slow-log statistics
|
|
8875
|
+
operationId: getLokiSlowLogStats
|
|
8876
|
+
parameters:
|
|
8877
|
+
- $ref: '#/components/parameters/orgName'
|
|
8878
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8879
|
+
- $ref: '#/components/parameters/startTime-2'
|
|
8880
|
+
- $ref: '#/components/parameters/endTime-2'
|
|
8881
|
+
- $ref: '#/components/parameters/componentName'
|
|
8882
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8883
|
+
responses:
|
|
8884
|
+
'200':
|
|
8885
|
+
description: Successful operation
|
|
8886
|
+
content:
|
|
8887
|
+
application/json:
|
|
8888
|
+
schema:
|
|
8889
|
+
$ref: '#/components/schemas/clusterSlowLogStats'
|
|
8890
|
+
'401':
|
|
8891
|
+
$ref: '#/components/responses/401'
|
|
8892
|
+
'403':
|
|
8893
|
+
$ref: '#/components/responses/403'
|
|
8894
|
+
'404':
|
|
8895
|
+
$ref: '#/components/responses/404'
|
|
8896
|
+
tags:
|
|
8897
|
+
- clusterLokiLog
|
|
8898
|
+
- shared
|
|
8899
|
+
/admin/v1/organizations/{orgName}/clusters/{clusterName}/logs/loki/export:
|
|
8900
|
+
get:
|
|
8901
|
+
description: Export logs through the Loki compatibility API.
|
|
8902
|
+
summary: Export Loki logs
|
|
8903
|
+
operationId: exportLokiClusterLogs
|
|
8904
|
+
parameters:
|
|
8905
|
+
- $ref: '#/components/parameters/orgName'
|
|
8906
|
+
- $ref: '#/components/parameters/clusterName'
|
|
8907
|
+
- in: query
|
|
8908
|
+
name: logType
|
|
8909
|
+
required: true
|
|
8910
|
+
description: 'Log type: runninglog, errorlog, slow, auditlog'
|
|
8911
|
+
schema:
|
|
8912
|
+
type: string
|
|
8913
|
+
- in: query
|
|
8914
|
+
name: startTime
|
|
8915
|
+
description: Start time in epoch nanoseconds. If omitted, exports from the earliest available log
|
|
8916
|
+
schema:
|
|
8917
|
+
type: integer
|
|
8918
|
+
format: int64
|
|
8919
|
+
- in: query
|
|
8920
|
+
name: endTime
|
|
8921
|
+
description: End time in epoch nanoseconds. If omitted, exports up to the latest available log
|
|
8922
|
+
schema:
|
|
8923
|
+
type: integer
|
|
8924
|
+
format: int64
|
|
8925
|
+
- in: query
|
|
8926
|
+
name: format
|
|
8927
|
+
description: 'Export format: csv, raw, jsonl'
|
|
8928
|
+
schema:
|
|
8929
|
+
type: string
|
|
8930
|
+
default: csv
|
|
8931
|
+
- $ref: '#/components/parameters/query'
|
|
8932
|
+
- $ref: '#/components/parameters/filename'
|
|
8933
|
+
- $ref: '#/components/parameters/componentName'
|
|
8934
|
+
- $ref: '#/components/parameters/instanceName'
|
|
8935
|
+
- in: query
|
|
8936
|
+
name: maxLines
|
|
8937
|
+
description: Maximum number of lines to export. Defaults to 100000 if omitted
|
|
8938
|
+
schema:
|
|
8939
|
+
type: integer
|
|
8940
|
+
format: int64
|
|
8941
|
+
responses:
|
|
8942
|
+
'200':
|
|
8943
|
+
description: File download
|
|
8944
|
+
content:
|
|
8945
|
+
application/octet-stream:
|
|
8946
|
+
schema:
|
|
8947
|
+
type: string
|
|
8948
|
+
format: binary
|
|
8949
|
+
'400':
|
|
8950
|
+
$ref: '#/components/responses/400'
|
|
8951
|
+
'401':
|
|
8952
|
+
$ref: '#/components/responses/401'
|
|
8953
|
+
'403':
|
|
8954
|
+
$ref: '#/components/responses/403'
|
|
8955
|
+
'404':
|
|
8956
|
+
$ref: '#/components/responses/404'
|
|
8957
|
+
tags:
|
|
8958
|
+
- clusterLokiLog
|
|
8959
|
+
- shared
|
|
8715
8960
|
/admin/v1/organizations/{orgName}/clusters/{clusterName}/reconfigure:
|
|
8716
8961
|
post:
|
|
8717
8962
|
operationId: reconfigureCluster
|
|
@@ -31444,6 +31689,12 @@ components:
|
|
|
31444
31689
|
required:
|
|
31445
31690
|
- serviceName
|
|
31446
31691
|
- serviceNamespace
|
|
31692
|
+
logBackendType:
|
|
31693
|
+
type: string
|
|
31694
|
+
description: Log query backend configured for this environment.
|
|
31695
|
+
enum:
|
|
31696
|
+
- loki
|
|
31697
|
+
- victoria-logs
|
|
31447
31698
|
clusterSchedulingPolicy:
|
|
31448
31699
|
type: string
|
|
31449
31700
|
enum:
|
|
@@ -31869,6 +32120,8 @@ components:
|
|
|
31869
32120
|
- updatedAt
|
|
31870
32121
|
- ipPoolProviders
|
|
31871
32122
|
properties:
|
|
32123
|
+
logBackend:
|
|
32124
|
+
$ref: '#/components/schemas/logBackendType'
|
|
31872
32125
|
provider:
|
|
31873
32126
|
description: Cloud Provider
|
|
31874
32127
|
title: Cloud Provider
|
|
@@ -43963,6 +44216,62 @@ components:
|
|
|
43963
44216
|
type: boolean
|
|
43964
44217
|
required: false
|
|
43965
44218
|
default: true
|
|
44219
|
+
orgName:
|
|
44220
|
+
in: path
|
|
44221
|
+
name: orgName
|
|
44222
|
+
required: true
|
|
44223
|
+
schema:
|
|
44224
|
+
type: string
|
|
44225
|
+
clusterName:
|
|
44226
|
+
in: path
|
|
44227
|
+
name: clusterName
|
|
44228
|
+
required: true
|
|
44229
|
+
schema:
|
|
44230
|
+
type: string
|
|
44231
|
+
componentName:
|
|
44232
|
+
in: query
|
|
44233
|
+
name: componentName
|
|
44234
|
+
schema:
|
|
44235
|
+
type: string
|
|
44236
|
+
instanceName:
|
|
44237
|
+
in: query
|
|
44238
|
+
name: instanceName
|
|
44239
|
+
schema:
|
|
44240
|
+
type: string
|
|
44241
|
+
filename:
|
|
44242
|
+
in: query
|
|
44243
|
+
name: filename
|
|
44244
|
+
schema:
|
|
44245
|
+
type: string
|
|
44246
|
+
startTime-2:
|
|
44247
|
+
in: query
|
|
44248
|
+
name: startTime
|
|
44249
|
+
description: Start time in epoch nanoseconds.
|
|
44250
|
+
required: true
|
|
44251
|
+
schema:
|
|
44252
|
+
type: string
|
|
44253
|
+
endTime-2:
|
|
44254
|
+
in: query
|
|
44255
|
+
name: endTime
|
|
44256
|
+
description: End time in epoch nanoseconds.
|
|
44257
|
+
required: true
|
|
44258
|
+
schema:
|
|
44259
|
+
type: string
|
|
44260
|
+
limit:
|
|
44261
|
+
in: query
|
|
44262
|
+
name: limit
|
|
44263
|
+
schema:
|
|
44264
|
+
type: string
|
|
44265
|
+
sortType:
|
|
44266
|
+
in: query
|
|
44267
|
+
name: sortType
|
|
44268
|
+
schema:
|
|
44269
|
+
$ref: '#/components/schemas/sortType'
|
|
44270
|
+
query:
|
|
44271
|
+
in: query
|
|
44272
|
+
name: query
|
|
44273
|
+
schema:
|
|
44274
|
+
type: string
|
|
43966
44275
|
x-tagGroups:
|
|
43967
44276
|
- name: User
|
|
43968
44277
|
tags:
|
|
@@ -23,6 +23,7 @@ apis/class-types-api.ts
|
|
|
23
23
|
apis/cluster-alert-switch-api.ts
|
|
24
24
|
apis/cluster-api.ts
|
|
25
25
|
apis/cluster-log-api.ts
|
|
26
|
+
apis/cluster-loki-log-api.ts
|
|
26
27
|
apis/cluster-tag-api.ts
|
|
27
28
|
apis/dameng-api.ts
|
|
28
29
|
apis/data-replication-api.ts
|
|
@@ -591,6 +592,7 @@ models/load-balancer-ipam-status.ts
|
|
|
591
592
|
models/load-balancer-status.ts
|
|
592
593
|
models/load-balancer.ts
|
|
593
594
|
models/localized-description.ts
|
|
595
|
+
models/log-backend-type.ts
|
|
594
596
|
models/log-disk.ts
|
|
595
597
|
models/log-option.ts
|
|
596
598
|
models/mapping-description.ts
|
package/src/openapi/api.ts
CHANGED
|
@@ -35,6 +35,7 @@ export * from './apis/class-types-api';
|
|
|
35
35
|
export * from './apis/cluster-api';
|
|
36
36
|
export * from './apis/cluster-alert-switch-api';
|
|
37
37
|
export * from './apis/cluster-log-api';
|
|
38
|
+
export * from './apis/cluster-loki-log-api';
|
|
38
39
|
export * from './apis/cluster-tag-api';
|
|
39
40
|
export * from './apis/dameng-api';
|
|
40
41
|
export * from './apis/data-replication-api';
|