@daocloud-proto/skoala 0.41.3-8 → 0.42.0
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.
|
@@ -631,6 +631,8 @@ export type GetGatewayMetricDashboardReq = {
|
|
|
631
631
|
namespaceName?: string
|
|
632
632
|
gatewayName?: string
|
|
633
633
|
dashboardType?: SkoalaApiGeneralV1alpha1Grafana.DashboardType
|
|
634
|
+
from?: string
|
|
635
|
+
to?: string
|
|
634
636
|
}
|
|
635
637
|
|
|
636
638
|
export type GetGatewayMetricDashboardRes = {
|
|
@@ -8,6 +8,7 @@ import * as GoogleProtobufAny from "../../../google/protobuf/any.pb"
|
|
|
8
8
|
import * as GoogleProtobufDuration from "../../../google/protobuf/duration.pb"
|
|
9
9
|
import * as SkoalaApiGeneralV1alpha1Common from "../../general/v1alpha1/common.pb"
|
|
10
10
|
import * as SkoalaApiGeneralV1alpha1Insight from "../../general/v1alpha1/insight.pb"
|
|
11
|
+
import * as SkoalaApiGeneralV1alpha2Ratelimit from "../../general/v1alpha2/ratelimit.pb"
|
|
11
12
|
import * as SkoalaApiHostedV1alpha1Skoala_plugins from "./skoala_plugins.pb"
|
|
12
13
|
|
|
13
14
|
type Absent<T, K extends keyof T> = { [k in Exclude<keyof T, K>]?: undefined };
|
|
@@ -439,7 +440,7 @@ export type GetServiceIstioPluginRLSRulesRes = {
|
|
|
439
440
|
port?: number
|
|
440
441
|
ratelimitPluginName?: string
|
|
441
442
|
domain?: string
|
|
442
|
-
|
|
443
|
+
rlsRule?: SkoalaApiGeneralV1alpha2Ratelimit.GlobalRatelimitPolicy
|
|
443
444
|
}
|
|
444
445
|
|
|
445
446
|
export type ListServiceIstioPluginRLSRulesReq = {
|
|
@@ -457,7 +458,7 @@ export type PortRlsRule = {
|
|
|
457
458
|
port?: number
|
|
458
459
|
ratelimitPluginName?: string
|
|
459
460
|
domain?: string
|
|
460
|
-
|
|
461
|
+
rlsRule?: SkoalaApiGeneralV1alpha2Ratelimit.GlobalRatelimitPolicy
|
|
461
462
|
}
|
|
462
463
|
|
|
463
464
|
export type CreateServiceIstioPluginRLSRulesReq = {
|
|
@@ -466,7 +467,7 @@ export type CreateServiceIstioPluginRLSRulesReq = {
|
|
|
466
467
|
namespaceName?: string
|
|
467
468
|
serviceName?: string
|
|
468
469
|
port?: number
|
|
469
|
-
rlsRule?:
|
|
470
|
+
rlsRule?: SkoalaApiGeneralV1alpha2Ratelimit.GlobalRatelimitPolicy
|
|
470
471
|
}
|
|
471
472
|
|
|
472
473
|
export type DeleteServiceIstioPluginRLSRulesReq = {
|
|
@@ -483,7 +484,7 @@ export type UpdateServiceIstioPluginRLSRulesReq = {
|
|
|
483
484
|
namespaceName?: string
|
|
484
485
|
serviceName?: string
|
|
485
486
|
port?: number
|
|
486
|
-
rlsRule?:
|
|
487
|
+
rlsRule?: SkoalaApiGeneralV1alpha2Ratelimit.GlobalRatelimitPolicy
|
|
487
488
|
}
|
|
488
489
|
|
|
489
490
|
export type UpdateServiceGovernReq = {
|
|
@@ -95,7 +95,7 @@ export type CreateSkoalaPluginTemplateReq = {
|
|
|
95
95
|
pluginTemplateName?: string
|
|
96
96
|
describe?: string
|
|
97
97
|
pluginType?: PluginType
|
|
98
|
-
|
|
98
|
+
images?: string[]
|
|
99
99
|
icon?: string
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -106,7 +106,7 @@ export type UpdateSkoalaPluginTemplateReq = {
|
|
|
106
106
|
displayName?: string
|
|
107
107
|
describe?: string
|
|
108
108
|
pluginType?: PluginType
|
|
109
|
-
|
|
109
|
+
images?: string[]
|
|
110
110
|
icon?: string
|
|
111
111
|
}
|
|
112
112
|
|