@daocloud-proto/skoala 0.7.2 → 0.8.0-8
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/api/general/v1alpha1/common.pb.ts +12 -0
- package/api/general/v1alpha1/grafana.pb.ts +13 -0
- package/api/general/v1alpha1/skoala.pb.ts +11 -0
- package/api/general/v1alpha1/version.pb.ts +6 -0
- package/api/hosted/v1alpha1/apilog.pb.ts +4 -0
- package/api/hosted/v1alpha1/gateway.pb.ts +43 -0
- package/api/hosted/v1alpha1/gateway_plugin.pb.ts +113 -0
- package/api/hosted/v1alpha1/{gatewaysecret.pb.ts → gateway_secret.pb.ts} +0 -0
- package/api/hosted/v1alpha1/{gatewayservice.pb.ts → gateway_service.pb.ts} +0 -0
- package/api/hosted/v1alpha1/gatewaylog.pb.ts +29 -0
- package/api/hosted/v1alpha1/http.pb.ts +25 -5
- package/api/hosted/v1alpha1/mesh.pb.ts +112 -0
- package/api/hosted/v1alpha1/nacos.pb.ts +46 -25
- package/api/hosted/v1alpha1/plugins.pb.ts +15 -1
- package/api/hosted/v1alpha1/sentinel.pb.ts +43 -8
- package/api/hosted/v1alpha1/virtualhost.pb.ts +24 -0
- package/api/integrated/v1alpha1/instance.pb.ts +7 -3
- package/api/integrated/v1alpha1/service.pb.ts +3 -3
- package/api/skoala/v1alpha1/skoala.pb.ts +107 -49
- package/package.json +1 -1
- package/api/hosted/v1alpha1/extension.pb.ts +0 -83
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
/*
|
|
4
|
-
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import * as SkoalaApiGeneralV1alpha1Common from "../../general/v1alpha1/common.pb"
|
|
8
|
-
export type GatewayRLSConfig = {
|
|
9
|
-
chart?: SkoalaApiGeneralV1alpha1Common.Chart
|
|
10
|
-
unit?: SkoalaApiGeneralV1alpha1Common.TimeUnit
|
|
11
|
-
requestsPerUnit?: number
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export type CreateGatewayRLSReq = {
|
|
15
|
-
workspaceId?: string
|
|
16
|
-
clusterName?: string
|
|
17
|
-
namespaceName?: string
|
|
18
|
-
gatewayName?: string
|
|
19
|
-
config?: GatewayRLSConfig
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export type GetGatewayRLSReq = {
|
|
23
|
-
workspaceId?: string
|
|
24
|
-
clusterName?: string
|
|
25
|
-
namespaceName?: string
|
|
26
|
-
gatewayName?: string
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export type GetGatewayRLSRes = {
|
|
30
|
-
config?: GatewayRLSConfig
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export type DeleteGatewayRLSReq = {
|
|
34
|
-
workspaceId?: string
|
|
35
|
-
clusterName?: string
|
|
36
|
-
namespaceName?: string
|
|
37
|
-
gatewayName?: string
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export type UpdateGatewayRLSReq = {
|
|
41
|
-
workspaceId?: string
|
|
42
|
-
clusterName?: string
|
|
43
|
-
namespaceName?: string
|
|
44
|
-
gatewayName?: string
|
|
45
|
-
config?: GatewayRLSConfig
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export type GatewayAuthzConfig = {
|
|
49
|
-
chart?: SkoalaApiGeneralV1alpha1Common.Chart
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export type CreateGatewayAuthzReq = {
|
|
53
|
-
workspaceId?: string
|
|
54
|
-
clusterName?: string
|
|
55
|
-
namespaceName?: string
|
|
56
|
-
gatewayName?: string
|
|
57
|
-
config?: GatewayAuthzConfig
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export type GetGatewayAuthzReq = {
|
|
61
|
-
workspaceId?: string
|
|
62
|
-
clusterName?: string
|
|
63
|
-
namespaceName?: string
|
|
64
|
-
gatewayName?: string
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export type GetGatewayAuthzRes = {
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export type DeleteGatewayAuthzReq = {
|
|
71
|
-
workspaceId?: string
|
|
72
|
-
clusterName?: string
|
|
73
|
-
namespaceName?: string
|
|
74
|
-
gatewayName?: string
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export type UpdateGatewayAuthzReq = {
|
|
78
|
-
workspaceId?: string
|
|
79
|
-
clusterName?: string
|
|
80
|
-
namespaceName?: string
|
|
81
|
-
gatewayName?: string
|
|
82
|
-
config?: GatewayAuthzConfig
|
|
83
|
-
}
|