@kong-ui-public/entities-upstreams-targets 3.12.22 → 3.12.23-pr.2722.b1aa23ae4.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.
- package/package.json +4 -4
- package/dist/entities-upstreams-targets.es.js +0 -3701
- package/dist/entities-upstreams-targets.umd.js +0 -1
- package/dist/style.css +0 -1
- package/dist/types/components/TargetForm.vue.d.ts +0 -87
- package/dist/types/components/TargetForm.vue.d.ts.map +0 -1
- package/dist/types/components/TargetsList.vue.d.ts +0 -129
- package/dist/types/components/TargetsList.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsConfigCard.vue.d.ts +0 -62
- package/dist/types/components/UpstreamsConfigCard.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsForm.vue.d.ts +0 -43
- package/dist/types/components/UpstreamsForm.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsFormActiveHealthCheck.vue.d.ts +0 -179
- package/dist/types/components/UpstreamsFormActiveHealthCheck.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsFormGeneralInfo.vue.d.ts +0 -69
- package/dist/types/components/UpstreamsFormGeneralInfo.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsFormHealthChecks.vue.d.ts +0 -49
- package/dist/types/components/UpstreamsFormHealthChecks.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsFormLoadBalancing.vue.d.ts +0 -172
- package/dist/types/components/UpstreamsFormLoadBalancing.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsFormPassiveHealthCheck.vue.d.ts +0 -91
- package/dist/types/components/UpstreamsFormPassiveHealthCheck.vue.d.ts.map +0 -1
- package/dist/types/components/UpstreamsList.vue.d.ts +0 -106
- package/dist/types/components/UpstreamsList.vue.d.ts.map +0 -1
- package/dist/types/composables/index.d.ts +0 -10
- package/dist/types/composables/index.d.ts.map +0 -1
- package/dist/types/composables/useHelpers.d.ts +0 -12
- package/dist/types/composables/useHelpers.d.ts.map +0 -1
- package/dist/types/composables/useI18n.d.ts +0 -9
- package/dist/types/composables/useI18n.d.ts.map +0 -1
- package/dist/types/composables/useMultiselectCreation.d.ts +0 -23
- package/dist/types/composables/useMultiselectCreation.d.ts.map +0 -1
- package/dist/types/constants.d.ts +0 -22
- package/dist/types/constants.d.ts.map +0 -1
- package/dist/types/index.d.ts +0 -12
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/links.d.ts +0 -6
- package/dist/types/links.d.ts.map +0 -1
- package/dist/types/targets-endpoints.d.ts +0 -18
- package/dist/types/targets-endpoints.d.ts.map +0 -1
- package/dist/types/types/index.d.ts +0 -18
- package/dist/types/types/index.d.ts.map +0 -1
- package/dist/types/types/target-form.d.ts +0 -30
- package/dist/types/types/target-form.d.ts.map +0 -1
- package/dist/types/types/targets-list.d.ts +0 -18
- package/dist/types/types/targets-list.d.ts.map +0 -1
- package/dist/types/types/upstreams-config.d.ts +0 -29
- package/dist/types/types/upstreams-config.d.ts.map +0 -1
- package/dist/types/types/upstreams-form.d.ts +0 -168
- package/dist/types/types/upstreams-form.d.ts.map +0 -1
- package/dist/types/types/upstreams-list.d.ts +0 -19
- package/dist/types/types/upstreams-list.d.ts.map +0 -1
- package/dist/types/upstreams-endpoints.d.ts +0 -22
- package/dist/types/upstreams-endpoints.d.ts.map +0 -1
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
2
|
-
import type { KongManagerUpstreamsEntityConfig, KonnectUpstreamsEntityConfig } from '../types';
|
|
3
|
-
import '@kong-ui-public/entities-shared/dist/style.css';
|
|
4
|
-
import type { AxiosError } from 'axios';
|
|
5
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
-
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
7
|
-
config: {
|
|
8
|
-
type: PropType<KonnectUpstreamsEntityConfig | KongManagerUpstreamsEntityConfig>;
|
|
9
|
-
required: true;
|
|
10
|
-
validator: (config: KonnectUpstreamsEntityConfig | KongManagerUpstreamsEntityConfig) => boolean;
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* External link for documentation that determines visibility of Documentation button
|
|
14
|
-
*/
|
|
15
|
-
configCardDoc: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
required: false;
|
|
19
|
-
};
|
|
20
|
-
/**
|
|
21
|
-
* Control visibility of card title content
|
|
22
|
-
*/
|
|
23
|
-
hideTitle: {
|
|
24
|
-
type: BooleanConstructor;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
28
|
-
loading: (isLoading: boolean) => any;
|
|
29
|
-
"fetch:success": (data: Record<string, any>) => any;
|
|
30
|
-
"fetch:error": (error: AxiosError<unknown, any>) => any;
|
|
31
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
-
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
33
|
-
config: {
|
|
34
|
-
type: PropType<KonnectUpstreamsEntityConfig | KongManagerUpstreamsEntityConfig>;
|
|
35
|
-
required: true;
|
|
36
|
-
validator: (config: KonnectUpstreamsEntityConfig | KongManagerUpstreamsEntityConfig) => boolean;
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* External link for documentation that determines visibility of Documentation button
|
|
40
|
-
*/
|
|
41
|
-
configCardDoc: {
|
|
42
|
-
type: StringConstructor;
|
|
43
|
-
default: string;
|
|
44
|
-
required: false;
|
|
45
|
-
};
|
|
46
|
-
/**
|
|
47
|
-
* Control visibility of card title content
|
|
48
|
-
*/
|
|
49
|
-
hideTitle: {
|
|
50
|
-
type: BooleanConstructor;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
|
-
}>> & Readonly<{
|
|
54
|
-
onLoading?: ((isLoading: boolean) => any) | undefined;
|
|
55
|
-
"onFetch:success"?: ((data: Record<string, any>) => any) | undefined;
|
|
56
|
-
"onFetch:error"?: ((error: AxiosError<unknown, any>) => any) | undefined;
|
|
57
|
-
}>, {
|
|
58
|
-
configCardDoc: string;
|
|
59
|
-
hideTitle: boolean;
|
|
60
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
61
|
-
export default _default;
|
|
62
|
-
//# sourceMappingURL=UpstreamsConfigCard.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpstreamsConfigCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UpstreamsConfigCard.vue"],"names":[],"mappings":"AA4UA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,gCAAgC,EAAE,4BAA4B,EAAgC,MAAM,UAAU,CAAA;AAU5H,OAAO,gDAAgD,CAAA;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;;IAurBrC,oHAAoH;;cAElG,QAAQ,CAAC,4BAA4B,GAAG,gCAAgC,CAAC;;4BAErE,4BAA4B,GAAG,gCAAgC,KAAG,OAAO;;IAQ/F;;OAEG;;;;;;IAMH;;OAEG;;;;;;;;;;IAtBH,oHAAoH;;cAElG,QAAQ,CAAC,4BAA4B,GAAG,gCAAgC,CAAC;;4BAErE,4BAA4B,GAAG,gCAAgC,KAAG,OAAO;;IAQ/F;;OAEG;;;;;;IAMH;;OAEG;;;;;;;;;;;;;AA3BL,wBAiCG"}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
import type { AxiosError } from 'axios';
|
|
3
|
-
import '@kong-ui-public/entities-shared/dist/style.css';
|
|
4
|
-
import type { KongManagerUpstreamsFormConfig, KonnectUpstreamsFormConfig, UpstreamResponse } from '../types';
|
|
5
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
-
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
7
|
-
config: {
|
|
8
|
-
type: PropType<KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig>;
|
|
9
|
-
required: true;
|
|
10
|
-
validator: (config: KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig) => boolean;
|
|
11
|
-
};
|
|
12
|
-
/** If a valid upstreamId is provided, it will put the form in Edit mode instead of Create */
|
|
13
|
-
upstreamId: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
required: false;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
19
|
-
error: (error: AxiosError<unknown, any>) => any;
|
|
20
|
-
update: (data: UpstreamResponse) => any;
|
|
21
|
-
loading: (isLoading: boolean) => any;
|
|
22
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
-
/** The base konnect or kongManger config. Pass additional config props in the shared entity component as needed. */
|
|
24
|
-
config: {
|
|
25
|
-
type: PropType<KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig>;
|
|
26
|
-
required: true;
|
|
27
|
-
validator: (config: KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig) => boolean;
|
|
28
|
-
};
|
|
29
|
-
/** If a valid upstreamId is provided, it will put the form in Edit mode instead of Create */
|
|
30
|
-
upstreamId: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
required: false;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
}>> & Readonly<{
|
|
36
|
-
onError?: ((error: AxiosError<unknown, any>) => any) | undefined;
|
|
37
|
-
onUpdate?: ((data: UpstreamResponse) => any) | undefined;
|
|
38
|
-
onLoading?: ((isLoading: boolean) => any) | undefined;
|
|
39
|
-
}>, {
|
|
40
|
-
upstreamId: string;
|
|
41
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
42
|
-
export default _default;
|
|
43
|
-
//# sourceMappingURL=UpstreamsForm.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpstreamsForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UpstreamsForm.vue"],"names":[],"mappings":"AAghBA,OAAO,EAAsB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEvD,OAAO,KAAK,EAAE,UAAU,EAAiB,MAAM,OAAO,CAAA;AAatD,OAAO,gDAAgD,CAAA;AACvD,OAAO,KAAK,EACV,8BAA8B,EAC9B,0BAA0B,EAM1B,gBAAgB,EAEjB,MAAM,UAAU,CAAA;;IAyrBf,oHAAoH;;cAElG,QAAQ,CAAC,0BAA0B,GAAG,8BAA8B,CAAC;;4BAEjE,0BAA0B,GAAG,8BAA8B,KAAG,OAAO;;IAQ3F,6FAA6F;;;;;;;;;;;IAZ7F,oHAAoH;;cAElG,QAAQ,CAAC,0BAA0B,GAAG,8BAA8B,CAAC;;4BAEjE,0BAA0B,GAAG,8BAA8B,KAAG,OAAO;;IAQ3F,6FAA6F;;;;;;;;;;;;;AAjB/F,wBAwBG"}
|
|
@@ -1,179 +0,0 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
2
|
-
import type { ActiveHealthCheckHeader, HealthCheckType, KongManagerUpstreamsFormConfig, KonnectUpstreamsFormConfig } from '../types';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
config: {
|
|
5
|
-
type: PropType<KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig>;
|
|
6
|
-
required: true;
|
|
7
|
-
};
|
|
8
|
-
type: {
|
|
9
|
-
type: PropType<HealthCheckType>;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
httpPath: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
timeout: {
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
concurrency: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
httpsSni: {
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
verifySsl: {
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
headers: {
|
|
33
|
-
type: PropType<ActiveHealthCheckHeader[]>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
healthyInterval: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
healthySuccesses: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
healthyHttpStatuses: {
|
|
45
|
-
type: PropType<string[]>;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
unhealthyInterval: {
|
|
49
|
-
type: StringConstructor;
|
|
50
|
-
required: true;
|
|
51
|
-
};
|
|
52
|
-
unhealthyHttpFailures: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
required: true;
|
|
55
|
-
};
|
|
56
|
-
unhealthyTcpFailures: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
required: true;
|
|
59
|
-
};
|
|
60
|
-
unhealthyHttpStatuses: {
|
|
61
|
-
type: PropType<string[]>;
|
|
62
|
-
required: true;
|
|
63
|
-
};
|
|
64
|
-
unhealthyTimeouts: {
|
|
65
|
-
type: StringConstructor;
|
|
66
|
-
required: true;
|
|
67
|
-
};
|
|
68
|
-
readonly: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
required: false;
|
|
71
|
-
default: boolean;
|
|
72
|
-
};
|
|
73
|
-
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
74
|
-
"update:type": (val: HealthCheckType) => any;
|
|
75
|
-
"update:http-path": (val: string) => any;
|
|
76
|
-
"update:timeout": (val: string) => any;
|
|
77
|
-
"update:concurrency": (val: string) => any;
|
|
78
|
-
"update:https-sni": (val: string) => any;
|
|
79
|
-
"update:verify-ssl": (val: boolean) => any;
|
|
80
|
-
"update:headers": (val: ActiveHealthCheckHeader[]) => any;
|
|
81
|
-
"update:healthy-interval": (val: string) => any;
|
|
82
|
-
"update:healthy-successes": (val: string) => any;
|
|
83
|
-
"update:healthy-http-statuses": (val: string[]) => any;
|
|
84
|
-
"update:unhealthy-interval": (val: string) => any;
|
|
85
|
-
"update:unhealthy-http-failures": (val: string) => any;
|
|
86
|
-
"update:unhealthy-tcp-failures": (val: string) => any;
|
|
87
|
-
"update:unhealthy-http-statuses": (val: string[]) => any;
|
|
88
|
-
"update:unhealthy-timeouts": (val: string) => any;
|
|
89
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
|
-
config: {
|
|
91
|
-
type: PropType<KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig>;
|
|
92
|
-
required: true;
|
|
93
|
-
};
|
|
94
|
-
type: {
|
|
95
|
-
type: PropType<HealthCheckType>;
|
|
96
|
-
required: true;
|
|
97
|
-
};
|
|
98
|
-
httpPath: {
|
|
99
|
-
type: StringConstructor;
|
|
100
|
-
required: true;
|
|
101
|
-
};
|
|
102
|
-
timeout: {
|
|
103
|
-
type: StringConstructor;
|
|
104
|
-
required: true;
|
|
105
|
-
};
|
|
106
|
-
concurrency: {
|
|
107
|
-
type: StringConstructor;
|
|
108
|
-
required: true;
|
|
109
|
-
};
|
|
110
|
-
httpsSni: {
|
|
111
|
-
type: StringConstructor;
|
|
112
|
-
required: true;
|
|
113
|
-
};
|
|
114
|
-
verifySsl: {
|
|
115
|
-
type: BooleanConstructor;
|
|
116
|
-
required: true;
|
|
117
|
-
};
|
|
118
|
-
headers: {
|
|
119
|
-
type: PropType<ActiveHealthCheckHeader[]>;
|
|
120
|
-
required: true;
|
|
121
|
-
};
|
|
122
|
-
healthyInterval: {
|
|
123
|
-
type: StringConstructor;
|
|
124
|
-
required: true;
|
|
125
|
-
};
|
|
126
|
-
healthySuccesses: {
|
|
127
|
-
type: StringConstructor;
|
|
128
|
-
required: true;
|
|
129
|
-
};
|
|
130
|
-
healthyHttpStatuses: {
|
|
131
|
-
type: PropType<string[]>;
|
|
132
|
-
required: true;
|
|
133
|
-
};
|
|
134
|
-
unhealthyInterval: {
|
|
135
|
-
type: StringConstructor;
|
|
136
|
-
required: true;
|
|
137
|
-
};
|
|
138
|
-
unhealthyHttpFailures: {
|
|
139
|
-
type: StringConstructor;
|
|
140
|
-
required: true;
|
|
141
|
-
};
|
|
142
|
-
unhealthyTcpFailures: {
|
|
143
|
-
type: StringConstructor;
|
|
144
|
-
required: true;
|
|
145
|
-
};
|
|
146
|
-
unhealthyHttpStatuses: {
|
|
147
|
-
type: PropType<string[]>;
|
|
148
|
-
required: true;
|
|
149
|
-
};
|
|
150
|
-
unhealthyTimeouts: {
|
|
151
|
-
type: StringConstructor;
|
|
152
|
-
required: true;
|
|
153
|
-
};
|
|
154
|
-
readonly: {
|
|
155
|
-
type: BooleanConstructor;
|
|
156
|
-
required: false;
|
|
157
|
-
default: boolean;
|
|
158
|
-
};
|
|
159
|
-
}>> & Readonly<{
|
|
160
|
-
"onUpdate:type"?: ((val: HealthCheckType) => any) | undefined;
|
|
161
|
-
"onUpdate:http-path"?: ((val: string) => any) | undefined;
|
|
162
|
-
"onUpdate:timeout"?: ((val: string) => any) | undefined;
|
|
163
|
-
"onUpdate:concurrency"?: ((val: string) => any) | undefined;
|
|
164
|
-
"onUpdate:https-sni"?: ((val: string) => any) | undefined;
|
|
165
|
-
"onUpdate:verify-ssl"?: ((val: boolean) => any) | undefined;
|
|
166
|
-
"onUpdate:headers"?: ((val: ActiveHealthCheckHeader[]) => any) | undefined;
|
|
167
|
-
"onUpdate:healthy-interval"?: ((val: string) => any) | undefined;
|
|
168
|
-
"onUpdate:healthy-successes"?: ((val: string) => any) | undefined;
|
|
169
|
-
"onUpdate:healthy-http-statuses"?: ((val: string[]) => any) | undefined;
|
|
170
|
-
"onUpdate:unhealthy-interval"?: ((val: string) => any) | undefined;
|
|
171
|
-
"onUpdate:unhealthy-http-failures"?: ((val: string) => any) | undefined;
|
|
172
|
-
"onUpdate:unhealthy-tcp-failures"?: ((val: string) => any) | undefined;
|
|
173
|
-
"onUpdate:unhealthy-http-statuses"?: ((val: string[]) => any) | undefined;
|
|
174
|
-
"onUpdate:unhealthy-timeouts"?: ((val: string) => any) | undefined;
|
|
175
|
-
}>, {
|
|
176
|
-
readonly: boolean;
|
|
177
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
178
|
-
export default _default;
|
|
179
|
-
//# sourceMappingURL=UpstreamsFormActiveHealthCheck.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpstreamsFormActiveHealthCheck.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UpstreamsFormActiveHealthCheck.vue"],"names":[],"mappings":"AA+gBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EACV,uBAAuB,EACvB,eAAe,EACY,8BAA8B,EACzD,0BAA0B,EAC3B,MAAM,UAAU,CAAA;;;cAyqCG,QAAQ,CAAC,0BAA0B,GAAG,8BAA8B,CAAC;;;;cAIrE,QAAQ,CAAC,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;cAwB1B,QAAQ,CAAC,uBAAuB,EAAE,CAAC;;;;;;;;;;;;cAYnC,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;cAgBlB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAxDjB,QAAQ,CAAC,0BAA0B,GAAG,8BAA8B,CAAC;;;;cAIrE,QAAQ,CAAC,eAAe,CAAC;;;;;;;;;;;;;;;;;;;;;;;;cAwB1B,QAAQ,CAAC,uBAAuB,EAAE,CAAC;;;;;;;;;;;;cAYnC,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;cAgBlB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA9DrC,wBA2EG"}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
2
|
-
import type { KongManagerUpstreamsFormConfig, KonnectUpstreamsFormConfig } from '../types';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
config: {
|
|
5
|
-
type: PropType<KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig>;
|
|
6
|
-
required: true;
|
|
7
|
-
};
|
|
8
|
-
name: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
hostHeader: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
clientCertificate: {
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
tags: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
readonly: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
required: false;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
30
|
-
"update:name": (val: string) => any;
|
|
31
|
-
"update:host-header": (val: string) => any;
|
|
32
|
-
"update:client-certificate": (val: string) => any;
|
|
33
|
-
"update:tags": (val: string) => any;
|
|
34
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
config: {
|
|
36
|
-
type: PropType<KonnectUpstreamsFormConfig | KongManagerUpstreamsFormConfig>;
|
|
37
|
-
required: true;
|
|
38
|
-
};
|
|
39
|
-
name: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
required: true;
|
|
42
|
-
};
|
|
43
|
-
hostHeader: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
required: true;
|
|
46
|
-
};
|
|
47
|
-
clientCertificate: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
required: true;
|
|
50
|
-
};
|
|
51
|
-
tags: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
required: true;
|
|
54
|
-
};
|
|
55
|
-
readonly: {
|
|
56
|
-
type: BooleanConstructor;
|
|
57
|
-
required: false;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
|
-
}>> & Readonly<{
|
|
61
|
-
"onUpdate:name"?: ((val: string) => any) | undefined;
|
|
62
|
-
"onUpdate:host-header"?: ((val: string) => any) | undefined;
|
|
63
|
-
"onUpdate:client-certificate"?: ((val: string) => any) | undefined;
|
|
64
|
-
"onUpdate:tags"?: ((val: string) => any) | undefined;
|
|
65
|
-
}>, {
|
|
66
|
-
readonly: boolean;
|
|
67
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
68
|
-
export default _default;
|
|
69
|
-
//# sourceMappingURL=UpstreamsFormGeneralInfo.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpstreamsFormGeneralInfo.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UpstreamsFormGeneralInfo.vue"],"names":[],"mappings":"AAoOA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAE,8BAA8B,EAAE,0BAA0B,EAAE,MAAM,UAAU,CAAA;;;cA0dtE,QAAQ,CAAC,0BAA0B,GAAG,8BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAArE,QAAQ,CAAC,0BAA0B,GAAG,8BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AANzF,wBA+BG"}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
activeHealthSwitch: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
passiveHealthSwitch: {
|
|
7
|
-
type: BooleanConstructor;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
healthchecksThreshold: {
|
|
11
|
-
type: StringConstructor;
|
|
12
|
-
required: true;
|
|
13
|
-
};
|
|
14
|
-
readonly: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
required: false;
|
|
17
|
-
default: boolean;
|
|
18
|
-
};
|
|
19
|
-
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
|
-
"update:active-health-switch": (val: boolean) => any;
|
|
21
|
-
"update:passive-health-switch": (val: boolean) => any;
|
|
22
|
-
"update:healthchecks-threshold": (val: string) => any;
|
|
23
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
-
activeHealthSwitch: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
passiveHealthSwitch: {
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
healthchecksThreshold: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
readonly: {
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
required: false;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
}>> & Readonly<{
|
|
42
|
-
"onUpdate:active-health-switch"?: ((val: boolean) => any) | undefined;
|
|
43
|
-
"onUpdate:passive-health-switch"?: ((val: boolean) => any) | undefined;
|
|
44
|
-
"onUpdate:healthchecks-threshold"?: ((val: string) => any) | undefined;
|
|
45
|
-
}>, {
|
|
46
|
-
readonly: boolean;
|
|
47
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
-
export default _default;
|
|
49
|
-
//# sourceMappingURL=UpstreamsFormHealthChecks.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpstreamsFormHealthChecks.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UpstreamsFormHealthChecks.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0ZA,wBAuBG"}
|
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
import type { PropType } from 'vue';
|
|
2
|
-
import type { UpstreamAlgorithm, UpstreamHash } from '../types';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
stickySessionsAvailable: {
|
|
5
|
-
type: BooleanConstructor;
|
|
6
|
-
required: false;
|
|
7
|
-
default: boolean;
|
|
8
|
-
};
|
|
9
|
-
algorithm: {
|
|
10
|
-
type: PropType<UpstreamAlgorithm>;
|
|
11
|
-
required: true;
|
|
12
|
-
};
|
|
13
|
-
stickySessionsCookie: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
required: true;
|
|
16
|
-
};
|
|
17
|
-
stickySessionsCookiePath: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
required: true;
|
|
20
|
-
};
|
|
21
|
-
slots: {
|
|
22
|
-
type: StringConstructor;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
hashOn: {
|
|
26
|
-
type: PropType<UpstreamHash>;
|
|
27
|
-
required: true;
|
|
28
|
-
};
|
|
29
|
-
hashFallback: {
|
|
30
|
-
type: PropType<UpstreamHash>;
|
|
31
|
-
required: true;
|
|
32
|
-
};
|
|
33
|
-
hashOnHeader: {
|
|
34
|
-
type: StringConstructor;
|
|
35
|
-
required: true;
|
|
36
|
-
};
|
|
37
|
-
hashOnCookie: {
|
|
38
|
-
type: StringConstructor;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
|
-
hashOnCookiePath: {
|
|
42
|
-
type: StringConstructor;
|
|
43
|
-
required: true;
|
|
44
|
-
};
|
|
45
|
-
hashOnQueryArgument: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
required: true;
|
|
48
|
-
};
|
|
49
|
-
hashOnUriCapture: {
|
|
50
|
-
type: StringConstructor;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
hashFallbackHeader: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
required: true;
|
|
56
|
-
};
|
|
57
|
-
hashFallbackQueryArgument: {
|
|
58
|
-
type: StringConstructor;
|
|
59
|
-
required: true;
|
|
60
|
-
};
|
|
61
|
-
hashFallbackUriCapture: {
|
|
62
|
-
type: StringConstructor;
|
|
63
|
-
required: true;
|
|
64
|
-
};
|
|
65
|
-
readonly: {
|
|
66
|
-
type: BooleanConstructor;
|
|
67
|
-
required: false;
|
|
68
|
-
default: boolean;
|
|
69
|
-
};
|
|
70
|
-
}>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
71
|
-
"update:algorithm": (val: UpstreamAlgorithm) => any;
|
|
72
|
-
"update:sticky-sessions-cookie": (val: string) => any;
|
|
73
|
-
"update:sticky-sessions-cookie-path": (val: string) => any;
|
|
74
|
-
"update:slots": (val: string) => any;
|
|
75
|
-
"update:hash-on": (val: UpstreamHash) => any;
|
|
76
|
-
"update:hash-fallback": (val: UpstreamHash) => any;
|
|
77
|
-
"update:hash-on-header": (val: string) => any;
|
|
78
|
-
"update:hash-on-cookie": (val: string) => any;
|
|
79
|
-
"update:hash-on-cookie-path": (val: string) => any;
|
|
80
|
-
"update:hash-on-query-argument": (val: string) => any;
|
|
81
|
-
"update:hash-on-uri-capture": (val: string) => any;
|
|
82
|
-
"update:hash-fallback-header": (val: string) => any;
|
|
83
|
-
"update:hash-fallback-query-argument": (val: string) => any;
|
|
84
|
-
"update:hash-fallback-uri-capture": (val: string) => any;
|
|
85
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
|
-
stickySessionsAvailable: {
|
|
87
|
-
type: BooleanConstructor;
|
|
88
|
-
required: false;
|
|
89
|
-
default: boolean;
|
|
90
|
-
};
|
|
91
|
-
algorithm: {
|
|
92
|
-
type: PropType<UpstreamAlgorithm>;
|
|
93
|
-
required: true;
|
|
94
|
-
};
|
|
95
|
-
stickySessionsCookie: {
|
|
96
|
-
type: StringConstructor;
|
|
97
|
-
required: true;
|
|
98
|
-
};
|
|
99
|
-
stickySessionsCookiePath: {
|
|
100
|
-
type: StringConstructor;
|
|
101
|
-
required: true;
|
|
102
|
-
};
|
|
103
|
-
slots: {
|
|
104
|
-
type: StringConstructor;
|
|
105
|
-
required: true;
|
|
106
|
-
};
|
|
107
|
-
hashOn: {
|
|
108
|
-
type: PropType<UpstreamHash>;
|
|
109
|
-
required: true;
|
|
110
|
-
};
|
|
111
|
-
hashFallback: {
|
|
112
|
-
type: PropType<UpstreamHash>;
|
|
113
|
-
required: true;
|
|
114
|
-
};
|
|
115
|
-
hashOnHeader: {
|
|
116
|
-
type: StringConstructor;
|
|
117
|
-
required: true;
|
|
118
|
-
};
|
|
119
|
-
hashOnCookie: {
|
|
120
|
-
type: StringConstructor;
|
|
121
|
-
required: true;
|
|
122
|
-
};
|
|
123
|
-
hashOnCookiePath: {
|
|
124
|
-
type: StringConstructor;
|
|
125
|
-
required: true;
|
|
126
|
-
};
|
|
127
|
-
hashOnQueryArgument: {
|
|
128
|
-
type: StringConstructor;
|
|
129
|
-
required: true;
|
|
130
|
-
};
|
|
131
|
-
hashOnUriCapture: {
|
|
132
|
-
type: StringConstructor;
|
|
133
|
-
required: true;
|
|
134
|
-
};
|
|
135
|
-
hashFallbackHeader: {
|
|
136
|
-
type: StringConstructor;
|
|
137
|
-
required: true;
|
|
138
|
-
};
|
|
139
|
-
hashFallbackQueryArgument: {
|
|
140
|
-
type: StringConstructor;
|
|
141
|
-
required: true;
|
|
142
|
-
};
|
|
143
|
-
hashFallbackUriCapture: {
|
|
144
|
-
type: StringConstructor;
|
|
145
|
-
required: true;
|
|
146
|
-
};
|
|
147
|
-
readonly: {
|
|
148
|
-
type: BooleanConstructor;
|
|
149
|
-
required: false;
|
|
150
|
-
default: boolean;
|
|
151
|
-
};
|
|
152
|
-
}>> & Readonly<{
|
|
153
|
-
"onUpdate:algorithm"?: ((val: UpstreamAlgorithm) => any) | undefined;
|
|
154
|
-
"onUpdate:sticky-sessions-cookie"?: ((val: string) => any) | undefined;
|
|
155
|
-
"onUpdate:sticky-sessions-cookie-path"?: ((val: string) => any) | undefined;
|
|
156
|
-
"onUpdate:slots"?: ((val: string) => any) | undefined;
|
|
157
|
-
"onUpdate:hash-on"?: ((val: UpstreamHash) => any) | undefined;
|
|
158
|
-
"onUpdate:hash-fallback"?: ((val: UpstreamHash) => any) | undefined;
|
|
159
|
-
"onUpdate:hash-on-header"?: ((val: string) => any) | undefined;
|
|
160
|
-
"onUpdate:hash-on-cookie"?: ((val: string) => any) | undefined;
|
|
161
|
-
"onUpdate:hash-on-cookie-path"?: ((val: string) => any) | undefined;
|
|
162
|
-
"onUpdate:hash-on-query-argument"?: ((val: string) => any) | undefined;
|
|
163
|
-
"onUpdate:hash-on-uri-capture"?: ((val: string) => any) | undefined;
|
|
164
|
-
"onUpdate:hash-fallback-header"?: ((val: string) => any) | undefined;
|
|
165
|
-
"onUpdate:hash-fallback-query-argument"?: ((val: string) => any) | undefined;
|
|
166
|
-
"onUpdate:hash-fallback-uri-capture"?: ((val: string) => any) | undefined;
|
|
167
|
-
}>, {
|
|
168
|
-
stickySessionsAvailable: boolean;
|
|
169
|
-
readonly: boolean;
|
|
170
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
171
|
-
export default _default;
|
|
172
|
-
//# sourceMappingURL=UpstreamsFormLoadBalancing.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"UpstreamsFormLoadBalancing.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UpstreamsFormLoadBalancing.vue"],"names":[],"mappings":"AAgiBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAEnC,OAAO,KAAK,EAAuC,iBAAiB,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;;;;;;;;cAoqChF,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;;;;;;;;;;cAgB3B,QAAQ,CAAC,YAAY,CAAC;;;;cAItB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cApBtB,QAAQ,CAAC,iBAAiB,CAAC;;;;;;;;;;;;;;;;cAgB3B,QAAQ,CAAC,YAAY,CAAC;;;;cAItB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA/B1C,wBAwEG"}
|