@rancher/shell 2.0.0 → 2.0.2-rc.1
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/assets/translations/en-us.yaml +69 -29
- package/assets/translations/zh-hans.yaml +1 -0
- package/components/AlertTable.vue +17 -7
- package/components/AssignTo.vue +2 -0
- package/components/GrafanaDashboard.vue +6 -4
- package/components/PromptRemove.vue +1 -0
- package/components/Questions/index.vue +2 -2
- package/components/auth/RoleDetailEdit.vue +5 -4
- package/components/form/KeyValue.vue +1 -0
- package/components/form/Members/ClusterPermissionsEditor.vue +1 -1
- package/components/form/ProjectMemberEditor.vue +1 -1
- package/components/form/ResourceLabeledSelect.vue +11 -3
- package/components/form/Taints.vue +13 -7
- package/components/form/__tests__/Taints.test.ts +70 -0
- package/components/form/labeled-select-utils/labeled-select.utils.ts +1 -1
- package/components/nav/Header.vue +1 -1
- package/components/nav/TopLevelMenu.vue +1 -4
- package/config/pagination-table-headers.js +5 -4
- package/config/product/auth.js +1 -1
- package/config/roles.ts +34 -19
- package/config/router/navigation-guards/attempt-first-login.js +1 -1
- package/config/router/navigation-guards/authentication.js +1 -1
- package/config/router/navigation-guards/i18n.js +13 -0
- package/config/router/navigation-guards/index.js +3 -1
- package/config/router/navigation-guards/load-initial-settings.js +1 -1
- package/config/router/navigation-guards/runtime-extension-route.js +31 -0
- package/config/router/routes.js +10 -1
- package/config/uiplugins.js +130 -61
- package/core/plugin.ts +5 -0
- package/core/plugins.js +7 -1
- package/detail/__tests__/provisioning.cattle.io.cluster.test.ts +42 -0
- package/detail/provisioning.cattle.io.cluster.vue +4 -4
- package/dialog/DeactivateDriverDialog.vue +30 -11
- package/edit/auth/__tests__/oidc.test.ts +2 -2
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +86 -13
- package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +3 -134
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +209 -0
- package/edit/provisioning.cattle.io.cluster/index.vue +8 -4
- package/edit/provisioning.cattle.io.cluster/rke2.vue +115 -17
- package/edit/provisioning.cattle.io.cluster/tabs/AddOnAdditionalManifest.vue +50 -0
- package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +29 -64
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +42 -3
- package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +22 -86
- package/edit/provisioning.cattle.io.cluster/tabs/registries/RegistryConfigs.vue +8 -2
- package/edit/provisioning.cattle.io.cluster/tabs/registries/__tests__/RegistryConfigs.test.ts +61 -0
- package/edit/token.vue +2 -1
- package/initialize/entry-helpers.js +4 -24
- package/list/management.cattle.io.feature.vue +4 -2
- package/middleware/authenticated.js +0 -19
- package/mixins/__tests__/chart.test.ts +4 -1
- package/mixins/auth-config.js +1 -1
- package/mixins/chart.js +30 -14
- package/models/__tests__/apps.deployment.test.ts +93 -0
- package/models/apps.deployment.js +18 -4
- package/models/driver.js +3 -2
- package/models/kontainerdriver.js +30 -13
- package/models/management.cattle.io.authconfig.js +2 -2
- package/models/management.cattle.io.cluster.js +2 -2
- package/models/management.cattle.io.user.js +3 -3
- package/models/nodedriver.js +35 -13
- package/models/provisioning.cattle.io.cluster.js +4 -0
- package/package.json +3 -2
- package/pages/404.vue +15 -0
- package/pages/auth/login.vue +4 -1
- package/pages/auth/setup.vue +4 -1
- package/pages/c/_cluster/apps/charts/install.vue +3 -2
- package/pages/c/_cluster/explorer/index.vue +5 -0
- package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +0 -3
- package/pages/c/_cluster/manager/drivers/nodeDriver/index.vue +1 -4
- package/pages/c/_cluster/manager/jwt.authentication/index.vue +10 -4
- package/pages/c/_cluster/settings/performance.vue +2 -2
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +2 -1
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +7 -10
- package/pages/c/_cluster/uiplugins/index.vue +24 -16
- package/pages/home.vue +1 -13
- package/plugins/dashboard-store/actions.js +1 -1
- package/plugins/dashboard-store/getters.js +1 -1
- package/plugins/steve/__tests__/getters.test.ts +5 -5
- package/plugins/steve/getters.js +6 -4
- package/plugins/steve/hybrid-class.js +1 -5
- package/promptRemove/pod.vue +15 -7
- package/scripts/extension/helm/charts/ui-plugin-server/Chart.yaml +1 -1
- package/scripts/publish-shell.sh +54 -55
- package/scripts/test-plugins-build.sh +45 -39
- package/shell/types/shell/index.d.ts +2 -0
- package/store/auth.js +1 -1
- package/store/index.js +1 -1
- package/store/type-map.js +4 -2
- package/types/store/pagination.types.ts +1 -1
- package/utils/__tests__/kontainer.test.ts +89 -1
- package/utils/auth.js +1 -1
- package/utils/cluster.js +9 -0
- package/utils/kontainer.ts +5 -1
- package/utils/settings.ts +3 -1
- package/utils/version.js +2 -1
- package/creators/app/app.package.json +0 -13
- package/creators/app/files/.eslintignore +0 -16
- package/creators/app/files/.eslintrc.js +0 -173
- package/creators/app/files/.gitignore +0 -70
- package/creators/app/files/.gitlab-ci.yml +0 -14
- package/creators/app/files/.vscode/settings.json +0 -21
- package/creators/app/files/babel.config.js +0 -1
- package/creators/app/files/tsconfig.json +0 -42
- package/creators/app/files/vue.config.js +0 -6
- package/creators/app/init +0 -120
- package/creators/app/package.json +0 -25
- package/creators/pkg/files/.github/workflows/build-extension-catalog.yml +0 -24
- package/creators/pkg/files/.github/workflows/build-extension-charts.yml +0 -22
- package/creators/pkg/files/babel.config.js +0 -1
- package/creators/pkg/files/index.ts +0 -14
- package/creators/pkg/files/tsconfig.json +0 -53
- package/creators/pkg/files/vue.config.js +0 -1
- package/creators/pkg/init +0 -286
- package/creators/pkg/package.json +0 -19
- package/creators/pkg/pkg.package.json +0 -21
- package/creators/pkg/vue-shim.ts +0 -4
- package/creators/update/init +0 -56
- package/creators/update/package.json +0 -20
- package/creators/update/upgrade +0 -56
- package/rancher-components/components/Accordion/Accordion.test.ts +0 -45
- package/rancher-components/components/Accordion/Accordion.vue +0 -86
- package/rancher-components/components/Accordion/index.ts +0 -1
- package/rancher-components/components/BadgeState/BadgeState.test.ts +0 -12
- package/rancher-components/components/BadgeState/BadgeState.vue +0 -111
- package/rancher-components/components/BadgeState/index.ts +0 -1
- package/rancher-components/components/Banner/Banner.test.ts +0 -59
- package/rancher-components/components/Banner/Banner.vue +0 -244
- package/rancher-components/components/Banner/index.ts +0 -1
- package/rancher-components/components/Card/Card.test.ts +0 -37
- package/rancher-components/components/Card/Card.vue +0 -167
- package/rancher-components/components/Card/index.ts +0 -1
- package/rancher-components/components/Form/Checkbox/Checkbox.test.ts +0 -68
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +0 -421
- package/rancher-components/components/Form/Checkbox/index.ts +0 -1
- package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +0 -40
- package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +0 -402
- package/rancher-components/components/Form/LabeledInput/index.ts +0 -1
- package/rancher-components/components/Form/Radio/RadioButton.test.ts +0 -33
- package/rancher-components/components/Form/Radio/RadioButton.vue +0 -293
- package/rancher-components/components/Form/Radio/RadioGroup.test.ts +0 -30
- package/rancher-components/components/Form/Radio/RadioGroup.vue +0 -259
- package/rancher-components/components/Form/Radio/index.ts +0 -2
- package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +0 -172
- package/rancher-components/components/Form/TextArea/index.ts +0 -1
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.test.ts +0 -94
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +0 -152
- package/rancher-components/components/Form/ToggleSwitch/index.ts +0 -1
- package/rancher-components/components/Form/index.ts +0 -5
- package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +0 -156
- package/rancher-components/components/LabeledTooltip/index.ts +0 -1
- package/rancher-components/components/StringList/StringList.test.ts +0 -754
- package/rancher-components/components/StringList/StringList.vue +0 -650
- package/rancher-components/components/StringList/index.ts +0 -1
- package/types/shell/index.d.ts +0 -4585
package/types/shell/index.d.ts
DELETED
|
@@ -1,4585 +0,0 @@
|
|
|
1
|
-
// Auto-generated type definitions for shell
|
|
2
|
-
// Do not modify this file as changes will get overwritten
|
|
3
|
-
declare module '*.vue' {
|
|
4
|
-
import Vue from 'vue';
|
|
5
|
-
export default Vue;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
// This is required to keep typescript from complaining. It is required for
|
|
9
|
-
// our i18n plugin. For more info see:
|
|
10
|
-
// https://v2.vuejs.org/v2/guide/typescript.html?redirect=true#Augmenting-Types-for-Use-with-Plugins
|
|
11
|
-
declare module 'vue/types/vue' {
|
|
12
|
-
// eslint-disable-next-line no-unused-vars
|
|
13
|
-
interface Vue {
|
|
14
|
-
/**
|
|
15
|
-
* Lookup a given string with the given arguments
|
|
16
|
-
* @param raw if set, do not do HTML escaping.
|
|
17
|
-
*/
|
|
18
|
-
t: (key: string, args?: Record<string, any>, raw?: boolean) => string,
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
declare module 'js-yaml';
|
|
23
|
-
|
|
24
|
-
// @shell/config/labels-annotations
|
|
25
|
-
|
|
26
|
-
declare module '@shell/config/labels-annotations' {
|
|
27
|
-
export const NORMAN_NAME: "field.cattle.io/name";
|
|
28
|
-
export const DESCRIPTION: "field.cattle.io/description";
|
|
29
|
-
export const HOSTNAME: "kubernetes.io/hostname";
|
|
30
|
-
export const TIMESTAMP: "cattle.io/timestamp";
|
|
31
|
-
export const SYSTEM_NAMESPACE: "management.cattle.io/system-namespace";
|
|
32
|
-
export const PROJECT: "field.cattle.io/projectId";
|
|
33
|
-
export const DEFAULT_PROJECT: "authz.management.cattle.io/default-project";
|
|
34
|
-
export const SYSTEM_PROJECT: "authz.management.cattle.io/system-project";
|
|
35
|
-
export const CONTAINER_DEFAULT_RESOURCE_LIMIT: "field.cattle.io/containerDefaultResourceLimit";
|
|
36
|
-
export const CATTLE_PUBLIC_ENDPOINTS: "field.cattle.io/publicEndpoints";
|
|
37
|
-
export const TARGET_WORKLOADS: "field.cattle.io/targetWorkloadIds";
|
|
38
|
-
export const UI_MANAGED: "management.cattle.io/ui-managed";
|
|
39
|
-
export const CREATOR_ID: "field.cattle.io/creatorId";
|
|
40
|
-
export const RESOURCE_QUOTA: "field.cattle.io/resourceQuota";
|
|
41
|
-
export const AZURE_MIGRATED: "auth.cattle.io/azuread-endpoint-migrated";
|
|
42
|
-
export const WORKSPACE_ANNOTATION: "objectset.rio.cattle.io/id";
|
|
43
|
-
export const NODE_ARCHITECTURE: "kubernetes.io/arch";
|
|
44
|
-
export namespace KUBERNETES {
|
|
45
|
-
const SERVICE_ACCOUNT_UID: string;
|
|
46
|
-
const SERVICE_ACCOUNT_NAME: string;
|
|
47
|
-
const MANAGED_BY: string;
|
|
48
|
-
const MANAGED_NAME: string;
|
|
49
|
-
const INSTANCE: string;
|
|
50
|
-
}
|
|
51
|
-
export namespace CERTMANAGER {
|
|
52
|
-
const ISSUER: string;
|
|
53
|
-
}
|
|
54
|
-
export namespace STORAGE {
|
|
55
|
-
const DEFAULT_STORAGE_CLASS: string;
|
|
56
|
-
const BETA_DEFAULT_STORAGE_CLASS: string;
|
|
57
|
-
}
|
|
58
|
-
export namespace MANAGEMENT_NODE {
|
|
59
|
-
const NODE_NAME: string;
|
|
60
|
-
}
|
|
61
|
-
export namespace NODE_ROLES {
|
|
62
|
-
const CONTROL_PLANE_OLD: string;
|
|
63
|
-
const CONTROL_PLANE: string;
|
|
64
|
-
const WORKER: string;
|
|
65
|
-
const ETCD: string;
|
|
66
|
-
}
|
|
67
|
-
export namespace MACHINE_ROLES {
|
|
68
|
-
const CONTROL_PLANE_1: string;
|
|
69
|
-
export { CONTROL_PLANE_1 as CONTROL_PLANE };
|
|
70
|
-
const WORKER_1: string;
|
|
71
|
-
export { WORKER_1 as WORKER };
|
|
72
|
-
const ETCD_1: string;
|
|
73
|
-
export { ETCD_1 as ETCD };
|
|
74
|
-
}
|
|
75
|
-
export namespace CAPI {
|
|
76
|
-
const DEPLOYMENT_NAME: string;
|
|
77
|
-
const CREDENTIAL_DRIVER: string;
|
|
78
|
-
const CLUSTER_NAMESPACE: string;
|
|
79
|
-
const FORCE_MACHINE_REMOVE: string;
|
|
80
|
-
const MACHINE_NAME: string;
|
|
81
|
-
const DELETE_MACHINE: string;
|
|
82
|
-
const PROVIDER: string;
|
|
83
|
-
const SECRET_AUTH: string;
|
|
84
|
-
const SECRET_WILL_DELETE: string;
|
|
85
|
-
const UI_CUSTOM_PROVIDER: string;
|
|
86
|
-
}
|
|
87
|
-
export namespace CATALOG {
|
|
88
|
-
const CERTIFIED: string;
|
|
89
|
-
const _RANCHER: string;
|
|
90
|
-
const _PARTNER: string;
|
|
91
|
-
const _OTHER: string;
|
|
92
|
-
const EXPERIMENTAL: string;
|
|
93
|
-
const NAMESPACE: string;
|
|
94
|
-
const RELEASE_NAME: string;
|
|
95
|
-
const FEATURED: string;
|
|
96
|
-
const REQUIRES_GVK: string;
|
|
97
|
-
const PROVIDES: string;
|
|
98
|
-
const AUTO_INSTALL_GVK: string;
|
|
99
|
-
const AUTO_INSTALL: string;
|
|
100
|
-
const HIDDEN: string;
|
|
101
|
-
const REQUESTS_CPU: string;
|
|
102
|
-
const REQUESTS_MEMORY: string;
|
|
103
|
-
const SCOPE: string;
|
|
104
|
-
const _MANAGEMENT: string;
|
|
105
|
-
const _DOWNSTREAM: string;
|
|
106
|
-
const TYPE: string;
|
|
107
|
-
const _APP: string;
|
|
108
|
-
const _CLUSTER_TPL: string;
|
|
109
|
-
const _CLUSTER_TOOL: string;
|
|
110
|
-
const COMPONENT: string;
|
|
111
|
-
const SOURCE_REPO_TYPE: string;
|
|
112
|
-
const SOURCE_REPO_NAME: string;
|
|
113
|
-
const COLOR: string;
|
|
114
|
-
const DISPLAY_NAME: string;
|
|
115
|
-
const SUPPORTED_OS: string;
|
|
116
|
-
const PERMITTED_OS: string;
|
|
117
|
-
const DEPLOYED_OS: string;
|
|
118
|
-
const MIGRATED: string;
|
|
119
|
-
const MANAGED: string;
|
|
120
|
-
const HIDDEN_REPO: string;
|
|
121
|
-
}
|
|
122
|
-
export namespace FLEET {
|
|
123
|
-
export const CLUSTER_DISPLAY_NAME: string;
|
|
124
|
-
export const CLUSTER_NAME: string;
|
|
125
|
-
export const BUNDLE_ID: string;
|
|
126
|
-
const MANAGED_1: string;
|
|
127
|
-
export { MANAGED_1 as MANAGED };
|
|
128
|
-
export const CLUSTER: string;
|
|
129
|
-
}
|
|
130
|
-
export namespace RBAC {
|
|
131
|
-
const PRODUCT: string;
|
|
132
|
-
}
|
|
133
|
-
export namespace RKE {
|
|
134
|
-
const EXTERNAL_IP: string;
|
|
135
|
-
}
|
|
136
|
-
export namespace SNAPSHOT {
|
|
137
|
-
const CLUSTER_NAME_1: string;
|
|
138
|
-
export { CLUSTER_NAME_1 as CLUSTER_NAME };
|
|
139
|
-
}
|
|
140
|
-
export namespace ISTIO {
|
|
141
|
-
const AUTO_INJECTION: string;
|
|
142
|
-
}
|
|
143
|
-
export const LABELS_TO_IGNORE_REGEX: RegExp[];
|
|
144
|
-
export const ANNOTATIONS_TO_IGNORE_REGEX: RegExp[];
|
|
145
|
-
export const ANNOTATIONS_TO_FOLD: RegExp[];
|
|
146
|
-
export namespace HCI {
|
|
147
|
-
const CLOUD_INIT: string;
|
|
148
|
-
const CLOUD_PROVIDER_IPAM: string;
|
|
149
|
-
const NETWORK_ROUTE: string;
|
|
150
|
-
const IMAGE_NAME: string;
|
|
151
|
-
const NETWORK_TYPE: string;
|
|
152
|
-
const PRIMARY_SERVICE: string;
|
|
153
|
-
}
|
|
154
|
-
export namespace CLUSTER_BADGE {
|
|
155
|
-
export const TEXT: string;
|
|
156
|
-
const COLOR_1: string;
|
|
157
|
-
export { COLOR_1 as COLOR };
|
|
158
|
-
export const ICON_TEXT: string;
|
|
159
|
-
}
|
|
160
|
-
export const SYSTEM_LABELS: string[];
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
// @shell/config/query-params
|
|
164
|
-
|
|
165
|
-
declare module '@shell/config/query-params' {
|
|
166
|
-
export const SPA: "spa";
|
|
167
|
-
export const LOCAL: "local";
|
|
168
|
-
export const SETUP: "setup";
|
|
169
|
-
export const STEP: "step";
|
|
170
|
-
export const LOGGED_OUT: "logged-out";
|
|
171
|
-
export const IS_SSO: "is-sso";
|
|
172
|
-
export const UPGRADED: "upgraded";
|
|
173
|
-
export const TIMED_OUT: "timed-out";
|
|
174
|
-
export const AUTH_TEST: "test";
|
|
175
|
-
export const BACK_TO: "back-to";
|
|
176
|
-
export const GITHUB_CODE: "code";
|
|
177
|
-
export const GITHUB_NONCE: "state";
|
|
178
|
-
export const GITHUB_SCOPE: "scope";
|
|
179
|
-
export const GITHUB_REDIRECT: "redirect_uri";
|
|
180
|
-
export const _FLAGGED: any;
|
|
181
|
-
export const _UNFLAG: any;
|
|
182
|
-
export const SEARCH_QUERY: "q";
|
|
183
|
-
export const SORT_BY: "sort";
|
|
184
|
-
export const DESCENDING: "desc";
|
|
185
|
-
export const PAGE: "page";
|
|
186
|
-
export const MODE: "mode";
|
|
187
|
-
export const _CREATE: "create";
|
|
188
|
-
export const _VIEW: "view";
|
|
189
|
-
export const _EDIT: "edit";
|
|
190
|
-
export const _LIST: "list";
|
|
191
|
-
export const _CLONE: "clone";
|
|
192
|
-
export const _STAGE: "stage";
|
|
193
|
-
export const _IMPORT: "import";
|
|
194
|
-
export const AS: "as";
|
|
195
|
-
export const _DETAIL: "detail";
|
|
196
|
-
export const _CONFIG: "config";
|
|
197
|
-
export const _YAML: "yaml";
|
|
198
|
-
export const _GRAPH: "graph";
|
|
199
|
-
export const FOCUS: "focus";
|
|
200
|
-
export const PREVIEW: "preview";
|
|
201
|
-
export const DIFF: "diff";
|
|
202
|
-
export const _UNIFIED: "unified";
|
|
203
|
-
export const _SPLIT: "split";
|
|
204
|
-
export const SUB_TYPE: "type";
|
|
205
|
-
export const RKE_TYPE: "rkeType";
|
|
206
|
-
export const REPO_TYPE: "repo-type";
|
|
207
|
-
export const REPO: "repo";
|
|
208
|
-
export const CHART: "chart";
|
|
209
|
-
export const VERSION: "version";
|
|
210
|
-
export const NAME: "name";
|
|
211
|
-
export const NAMESPACE: "namespace";
|
|
212
|
-
export const DESCRIPTION: "description";
|
|
213
|
-
export const CATEGORY: "category";
|
|
214
|
-
export const OPERATING_SYSTEM: "os";
|
|
215
|
-
export const DEPRECATED: "deprecated";
|
|
216
|
-
export const HIDDEN: "hidden";
|
|
217
|
-
export const FROM_TOOLS: "tools";
|
|
218
|
-
export const FROM_CLUSTER: "cluster";
|
|
219
|
-
export const HIDE_SIDE_NAV: "hide-side-nav";
|
|
220
|
-
export const PROVIDER: "provider";
|
|
221
|
-
export const CLOUD_CREDENTIAL: "cloud";
|
|
222
|
-
export const PROJECT_ID: "projectId";
|
|
223
|
-
export const FLAT_VIEW: "flatView";
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
// @shell/config/table-headers
|
|
227
|
-
|
|
228
|
-
declare module '@shell/config/table-headers' {
|
|
229
|
-
export namespace STATE {
|
|
230
|
-
export const name: string;
|
|
231
|
-
export const labelKey: string;
|
|
232
|
-
export const sort: string[];
|
|
233
|
-
export const value: string;
|
|
234
|
-
export function getValue(row: any): any;
|
|
235
|
-
export const width: number;
|
|
236
|
-
const _default: string;
|
|
237
|
-
export { _default as default };
|
|
238
|
-
export const formatter: string;
|
|
239
|
-
}
|
|
240
|
-
export namespace USER_STATE {
|
|
241
|
-
const name_1: string;
|
|
242
|
-
export { name_1 as name };
|
|
243
|
-
const labelKey_1: string;
|
|
244
|
-
export { labelKey_1 as labelKey };
|
|
245
|
-
const sort_1: string[];
|
|
246
|
-
export { sort_1 as sort };
|
|
247
|
-
const value_1: string;
|
|
248
|
-
export { value_1 as value };
|
|
249
|
-
export function getValue_1(row: any): any;
|
|
250
|
-
export { getValue_1 as getValue };
|
|
251
|
-
const width_1: number;
|
|
252
|
-
export { width_1 as width };
|
|
253
|
-
const _default_1: string;
|
|
254
|
-
export { _default_1 as default };
|
|
255
|
-
const formatter_1: string;
|
|
256
|
-
export { formatter_1 as formatter };
|
|
257
|
-
}
|
|
258
|
-
export namespace DOWNLOAD {
|
|
259
|
-
const name_2: string;
|
|
260
|
-
export { name_2 as name };
|
|
261
|
-
const labelKey_2: string;
|
|
262
|
-
export { labelKey_2 as labelKey };
|
|
263
|
-
const value_2: string;
|
|
264
|
-
export { value_2 as value };
|
|
265
|
-
export const canBeVariable: boolean;
|
|
266
|
-
export const align: string;
|
|
267
|
-
}
|
|
268
|
-
export namespace INTERNAL_EXTERNAL_IP {
|
|
269
|
-
const name_3: string;
|
|
270
|
-
export { name_3 as name };
|
|
271
|
-
const labelKey_3: string;
|
|
272
|
-
export { labelKey_3 as labelKey };
|
|
273
|
-
export const search: string[];
|
|
274
|
-
const sort_2: string[];
|
|
275
|
-
export { sort_2 as sort };
|
|
276
|
-
const formatter_2: string;
|
|
277
|
-
export { formatter_2 as formatter };
|
|
278
|
-
}
|
|
279
|
-
export namespace NAME {
|
|
280
|
-
const name_4: string;
|
|
281
|
-
export { name_4 as name };
|
|
282
|
-
const labelKey_4: string;
|
|
283
|
-
export { labelKey_4 as labelKey };
|
|
284
|
-
const value_3: string;
|
|
285
|
-
export { value_3 as value };
|
|
286
|
-
export function getValue_2(row: any): any;
|
|
287
|
-
export { getValue_2 as getValue };
|
|
288
|
-
const sort_3: string[];
|
|
289
|
-
export { sort_3 as sort };
|
|
290
|
-
const formatter_3: string;
|
|
291
|
-
export { formatter_3 as formatter };
|
|
292
|
-
const canBeVariable_1: boolean;
|
|
293
|
-
export { canBeVariable_1 as canBeVariable };
|
|
294
|
-
}
|
|
295
|
-
export namespace LOGGING_OUTPUT_PROVIDERS {
|
|
296
|
-
const name_5: string;
|
|
297
|
-
export { name_5 as name };
|
|
298
|
-
const labelKey_5: string;
|
|
299
|
-
export { labelKey_5 as labelKey };
|
|
300
|
-
const value_4: string;
|
|
301
|
-
export { value_4 as value };
|
|
302
|
-
const sort_4: string[];
|
|
303
|
-
export { sort_4 as sort };
|
|
304
|
-
const formatter_4: string;
|
|
305
|
-
export { formatter_4 as formatter };
|
|
306
|
-
}
|
|
307
|
-
export namespace SIMPLE_NAME {
|
|
308
|
-
const name_6: string;
|
|
309
|
-
export { name_6 as name };
|
|
310
|
-
const labelKey_6: string;
|
|
311
|
-
export { labelKey_6 as labelKey };
|
|
312
|
-
const value_5: string;
|
|
313
|
-
export { value_5 as value };
|
|
314
|
-
const sort_5: string[];
|
|
315
|
-
export { sort_5 as sort };
|
|
316
|
-
const width_2: number;
|
|
317
|
-
export { width_2 as width };
|
|
318
|
-
const canBeVariable_2: boolean;
|
|
319
|
-
export { canBeVariable_2 as canBeVariable };
|
|
320
|
-
}
|
|
321
|
-
export namespace EFFECT {
|
|
322
|
-
const name_7: string;
|
|
323
|
-
export { name_7 as name };
|
|
324
|
-
const labelKey_7: string;
|
|
325
|
-
export { labelKey_7 as labelKey };
|
|
326
|
-
const value_6: string;
|
|
327
|
-
export { value_6 as value };
|
|
328
|
-
const sort_6: string[];
|
|
329
|
-
export { sort_6 as sort };
|
|
330
|
-
}
|
|
331
|
-
export namespace STORAGE_CLASS_PROVISIONER {
|
|
332
|
-
const name_8: string;
|
|
333
|
-
export { name_8 as name };
|
|
334
|
-
const labelKey_8: string;
|
|
335
|
-
export { labelKey_8 as labelKey };
|
|
336
|
-
const value_7: string;
|
|
337
|
-
export { value_7 as value };
|
|
338
|
-
const sort_7: string[];
|
|
339
|
-
export { sort_7 as sort };
|
|
340
|
-
}
|
|
341
|
-
export namespace STORAGE_CLASS_DEFAULT {
|
|
342
|
-
const name_9: string;
|
|
343
|
-
export { name_9 as name };
|
|
344
|
-
const labelKey_9: string;
|
|
345
|
-
export { labelKey_9 as labelKey };
|
|
346
|
-
const value_8: string;
|
|
347
|
-
export { value_8 as value };
|
|
348
|
-
const sort_8: string[];
|
|
349
|
-
export { sort_8 as sort };
|
|
350
|
-
const formatter_5: string;
|
|
351
|
-
export { formatter_5 as formatter };
|
|
352
|
-
}
|
|
353
|
-
export namespace PERSISTENT_VOLUME_SOURCE {
|
|
354
|
-
const name_10: string;
|
|
355
|
-
export { name_10 as name };
|
|
356
|
-
const labelKey_10: string;
|
|
357
|
-
export { labelKey_10 as labelKey };
|
|
358
|
-
const value_9: string;
|
|
359
|
-
export { value_9 as value };
|
|
360
|
-
const sort_9: string[];
|
|
361
|
-
export { sort_9 as sort };
|
|
362
|
-
}
|
|
363
|
-
export namespace PERSISTENT_VOLUME_CLAIM {
|
|
364
|
-
const name_11: string;
|
|
365
|
-
export { name_11 as name };
|
|
366
|
-
const labelKey_11: string;
|
|
367
|
-
export { labelKey_11 as labelKey };
|
|
368
|
-
const sort_10: string[];
|
|
369
|
-
export { sort_10 as sort };
|
|
370
|
-
const value_10: string;
|
|
371
|
-
export { value_10 as value };
|
|
372
|
-
const formatter_6: string;
|
|
373
|
-
export { formatter_6 as formatter };
|
|
374
|
-
export namespace formatterOpts {
|
|
375
|
-
const reference: string;
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
export namespace OUTPUT {
|
|
379
|
-
const name_12: string;
|
|
380
|
-
export { name_12 as name };
|
|
381
|
-
const labelKey_12: string;
|
|
382
|
-
export { labelKey_12 as labelKey };
|
|
383
|
-
const value_11: string;
|
|
384
|
-
export { value_11 as value };
|
|
385
|
-
const sort_11: string[];
|
|
386
|
-
export { sort_11 as sort };
|
|
387
|
-
const formatter_7: string;
|
|
388
|
-
export { formatter_7 as formatter };
|
|
389
|
-
export namespace formatterOpts_1 {
|
|
390
|
-
namespace options {
|
|
391
|
-
const internal: boolean;
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
export { formatterOpts_1 as formatterOpts };
|
|
395
|
-
}
|
|
396
|
-
export namespace CONFIGURED_PROVIDERS {
|
|
397
|
-
const name_13: string;
|
|
398
|
-
export { name_13 as name };
|
|
399
|
-
const labelKey_13: string;
|
|
400
|
-
export { labelKey_13 as labelKey };
|
|
401
|
-
const value_12: string;
|
|
402
|
-
export { value_12 as value };
|
|
403
|
-
const sort_12: string;
|
|
404
|
-
export { sort_12 as sort };
|
|
405
|
-
const formatter_8: string;
|
|
406
|
-
export { formatter_8 as formatter };
|
|
407
|
-
}
|
|
408
|
-
export namespace CLUSTER_OUTPUT {
|
|
409
|
-
const name_14: string;
|
|
410
|
-
export { name_14 as name };
|
|
411
|
-
const value_13: string;
|
|
412
|
-
export { value_13 as value };
|
|
413
|
-
const sort_13: string[];
|
|
414
|
-
export { sort_13 as sort };
|
|
415
|
-
const labelKey_14: string;
|
|
416
|
-
export { labelKey_14 as labelKey };
|
|
417
|
-
}
|
|
418
|
-
export namespace ID_UNLINKED {
|
|
419
|
-
const name_15: string;
|
|
420
|
-
export { name_15 as name };
|
|
421
|
-
const labelKey_15: string;
|
|
422
|
-
export { labelKey_15 as labelKey };
|
|
423
|
-
const value_14: string;
|
|
424
|
-
export { value_14 as value };
|
|
425
|
-
const sort_14: string[];
|
|
426
|
-
export { sort_14 as sort };
|
|
427
|
-
const canBeVariable_3: boolean;
|
|
428
|
-
export { canBeVariable_3 as canBeVariable };
|
|
429
|
-
}
|
|
430
|
-
export namespace NAME_UNLINKED {
|
|
431
|
-
const name_16: string;
|
|
432
|
-
export { name_16 as name };
|
|
433
|
-
const labelKey_16: string;
|
|
434
|
-
export { labelKey_16 as labelKey };
|
|
435
|
-
const value_15: string;
|
|
436
|
-
export { value_15 as value };
|
|
437
|
-
const sort_15: string[];
|
|
438
|
-
export { sort_15 as sort };
|
|
439
|
-
const canBeVariable_4: boolean;
|
|
440
|
-
export { canBeVariable_4 as canBeVariable };
|
|
441
|
-
}
|
|
442
|
-
export namespace NAMESPACE {
|
|
443
|
-
const name_17: string;
|
|
444
|
-
export { name_17 as name };
|
|
445
|
-
const labelKey_17: string;
|
|
446
|
-
export { labelKey_17 as labelKey };
|
|
447
|
-
const value_16: string;
|
|
448
|
-
export { value_16 as value };
|
|
449
|
-
export function getValue_3(row: any): any;
|
|
450
|
-
export { getValue_3 as getValue };
|
|
451
|
-
const sort_16: string;
|
|
452
|
-
export { sort_16 as sort };
|
|
453
|
-
export const dashIfEmpty: boolean;
|
|
454
|
-
}
|
|
455
|
-
export namespace NODE {
|
|
456
|
-
const name_18: string;
|
|
457
|
-
export { name_18 as name };
|
|
458
|
-
const labelKey_18: string;
|
|
459
|
-
export { labelKey_18 as labelKey };
|
|
460
|
-
const value_17: string;
|
|
461
|
-
export { value_17 as value };
|
|
462
|
-
export function getValue_4(row: any): any;
|
|
463
|
-
export { getValue_4 as getValue };
|
|
464
|
-
const sort_17: string;
|
|
465
|
-
export { sort_17 as sort };
|
|
466
|
-
const formatter_9: string;
|
|
467
|
-
export { formatter_9 as formatter };
|
|
468
|
-
export namespace formatterOpts_2 {
|
|
469
|
-
export { NODE_TYPE as type };
|
|
470
|
-
}
|
|
471
|
-
export { formatterOpts_2 as formatterOpts };
|
|
472
|
-
}
|
|
473
|
-
export namespace NODE_NAME {
|
|
474
|
-
const name_19: string;
|
|
475
|
-
export { name_19 as name };
|
|
476
|
-
const labelKey_19: string;
|
|
477
|
-
export { labelKey_19 as labelKey };
|
|
478
|
-
const sort_18: string;
|
|
479
|
-
export { sort_18 as sort };
|
|
480
|
-
const value_18: string;
|
|
481
|
-
export { value_18 as value };
|
|
482
|
-
export function getValue_5(row: any): any;
|
|
483
|
-
export { getValue_5 as getValue };
|
|
484
|
-
const formatter_10: string;
|
|
485
|
-
export { formatter_10 as formatter };
|
|
486
|
-
}
|
|
487
|
-
export namespace ROLES {
|
|
488
|
-
const name_20: string;
|
|
489
|
-
export { name_20 as name };
|
|
490
|
-
const labelKey_20: string;
|
|
491
|
-
export { labelKey_20 as labelKey };
|
|
492
|
-
const sort_19: string;
|
|
493
|
-
export { sort_19 as sort };
|
|
494
|
-
const value_19: string;
|
|
495
|
-
export { value_19 as value };
|
|
496
|
-
}
|
|
497
|
-
export namespace VERSION {
|
|
498
|
-
const name_21: string;
|
|
499
|
-
export { name_21 as name };
|
|
500
|
-
const labelKey_21: string;
|
|
501
|
-
export { labelKey_21 as labelKey };
|
|
502
|
-
const sort_20: string;
|
|
503
|
-
export { sort_20 as sort };
|
|
504
|
-
const value_20: string;
|
|
505
|
-
export { value_20 as value };
|
|
506
|
-
export function getValue_6(row: any): any;
|
|
507
|
-
export { getValue_6 as getValue };
|
|
508
|
-
}
|
|
509
|
-
export namespace CPU {
|
|
510
|
-
const name_22: string;
|
|
511
|
-
export { name_22 as name };
|
|
512
|
-
const labelKey_22: string;
|
|
513
|
-
export { labelKey_22 as labelKey };
|
|
514
|
-
const sort_21: string;
|
|
515
|
-
export { sort_21 as sort };
|
|
516
|
-
const search_1: boolean;
|
|
517
|
-
export { search_1 as search };
|
|
518
|
-
const value_21: string;
|
|
519
|
-
export { value_21 as value };
|
|
520
|
-
const formatter_11: string;
|
|
521
|
-
export { formatter_11 as formatter };
|
|
522
|
-
const width_3: number;
|
|
523
|
-
export { width_3 as width };
|
|
524
|
-
}
|
|
525
|
-
export namespace RAM {
|
|
526
|
-
const name_23: string;
|
|
527
|
-
export { name_23 as name };
|
|
528
|
-
const labelKey_23: string;
|
|
529
|
-
export { labelKey_23 as labelKey };
|
|
530
|
-
const sort_22: string;
|
|
531
|
-
export { sort_22 as sort };
|
|
532
|
-
const search_2: boolean;
|
|
533
|
-
export { search_2 as search };
|
|
534
|
-
const value_22: string;
|
|
535
|
-
export { value_22 as value };
|
|
536
|
-
const formatter_12: string;
|
|
537
|
-
export { formatter_12 as formatter };
|
|
538
|
-
const width_4: number;
|
|
539
|
-
export { width_4 as width };
|
|
540
|
-
}
|
|
541
|
-
export namespace PRINCIPAL {
|
|
542
|
-
const name_24: string;
|
|
543
|
-
export { name_24 as name };
|
|
544
|
-
const labelKey_24: string;
|
|
545
|
-
export { labelKey_24 as labelKey };
|
|
546
|
-
const sort_23: string;
|
|
547
|
-
export { sort_23 as sort };
|
|
548
|
-
const value_23: string;
|
|
549
|
-
export { value_23 as value };
|
|
550
|
-
const formatter_13: string;
|
|
551
|
-
export { formatter_13 as formatter };
|
|
552
|
-
}
|
|
553
|
-
export namespace PODS {
|
|
554
|
-
const name_25: string;
|
|
555
|
-
export { name_25 as name };
|
|
556
|
-
const labelKey_25: string;
|
|
557
|
-
export { labelKey_25 as labelKey };
|
|
558
|
-
const sort_24: string;
|
|
559
|
-
export { sort_24 as sort };
|
|
560
|
-
const search_3: boolean;
|
|
561
|
-
export { search_3 as search };
|
|
562
|
-
export function value_24(row: any): any;
|
|
563
|
-
export { value_24 as value };
|
|
564
|
-
const formatter_14: string;
|
|
565
|
-
export { formatter_14 as formatter };
|
|
566
|
-
const width_5: number;
|
|
567
|
-
export { width_5 as width };
|
|
568
|
-
}
|
|
569
|
-
export namespace AGE {
|
|
570
|
-
const name_26: string;
|
|
571
|
-
export { name_26 as name };
|
|
572
|
-
const labelKey_26: string;
|
|
573
|
-
export { labelKey_26 as labelKey };
|
|
574
|
-
const value_25: string;
|
|
575
|
-
export { value_25 as value };
|
|
576
|
-
export function getValue_7(row: any): any;
|
|
577
|
-
export { getValue_7 as getValue };
|
|
578
|
-
const sort_25: string;
|
|
579
|
-
export { sort_25 as sort };
|
|
580
|
-
const search_4: boolean;
|
|
581
|
-
export { search_4 as search };
|
|
582
|
-
const formatter_15: string;
|
|
583
|
-
export { formatter_15 as formatter };
|
|
584
|
-
const width_6: number;
|
|
585
|
-
export { width_6 as width };
|
|
586
|
-
const align_1: string;
|
|
587
|
-
export { align_1 as align };
|
|
588
|
-
}
|
|
589
|
-
export namespace AGE_NORMAN {
|
|
590
|
-
export function getValue_8(row: any): any;
|
|
591
|
-
export { getValue_8 as getValue };
|
|
592
|
-
const value_26: string;
|
|
593
|
-
export { value_26 as value };
|
|
594
|
-
const sort_26: string;
|
|
595
|
-
export { sort_26 as sort };
|
|
596
|
-
}
|
|
597
|
-
export namespace CREATION_DATE {
|
|
598
|
-
const name_27: string;
|
|
599
|
-
export { name_27 as name };
|
|
600
|
-
const labelKey_27: string;
|
|
601
|
-
export { labelKey_27 as labelKey };
|
|
602
|
-
const value_27: string;
|
|
603
|
-
export { value_27 as value };
|
|
604
|
-
const sort_27: string[];
|
|
605
|
-
export { sort_27 as sort };
|
|
606
|
-
const formatter_16: string;
|
|
607
|
-
export { formatter_16 as formatter };
|
|
608
|
-
}
|
|
609
|
-
export namespace DESCRIPTION {
|
|
610
|
-
const name_28: string;
|
|
611
|
-
export { name_28 as name };
|
|
612
|
-
const labelKey_28: string;
|
|
613
|
-
export { labelKey_28 as labelKey };
|
|
614
|
-
const align_2: string;
|
|
615
|
-
export { align_2 as align };
|
|
616
|
-
const sort_28: string[];
|
|
617
|
-
export { sort_28 as sort };
|
|
618
|
-
const width_7: number;
|
|
619
|
-
export { width_7 as width };
|
|
620
|
-
}
|
|
621
|
-
export namespace DURATION {
|
|
622
|
-
const name_29: string;
|
|
623
|
-
export { name_29 as name };
|
|
624
|
-
const labelKey_29: string;
|
|
625
|
-
export { labelKey_29 as labelKey };
|
|
626
|
-
const value_28: string;
|
|
627
|
-
export { value_28 as value };
|
|
628
|
-
const sort_29: string;
|
|
629
|
-
export { sort_29 as sort };
|
|
630
|
-
const formatter_17: string;
|
|
631
|
-
export { formatter_17 as formatter };
|
|
632
|
-
}
|
|
633
|
-
export namespace IMAGE_NAME {
|
|
634
|
-
const name_30: string;
|
|
635
|
-
export { name_30 as name };
|
|
636
|
-
const labelKey_30: string;
|
|
637
|
-
export { labelKey_30 as labelKey };
|
|
638
|
-
const value_29: string;
|
|
639
|
-
export { value_29 as value };
|
|
640
|
-
const sort_30: string[];
|
|
641
|
-
export { sort_30 as sort };
|
|
642
|
-
const formatter_18: string;
|
|
643
|
-
export { formatter_18 as formatter };
|
|
644
|
-
}
|
|
645
|
-
export namespace POD_IMAGES {
|
|
646
|
-
const name_31: string;
|
|
647
|
-
export { name_31 as name };
|
|
648
|
-
const labelKey_31: string;
|
|
649
|
-
export { labelKey_31 as labelKey };
|
|
650
|
-
const value_30: string;
|
|
651
|
-
export { value_30 as value };
|
|
652
|
-
export function getValue_9(row: any): any;
|
|
653
|
-
export { getValue_9 as getValue };
|
|
654
|
-
const sort_31: string;
|
|
655
|
-
export { sort_31 as sort };
|
|
656
|
-
const formatter_19: string;
|
|
657
|
-
export { formatter_19 as formatter };
|
|
658
|
-
}
|
|
659
|
-
export namespace POD_RESTARTS {
|
|
660
|
-
const name_32: string;
|
|
661
|
-
export { name_32 as name };
|
|
662
|
-
const labelKey_32: string;
|
|
663
|
-
export { labelKey_32 as labelKey };
|
|
664
|
-
const formatter_20: string;
|
|
665
|
-
export { formatter_20 as formatter };
|
|
666
|
-
export const delayLoading: boolean;
|
|
667
|
-
const value_31: string;
|
|
668
|
-
export { value_31 as value };
|
|
669
|
-
export function getValue_10(row: any): any;
|
|
670
|
-
export { getValue_10 as getValue };
|
|
671
|
-
const search_5: boolean;
|
|
672
|
-
export { search_5 as search };
|
|
673
|
-
export const liveUpdates: boolean;
|
|
674
|
-
}
|
|
675
|
-
export namespace ENDPOINTS {
|
|
676
|
-
const name_33: string;
|
|
677
|
-
export { name_33 as name };
|
|
678
|
-
const labelKey_33: string;
|
|
679
|
-
export { labelKey_33 as labelKey };
|
|
680
|
-
const value_32: string;
|
|
681
|
-
export { value_32 as value };
|
|
682
|
-
const formatter_21: string;
|
|
683
|
-
export { formatter_21 as formatter };
|
|
684
|
-
const width_8: number;
|
|
685
|
-
export { width_8 as width };
|
|
686
|
-
const align_3: string;
|
|
687
|
-
export { align_3 as align };
|
|
688
|
-
}
|
|
689
|
-
export namespace SCALE {
|
|
690
|
-
const name_34: string;
|
|
691
|
-
export { name_34 as name };
|
|
692
|
-
const labelKey_34: string;
|
|
693
|
-
export { labelKey_34 as labelKey };
|
|
694
|
-
const value_33: string;
|
|
695
|
-
export { value_33 as value };
|
|
696
|
-
const sort_32: string[];
|
|
697
|
-
export { sort_32 as sort };
|
|
698
|
-
const formatter_22: string;
|
|
699
|
-
export { formatter_22 as formatter };
|
|
700
|
-
const width_9: number;
|
|
701
|
-
export { width_9 as width };
|
|
702
|
-
const align_4: string;
|
|
703
|
-
export { align_4 as align };
|
|
704
|
-
}
|
|
705
|
-
export namespace SIMPLE_SCALE {
|
|
706
|
-
const name_35: string;
|
|
707
|
-
export { name_35 as name };
|
|
708
|
-
const labelKey_35: string;
|
|
709
|
-
export { labelKey_35 as labelKey };
|
|
710
|
-
const value_34: string;
|
|
711
|
-
export { value_34 as value };
|
|
712
|
-
const sort_33: string[];
|
|
713
|
-
export { sort_33 as sort };
|
|
714
|
-
}
|
|
715
|
-
export namespace WEIGHT {
|
|
716
|
-
const name_36: string;
|
|
717
|
-
export { name_36 as name };
|
|
718
|
-
const labelKey_36: string;
|
|
719
|
-
export { labelKey_36 as labelKey };
|
|
720
|
-
const value_35: string;
|
|
721
|
-
export { value_35 as value };
|
|
722
|
-
const sort_34: string;
|
|
723
|
-
export { sort_34 as sort };
|
|
724
|
-
const formatter_23: string;
|
|
725
|
-
export { formatter_23 as formatter };
|
|
726
|
-
const width_10: number;
|
|
727
|
-
export { width_10 as width };
|
|
728
|
-
const align_5: string;
|
|
729
|
-
export { align_5 as align };
|
|
730
|
-
}
|
|
731
|
-
export namespace SUCCESS {
|
|
732
|
-
const name_37: string;
|
|
733
|
-
export { name_37 as name };
|
|
734
|
-
const labelKey_37: string;
|
|
735
|
-
export { labelKey_37 as labelKey };
|
|
736
|
-
const value_36: string;
|
|
737
|
-
export { value_36 as value };
|
|
738
|
-
const width_11: number;
|
|
739
|
-
export { width_11 as width };
|
|
740
|
-
const align_6: string;
|
|
741
|
-
export { align_6 as align };
|
|
742
|
-
}
|
|
743
|
-
export namespace REQ_RATE {
|
|
744
|
-
const name_38: string;
|
|
745
|
-
export { name_38 as name };
|
|
746
|
-
const labelKey_38: string;
|
|
747
|
-
export { labelKey_38 as labelKey };
|
|
748
|
-
const value_37: string;
|
|
749
|
-
export { value_37 as value };
|
|
750
|
-
const width_12: number;
|
|
751
|
-
export { width_12 as width };
|
|
752
|
-
const align_7: string;
|
|
753
|
-
export { align_7 as align };
|
|
754
|
-
}
|
|
755
|
-
export namespace P95 {
|
|
756
|
-
const name_39: string;
|
|
757
|
-
export { name_39 as name };
|
|
758
|
-
const labelKey_39: string;
|
|
759
|
-
export { labelKey_39 as labelKey };
|
|
760
|
-
const value_38: string;
|
|
761
|
-
export { value_38 as value };
|
|
762
|
-
const width_13: number;
|
|
763
|
-
export { width_13 as width };
|
|
764
|
-
const align_8: string;
|
|
765
|
-
export { align_8 as align };
|
|
766
|
-
}
|
|
767
|
-
export namespace KEYS {
|
|
768
|
-
const name_40: string;
|
|
769
|
-
export { name_40 as name };
|
|
770
|
-
const labelKey_40: string;
|
|
771
|
-
export { labelKey_40 as labelKey };
|
|
772
|
-
const sort_35: boolean;
|
|
773
|
-
export { sort_35 as sort };
|
|
774
|
-
const value_39: string;
|
|
775
|
-
export { value_39 as value };
|
|
776
|
-
}
|
|
777
|
-
export namespace SECRET_DATA {
|
|
778
|
-
const name_41: string;
|
|
779
|
-
export { name_41 as name };
|
|
780
|
-
const labelKey_41: string;
|
|
781
|
-
export { labelKey_41 as labelKey };
|
|
782
|
-
const value_40: string;
|
|
783
|
-
export { value_40 as value };
|
|
784
|
-
const formatter_24: string;
|
|
785
|
-
export { formatter_24 as formatter };
|
|
786
|
-
}
|
|
787
|
-
export namespace TARGET_KIND {
|
|
788
|
-
const name_42: string;
|
|
789
|
-
export { name_42 as name };
|
|
790
|
-
const labelKey_42: string;
|
|
791
|
-
export { labelKey_42 as labelKey };
|
|
792
|
-
const value_41: string;
|
|
793
|
-
export { value_41 as value };
|
|
794
|
-
const width_14: number;
|
|
795
|
-
export { width_14 as width };
|
|
796
|
-
}
|
|
797
|
-
export namespace TARGET {
|
|
798
|
-
const name_43: string;
|
|
799
|
-
export { name_43 as name };
|
|
800
|
-
const labelKey_43: string;
|
|
801
|
-
export { labelKey_43 as labelKey };
|
|
802
|
-
const value_42: string;
|
|
803
|
-
export { value_42 as value };
|
|
804
|
-
}
|
|
805
|
-
export namespace USERNAME {
|
|
806
|
-
const name_44: string;
|
|
807
|
-
export { name_44 as name };
|
|
808
|
-
const labelKey_44: string;
|
|
809
|
-
export { labelKey_44 as labelKey };
|
|
810
|
-
const value_43: string;
|
|
811
|
-
export { value_43 as value };
|
|
812
|
-
const dashIfEmpty_1: boolean;
|
|
813
|
-
export { dashIfEmpty_1 as dashIfEmpty };
|
|
814
|
-
const sort_36: string;
|
|
815
|
-
export { sort_36 as sort };
|
|
816
|
-
}
|
|
817
|
-
export namespace USER_DISPLAY_NAME {
|
|
818
|
-
const name_45: string;
|
|
819
|
-
export { name_45 as name };
|
|
820
|
-
const labelKey_45: string;
|
|
821
|
-
export { labelKey_45 as labelKey };
|
|
822
|
-
const value_44: string;
|
|
823
|
-
export { value_44 as value };
|
|
824
|
-
const sort_37: string[];
|
|
825
|
-
export { sort_37 as sort };
|
|
826
|
-
const dashIfEmpty_2: boolean;
|
|
827
|
-
export { dashIfEmpty_2 as dashIfEmpty };
|
|
828
|
-
}
|
|
829
|
-
export namespace USER_PROVIDER {
|
|
830
|
-
const name_46: string;
|
|
831
|
-
export { name_46 as name };
|
|
832
|
-
const labelKey_46: string;
|
|
833
|
-
export { labelKey_46 as labelKey };
|
|
834
|
-
const value_45: string;
|
|
835
|
-
export { value_45 as value };
|
|
836
|
-
const dashIfEmpty_3: boolean;
|
|
837
|
-
export { dashIfEmpty_3 as dashIfEmpty };
|
|
838
|
-
const sort_38: string;
|
|
839
|
-
export { sort_38 as sort };
|
|
840
|
-
}
|
|
841
|
-
export namespace USER_LAST_LOGIN {
|
|
842
|
-
const name_47: string;
|
|
843
|
-
export { name_47 as name };
|
|
844
|
-
const labelKey_47: string;
|
|
845
|
-
export { labelKey_47 as labelKey };
|
|
846
|
-
const value_46: string;
|
|
847
|
-
export { value_46 as value };
|
|
848
|
-
const formatter_25: string;
|
|
849
|
-
export { formatter_25 as formatter };
|
|
850
|
-
export namespace formatterOpts_3 {
|
|
851
|
-
const addSuffix: boolean;
|
|
852
|
-
}
|
|
853
|
-
export { formatterOpts_3 as formatterOpts };
|
|
854
|
-
const sort_39: string;
|
|
855
|
-
export { sort_39 as sort };
|
|
856
|
-
}
|
|
857
|
-
export namespace USER_DISABLED_IN {
|
|
858
|
-
const name_48: string;
|
|
859
|
-
export { name_48 as name };
|
|
860
|
-
const labelKey_48: string;
|
|
861
|
-
export { labelKey_48 as labelKey };
|
|
862
|
-
const value_47: string;
|
|
863
|
-
export { value_47 as value };
|
|
864
|
-
const formatter_26: string;
|
|
865
|
-
export { formatter_26 as formatter };
|
|
866
|
-
export namespace formatterOpts_4 {
|
|
867
|
-
const isCountdown: boolean;
|
|
868
|
-
}
|
|
869
|
-
export { formatterOpts_4 as formatterOpts };
|
|
870
|
-
const sort_40: string;
|
|
871
|
-
export { sort_40 as sort };
|
|
872
|
-
}
|
|
873
|
-
export namespace USER_DELETED_IN {
|
|
874
|
-
const name_49: string;
|
|
875
|
-
export { name_49 as name };
|
|
876
|
-
const labelKey_49: string;
|
|
877
|
-
export { labelKey_49 as labelKey };
|
|
878
|
-
const value_48: string;
|
|
879
|
-
export { value_48 as value };
|
|
880
|
-
const formatter_27: string;
|
|
881
|
-
export { formatter_27 as formatter };
|
|
882
|
-
export namespace formatterOpts_5 {
|
|
883
|
-
const isCountdown_1: boolean;
|
|
884
|
-
export { isCountdown_1 as isCountdown };
|
|
885
|
-
}
|
|
886
|
-
export { formatterOpts_5 as formatterOpts };
|
|
887
|
-
const sort_41: string;
|
|
888
|
-
export { sort_41 as sort };
|
|
889
|
-
}
|
|
890
|
-
export namespace USER_ID {
|
|
891
|
-
const name_50: string;
|
|
892
|
-
export { name_50 as name };
|
|
893
|
-
const labelKey_50: string;
|
|
894
|
-
export { labelKey_50 as labelKey };
|
|
895
|
-
const value_49: string;
|
|
896
|
-
export { value_49 as value };
|
|
897
|
-
const formatter_28: string;
|
|
898
|
-
export { formatter_28 as formatter };
|
|
899
|
-
const canBeVariable_5: boolean;
|
|
900
|
-
export { canBeVariable_5 as canBeVariable };
|
|
901
|
-
const sort_42: string;
|
|
902
|
-
export { sort_42 as sort };
|
|
903
|
-
}
|
|
904
|
-
export namespace ADDRESS {
|
|
905
|
-
const name_51: string;
|
|
906
|
-
export { name_51 as name };
|
|
907
|
-
const labelKey_51: string;
|
|
908
|
-
export { labelKey_51 as labelKey };
|
|
909
|
-
const value_50: string;
|
|
910
|
-
export { value_50 as value };
|
|
911
|
-
const sort_43: string[];
|
|
912
|
-
export { sort_43 as sort };
|
|
913
|
-
}
|
|
914
|
-
export namespace SIMPLE_TYPE {
|
|
915
|
-
const name_52: string;
|
|
916
|
-
export { name_52 as name };
|
|
917
|
-
const labelKey_52: string;
|
|
918
|
-
export { labelKey_52 as labelKey };
|
|
919
|
-
const value_51: string;
|
|
920
|
-
export { value_51 as value };
|
|
921
|
-
const sort_44: string[];
|
|
922
|
-
export { sort_44 as sort };
|
|
923
|
-
const width_15: number;
|
|
924
|
-
export { width_15 as width };
|
|
925
|
-
}
|
|
926
|
-
export namespace IMAGE_SIZE {
|
|
927
|
-
const name_53: string;
|
|
928
|
-
export { name_53 as name };
|
|
929
|
-
const labelKey_53: string;
|
|
930
|
-
export { labelKey_53 as labelKey };
|
|
931
|
-
const value_52: string;
|
|
932
|
-
export { value_52 as value };
|
|
933
|
-
const sort_45: string[];
|
|
934
|
-
export { sort_45 as sort };
|
|
935
|
-
const formatter_29: string;
|
|
936
|
-
export { formatter_29 as formatter };
|
|
937
|
-
}
|
|
938
|
-
export namespace TYPE {
|
|
939
|
-
const name_54: string;
|
|
940
|
-
export { name_54 as name };
|
|
941
|
-
const labelKey_54: string;
|
|
942
|
-
export { labelKey_54 as labelKey };
|
|
943
|
-
const value_53: string;
|
|
944
|
-
export { value_53 as value };
|
|
945
|
-
export function getValue_11(row: any): any;
|
|
946
|
-
export { getValue_11 as getValue };
|
|
947
|
-
const sort_46: string[];
|
|
948
|
-
export { sort_46 as sort };
|
|
949
|
-
const width_16: number;
|
|
950
|
-
export { width_16 as width };
|
|
951
|
-
}
|
|
952
|
-
export namespace SUB_TYPE {
|
|
953
|
-
const name_55: string;
|
|
954
|
-
export { name_55 as name };
|
|
955
|
-
const labelKey_55: string;
|
|
956
|
-
export { labelKey_55 as labelKey };
|
|
957
|
-
const value_54: string;
|
|
958
|
-
export { value_54 as value };
|
|
959
|
-
const sort_47: string[];
|
|
960
|
-
export { sort_47 as sort };
|
|
961
|
-
const width_17: number;
|
|
962
|
-
export { width_17 as width };
|
|
963
|
-
}
|
|
964
|
-
export namespace EVENT_TYPE {
|
|
965
|
-
const name_56: string;
|
|
966
|
-
export { name_56 as name };
|
|
967
|
-
const labelKey_56: string;
|
|
968
|
-
export { labelKey_56 as labelKey };
|
|
969
|
-
const value_55: string;
|
|
970
|
-
export { value_55 as value };
|
|
971
|
-
const sort_48: string;
|
|
972
|
-
export { sort_48 as sort };
|
|
973
|
-
}
|
|
974
|
-
export namespace STATUS {
|
|
975
|
-
const name_57: string;
|
|
976
|
-
export { name_57 as name };
|
|
977
|
-
const labelKey_57: string;
|
|
978
|
-
export { labelKey_57 as labelKey };
|
|
979
|
-
const value_56: string;
|
|
980
|
-
export { value_56 as value };
|
|
981
|
-
const sort_49: string[];
|
|
982
|
-
export { sort_49 as sort };
|
|
983
|
-
const width_18: number;
|
|
984
|
-
export { width_18 as width };
|
|
985
|
-
}
|
|
986
|
-
export namespace LAST_SEEN_TIME {
|
|
987
|
-
const name_58: string;
|
|
988
|
-
export { name_58 as name };
|
|
989
|
-
const labelKey_58: string;
|
|
990
|
-
export { labelKey_58 as labelKey };
|
|
991
|
-
const value_57: string;
|
|
992
|
-
export { value_57 as value };
|
|
993
|
-
const sort_50: string;
|
|
994
|
-
export { sort_50 as sort };
|
|
995
|
-
export const tooltip: string;
|
|
996
|
-
}
|
|
997
|
-
export namespace LAST_HEARTBEAT_TIME {
|
|
998
|
-
const name_59: string;
|
|
999
|
-
export { name_59 as name };
|
|
1000
|
-
const labelKey_59: string;
|
|
1001
|
-
export { labelKey_59 as labelKey };
|
|
1002
|
-
const value_58: string;
|
|
1003
|
-
export { value_58 as value };
|
|
1004
|
-
const sort_51: string[];
|
|
1005
|
-
export { sort_51 as sort };
|
|
1006
|
-
const formatter_30: string;
|
|
1007
|
-
export { formatter_30 as formatter };
|
|
1008
|
-
const width_19: number;
|
|
1009
|
-
export { width_19 as width };
|
|
1010
|
-
}
|
|
1011
|
-
export namespace REASON {
|
|
1012
|
-
const name_60: string;
|
|
1013
|
-
export { name_60 as name };
|
|
1014
|
-
const labelKey_60: string;
|
|
1015
|
-
export { labelKey_60 as labelKey };
|
|
1016
|
-
const value_59: string;
|
|
1017
|
-
export { value_59 as value };
|
|
1018
|
-
const sort_52: string[];
|
|
1019
|
-
export { sort_52 as sort };
|
|
1020
|
-
}
|
|
1021
|
-
export namespace OBJECT {
|
|
1022
|
-
const name_61: string;
|
|
1023
|
-
export { name_61 as name };
|
|
1024
|
-
const labelKey_61: string;
|
|
1025
|
-
export { labelKey_61 as labelKey };
|
|
1026
|
-
const value_60: string;
|
|
1027
|
-
export { value_60 as value };
|
|
1028
|
-
const sort_53: string[];
|
|
1029
|
-
export { sort_53 as sort };
|
|
1030
|
-
const canBeVariable_6: boolean;
|
|
1031
|
-
export { canBeVariable_6 as canBeVariable };
|
|
1032
|
-
const formatter_31: string;
|
|
1033
|
-
export { formatter_31 as formatter };
|
|
1034
|
-
}
|
|
1035
|
-
export namespace RECLAIM_POLICY {
|
|
1036
|
-
const name_62: string;
|
|
1037
|
-
export { name_62 as name };
|
|
1038
|
-
const labelKey_62: string;
|
|
1039
|
-
export { labelKey_62 as labelKey };
|
|
1040
|
-
const value_61: string;
|
|
1041
|
-
export { value_61 as value };
|
|
1042
|
-
const sort_54: string[];
|
|
1043
|
-
export { sort_54 as sort };
|
|
1044
|
-
}
|
|
1045
|
-
export namespace PV_REASON {
|
|
1046
|
-
const name_63: string;
|
|
1047
|
-
export { name_63 as name };
|
|
1048
|
-
const labelKey_63: string;
|
|
1049
|
-
export { labelKey_63 as labelKey };
|
|
1050
|
-
const value_62: string;
|
|
1051
|
-
export { value_62 as value };
|
|
1052
|
-
const sort_55: string[];
|
|
1053
|
-
export { sort_55 as sort };
|
|
1054
|
-
}
|
|
1055
|
-
export namespace MESSAGE {
|
|
1056
|
-
const name_64: string;
|
|
1057
|
-
export { name_64 as name };
|
|
1058
|
-
const labelKey_64: string;
|
|
1059
|
-
export { labelKey_64 as labelKey };
|
|
1060
|
-
const value_63: string;
|
|
1061
|
-
export { value_63 as value };
|
|
1062
|
-
const sort_56: string[];
|
|
1063
|
-
export { sort_56 as sort };
|
|
1064
|
-
}
|
|
1065
|
-
export namespace KEY {
|
|
1066
|
-
const name_65: string;
|
|
1067
|
-
export { name_65 as name };
|
|
1068
|
-
const labelKey_65: string;
|
|
1069
|
-
export { labelKey_65 as labelKey };
|
|
1070
|
-
const value_64: string;
|
|
1071
|
-
export { value_64 as value };
|
|
1072
|
-
const sort_57: string[];
|
|
1073
|
-
export { sort_57 as sort };
|
|
1074
|
-
}
|
|
1075
|
-
export namespace VALUE {
|
|
1076
|
-
const name_66: string;
|
|
1077
|
-
export { name_66 as name };
|
|
1078
|
-
const labelKey_66: string;
|
|
1079
|
-
export { labelKey_66 as labelKey };
|
|
1080
|
-
const value_65: string;
|
|
1081
|
-
export { value_65 as value };
|
|
1082
|
-
const sort_58: string[];
|
|
1083
|
-
export { sort_58 as sort };
|
|
1084
|
-
}
|
|
1085
|
-
export namespace BUILT_IN {
|
|
1086
|
-
const name_67: string;
|
|
1087
|
-
export { name_67 as name };
|
|
1088
|
-
const labelKey_67: string;
|
|
1089
|
-
export { labelKey_67 as labelKey };
|
|
1090
|
-
const value_66: string;
|
|
1091
|
-
export { value_66 as value };
|
|
1092
|
-
const sort_59: string[];
|
|
1093
|
-
export { sort_59 as sort };
|
|
1094
|
-
const align_9: string;
|
|
1095
|
-
export { align_9 as align };
|
|
1096
|
-
const formatter_32: string;
|
|
1097
|
-
export { formatter_32 as formatter };
|
|
1098
|
-
}
|
|
1099
|
-
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
1100
|
-
const name_68: string;
|
|
1101
|
-
export { name_68 as name };
|
|
1102
|
-
const labelKey_68: string;
|
|
1103
|
-
export { labelKey_68 as labelKey };
|
|
1104
|
-
const value_67: string;
|
|
1105
|
-
export { value_67 as value };
|
|
1106
|
-
const sort_60: string[];
|
|
1107
|
-
export { sort_60 as sort };
|
|
1108
|
-
const align_10: string;
|
|
1109
|
-
export { align_10 as align };
|
|
1110
|
-
const formatter_33: string;
|
|
1111
|
-
export { formatter_33 as formatter };
|
|
1112
|
-
}
|
|
1113
|
-
export namespace RBAC_DEFAULT {
|
|
1114
|
-
const name_69: string;
|
|
1115
|
-
export { name_69 as name };
|
|
1116
|
-
const labelKey_69: string;
|
|
1117
|
-
export { labelKey_69 as labelKey };
|
|
1118
|
-
const value_68: string;
|
|
1119
|
-
export { value_68 as value };
|
|
1120
|
-
const formatter_34: string;
|
|
1121
|
-
export { formatter_34 as formatter };
|
|
1122
|
-
const sort_61: string[];
|
|
1123
|
-
export { sort_61 as sort };
|
|
1124
|
-
}
|
|
1125
|
-
export namespace RBAC_BUILTIN {
|
|
1126
|
-
const name_70: string;
|
|
1127
|
-
export { name_70 as name };
|
|
1128
|
-
const labelKey_70: string;
|
|
1129
|
-
export { labelKey_70 as labelKey };
|
|
1130
|
-
const value_69: string;
|
|
1131
|
-
export { value_69 as value };
|
|
1132
|
-
const formatter_35: string;
|
|
1133
|
-
export { formatter_35 as formatter };
|
|
1134
|
-
const sort_62: string[];
|
|
1135
|
-
export { sort_62 as sort };
|
|
1136
|
-
}
|
|
1137
|
-
export namespace RESOURCE {
|
|
1138
|
-
const name_71: string;
|
|
1139
|
-
export { name_71 as name };
|
|
1140
|
-
const labelKey_71: string;
|
|
1141
|
-
export { labelKey_71 as labelKey };
|
|
1142
|
-
const value_70: string;
|
|
1143
|
-
export { value_70 as value };
|
|
1144
|
-
const sort_63: string[];
|
|
1145
|
-
export { sort_63 as sort };
|
|
1146
|
-
}
|
|
1147
|
-
export namespace API_GROUP {
|
|
1148
|
-
const name_72: string;
|
|
1149
|
-
export { name_72 as name };
|
|
1150
|
-
const labelKey_72: string;
|
|
1151
|
-
export { labelKey_72 as labelKey };
|
|
1152
|
-
const value_71: string;
|
|
1153
|
-
export { value_71 as value };
|
|
1154
|
-
const sort_64: string[];
|
|
1155
|
-
export { sort_64 as sort };
|
|
1156
|
-
}
|
|
1157
|
-
export namespace INGRESS_CLASS {
|
|
1158
|
-
const name_73: string;
|
|
1159
|
-
export { name_73 as name };
|
|
1160
|
-
const labelKey_73: string;
|
|
1161
|
-
export { labelKey_73 as labelKey };
|
|
1162
|
-
const value_72: string;
|
|
1163
|
-
export { value_72 as value };
|
|
1164
|
-
const sort_65: string;
|
|
1165
|
-
export { sort_65 as sort };
|
|
1166
|
-
}
|
|
1167
|
-
export namespace INGRESS_DEFAULT_BACKEND {
|
|
1168
|
-
const name_74: string;
|
|
1169
|
-
export { name_74 as name };
|
|
1170
|
-
const labelKey_74: string;
|
|
1171
|
-
export { labelKey_74 as labelKey };
|
|
1172
|
-
const value_73: string;
|
|
1173
|
-
export { value_73 as value };
|
|
1174
|
-
const sort_66: string[];
|
|
1175
|
-
export { sort_66 as sort };
|
|
1176
|
-
const formatter_36: string;
|
|
1177
|
-
export { formatter_36 as formatter };
|
|
1178
|
-
const width_20: number;
|
|
1179
|
-
export { width_20 as width };
|
|
1180
|
-
const align_11: string;
|
|
1181
|
-
export { align_11 as align };
|
|
1182
|
-
}
|
|
1183
|
-
export namespace INGRESS_TARGET {
|
|
1184
|
-
const name_75: string;
|
|
1185
|
-
export { name_75 as name };
|
|
1186
|
-
const labelKey_75: string;
|
|
1187
|
-
export { labelKey_75 as labelKey };
|
|
1188
|
-
const value_74: string;
|
|
1189
|
-
export { value_74 as value };
|
|
1190
|
-
const formatter_37: string;
|
|
1191
|
-
export { formatter_37 as formatter };
|
|
1192
|
-
const sort_67: string;
|
|
1193
|
-
export { sort_67 as sort };
|
|
1194
|
-
}
|
|
1195
|
-
export namespace SPEC_TYPE {
|
|
1196
|
-
const name_76: string;
|
|
1197
|
-
export { name_76 as name };
|
|
1198
|
-
const labelKey_76: string;
|
|
1199
|
-
export { labelKey_76 as labelKey };
|
|
1200
|
-
const value_75: string;
|
|
1201
|
-
export { value_75 as value };
|
|
1202
|
-
const sort_68: string;
|
|
1203
|
-
export { sort_68 as sort };
|
|
1204
|
-
const formatter_38: string;
|
|
1205
|
-
export { formatter_38 as formatter };
|
|
1206
|
-
}
|
|
1207
|
-
export namespace TARGET_PORT {
|
|
1208
|
-
const formatter_39: string;
|
|
1209
|
-
export { formatter_39 as formatter };
|
|
1210
|
-
const labelKey_77: string;
|
|
1211
|
-
export { labelKey_77 as labelKey };
|
|
1212
|
-
const name_77: string;
|
|
1213
|
-
export { name_77 as name };
|
|
1214
|
-
const sort_69: string;
|
|
1215
|
-
export { sort_69 as sort };
|
|
1216
|
-
const value_76: string;
|
|
1217
|
-
export { value_76 as value };
|
|
1218
|
-
}
|
|
1219
|
-
export namespace SELECTOR {
|
|
1220
|
-
const formatter_40: string;
|
|
1221
|
-
export { formatter_40 as formatter };
|
|
1222
|
-
const name_78: string;
|
|
1223
|
-
export { name_78 as name };
|
|
1224
|
-
const labelKey_78: string;
|
|
1225
|
-
export { labelKey_78 as labelKey };
|
|
1226
|
-
const value_77: string;
|
|
1227
|
-
export { value_77 as value };
|
|
1228
|
-
const sort_70: string;
|
|
1229
|
-
export { sort_70 as sort };
|
|
1230
|
-
}
|
|
1231
|
-
export namespace CHART {
|
|
1232
|
-
const name_79: string;
|
|
1233
|
-
export { name_79 as name };
|
|
1234
|
-
const labelKey_79: string;
|
|
1235
|
-
export { labelKey_79 as labelKey };
|
|
1236
|
-
const value_78: string;
|
|
1237
|
-
export { value_78 as value };
|
|
1238
|
-
const sort_71: string[];
|
|
1239
|
-
export { sort_71 as sort };
|
|
1240
|
-
}
|
|
1241
|
-
export namespace CHART_UPGRADE {
|
|
1242
|
-
const name_80: string;
|
|
1243
|
-
export { name_80 as name };
|
|
1244
|
-
const labelKey_80: string;
|
|
1245
|
-
export { labelKey_80 as labelKey };
|
|
1246
|
-
const value_79: string;
|
|
1247
|
-
export { value_79 as value };
|
|
1248
|
-
const sort_72: string;
|
|
1249
|
-
export { sort_72 as sort };
|
|
1250
|
-
const dashIfEmpty_4: boolean;
|
|
1251
|
-
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1252
|
-
}
|
|
1253
|
-
export namespace RESOURCES {
|
|
1254
|
-
const name_81: string;
|
|
1255
|
-
export { name_81 as name };
|
|
1256
|
-
const labelKey_81: string;
|
|
1257
|
-
export { labelKey_81 as labelKey };
|
|
1258
|
-
const value_80: string;
|
|
1259
|
-
export { value_80 as value };
|
|
1260
|
-
const sort_73: string;
|
|
1261
|
-
export { sort_73 as sort };
|
|
1262
|
-
const width_21: number;
|
|
1263
|
-
export { width_21 as width };
|
|
1264
|
-
}
|
|
1265
|
-
export namespace URL {
|
|
1266
|
-
const name_82: string;
|
|
1267
|
-
export { name_82 as name };
|
|
1268
|
-
const labelKey_82: string;
|
|
1269
|
-
export { labelKey_82 as labelKey };
|
|
1270
|
-
const value_81: string;
|
|
1271
|
-
export { value_81 as value };
|
|
1272
|
-
const sort_74: string;
|
|
1273
|
-
export { sort_74 as sort };
|
|
1274
|
-
}
|
|
1275
|
-
export namespace LAST_UPDATED {
|
|
1276
|
-
const name_83: string;
|
|
1277
|
-
export { name_83 as name };
|
|
1278
|
-
const labelKey_83: string;
|
|
1279
|
-
export { labelKey_83 as labelKey };
|
|
1280
|
-
const value_82: string;
|
|
1281
|
-
export { value_82 as value };
|
|
1282
|
-
const formatter_41: string;
|
|
1283
|
-
export { formatter_41 as formatter };
|
|
1284
|
-
export namespace formatterOpts_6 {
|
|
1285
|
-
const addSuffix_1: boolean;
|
|
1286
|
-
export { addSuffix_1 as addSuffix };
|
|
1287
|
-
}
|
|
1288
|
-
export { formatterOpts_6 as formatterOpts };
|
|
1289
|
-
const sort_75: string[];
|
|
1290
|
-
export { sort_75 as sort };
|
|
1291
|
-
}
|
|
1292
|
-
export namespace WORKSPACE {
|
|
1293
|
-
const name_84: string;
|
|
1294
|
-
export { name_84 as name };
|
|
1295
|
-
export const label: string;
|
|
1296
|
-
const value_83: string;
|
|
1297
|
-
export { value_83 as value };
|
|
1298
|
-
const sort_76: string[];
|
|
1299
|
-
export { sort_76 as sort };
|
|
1300
|
-
}
|
|
1301
|
-
export namespace WORKLOAD_IMAGES {
|
|
1302
|
-
const value_84: string;
|
|
1303
|
-
export { value_84 as value };
|
|
1304
|
-
export const breakpoint: any;
|
|
1305
|
-
}
|
|
1306
|
-
export namespace WORKLOAD_ENDPOINTS {
|
|
1307
|
-
const name_85: string;
|
|
1308
|
-
export { name_85 as name };
|
|
1309
|
-
const labelKey_84: string;
|
|
1310
|
-
export { labelKey_84 as labelKey };
|
|
1311
|
-
const value_85: string;
|
|
1312
|
-
export { value_85 as value };
|
|
1313
|
-
export function getValue_12(row: any): any;
|
|
1314
|
-
export { getValue_12 as getValue };
|
|
1315
|
-
const formatter_42: string;
|
|
1316
|
-
export { formatter_42 as formatter };
|
|
1317
|
-
const dashIfEmpty_5: boolean;
|
|
1318
|
-
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1319
|
-
const breakpoint_1: any;
|
|
1320
|
-
export { breakpoint_1 as breakpoint };
|
|
1321
|
-
export const maxPageSize: number;
|
|
1322
|
-
}
|
|
1323
|
-
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1324
|
-
const name_86: string;
|
|
1325
|
-
export { name_86 as name };
|
|
1326
|
-
const labelKey_85: string;
|
|
1327
|
-
export { labelKey_85 as labelKey };
|
|
1328
|
-
const formatter_43: string;
|
|
1329
|
-
export { formatter_43 as formatter };
|
|
1330
|
-
export function getValue_13(): any;
|
|
1331
|
-
export { getValue_13 as getValue };
|
|
1332
|
-
const width_22: number;
|
|
1333
|
-
export { width_22 as width };
|
|
1334
|
-
export const skipSelect: boolean;
|
|
1335
|
-
const delayLoading_1: boolean;
|
|
1336
|
-
export { delayLoading_1 as delayLoading };
|
|
1337
|
-
const search_6: boolean;
|
|
1338
|
-
export { search_6 as search };
|
|
1339
|
-
const liveUpdates_1: boolean;
|
|
1340
|
-
export { liveUpdates_1 as liveUpdates };
|
|
1341
|
-
}
|
|
1342
|
-
export namespace FLEET_SUMMARY {
|
|
1343
|
-
const name_87: string;
|
|
1344
|
-
export { name_87 as name };
|
|
1345
|
-
const labelKey_86: string;
|
|
1346
|
-
export { labelKey_86 as labelKey };
|
|
1347
|
-
const value_86: string;
|
|
1348
|
-
export { value_86 as value };
|
|
1349
|
-
const sort_77: boolean;
|
|
1350
|
-
export { sort_77 as sort };
|
|
1351
|
-
const search_7: boolean;
|
|
1352
|
-
export { search_7 as search };
|
|
1353
|
-
const formatter_44: string;
|
|
1354
|
-
export { formatter_44 as formatter };
|
|
1355
|
-
const align_12: string;
|
|
1356
|
-
export { align_12 as align };
|
|
1357
|
-
const width_23: number;
|
|
1358
|
-
export { width_23 as width };
|
|
1359
|
-
}
|
|
1360
|
-
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1361
|
-
const name_88: string;
|
|
1362
|
-
export { name_88 as name };
|
|
1363
|
-
const labelKey_87: string;
|
|
1364
|
-
export { labelKey_87 as labelKey };
|
|
1365
|
-
const value_87: string;
|
|
1366
|
-
export { value_87 as value };
|
|
1367
|
-
const sort_78: boolean;
|
|
1368
|
-
export { sort_78 as sort };
|
|
1369
|
-
const search_8: boolean;
|
|
1370
|
-
export { search_8 as search };
|
|
1371
|
-
const formatter_45: string;
|
|
1372
|
-
export { formatter_45 as formatter };
|
|
1373
|
-
const align_13: string;
|
|
1374
|
-
export { align_13 as align };
|
|
1375
|
-
const width_24: number;
|
|
1376
|
-
export { width_24 as width };
|
|
1377
|
-
}
|
|
1378
|
-
export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
1379
|
-
const name_89: string;
|
|
1380
|
-
export { name_89 as name };
|
|
1381
|
-
const labelKey_88: string;
|
|
1382
|
-
export { labelKey_88 as labelKey };
|
|
1383
|
-
const tooltip_1: string;
|
|
1384
|
-
export { tooltip_1 as tooltip };
|
|
1385
|
-
const sort_79: string[];
|
|
1386
|
-
export { sort_79 as sort };
|
|
1387
|
-
const width_25: number;
|
|
1388
|
-
export { width_25 as width };
|
|
1389
|
-
const _default_2: string;
|
|
1390
|
-
export { _default_2 as default };
|
|
1391
|
-
const formatter_46: string;
|
|
1392
|
-
export { formatter_46 as formatter };
|
|
1393
|
-
export namespace formatterOpts_7 {
|
|
1394
|
-
const arbitrary: boolean;
|
|
1395
|
-
}
|
|
1396
|
-
export { formatterOpts_7 as formatterOpts };
|
|
1397
|
-
}
|
|
1398
|
-
export namespace APP_SUMMARY {
|
|
1399
|
-
const name_90: string;
|
|
1400
|
-
export { name_90 as name };
|
|
1401
|
-
const labelKey_89: string;
|
|
1402
|
-
export { labelKey_89 as labelKey };
|
|
1403
|
-
const value_88: string;
|
|
1404
|
-
export { value_88 as value };
|
|
1405
|
-
const sort_80: boolean;
|
|
1406
|
-
export { sort_80 as sort };
|
|
1407
|
-
const search_9: boolean;
|
|
1408
|
-
export { search_9 as search };
|
|
1409
|
-
const formatter_47: string;
|
|
1410
|
-
export { formatter_47 as formatter };
|
|
1411
|
-
const align_14: string;
|
|
1412
|
-
export { align_14 as align };
|
|
1413
|
-
const width_26: number;
|
|
1414
|
-
export { width_26 as width };
|
|
1415
|
-
}
|
|
1416
|
-
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1417
|
-
const name_91: string;
|
|
1418
|
-
export { name_91 as name };
|
|
1419
|
-
const labelKey_90: string;
|
|
1420
|
-
export { labelKey_90 as labelKey };
|
|
1421
|
-
const value_89: string;
|
|
1422
|
-
export { value_89 as value };
|
|
1423
|
-
const sort_81: string;
|
|
1424
|
-
export { sort_81 as sort };
|
|
1425
|
-
const formatter_48: string;
|
|
1426
|
-
export { formatter_48 as formatter };
|
|
1427
|
-
export namespace formatterOpts_8 {
|
|
1428
|
-
export namespace options_1 {
|
|
1429
|
-
const internal_1: boolean;
|
|
1430
|
-
export { internal_1 as internal };
|
|
1431
|
-
}
|
|
1432
|
-
export { options_1 as options };
|
|
1433
|
-
}
|
|
1434
|
-
export { formatterOpts_8 as formatterOpts };
|
|
1435
|
-
}
|
|
1436
|
-
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1437
|
-
const name_92: string;
|
|
1438
|
-
export { name_92 as name };
|
|
1439
|
-
const labelKey_91: string;
|
|
1440
|
-
export { labelKey_91 as labelKey };
|
|
1441
|
-
const value_90: string;
|
|
1442
|
-
export { value_90 as value };
|
|
1443
|
-
const sort_82: string;
|
|
1444
|
-
export { sort_82 as sort };
|
|
1445
|
-
const search_10: string;
|
|
1446
|
-
export { search_10 as search };
|
|
1447
|
-
const formatter_49: string;
|
|
1448
|
-
export { formatter_49 as formatter };
|
|
1449
|
-
export namespace formatterOpts_9 {
|
|
1450
|
-
export namespace options_2 {
|
|
1451
|
-
const internal_2: boolean;
|
|
1452
|
-
export { internal_2 as internal };
|
|
1453
|
-
}
|
|
1454
|
-
export { options_2 as options };
|
|
1455
|
-
}
|
|
1456
|
-
export { formatterOpts_9 as formatterOpts };
|
|
1457
|
-
}
|
|
1458
|
-
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1459
|
-
const name_93: string;
|
|
1460
|
-
export { name_93 as name };
|
|
1461
|
-
const labelKey_92: string;
|
|
1462
|
-
export { labelKey_92 as labelKey };
|
|
1463
|
-
const value_91: string;
|
|
1464
|
-
export { value_91 as value };
|
|
1465
|
-
const sort_83: string;
|
|
1466
|
-
export { sort_83 as sort };
|
|
1467
|
-
}
|
|
1468
|
-
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1469
|
-
const name_94: string;
|
|
1470
|
-
export { name_94 as name };
|
|
1471
|
-
const labelKey_93: string;
|
|
1472
|
-
export { labelKey_93 as labelKey };
|
|
1473
|
-
const value_92: string;
|
|
1474
|
-
export { value_92 as value };
|
|
1475
|
-
const sort_84: string;
|
|
1476
|
-
export { sort_84 as sort };
|
|
1477
|
-
const search_11: string;
|
|
1478
|
-
export { search_11 as search };
|
|
1479
|
-
}
|
|
1480
|
-
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1481
|
-
const name_95: string;
|
|
1482
|
-
export { name_95 as name };
|
|
1483
|
-
const labelKey_94: string;
|
|
1484
|
-
export { labelKey_94 as labelKey };
|
|
1485
|
-
const value_93: string;
|
|
1486
|
-
export { value_93 as value };
|
|
1487
|
-
const sort_85: string;
|
|
1488
|
-
export { sort_85 as sort };
|
|
1489
|
-
}
|
|
1490
|
-
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1491
|
-
const name_96: string;
|
|
1492
|
-
export { name_96 as name };
|
|
1493
|
-
const labelKey_95: string;
|
|
1494
|
-
export { labelKey_95 as labelKey };
|
|
1495
|
-
const value_94: string;
|
|
1496
|
-
export { value_94 as value };
|
|
1497
|
-
const sort_86: string;
|
|
1498
|
-
export { sort_86 as sort };
|
|
1499
|
-
const formatter_50: string;
|
|
1500
|
-
export { formatter_50 as formatter };
|
|
1501
|
-
export namespace formatterOpts_10 {
|
|
1502
|
-
export namespace options_3 {
|
|
1503
|
-
const internal_3: boolean;
|
|
1504
|
-
export { internal_3 as internal };
|
|
1505
|
-
}
|
|
1506
|
-
export { options_3 as options };
|
|
1507
|
-
}
|
|
1508
|
-
export { formatterOpts_10 as formatterOpts };
|
|
1509
|
-
}
|
|
1510
|
-
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1511
|
-
const name_97: string;
|
|
1512
|
-
export { name_97 as name };
|
|
1513
|
-
const labelKey_96: string;
|
|
1514
|
-
export { labelKey_96 as labelKey };
|
|
1515
|
-
const value_95: string;
|
|
1516
|
-
export { value_95 as value };
|
|
1517
|
-
const sort_87: string;
|
|
1518
|
-
export { sort_87 as sort };
|
|
1519
|
-
const formatter_51: string;
|
|
1520
|
-
export { formatter_51 as formatter };
|
|
1521
|
-
export namespace formatterOpts_11 {
|
|
1522
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1523
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1524
|
-
}
|
|
1525
|
-
export { formatterOpts_11 as formatterOpts };
|
|
1526
|
-
}
|
|
1527
|
-
export namespace RECEIVER_PROVIDERS {
|
|
1528
|
-
const name_98: string;
|
|
1529
|
-
export { name_98 as name };
|
|
1530
|
-
const label_1: string;
|
|
1531
|
-
export { label_1 as label };
|
|
1532
|
-
const value_96: string;
|
|
1533
|
-
export { value_96 as value };
|
|
1534
|
-
const sort_88: string;
|
|
1535
|
-
export { sort_88 as sort };
|
|
1536
|
-
const formatter_52: string;
|
|
1537
|
-
export { formatter_52 as formatter };
|
|
1538
|
-
}
|
|
1539
|
-
export namespace CONFIGURED_RECEIVER {
|
|
1540
|
-
const name_99: string;
|
|
1541
|
-
export { name_99 as name };
|
|
1542
|
-
const label_2: string;
|
|
1543
|
-
export { label_2 as label };
|
|
1544
|
-
const value_97: string;
|
|
1545
|
-
export { value_97 as value };
|
|
1546
|
-
const sort_89: string;
|
|
1547
|
-
export { sort_89 as sort };
|
|
1548
|
-
const formatter_53: string;
|
|
1549
|
-
export { formatter_53 as formatter };
|
|
1550
|
-
export namespace formatterOpts_12 {
|
|
1551
|
-
export namespace options_4 {
|
|
1552
|
-
const internal_4: boolean;
|
|
1553
|
-
export { internal_4 as internal };
|
|
1554
|
-
}
|
|
1555
|
-
export { options_4 as options };
|
|
1556
|
-
}
|
|
1557
|
-
export { formatterOpts_12 as formatterOpts };
|
|
1558
|
-
}
|
|
1559
|
-
export namespace GROUP_NAME {
|
|
1560
|
-
const name_100: string;
|
|
1561
|
-
export { name_100 as name };
|
|
1562
|
-
const labelKey_97: string;
|
|
1563
|
-
export { labelKey_97 as labelKey };
|
|
1564
|
-
const value_98: string;
|
|
1565
|
-
export { value_98 as value };
|
|
1566
|
-
const sort_90: string[];
|
|
1567
|
-
export { sort_90 as sort };
|
|
1568
|
-
const search_12: string[];
|
|
1569
|
-
export { search_12 as search };
|
|
1570
|
-
const formatter_54: string;
|
|
1571
|
-
export { formatter_54 as formatter };
|
|
1572
|
-
const width_27: number;
|
|
1573
|
-
export { width_27 as width };
|
|
1574
|
-
}
|
|
1575
|
-
export namespace GROUP_ROLE_NAME {
|
|
1576
|
-
const name_101: string;
|
|
1577
|
-
export { name_101 as name };
|
|
1578
|
-
const labelKey_98: string;
|
|
1579
|
-
export { labelKey_98 as labelKey };
|
|
1580
|
-
const value_99: string;
|
|
1581
|
-
export { value_99 as value };
|
|
1582
|
-
const formatter_55: string;
|
|
1583
|
-
export { formatter_55 as formatter };
|
|
1584
|
-
}
|
|
1585
|
-
export namespace HPA_REFERENCE {
|
|
1586
|
-
const name_102: string;
|
|
1587
|
-
export { name_102 as name };
|
|
1588
|
-
const labelKey_99: string;
|
|
1589
|
-
export { labelKey_99 as labelKey };
|
|
1590
|
-
const value_100: string;
|
|
1591
|
-
export { value_100 as value };
|
|
1592
|
-
const sort_91: string;
|
|
1593
|
-
export { sort_91 as sort };
|
|
1594
|
-
}
|
|
1595
|
-
export namespace MIN_REPLICA {
|
|
1596
|
-
const name_103: string;
|
|
1597
|
-
export { name_103 as name };
|
|
1598
|
-
const labelKey_100: string;
|
|
1599
|
-
export { labelKey_100 as labelKey };
|
|
1600
|
-
const value_101: string;
|
|
1601
|
-
export { value_101 as value };
|
|
1602
|
-
const sort_92: string;
|
|
1603
|
-
export { sort_92 as sort };
|
|
1604
|
-
}
|
|
1605
|
-
export namespace MAX_REPLICA {
|
|
1606
|
-
const name_104: string;
|
|
1607
|
-
export { name_104 as name };
|
|
1608
|
-
const labelKey_101: string;
|
|
1609
|
-
export { labelKey_101 as labelKey };
|
|
1610
|
-
const value_102: string;
|
|
1611
|
-
export { value_102 as value };
|
|
1612
|
-
const sort_93: string;
|
|
1613
|
-
export { sort_93 as sort };
|
|
1614
|
-
}
|
|
1615
|
-
export namespace CURRENT_REPLICA {
|
|
1616
|
-
const name_105: string;
|
|
1617
|
-
export { name_105 as name };
|
|
1618
|
-
const labelKey_102: string;
|
|
1619
|
-
export { labelKey_102 as labelKey };
|
|
1620
|
-
const value_103: string;
|
|
1621
|
-
export { value_103 as value };
|
|
1622
|
-
const sort_94: string;
|
|
1623
|
-
export { sort_94 as sort };
|
|
1624
|
-
}
|
|
1625
|
-
export namespace EXPIRY_STATE {
|
|
1626
|
-
const value_104: string;
|
|
1627
|
-
export { value_104 as value };
|
|
1628
|
-
const formatter_56: string;
|
|
1629
|
-
export { formatter_56 as formatter };
|
|
1630
|
-
}
|
|
1631
|
-
export namespace ACCESS_KEY {
|
|
1632
|
-
const name_106: string;
|
|
1633
|
-
export { name_106 as name };
|
|
1634
|
-
const labelKey_103: string;
|
|
1635
|
-
export { labelKey_103 as labelKey };
|
|
1636
|
-
const align_15: string;
|
|
1637
|
-
export { align_15 as align };
|
|
1638
|
-
const sort_95: string[];
|
|
1639
|
-
export { sort_95 as sort };
|
|
1640
|
-
const width_28: number;
|
|
1641
|
-
export { width_28 as width };
|
|
1642
|
-
}
|
|
1643
|
-
export namespace SCOPE {
|
|
1644
|
-
const name_107: string;
|
|
1645
|
-
export { name_107 as name };
|
|
1646
|
-
const value_105: string;
|
|
1647
|
-
export { value_105 as value };
|
|
1648
|
-
const labelKey_104: string;
|
|
1649
|
-
export { labelKey_104 as labelKey };
|
|
1650
|
-
const dashIfEmpty_6: boolean;
|
|
1651
|
-
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1652
|
-
const align_16: string;
|
|
1653
|
-
export { align_16 as align };
|
|
1654
|
-
const sort_96: string[];
|
|
1655
|
-
export { sort_96 as sort };
|
|
1656
|
-
const width_29: number;
|
|
1657
|
-
export { width_29 as width };
|
|
1658
|
-
}
|
|
1659
|
-
export namespace SCOPE_NORMAN {
|
|
1660
|
-
const value_106: string;
|
|
1661
|
-
export { value_106 as value };
|
|
1662
|
-
const sort_97: string[];
|
|
1663
|
-
export { sort_97 as sort };
|
|
1664
|
-
}
|
|
1665
|
-
export namespace EXPIRES {
|
|
1666
|
-
const name_108: string;
|
|
1667
|
-
export { name_108 as name };
|
|
1668
|
-
const value_107: string;
|
|
1669
|
-
export { value_107 as value };
|
|
1670
|
-
const labelKey_105: string;
|
|
1671
|
-
export { labelKey_105 as labelKey };
|
|
1672
|
-
const align_17: string;
|
|
1673
|
-
export { align_17 as align };
|
|
1674
|
-
const sort_98: string[];
|
|
1675
|
-
export { sort_98 as sort };
|
|
1676
|
-
const width_30: number;
|
|
1677
|
-
export { width_30 as width };
|
|
1678
|
-
const formatter_57: string;
|
|
1679
|
-
export { formatter_57 as formatter };
|
|
1680
|
-
}
|
|
1681
|
-
export namespace RESTART {
|
|
1682
|
-
const name_109: string;
|
|
1683
|
-
export { name_109 as name };
|
|
1684
|
-
const labelKey_106: string;
|
|
1685
|
-
export { labelKey_106 as labelKey };
|
|
1686
|
-
const value_108: string;
|
|
1687
|
-
export { value_108 as value };
|
|
1688
|
-
const sort_99: string[];
|
|
1689
|
-
export { sort_99 as sort };
|
|
1690
|
-
const formatter_58: string;
|
|
1691
|
-
export { formatter_58 as formatter };
|
|
1692
|
-
const width_31: number;
|
|
1693
|
-
export { width_31 as width };
|
|
1694
|
-
const align_18: string;
|
|
1695
|
-
export { align_18 as align };
|
|
1696
|
-
}
|
|
1697
|
-
export namespace ROLE {
|
|
1698
|
-
const name_110: string;
|
|
1699
|
-
export { name_110 as name };
|
|
1700
|
-
const value_109: string;
|
|
1701
|
-
export { value_109 as value };
|
|
1702
|
-
const labelKey_107: string;
|
|
1703
|
-
export { labelKey_107 as labelKey };
|
|
1704
|
-
}
|
|
1705
|
-
export namespace FEATURE_DESCRIPTION {
|
|
1706
|
-
const name_111: string;
|
|
1707
|
-
export { name_111 as name };
|
|
1708
|
-
const labelKey_108: string;
|
|
1709
|
-
export { labelKey_108 as labelKey };
|
|
1710
|
-
const value_110: string;
|
|
1711
|
-
export { value_110 as value };
|
|
1712
|
-
const align_19: string;
|
|
1713
|
-
export { align_19 as align };
|
|
1714
|
-
const sort_100: string[];
|
|
1715
|
-
export { sort_100 as sort };
|
|
1716
|
-
const formatter_59: string;
|
|
1717
|
-
export { formatter_59 as formatter };
|
|
1718
|
-
export namespace formatterOpts_13 {
|
|
1719
|
-
const prefix: string;
|
|
1720
|
-
}
|
|
1721
|
-
export { formatterOpts_13 as formatterOpts };
|
|
1722
|
-
}
|
|
1723
|
-
export namespace STATE_NORMAN {
|
|
1724
|
-
const name_112: string;
|
|
1725
|
-
export { name_112 as name };
|
|
1726
|
-
const labelKey_109: string;
|
|
1727
|
-
export { labelKey_109 as labelKey };
|
|
1728
|
-
const sort_101: string[];
|
|
1729
|
-
export { sort_101 as sort };
|
|
1730
|
-
const value_111: string;
|
|
1731
|
-
export { value_111 as value };
|
|
1732
|
-
const width_32: number;
|
|
1733
|
-
export { width_32 as width };
|
|
1734
|
-
const _default_3: string;
|
|
1735
|
-
export { _default_3 as default };
|
|
1736
|
-
const formatter_60: string;
|
|
1737
|
-
export { formatter_60 as formatter };
|
|
1738
|
-
}
|
|
1739
|
-
export namespace KUBE_NODE_OS {
|
|
1740
|
-
const name_113: string;
|
|
1741
|
-
export { name_113 as name };
|
|
1742
|
-
const labelKey_110: string;
|
|
1743
|
-
export { labelKey_110 as labelKey };
|
|
1744
|
-
const value_112: string;
|
|
1745
|
-
export { value_112 as value };
|
|
1746
|
-
const sort_102: string[];
|
|
1747
|
-
export { sort_102 as sort };
|
|
1748
|
-
const formatter_61: string;
|
|
1749
|
-
export { formatter_61 as formatter };
|
|
1750
|
-
}
|
|
1751
|
-
export namespace MACHINE_NODE_OS {
|
|
1752
|
-
const name_114: string;
|
|
1753
|
-
export { name_114 as name };
|
|
1754
|
-
const labelKey_111: string;
|
|
1755
|
-
export { labelKey_111 as labelKey };
|
|
1756
|
-
const value_113: string;
|
|
1757
|
-
export { value_113 as value };
|
|
1758
|
-
const sort_103: string[];
|
|
1759
|
-
export { sort_103 as sort };
|
|
1760
|
-
const formatter_62: string;
|
|
1761
|
-
export { formatter_62 as formatter };
|
|
1762
|
-
const dashIfEmpty_7: boolean;
|
|
1763
|
-
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1764
|
-
}
|
|
1765
|
-
export namespace MANAGEMENT_NODE_OS {
|
|
1766
|
-
const name_115: string;
|
|
1767
|
-
export { name_115 as name };
|
|
1768
|
-
const labelKey_112: string;
|
|
1769
|
-
export { labelKey_112 as labelKey };
|
|
1770
|
-
const value_114: string;
|
|
1771
|
-
export { value_114 as value };
|
|
1772
|
-
const sort_104: string[];
|
|
1773
|
-
export { sort_104 as sort };
|
|
1774
|
-
const formatter_63: string;
|
|
1775
|
-
export { formatter_63 as formatter };
|
|
1776
|
-
const dashIfEmpty_8: boolean;
|
|
1777
|
-
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1778
|
-
}
|
|
1779
|
-
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1780
|
-
const name_116: string;
|
|
1781
|
-
export { name_116 as name };
|
|
1782
|
-
const labelKey_113: string;
|
|
1783
|
-
export { labelKey_113 as labelKey };
|
|
1784
|
-
const value_115: string;
|
|
1785
|
-
export { value_115 as value };
|
|
1786
|
-
const formatter_64: string;
|
|
1787
|
-
export { formatter_64 as formatter };
|
|
1788
|
-
export namespace formatterOpts_14 {
|
|
1789
|
-
const addSuffix_2: boolean;
|
|
1790
|
-
export { addSuffix_2 as addSuffix };
|
|
1791
|
-
}
|
|
1792
|
-
export { formatterOpts_14 as formatterOpts };
|
|
1793
|
-
const sort_105: string[];
|
|
1794
|
-
export { sort_105 as sort };
|
|
1795
|
-
}
|
|
1796
|
-
export namespace FLEET_BUNDLE_TYPE {
|
|
1797
|
-
const name_117: string;
|
|
1798
|
-
export { name_117 as name };
|
|
1799
|
-
const labelKey_114: string;
|
|
1800
|
-
export { labelKey_114 as labelKey };
|
|
1801
|
-
const value_116: string;
|
|
1802
|
-
export { value_116 as value };
|
|
1803
|
-
const sort_106: string[];
|
|
1804
|
-
export { sort_106 as sort };
|
|
1805
|
-
const width_33: number;
|
|
1806
|
-
export { width_33 as width };
|
|
1807
|
-
}
|
|
1808
|
-
export namespace FLEET_REPO_CLUSTERS_READY {
|
|
1809
|
-
const name_118: string;
|
|
1810
|
-
export { name_118 as name };
|
|
1811
|
-
const labelKey_115: string;
|
|
1812
|
-
export { labelKey_115 as labelKey };
|
|
1813
|
-
const value_117: string;
|
|
1814
|
-
export { value_117 as value };
|
|
1815
|
-
const sort_107: string;
|
|
1816
|
-
export { sort_107 as sort };
|
|
1817
|
-
const search_13: boolean;
|
|
1818
|
-
export { search_13 as search };
|
|
1819
|
-
}
|
|
1820
|
-
export namespace FLEET_REPO_TARGET {
|
|
1821
|
-
const name_119: string;
|
|
1822
|
-
export { name_119 as name };
|
|
1823
|
-
const labelKey_116: string;
|
|
1824
|
-
export { labelKey_116 as labelKey };
|
|
1825
|
-
const value_118: string;
|
|
1826
|
-
export { value_118 as value };
|
|
1827
|
-
const sort_108: string[];
|
|
1828
|
-
export { sort_108 as sort };
|
|
1829
|
-
}
|
|
1830
|
-
export namespace FLEET_REPO {
|
|
1831
|
-
const name_120: string;
|
|
1832
|
-
export { name_120 as name };
|
|
1833
|
-
const labelKey_117: string;
|
|
1834
|
-
export { labelKey_117 as labelKey };
|
|
1835
|
-
const value_119: string;
|
|
1836
|
-
export { value_119 as value };
|
|
1837
|
-
const sort_109: string;
|
|
1838
|
-
export { sort_109 as sort };
|
|
1839
|
-
const search_14: string[];
|
|
1840
|
-
export { search_14 as search };
|
|
1841
|
-
}
|
|
1842
|
-
export const UI_PLUGIN_CATALOG: ({
|
|
1843
|
-
name: string;
|
|
1844
|
-
labelKey: string;
|
|
1845
|
-
sort: string[];
|
|
1846
|
-
value: string;
|
|
1847
|
-
width: number;
|
|
1848
|
-
default: string;
|
|
1849
|
-
formatter: string;
|
|
1850
|
-
formatterOpts: {
|
|
1851
|
-
arbitrary: boolean;
|
|
1852
|
-
};
|
|
1853
|
-
} | {
|
|
1854
|
-
name: string;
|
|
1855
|
-
labelKey: string;
|
|
1856
|
-
value: string;
|
|
1857
|
-
sort: string[];
|
|
1858
|
-
formatter: string;
|
|
1859
|
-
width?: undefined;
|
|
1860
|
-
default?: undefined;
|
|
1861
|
-
formatterOpts?: undefined;
|
|
1862
|
-
} | {
|
|
1863
|
-
name: string;
|
|
1864
|
-
sort: string[];
|
|
1865
|
-
labelKey: string;
|
|
1866
|
-
value: string;
|
|
1867
|
-
width?: undefined;
|
|
1868
|
-
default?: undefined;
|
|
1869
|
-
formatter?: undefined;
|
|
1870
|
-
formatterOpts?: undefined;
|
|
1871
|
-
})[];
|
|
1872
|
-
}
|
|
1873
|
-
|
|
1874
|
-
// @shell/config/types
|
|
1875
|
-
|
|
1876
|
-
declare module '@shell/config/types' {
|
|
1877
|
-
export namespace STEVE {
|
|
1878
|
-
const PREFERENCE: string;
|
|
1879
|
-
const SCHEMA_DEFINITION: string;
|
|
1880
|
-
}
|
|
1881
|
-
export namespace NORMAN {
|
|
1882
|
-
const APP: string;
|
|
1883
|
-
const AUTH_CONFIG: string;
|
|
1884
|
-
const ETCD_BACKUP: string;
|
|
1885
|
-
const CLUSTER: string;
|
|
1886
|
-
const CLUSTER_TOKEN: string;
|
|
1887
|
-
const CLUSTER_ROLE_TEMPLATE_BINDING: string;
|
|
1888
|
-
const CLOUD_CREDENTIAL: string;
|
|
1889
|
-
const FLEET_WORKSPACES: string;
|
|
1890
|
-
const GLOBAL_ROLE: string;
|
|
1891
|
-
const GLOBAL_ROLE_BINDING: string;
|
|
1892
|
-
const NODE_POOL: string;
|
|
1893
|
-
const NODE: string;
|
|
1894
|
-
const PRINCIPAL: string;
|
|
1895
|
-
const PROJECT: string;
|
|
1896
|
-
const PROJECT_ROLE_TEMPLATE_BINDING: string;
|
|
1897
|
-
const SETTING: string;
|
|
1898
|
-
namespace SPOOFED {
|
|
1899
|
-
const GROUP_PRINCIPAL: string;
|
|
1900
|
-
}
|
|
1901
|
-
const ROLE_TEMPLATE: string;
|
|
1902
|
-
const TOKEN: string;
|
|
1903
|
-
const USER: string;
|
|
1904
|
-
const KONTAINER_DRIVER: string;
|
|
1905
|
-
const NODE_DRIVER: string;
|
|
1906
|
-
}
|
|
1907
|
-
export namespace PUBLIC {
|
|
1908
|
-
const AUTH_PROVIDER: string;
|
|
1909
|
-
}
|
|
1910
|
-
export const API_GROUP: "apiGroups";
|
|
1911
|
-
export const API_SERVICE: "apiregistration.k8s.io.apiservice";
|
|
1912
|
-
export const CONFIG_MAP: "configmap";
|
|
1913
|
-
export const COUNT: "count";
|
|
1914
|
-
export const EVENT: "event";
|
|
1915
|
-
export const ENDPOINTS: "endpoints";
|
|
1916
|
-
export const HPA: "autoscaling.horizontalpodautoscaler";
|
|
1917
|
-
export const INGRESS: "networking.k8s.io.ingress";
|
|
1918
|
-
export const INGRESS_CLASS: "networking.k8s.io.ingressclass";
|
|
1919
|
-
export const LIMIT_RANGE: "limitrange";
|
|
1920
|
-
export const NAMESPACE: "namespace";
|
|
1921
|
-
export const NODE: "node";
|
|
1922
|
-
export const NETWORK_POLICY: "networking.k8s.io.networkpolicy";
|
|
1923
|
-
export const POD: "pod";
|
|
1924
|
-
export const POD_DISRUPTION_BUDGET: "policy.poddisruptionbudget";
|
|
1925
|
-
export const PV: "persistentvolume";
|
|
1926
|
-
export const PVC: "persistentvolumeclaim";
|
|
1927
|
-
export const RESOURCE_QUOTA: "resourcequota";
|
|
1928
|
-
export const SCHEMA: "schema";
|
|
1929
|
-
export const SERVICE: "service";
|
|
1930
|
-
export const SECRET: "secret";
|
|
1931
|
-
export const SERVICE_ACCOUNT: "serviceaccount";
|
|
1932
|
-
export const STORAGE_CLASS: "storage.k8s.io.storageclass";
|
|
1933
|
-
export const CSI_DRIVER: "storage.k8s.io.csidriver";
|
|
1934
|
-
export const OBJECT_META: "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta";
|
|
1935
|
-
export const NETWORK_ATTACHMENT: "k8s.cni.cncf.io.networkattachmentdefinition";
|
|
1936
|
-
export const USER: "user";
|
|
1937
|
-
export const GROUP: "group";
|
|
1938
|
-
export namespace RBAC {
|
|
1939
|
-
const ROLE: string;
|
|
1940
|
-
const CLUSTER_ROLE: string;
|
|
1941
|
-
const ROLE_BINDING: string;
|
|
1942
|
-
const CLUSTER_ROLE_BINDING: string;
|
|
1943
|
-
}
|
|
1944
|
-
export const WORKLOAD: "workload";
|
|
1945
|
-
export namespace WORKLOAD_TYPES {
|
|
1946
|
-
const DEPLOYMENT: string;
|
|
1947
|
-
const CRON_JOB: string;
|
|
1948
|
-
const DAEMON_SET: string;
|
|
1949
|
-
const JOB: string;
|
|
1950
|
-
const STATEFUL_SET: string;
|
|
1951
|
-
const REPLICA_SET: string;
|
|
1952
|
-
const REPLICATION_CONTROLLER: string;
|
|
1953
|
-
}
|
|
1954
|
-
export namespace SCALABLE_WORKLOAD_TYPES { }
|
|
1955
|
-
export namespace LIST_WORKLOAD_TYPES {
|
|
1956
|
-
export { POD };
|
|
1957
|
-
}
|
|
1958
|
-
export namespace METRIC {
|
|
1959
|
-
const NODE_1: string;
|
|
1960
|
-
export { NODE_1 as NODE };
|
|
1961
|
-
const POD_1: string;
|
|
1962
|
-
export { POD_1 as POD };
|
|
1963
|
-
}
|
|
1964
|
-
export namespace CATALOG {
|
|
1965
|
-
export const CLUSTER_REPO: string;
|
|
1966
|
-
export const OPERATION: string;
|
|
1967
|
-
const APP_1: string;
|
|
1968
|
-
export { APP_1 as APP };
|
|
1969
|
-
export const REPO: string;
|
|
1970
|
-
}
|
|
1971
|
-
export const UI_PLUGIN: "catalog.cattle.io.uiplugin";
|
|
1972
|
-
export namespace HELM {
|
|
1973
|
-
const PROJECTHELMCHART: string;
|
|
1974
|
-
}
|
|
1975
|
-
export namespace MONITORING {
|
|
1976
|
-
export const ALERTMANAGER: string;
|
|
1977
|
-
export const ALERTMANAGERCONFIG: string;
|
|
1978
|
-
export const PODMONITOR: string;
|
|
1979
|
-
export const PROMETHEUS: string;
|
|
1980
|
-
export const PROMETHEUSRULE: string;
|
|
1981
|
-
export const SERVICEMONITOR: string;
|
|
1982
|
-
export const THANOSRULER: string;
|
|
1983
|
-
export namespace SPOOFED_1 {
|
|
1984
|
-
const RECEIVER: string;
|
|
1985
|
-
const RECEIVER_SPEC: string;
|
|
1986
|
-
const RECEIVER_EMAIL: string;
|
|
1987
|
-
const RECEIVER_SLACK: string;
|
|
1988
|
-
const RECEIVER_WEBHOOK: string;
|
|
1989
|
-
const RECEIVER_PAGERDUTY: string;
|
|
1990
|
-
const RECEIVER_OPSGENIE: string;
|
|
1991
|
-
const RECEIVER_HTTP_CONFIG: string;
|
|
1992
|
-
const RESPONDER: string;
|
|
1993
|
-
const ROUTE: string;
|
|
1994
|
-
const ROUTE_SPEC: string;
|
|
1995
|
-
}
|
|
1996
|
-
export { SPOOFED_1 as SPOOFED };
|
|
1997
|
-
}
|
|
1998
|
-
export namespace LONGHORN {
|
|
1999
|
-
const ENGINES: string;
|
|
2000
|
-
const ENGINE_IMAGES: string;
|
|
2001
|
-
const NODES: string;
|
|
2002
|
-
const REPLICAS: string;
|
|
2003
|
-
const SETTINGS: string;
|
|
2004
|
-
const VOLUMES: string;
|
|
2005
|
-
}
|
|
2006
|
-
export const LONGHORN_DRIVER: "driver.longhorn.io";
|
|
2007
|
-
export const SNAPSHOT: "rke.cattle.io.etcdsnapshot";
|
|
2008
|
-
export namespace MANAGEMENT {
|
|
2009
|
-
const AUTH_CONFIG_1: string;
|
|
2010
|
-
export { AUTH_CONFIG_1 as AUTH_CONFIG };
|
|
2011
|
-
export const CATALOG_TEMPLATE: string;
|
|
2012
|
-
const CLUSTER_1: string;
|
|
2013
|
-
export { CLUSTER_1 as CLUSTER };
|
|
2014
|
-
const CLUSTER_ROLE_TEMPLATE_BINDING_1: string;
|
|
2015
|
-
export { CLUSTER_ROLE_TEMPLATE_BINDING_1 as CLUSTER_ROLE_TEMPLATE_BINDING };
|
|
2016
|
-
export const FEATURE: string;
|
|
2017
|
-
const KONTAINER_DRIVER_1: string;
|
|
2018
|
-
export { KONTAINER_DRIVER_1 as KONTAINER_DRIVER };
|
|
2019
|
-
export const MULTI_CLUSTER_APP: string;
|
|
2020
|
-
const NODE_2: string;
|
|
2021
|
-
export { NODE_2 as NODE };
|
|
2022
|
-
const NODE_DRIVER_1: string;
|
|
2023
|
-
export { NODE_DRIVER_1 as NODE_DRIVER };
|
|
2024
|
-
const NODE_POOL_1: string;
|
|
2025
|
-
export { NODE_POOL_1 as NODE_POOL };
|
|
2026
|
-
export const NODE_TEMPLATE: string;
|
|
2027
|
-
const PROJECT_1: string;
|
|
2028
|
-
export { PROJECT_1 as PROJECT };
|
|
2029
|
-
const PROJECT_ROLE_TEMPLATE_BINDING_1: string;
|
|
2030
|
-
export { PROJECT_ROLE_TEMPLATE_BINDING_1 as PROJECT_ROLE_TEMPLATE_BINDING };
|
|
2031
|
-
const ROLE_TEMPLATE_1: string;
|
|
2032
|
-
export { ROLE_TEMPLATE_1 as ROLE_TEMPLATE };
|
|
2033
|
-
const SETTING_1: string;
|
|
2034
|
-
export { SETTING_1 as SETTING };
|
|
2035
|
-
const USER_1: string;
|
|
2036
|
-
export { USER_1 as USER };
|
|
2037
|
-
const TOKEN_1: string;
|
|
2038
|
-
export { TOKEN_1 as TOKEN };
|
|
2039
|
-
const GLOBAL_ROLE_1: string;
|
|
2040
|
-
export { GLOBAL_ROLE_1 as GLOBAL_ROLE };
|
|
2041
|
-
const GLOBAL_ROLE_BINDING_1: string;
|
|
2042
|
-
export { GLOBAL_ROLE_BINDING_1 as GLOBAL_ROLE_BINDING };
|
|
2043
|
-
export const PSA: string;
|
|
2044
|
-
export const MANAGED_CHART: string;
|
|
2045
|
-
export const USER_NOTIFICATION: string;
|
|
2046
|
-
export const GLOBAL_DNS_PROVIDER: string;
|
|
2047
|
-
export const RKE_TEMPLATE: string;
|
|
2048
|
-
export const RKE_TEMPLATE_REVISION: string;
|
|
2049
|
-
export const CLUSTER_PROXY_CONFIG: string;
|
|
2050
|
-
}
|
|
2051
|
-
export namespace CAPI {
|
|
2052
|
-
const CAPI_CLUSTER: string;
|
|
2053
|
-
const MACHINE_DEPLOYMENT: string;
|
|
2054
|
-
const MACHINE_SET: string;
|
|
2055
|
-
const MACHINE: string;
|
|
2056
|
-
const RANCHER_CLUSTER: string;
|
|
2057
|
-
const MACHINE_CONFIG_GROUP: string;
|
|
2058
|
-
}
|
|
2059
|
-
export namespace FLEET {
|
|
2060
|
-
export const BUNDLE: string;
|
|
2061
|
-
export const BUNDLE_DEPLOYMENT: string;
|
|
2062
|
-
const CLUSTER_2: string;
|
|
2063
|
-
export { CLUSTER_2 as CLUSTER };
|
|
2064
|
-
export const CLUSTER_GROUP: string;
|
|
2065
|
-
export const DASHBOARD: string;
|
|
2066
|
-
export const GIT_REPO: string;
|
|
2067
|
-
export const WORKSPACE: string;
|
|
2068
|
-
const TOKEN_2: string;
|
|
2069
|
-
export { TOKEN_2 as TOKEN };
|
|
2070
|
-
export const BUNDLE_NAMESPACE_MAPPING: string;
|
|
2071
|
-
export const GIT_REPO_RESTRICTION: string;
|
|
2072
|
-
}
|
|
2073
|
-
export namespace GATEKEEPER {
|
|
2074
|
-
export const CONSTRAINT_TEMPLATE: string;
|
|
2075
|
-
export namespace SPOOFED_2 {
|
|
2076
|
-
const CONSTRAINT: string;
|
|
2077
|
-
}
|
|
2078
|
-
export { SPOOFED_2 as SPOOFED };
|
|
2079
|
-
}
|
|
2080
|
-
export namespace ISTIO {
|
|
2081
|
-
const VIRTUAL_SERVICE: string;
|
|
2082
|
-
const DESTINATION_RULE: string;
|
|
2083
|
-
const GATEWAY: string;
|
|
2084
|
-
}
|
|
2085
|
-
export namespace LOGGING {
|
|
2086
|
-
export const CLUSTER_FLOW: string;
|
|
2087
|
-
export const CLUSTER_OUTPUT: string;
|
|
2088
|
-
export const FLOW: string;
|
|
2089
|
-
export const OUTPUT: string;
|
|
2090
|
-
export namespace SPOOFED_3 {
|
|
2091
|
-
export const FILTERS: string;
|
|
2092
|
-
export const FILTER: string;
|
|
2093
|
-
export const CONCAT: string;
|
|
2094
|
-
export const DEDOT: string;
|
|
2095
|
-
export const DETECTEXCEPTIONS: string;
|
|
2096
|
-
export const GEOIP: string;
|
|
2097
|
-
export const GREP: string;
|
|
2098
|
-
export const PARSER: string;
|
|
2099
|
-
const PROMETHEUS_1: string;
|
|
2100
|
-
export { PROMETHEUS_1 as PROMETHEUS };
|
|
2101
|
-
export const RECORD_MODIFIER: string;
|
|
2102
|
-
export const RECORD_TRANSFORMER: string;
|
|
2103
|
-
export const STDOUT: string;
|
|
2104
|
-
export const SUMOLOGIC: string;
|
|
2105
|
-
export const TAG_NORMALISER: string;
|
|
2106
|
-
export const THROTTLE: string;
|
|
2107
|
-
export const RECORD: string;
|
|
2108
|
-
export const REGEXPSECTION: string;
|
|
2109
|
-
export const EXCLUDESECTION: string;
|
|
2110
|
-
export const ORSECTION: string;
|
|
2111
|
-
export const ANDSECTION: string;
|
|
2112
|
-
export const PARSESECTION: string;
|
|
2113
|
-
export const METRICSECTION: string;
|
|
2114
|
-
export const REPLACE: string;
|
|
2115
|
-
export const SINGLEPARSESECTION: string;
|
|
2116
|
-
}
|
|
2117
|
-
export { SPOOFED_3 as SPOOFED };
|
|
2118
|
-
}
|
|
2119
|
-
export namespace BACKUP_RESTORE {
|
|
2120
|
-
const RESOURCE_SET: string;
|
|
2121
|
-
const BACKUP: string;
|
|
2122
|
-
const RESTORE: string;
|
|
2123
|
-
}
|
|
2124
|
-
export namespace CIS {
|
|
2125
|
-
const CLUSTER_SCAN: string;
|
|
2126
|
-
const CLUSTER_SCAN_PROFILE: string;
|
|
2127
|
-
const BENCHMARK: string;
|
|
2128
|
-
const REPORT: string;
|
|
2129
|
-
}
|
|
2130
|
-
export namespace UI {
|
|
2131
|
-
const NAV_LINK: string;
|
|
2132
|
-
}
|
|
2133
|
-
export namespace VIRTUAL_TYPES {
|
|
2134
|
-
const CLUSTER_MEMBERS: string;
|
|
2135
|
-
const PROJECT_NAMESPACES: string;
|
|
2136
|
-
const NAMESPACES: string;
|
|
2137
|
-
const JWT_AUTHENTICATION: string;
|
|
2138
|
-
}
|
|
2139
|
-
export namespace HCI {
|
|
2140
|
-
const CLUSTER_3: string;
|
|
2141
|
-
export { CLUSTER_3 as CLUSTER };
|
|
2142
|
-
const DASHBOARD_1: string;
|
|
2143
|
-
export { DASHBOARD_1 as DASHBOARD };
|
|
2144
|
-
export const IMAGE: string;
|
|
2145
|
-
export const VGPU_DEVICE: string;
|
|
2146
|
-
const SETTING_2: string;
|
|
2147
|
-
export { SETTING_2 as SETTING };
|
|
2148
|
-
export const HARVESTER_CONFIG: string;
|
|
2149
|
-
}
|
|
2150
|
-
export const VIRTUAL_HARVESTER_PROVIDER: "harvester";
|
|
2151
|
-
export namespace ADDRESSES {
|
|
2152
|
-
const HOSTNAME: string;
|
|
2153
|
-
const INTERNAL_IP: string;
|
|
2154
|
-
const EXTERNAL_IP: string;
|
|
2155
|
-
}
|
|
2156
|
-
export const DEFAULT_WORKSPACE: "fleet-default";
|
|
2157
|
-
export namespace AUTH_TYPE {
|
|
2158
|
-
const _NONE: string;
|
|
2159
|
-
const _BASIC: string;
|
|
2160
|
-
const _SSH: string;
|
|
2161
|
-
const _S3: string;
|
|
2162
|
-
}
|
|
2163
|
-
export const LOCAL_CLUSTER: "local";
|
|
2164
|
-
export namespace CLUSTER_REPO_TYPES {
|
|
2165
|
-
export const HELM_URL: string;
|
|
2166
|
-
const GIT_REPO_1: string;
|
|
2167
|
-
export { GIT_REPO_1 as GIT_REPO };
|
|
2168
|
-
export const OCI_URL: string;
|
|
2169
|
-
}
|
|
2170
|
-
export const ZERO_TIME: "0001-01-01T00:00:00Z";
|
|
2171
|
-
export const DEFAULT_GRAFANA_STORAGE_SIZE: "10Gi";
|
|
2172
|
-
export const DEPRECATED: "Deprecated";
|
|
2173
|
-
export const EXPERIMENTAL: "Experimental";
|
|
2174
|
-
}
|
|
2175
|
-
|
|
2176
|
-
// @shell/mixins/create-edit-view/impl
|
|
2177
|
-
|
|
2178
|
-
declare module '@shell/mixins/create-edit-view/impl' {
|
|
2179
|
-
declare namespace _default {
|
|
2180
|
-
const name: string;
|
|
2181
|
-
const mixins: any[];
|
|
2182
|
-
function data(): {
|
|
2183
|
-
errors: any[];
|
|
2184
|
-
};
|
|
2185
|
-
function data(): {
|
|
2186
|
-
errors: any[];
|
|
2187
|
-
};
|
|
2188
|
-
namespace computed {
|
|
2189
|
-
function isCreate(): boolean;
|
|
2190
|
-
function isCreate(): boolean;
|
|
2191
|
-
function isEdit(): boolean;
|
|
2192
|
-
function isEdit(): boolean;
|
|
2193
|
-
function isView(): boolean;
|
|
2194
|
-
function isView(): boolean;
|
|
2195
|
-
function schema(): any;
|
|
2196
|
-
function schema(): any;
|
|
2197
|
-
function isNamespaced(): any;
|
|
2198
|
-
function isNamespaced(): any;
|
|
2199
|
-
namespace labels {
|
|
2200
|
-
function get(): any;
|
|
2201
|
-
function get(): any;
|
|
2202
|
-
function set(neu: any): void;
|
|
2203
|
-
function set(neu: any): void;
|
|
2204
|
-
}
|
|
2205
|
-
namespace annotations {
|
|
2206
|
-
function get(): any;
|
|
2207
|
-
function get(): any;
|
|
2208
|
-
function set(neu: any): void;
|
|
2209
|
-
function set(neu: any): void;
|
|
2210
|
-
}
|
|
2211
|
-
function doneRoute(): any;
|
|
2212
|
-
function doneRoute(): any;
|
|
2213
|
-
function doneParams(): any;
|
|
2214
|
-
function doneParams(): any;
|
|
2215
|
-
}
|
|
2216
|
-
namespace methods {
|
|
2217
|
-
function done(): any;
|
|
2218
|
-
function done(): any;
|
|
2219
|
-
function conflict(): Promise<any>;
|
|
2220
|
-
function conflict(): Promise<any>;
|
|
2221
|
-
function save(buttonDone: any, url: any, depth?: number): any;
|
|
2222
|
-
function save(buttonDone: any, url: any, depth?: number): any;
|
|
2223
|
-
function actuallySave(url: any): Promise<void>;
|
|
2224
|
-
function actuallySave(url: any): Promise<void>;
|
|
2225
|
-
function setErrors(errors: any): void;
|
|
2226
|
-
function setErrors(errors: any): void;
|
|
2227
|
-
}
|
|
2228
|
-
}
|
|
2229
|
-
export default _default;
|
|
2230
|
-
}
|
|
2231
|
-
|
|
2232
|
-
// @shell/mixins/create-edit-view
|
|
2233
|
-
|
|
2234
|
-
declare module '@shell/mixins/create-edit-view' {
|
|
2235
|
-
declare var _default: import("vue").DefineComponent<{
|
|
2236
|
-
mode: {
|
|
2237
|
-
type: StringConstructor;
|
|
2238
|
-
default: any;
|
|
2239
|
-
};
|
|
2240
|
-
realMode: {
|
|
2241
|
-
type: StringConstructor;
|
|
2242
|
-
default: any;
|
|
2243
|
-
};
|
|
2244
|
-
as: {
|
|
2245
|
-
type: StringConstructor;
|
|
2246
|
-
default: any;
|
|
2247
|
-
};
|
|
2248
|
-
value: {
|
|
2249
|
-
type: ObjectConstructor;
|
|
2250
|
-
required: true;
|
|
2251
|
-
};
|
|
2252
|
-
initialValue: {
|
|
2253
|
-
type: ObjectConstructor;
|
|
2254
|
-
default: any;
|
|
2255
|
-
};
|
|
2256
|
-
liveValue: {
|
|
2257
|
-
type: ObjectConstructor;
|
|
2258
|
-
default: any;
|
|
2259
|
-
};
|
|
2260
|
-
doneEvent: {
|
|
2261
|
-
type: BooleanConstructor;
|
|
2262
|
-
default: boolean;
|
|
2263
|
-
};
|
|
2264
|
-
}, {}, {
|
|
2265
|
-
errors: any[];
|
|
2266
|
-
}, {
|
|
2267
|
-
isCreate(): boolean;
|
|
2268
|
-
isEdit(): boolean;
|
|
2269
|
-
isView(): boolean;
|
|
2270
|
-
schema(): any;
|
|
2271
|
-
isNamespaced(): any;
|
|
2272
|
-
labels: {
|
|
2273
|
-
get(): any;
|
|
2274
|
-
set(neu: any): void;
|
|
2275
|
-
};
|
|
2276
|
-
annotations: {
|
|
2277
|
-
get(): any;
|
|
2278
|
-
set(neu: any): void;
|
|
2279
|
-
};
|
|
2280
|
-
doneRoute(): any;
|
|
2281
|
-
doneParams(): any;
|
|
2282
|
-
}, {
|
|
2283
|
-
done(): any;
|
|
2284
|
-
conflict(): Promise<any>;
|
|
2285
|
-
save(buttonDone: any, url: any, depth?: number): any;
|
|
2286
|
-
actuallySave(url: any): Promise<void>;
|
|
2287
|
-
setErrors(errors: any): void;
|
|
2288
|
-
}, any, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
2289
|
-
mode: {
|
|
2290
|
-
type: StringConstructor;
|
|
2291
|
-
default: any;
|
|
2292
|
-
};
|
|
2293
|
-
realMode: {
|
|
2294
|
-
type: StringConstructor;
|
|
2295
|
-
default: any;
|
|
2296
|
-
};
|
|
2297
|
-
as: {
|
|
2298
|
-
type: StringConstructor;
|
|
2299
|
-
default: any;
|
|
2300
|
-
};
|
|
2301
|
-
value: {
|
|
2302
|
-
type: ObjectConstructor;
|
|
2303
|
-
required: true;
|
|
2304
|
-
};
|
|
2305
|
-
initialValue: {
|
|
2306
|
-
type: ObjectConstructor;
|
|
2307
|
-
default: any;
|
|
2308
|
-
};
|
|
2309
|
-
liveValue: {
|
|
2310
|
-
type: ObjectConstructor;
|
|
2311
|
-
default: any;
|
|
2312
|
-
};
|
|
2313
|
-
doneEvent: {
|
|
2314
|
-
type: BooleanConstructor;
|
|
2315
|
-
default: boolean;
|
|
2316
|
-
};
|
|
2317
|
-
}>>, {
|
|
2318
|
-
as: string;
|
|
2319
|
-
mode: string;
|
|
2320
|
-
doneEvent: boolean;
|
|
2321
|
-
initialValue: Record<string, any>;
|
|
2322
|
-
liveValue: Record<string, any>;
|
|
2323
|
-
realMode: string;
|
|
2324
|
-
}>;
|
|
2325
|
-
export default _default;
|
|
2326
|
-
}
|
|
2327
|
-
|
|
2328
|
-
// @shell/models/namespace
|
|
2329
|
-
|
|
2330
|
-
declare module '@shell/models/namespace' {
|
|
2331
|
-
export default class Namespace {
|
|
2332
|
-
applyDefaults(): void;
|
|
2333
|
-
get _availableActions(): any;
|
|
2334
|
-
move(resources?: Namespace): void;
|
|
2335
|
-
get isSystem(): any;
|
|
2336
|
-
get isFleetManaged(): boolean;
|
|
2337
|
-
get isObscure(): any;
|
|
2338
|
-
get projectId(): any;
|
|
2339
|
-
get project(): any;
|
|
2340
|
-
get groupByLabel(): any;
|
|
2341
|
-
get projectNameSort(): any;
|
|
2342
|
-
get istioInstalled(): boolean;
|
|
2343
|
-
get injectionEnabled(): boolean;
|
|
2344
|
-
enableAutoInjection(namespaces?: Namespace, enable?: boolean): void;
|
|
2345
|
-
disableAutoInjection(namespaces?: Namespace): void;
|
|
2346
|
-
get confirmRemove(): boolean;
|
|
2347
|
-
get listLocation(): {
|
|
2348
|
-
name: string;
|
|
2349
|
-
};
|
|
2350
|
-
get _detailLocation(): any;
|
|
2351
|
-
get parentLocationOverride(): {
|
|
2352
|
-
name: string;
|
|
2353
|
-
};
|
|
2354
|
-
get doneOverride(): {
|
|
2355
|
-
name: string;
|
|
2356
|
-
};
|
|
2357
|
-
set resourceQuota(arg: any);
|
|
2358
|
-
get resourceQuota(): any;
|
|
2359
|
-
get detailTopTooltips(): any;
|
|
2360
|
-
get detailTopIcons(): any;
|
|
2361
|
-
/**
|
|
2362
|
-
* Check if resource contains PSA labels
|
|
2363
|
-
*/
|
|
2364
|
-
get hasSystemLabels(): any;
|
|
2365
|
-
get filteredSystemLabels(): {};
|
|
2366
|
-
/**
|
|
2367
|
-
* Generate list of present keys which can be filtered based on existing label keys and system keys
|
|
2368
|
-
*/
|
|
2369
|
-
get systemLabels(): any;
|
|
2370
|
-
get psaTooltipsDescription(): any;
|
|
2371
|
-
cleanForNew(): void;
|
|
2372
|
-
metadata: any;
|
|
2373
|
-
get hideDetailLocation(): boolean;
|
|
2374
|
-
}
|
|
2375
|
-
}
|
|
2376
|
-
|
|
2377
|
-
// @shell/models/networking.k8s.io.ingress
|
|
2378
|
-
|
|
2379
|
-
declare module '@shell/models/networking.k8s.io.ingress' {
|
|
2380
|
-
export function ingressFullPath(resource: any, rule: any, path?: {}): string;
|
|
2381
|
-
export default class Ingress {
|
|
2382
|
-
get tlsHosts(): any;
|
|
2383
|
-
get isTlsHost(): (host: any) => any;
|
|
2384
|
-
targetTo(workloads: any, serviceName: any): any;
|
|
2385
|
-
createRulesForListPage(workloads: any, certificates: any): any;
|
|
2386
|
-
createPathForListPage(workloads: any, rule: any, path: any, certificates: any): {
|
|
2387
|
-
isUrl: boolean;
|
|
2388
|
-
pathType: any;
|
|
2389
|
-
fullPath: string;
|
|
2390
|
-
serviceName: any;
|
|
2391
|
-
serviceTargetTo: any;
|
|
2392
|
-
certs: any;
|
|
2393
|
-
targetLink: {
|
|
2394
|
-
to: any;
|
|
2395
|
-
text: any;
|
|
2396
|
-
options: {
|
|
2397
|
-
internal: boolean;
|
|
2398
|
-
};
|
|
2399
|
-
};
|
|
2400
|
-
port: any;
|
|
2401
|
-
};
|
|
2402
|
-
fullPath(rule: any, path: any): string;
|
|
2403
|
-
certLink(cert: any, certificates?: any[]): {
|
|
2404
|
-
to: {
|
|
2405
|
-
name: string;
|
|
2406
|
-
params: {
|
|
2407
|
-
resource: any;
|
|
2408
|
-
id: any;
|
|
2409
|
-
};
|
|
2410
|
-
};
|
|
2411
|
-
text: any;
|
|
2412
|
-
options: {
|
|
2413
|
-
internal: boolean;
|
|
2414
|
-
};
|
|
2415
|
-
};
|
|
2416
|
-
certLinks(rule: any, certificates: any): any;
|
|
2417
|
-
targetLink(workloads: any, serviceName: any): {
|
|
2418
|
-
to: any;
|
|
2419
|
-
text: any;
|
|
2420
|
-
options: {
|
|
2421
|
-
internal: boolean;
|
|
2422
|
-
};
|
|
2423
|
-
};
|
|
2424
|
-
createDefaultService(workloads: any): {
|
|
2425
|
-
name: any;
|
|
2426
|
-
targetTo: any;
|
|
2427
|
-
};
|
|
2428
|
-
get cache(): {};
|
|
2429
|
-
cacheObject: {};
|
|
2430
|
-
get showPathType(): any;
|
|
2431
|
-
get useNestedBackendField(): any;
|
|
2432
|
-
get serviceNamePath(): "service.name" | "serviceName";
|
|
2433
|
-
get servicePortPath(): "service.port.number" | "servicePort";
|
|
2434
|
-
get defaultBackendPath(): "defaultBackend" | "backend";
|
|
2435
|
-
get hasDefaultBackend(): boolean;
|
|
2436
|
-
get details(): any;
|
|
2437
|
-
}
|
|
2438
|
-
}
|
|
2439
|
-
|
|
2440
|
-
// @shell/plugins/dashboard-store/actions
|
|
2441
|
-
|
|
2442
|
-
declare module '@shell/plugins/dashboard-store/actions' {
|
|
2443
|
-
export function handleSpoofedRequest(rootGetters: any, schemaStore: any, opt: any, product: any): Promise<any>;
|
|
2444
|
-
export function loadSchemas(ctx: any, watch?: boolean): Promise<any>;
|
|
2445
|
-
export const _ALL: "all";
|
|
2446
|
-
export const _MERGE: "merge";
|
|
2447
|
-
export const _MULTI: "multi";
|
|
2448
|
-
export const _NONE: "none";
|
|
2449
|
-
declare namespace _default {
|
|
2450
|
-
export function request(): never;
|
|
2451
|
-
export function request(): never;
|
|
2452
|
-
export { loadSchemas };
|
|
2453
|
-
export function loadDataPage(ctx: any, { type, opt }: {
|
|
2454
|
-
type: any;
|
|
2455
|
-
opt: any;
|
|
2456
|
-
}): Promise<never>;
|
|
2457
|
-
export function loadDataPage(ctx: any, { type, opt }: {
|
|
2458
|
-
type: any;
|
|
2459
|
-
opt: any;
|
|
2460
|
-
}): Promise<never>;
|
|
2461
|
-
/**
|
|
2462
|
-
*
|
|
2463
|
-
* @param {*} ctx
|
|
2464
|
-
* @param { {type: string, opt: ActionFindPageArgs} } opt
|
|
2465
|
-
*/
|
|
2466
|
-
export function findAll(ctx: any, { type, opt }: {
|
|
2467
|
-
type: string;
|
|
2468
|
-
opt: ActionFindPageArgs;
|
|
2469
|
-
}): Promise<any>;
|
|
2470
|
-
/**
|
|
2471
|
-
*
|
|
2472
|
-
* @param {*} ctx
|
|
2473
|
-
* @param { {type: string, opt: ActionFindPageArgs} } opt
|
|
2474
|
-
*/
|
|
2475
|
-
export function findAll(ctx: any, { type, opt }: {
|
|
2476
|
-
type: string;
|
|
2477
|
-
opt: ActionFindPageArgs;
|
|
2478
|
-
}): Promise<any>;
|
|
2479
|
-
/**
|
|
2480
|
-
*
|
|
2481
|
-
* @param {*} ctx
|
|
2482
|
-
* @param { {type: string, opt: FindPageOpt} } opt
|
|
2483
|
-
*/
|
|
2484
|
-
export function findPage(ctx: any, { type, opt }: {
|
|
2485
|
-
type: string;
|
|
2486
|
-
opt: FindPageOpt;
|
|
2487
|
-
}): Promise<any>;
|
|
2488
|
-
/**
|
|
2489
|
-
*
|
|
2490
|
-
* @param {*} ctx
|
|
2491
|
-
* @param { {type: string, opt: FindPageOpt} } opt
|
|
2492
|
-
*/
|
|
2493
|
-
export function findPage(ctx: any, { type, opt }: {
|
|
2494
|
-
type: string;
|
|
2495
|
-
opt: FindPageOpt;
|
|
2496
|
-
}): Promise<any>;
|
|
2497
|
-
export function findMatching(ctx: any, { type, selector, opt, namespace }: {
|
|
2498
|
-
type: any;
|
|
2499
|
-
selector: any;
|
|
2500
|
-
opt: any;
|
|
2501
|
-
namespace: any;
|
|
2502
|
-
}): Promise<any>;
|
|
2503
|
-
export function findMatching(ctx: any, { type, selector, opt, namespace }: {
|
|
2504
|
-
type: any;
|
|
2505
|
-
selector: any;
|
|
2506
|
-
opt: any;
|
|
2507
|
-
namespace: any;
|
|
2508
|
-
}): Promise<any>;
|
|
2509
|
-
export function find(ctx: any, { type, id, opt }: {
|
|
2510
|
-
type: any;
|
|
2511
|
-
id: any;
|
|
2512
|
-
opt: any;
|
|
2513
|
-
}): Promise<any>;
|
|
2514
|
-
export function find(ctx: any, { type, id, opt }: {
|
|
2515
|
-
type: any;
|
|
2516
|
-
id: any;
|
|
2517
|
-
opt: any;
|
|
2518
|
-
}): Promise<any>;
|
|
2519
|
-
export function load(ctx: any, { data, existing }: {
|
|
2520
|
-
data: any;
|
|
2521
|
-
existing: any;
|
|
2522
|
-
}): any;
|
|
2523
|
-
export function load(ctx: any, { data, existing }: {
|
|
2524
|
-
data: any;
|
|
2525
|
-
existing: any;
|
|
2526
|
-
}): any;
|
|
2527
|
-
export function loadMulti(ctx: any, data: any): void;
|
|
2528
|
-
export function loadMulti(ctx: any, data: any): void;
|
|
2529
|
-
export function batchChanges(ctx: any, batch: any): void;
|
|
2530
|
-
export function batchChanges(ctx: any, batch: any): void;
|
|
2531
|
-
export function loadAll(ctx: any, { type, data }: {
|
|
2532
|
-
type: any;
|
|
2533
|
-
data: any;
|
|
2534
|
-
}): void;
|
|
2535
|
-
export function loadAll(ctx: any, { type, data }: {
|
|
2536
|
-
type: any;
|
|
2537
|
-
data: any;
|
|
2538
|
-
}): void;
|
|
2539
|
-
export function create(ctx: any, data: any): any;
|
|
2540
|
-
export function create(ctx: any, data: any): any;
|
|
2541
|
-
export function createMany(ctx: any, data: any): any;
|
|
2542
|
-
export function createMany(ctx: any, data: any): any;
|
|
2543
|
-
export function createPopulated(ctx: any, userData: any): Promise<any>;
|
|
2544
|
-
export function createPopulated(ctx: any, userData: any): Promise<any>;
|
|
2545
|
-
export function clone(ctx: any, { resource }?: {
|
|
2546
|
-
resource: any;
|
|
2547
|
-
}): any;
|
|
2548
|
-
export function clone(ctx: any, { resource }?: {
|
|
2549
|
-
resource: any;
|
|
2550
|
-
}): any;
|
|
2551
|
-
export function forgetType({ commit, dispatch, state }: {
|
|
2552
|
-
commit: any;
|
|
2553
|
-
dispatch: any;
|
|
2554
|
-
state: any;
|
|
2555
|
-
}, type: any): void;
|
|
2556
|
-
export function forgetType({ commit, dispatch, state }: {
|
|
2557
|
-
commit: any;
|
|
2558
|
-
dispatch: any;
|
|
2559
|
-
state: any;
|
|
2560
|
-
}, type: any): void;
|
|
2561
|
-
export function promptRemove({ commit, state }: {
|
|
2562
|
-
commit: any;
|
|
2563
|
-
state: any;
|
|
2564
|
-
}, resources: any): void;
|
|
2565
|
-
export function promptRemove({ commit, state }: {
|
|
2566
|
-
commit: any;
|
|
2567
|
-
state: any;
|
|
2568
|
-
}, resources: any): void;
|
|
2569
|
-
export function promptModal({ commit, state }: {
|
|
2570
|
-
commit: any;
|
|
2571
|
-
state: any;
|
|
2572
|
-
}, data: any): void;
|
|
2573
|
-
export function promptModal({ commit, state }: {
|
|
2574
|
-
commit: any;
|
|
2575
|
-
state: any;
|
|
2576
|
-
}, data: any): void;
|
|
2577
|
-
export function resourceAction({ getters, dispatch }: {
|
|
2578
|
-
getters: any;
|
|
2579
|
-
dispatch: any;
|
|
2580
|
-
}, { resource, actionName, body, opt, }: {
|
|
2581
|
-
resource: any;
|
|
2582
|
-
actionName: any;
|
|
2583
|
-
body: any;
|
|
2584
|
-
opt: any;
|
|
2585
|
-
}): never;
|
|
2586
|
-
export function resourceAction({ getters, dispatch }: {
|
|
2587
|
-
getters: any;
|
|
2588
|
-
dispatch: any;
|
|
2589
|
-
}, { resource, actionName, body, opt, }: {
|
|
2590
|
-
resource: any;
|
|
2591
|
-
actionName: any;
|
|
2592
|
-
body: any;
|
|
2593
|
-
opt: any;
|
|
2594
|
-
}): never;
|
|
2595
|
-
export function collectionAction({ getters, dispatch }: {
|
|
2596
|
-
getters: any;
|
|
2597
|
-
dispatch: any;
|
|
2598
|
-
}, { type, actionName, body, opt }: {
|
|
2599
|
-
type: any;
|
|
2600
|
-
actionName: any;
|
|
2601
|
-
body: any;
|
|
2602
|
-
opt: any;
|
|
2603
|
-
}): never;
|
|
2604
|
-
export function collectionAction({ getters, dispatch }: {
|
|
2605
|
-
getters: any;
|
|
2606
|
-
dispatch: any;
|
|
2607
|
-
}, { type, actionName, body, opt }: {
|
|
2608
|
-
type: any;
|
|
2609
|
-
actionName: any;
|
|
2610
|
-
body: any;
|
|
2611
|
-
opt: any;
|
|
2612
|
-
}): never;
|
|
2613
|
-
export function cleanForNew(ctx: any, resource: any): never;
|
|
2614
|
-
export function cleanForNew(ctx: any, resource: any): never;
|
|
2615
|
-
export function createNamespace(ctx: any, resource: any): never;
|
|
2616
|
-
export function createNamespace(ctx: any, resource: any): never;
|
|
2617
|
-
export function cleanForDiff(ctx: any, resource: any): never;
|
|
2618
|
-
export function cleanForDiff(ctx: any, resource: any): never;
|
|
2619
|
-
export function cleanForDetail(ctx: any, resource: any): any;
|
|
2620
|
-
export function cleanForDetail(ctx: any, resource: any): any;
|
|
2621
|
-
export function cleanForDownload(ctx: any, resource: any): any;
|
|
2622
|
-
export function cleanForDownload(ctx: any, resource: any): any;
|
|
2623
|
-
export function waitForSchema({ getters, dispatch }: {
|
|
2624
|
-
getters: any;
|
|
2625
|
-
dispatch: any;
|
|
2626
|
-
}, { type }: {
|
|
2627
|
-
type: any;
|
|
2628
|
-
}): Promise<void>;
|
|
2629
|
-
export function waitForSchema({ getters, dispatch }: {
|
|
2630
|
-
getters: any;
|
|
2631
|
-
dispatch: any;
|
|
2632
|
-
}, { type }: {
|
|
2633
|
-
type: any;
|
|
2634
|
-
}): Promise<void>;
|
|
2635
|
-
export function waitForHaveAll({ getters }: {
|
|
2636
|
-
getters: any;
|
|
2637
|
-
}, { type, throwError, attempts }: {
|
|
2638
|
-
type: any;
|
|
2639
|
-
throwError?: boolean;
|
|
2640
|
-
attempts?: number;
|
|
2641
|
-
}): Promise<void>;
|
|
2642
|
-
export function waitForHaveAll({ getters }: {
|
|
2643
|
-
getters: any;
|
|
2644
|
-
}, { type, throwError, attempts }: {
|
|
2645
|
-
type: any;
|
|
2646
|
-
throwError?: boolean;
|
|
2647
|
-
attempts?: number;
|
|
2648
|
-
}): Promise<void>;
|
|
2649
|
-
export function incrementLoadCounter({ commit }: {
|
|
2650
|
-
commit: any;
|
|
2651
|
-
}, resource: any): void;
|
|
2652
|
-
export function incrementLoadCounter({ commit }: {
|
|
2653
|
-
commit: any;
|
|
2654
|
-
}, resource: any): void;
|
|
2655
|
-
export function garbageCollect(ctx: any, ignoreTypes: any): any;
|
|
2656
|
-
export function garbageCollect(ctx: any, ignoreTypes: any): any;
|
|
2657
|
-
export function gcResetStore({ state }: {
|
|
2658
|
-
state: any;
|
|
2659
|
-
}): void;
|
|
2660
|
-
export function gcResetStore({ state }: {
|
|
2661
|
-
state: any;
|
|
2662
|
-
}): void;
|
|
2663
|
-
}
|
|
2664
|
-
export default _default;
|
|
2665
|
-
}
|
|
2666
|
-
|
|
2667
|
-
// @shell/plugins/dashboard-store/classify
|
|
2668
|
-
|
|
2669
|
-
declare module '@shell/plugins/dashboard-store/classify' {
|
|
2670
|
-
export function classify(ctx: any, obj: any, isClone?: boolean): any;
|
|
2671
|
-
export const BY_TYPE: "byType";
|
|
2672
|
-
export const SELF: "__[[SELF]]__";
|
|
2673
|
-
}
|
|
2674
|
-
|
|
2675
|
-
// @shell/plugins/dashboard-store/normalize
|
|
2676
|
-
|
|
2677
|
-
declare module '@shell/plugins/dashboard-store/normalize' {
|
|
2678
|
-
export function keyFieldFor(type: any): string;
|
|
2679
|
-
export function normalizeType(type: any): any;
|
|
2680
|
-
export function handleConflict(initialValueJSON: any, value: any, liveValue: any, rootGetters: any, store: any, storeNamespace: any): Promise<false | any[]>;
|
|
2681
|
-
export const KEY_FIELD_FOR: {
|
|
2682
|
-
[x: number]: string;
|
|
2683
|
-
default: string;
|
|
2684
|
-
};
|
|
2685
|
-
}
|
|
2686
|
-
|
|
2687
|
-
// @shell/plugins/dashboard-store/resource-class
|
|
2688
|
-
|
|
2689
|
-
declare module '@shell/plugins/dashboard-store/resource-class' {
|
|
2690
|
-
export function mapStateToEnum(statusString: any): string;
|
|
2691
|
-
export function getStatesByType(type?: string): {
|
|
2692
|
-
info: any[];
|
|
2693
|
-
error: any[];
|
|
2694
|
-
success: any[];
|
|
2695
|
-
warning: any[];
|
|
2696
|
-
unknown: any[];
|
|
2697
|
-
};
|
|
2698
|
-
export function getStateLabel(state: any): string;
|
|
2699
|
-
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
2700
|
-
export function stateDisplay(state: any): any;
|
|
2701
|
-
export function primaryDisplayStatusFromCount(status: any): string;
|
|
2702
|
-
export function stateSort(color: any, display: any): string;
|
|
2703
|
-
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
2704
|
-
export const DNS_LIKE_TYPES: string[];
|
|
2705
|
-
export namespace STATES_ENUM {
|
|
2706
|
-
const IN_USE: string;
|
|
2707
|
-
const IN_PROGRESS: string;
|
|
2708
|
-
const PENDING_ROLLBACK: string;
|
|
2709
|
-
const PENDING_UPGRADE: string;
|
|
2710
|
-
const ABORTED: string;
|
|
2711
|
-
const ACTIVATING: string;
|
|
2712
|
-
const ACTIVE: string;
|
|
2713
|
-
const AVAILABLE: string;
|
|
2714
|
-
const BACKED_UP: string;
|
|
2715
|
-
const BOUND: string;
|
|
2716
|
-
const BUILDING: string;
|
|
2717
|
-
const COMPLETED: string;
|
|
2718
|
-
const CORDONED: string;
|
|
2719
|
-
const COUNT: string;
|
|
2720
|
-
const CREATED: string;
|
|
2721
|
-
const CREATING: string;
|
|
2722
|
-
const DEACTIVATING: string;
|
|
2723
|
-
const DEGRADED: string;
|
|
2724
|
-
const DENIED: string;
|
|
2725
|
-
const DEPLOYED: string;
|
|
2726
|
-
const DEPLOYING: string;
|
|
2727
|
-
const DISABLED: string;
|
|
2728
|
-
const DISCONNECTED: string;
|
|
2729
|
-
const DRAINED: string;
|
|
2730
|
-
const DRAINING: string;
|
|
2731
|
-
const ERR_APPLIED: string;
|
|
2732
|
-
const ERROR: string;
|
|
2733
|
-
const ERRORING: string;
|
|
2734
|
-
const ERRORS: string;
|
|
2735
|
-
const EXPIRED: string;
|
|
2736
|
-
const EXPIRING: string;
|
|
2737
|
-
const FAIL: string;
|
|
2738
|
-
const FAILED: string;
|
|
2739
|
-
const HEALTHY: string;
|
|
2740
|
-
const INACTIVE: string;
|
|
2741
|
-
const INFO: string;
|
|
2742
|
-
const INITIALIZING: string;
|
|
2743
|
-
const INPROGRESS: string;
|
|
2744
|
-
const LOCKED: string;
|
|
2745
|
-
const MIGRATING: string;
|
|
2746
|
-
const MISSING: string;
|
|
2747
|
-
const MODIFIED: string;
|
|
2748
|
-
const NOT_APPLICABLE: string;
|
|
2749
|
-
const NOT_APLLIED: string;
|
|
2750
|
-
const NOT_READY: string;
|
|
2751
|
-
const OFF: string;
|
|
2752
|
-
const ORPHANED: string;
|
|
2753
|
-
const OTHER: string;
|
|
2754
|
-
const OUT_OF_SYNC: string;
|
|
2755
|
-
const ON_GOING: string;
|
|
2756
|
-
const PASS: string;
|
|
2757
|
-
const PASSED: string;
|
|
2758
|
-
const PAUSED: string;
|
|
2759
|
-
const PENDING: string;
|
|
2760
|
-
const PROVISIONING: string;
|
|
2761
|
-
const PROVISIONED: string;
|
|
2762
|
-
const PURGED: string;
|
|
2763
|
-
const PURGING: string;
|
|
2764
|
-
const READY: string;
|
|
2765
|
-
const RECONNECTING: string;
|
|
2766
|
-
const REGISTERING: string;
|
|
2767
|
-
const REINITIALIZING: string;
|
|
2768
|
-
const RELEASED: string;
|
|
2769
|
-
const REMOVED: string;
|
|
2770
|
-
const REMOVING: string;
|
|
2771
|
-
const REQUESTED: string;
|
|
2772
|
-
const RESTARTING: string;
|
|
2773
|
-
const RESTORING: string;
|
|
2774
|
-
const RESIZING: string;
|
|
2775
|
-
const RUNNING: string;
|
|
2776
|
-
const SKIP: string;
|
|
2777
|
-
const SKIPPED: string;
|
|
2778
|
-
const STARTING: string;
|
|
2779
|
-
const STOPPED: string;
|
|
2780
|
-
const STOPPING: string;
|
|
2781
|
-
const SUCCEEDED: string;
|
|
2782
|
-
const SUCCESS: string;
|
|
2783
|
-
const SUCCESSFUL: string;
|
|
2784
|
-
const SUPERSEDED: string;
|
|
2785
|
-
const SUSPENDED: string;
|
|
2786
|
-
const UNAVAILABLE: string;
|
|
2787
|
-
const UNHEALTHY: string;
|
|
2788
|
-
const UNINSTALLED: string;
|
|
2789
|
-
const UNINSTALLING: string;
|
|
2790
|
-
const UNKNOWN: string;
|
|
2791
|
-
const UNTRIGGERED: string;
|
|
2792
|
-
const UPDATING: string;
|
|
2793
|
-
const WAIT_APPLIED: string;
|
|
2794
|
-
const WAIT_CHECKIN: string;
|
|
2795
|
-
const WAITING: string;
|
|
2796
|
-
const WARNING: string;
|
|
2797
|
-
}
|
|
2798
|
-
export const STATES: {
|
|
2799
|
-
[x: string]: {
|
|
2800
|
-
color: string;
|
|
2801
|
-
icon: string;
|
|
2802
|
-
label: string;
|
|
2803
|
-
compoundIcon: string;
|
|
2804
|
-
} | {
|
|
2805
|
-
color: string;
|
|
2806
|
-
icon: string;
|
|
2807
|
-
label: string;
|
|
2808
|
-
compoundIcon?: undefined;
|
|
2809
|
-
};
|
|
2810
|
-
};
|
|
2811
|
-
export default class Resource {
|
|
2812
|
-
constructor(data: any, ctx: any, rehydrateNamespace?: any, setClone?: boolean);
|
|
2813
|
-
get $getters(): any;
|
|
2814
|
-
get $rootGetters(): any;
|
|
2815
|
-
get $dispatch(): any;
|
|
2816
|
-
get $state(): any;
|
|
2817
|
-
get $rootState(): any;
|
|
2818
|
-
get customValidationRules(): any[];
|
|
2819
|
-
get _key(): any;
|
|
2820
|
-
get schema(): any;
|
|
2821
|
-
toString(): string;
|
|
2822
|
-
get typeDisplay(): any;
|
|
2823
|
-
get nameDisplay(): any;
|
|
2824
|
-
get nameSort(): any;
|
|
2825
|
-
get namespacedName(): any;
|
|
2826
|
-
get namespacedNameSort(): any;
|
|
2827
|
-
get groupByLabel(): any;
|
|
2828
|
-
setLabels(): void;
|
|
2829
|
-
setLabel(): void;
|
|
2830
|
-
setAnnotations(val: any): void;
|
|
2831
|
-
setAnnotation(key: any, val: any): void;
|
|
2832
|
-
get stateDisplay(): any;
|
|
2833
|
-
get stateColor(): any;
|
|
2834
|
-
get stateBackground(): any;
|
|
2835
|
-
get stateIcon(): string;
|
|
2836
|
-
get stateSort(): string;
|
|
2837
|
-
get stateDescription(): any;
|
|
2838
|
-
get stateObj(): any;
|
|
2839
|
-
waitForTestFn(fn: any, msg: any, timeoutMs: any, intervalMs: any): any;
|
|
2840
|
-
waitForState(state: any, timeout: any, interval: any): any;
|
|
2841
|
-
waitForTransition(): any;
|
|
2842
|
-
waitForAction(name: any): any;
|
|
2843
|
-
waitForLink(name: any): any;
|
|
2844
|
-
hasCondition(condition: any): boolean;
|
|
2845
|
-
isCondition(condition: any, withStatus?: string): boolean;
|
|
2846
|
-
waitForCondition(name: any, withStatus?: string, timeoutMs?: number, intervalMs?: number): any;
|
|
2847
|
-
get availableActions(): ({
|
|
2848
|
-
divider: boolean;
|
|
2849
|
-
action?: undefined;
|
|
2850
|
-
label?: undefined;
|
|
2851
|
-
icon?: undefined;
|
|
2852
|
-
enabled?: undefined;
|
|
2853
|
-
bulkable?: undefined;
|
|
2854
|
-
bulkAction?: undefined;
|
|
2855
|
-
weight?: undefined;
|
|
2856
|
-
altAction?: undefined;
|
|
2857
|
-
} | {
|
|
2858
|
-
action: string;
|
|
2859
|
-
label: any;
|
|
2860
|
-
icon: string;
|
|
2861
|
-
enabled: any;
|
|
2862
|
-
divider?: undefined;
|
|
2863
|
-
bulkable?: undefined;
|
|
2864
|
-
bulkAction?: undefined;
|
|
2865
|
-
weight?: undefined;
|
|
2866
|
-
altAction?: undefined;
|
|
2867
|
-
} | {
|
|
2868
|
-
action: string;
|
|
2869
|
-
label: any;
|
|
2870
|
-
icon: string;
|
|
2871
|
-
bulkable: boolean;
|
|
2872
|
-
bulkAction: string;
|
|
2873
|
-
enabled: boolean;
|
|
2874
|
-
weight: number;
|
|
2875
|
-
divider?: undefined;
|
|
2876
|
-
altAction?: undefined;
|
|
2877
|
-
} | {
|
|
2878
|
-
action: string;
|
|
2879
|
-
altAction: string;
|
|
2880
|
-
label: any;
|
|
2881
|
-
icon: string;
|
|
2882
|
-
bulkable: boolean;
|
|
2883
|
-
enabled: any;
|
|
2884
|
-
bulkAction: string;
|
|
2885
|
-
weight: number;
|
|
2886
|
-
divider?: undefined;
|
|
2887
|
-
})[];
|
|
2888
|
-
get _availableActions(): ({
|
|
2889
|
-
divider: boolean;
|
|
2890
|
-
action?: undefined;
|
|
2891
|
-
label?: undefined;
|
|
2892
|
-
icon?: undefined;
|
|
2893
|
-
enabled?: undefined;
|
|
2894
|
-
bulkable?: undefined;
|
|
2895
|
-
bulkAction?: undefined;
|
|
2896
|
-
weight?: undefined;
|
|
2897
|
-
altAction?: undefined;
|
|
2898
|
-
} | {
|
|
2899
|
-
action: string;
|
|
2900
|
-
label: any;
|
|
2901
|
-
icon: string;
|
|
2902
|
-
enabled: any;
|
|
2903
|
-
divider?: undefined;
|
|
2904
|
-
bulkable?: undefined;
|
|
2905
|
-
bulkAction?: undefined;
|
|
2906
|
-
weight?: undefined;
|
|
2907
|
-
altAction?: undefined;
|
|
2908
|
-
} | {
|
|
2909
|
-
action: string;
|
|
2910
|
-
label: any;
|
|
2911
|
-
icon: string;
|
|
2912
|
-
bulkable: boolean;
|
|
2913
|
-
bulkAction: string;
|
|
2914
|
-
enabled: boolean;
|
|
2915
|
-
weight: number;
|
|
2916
|
-
divider?: undefined;
|
|
2917
|
-
altAction?: undefined;
|
|
2918
|
-
} | {
|
|
2919
|
-
action: string;
|
|
2920
|
-
altAction: string;
|
|
2921
|
-
label: any;
|
|
2922
|
-
icon: string;
|
|
2923
|
-
bulkable: boolean;
|
|
2924
|
-
enabled: any;
|
|
2925
|
-
bulkAction: string;
|
|
2926
|
-
weight: number;
|
|
2927
|
-
divider?: undefined;
|
|
2928
|
-
})[];
|
|
2929
|
-
get canDelete(): any;
|
|
2930
|
-
get _canDelete(): any;
|
|
2931
|
-
get canClone(): boolean;
|
|
2932
|
-
get canUpdate(): any;
|
|
2933
|
-
get canCustomEdit(): any;
|
|
2934
|
-
get canCreate(): any;
|
|
2935
|
-
get canViewInApi(): any;
|
|
2936
|
-
get canYaml(): boolean;
|
|
2937
|
-
get canEditYaml(): any;
|
|
2938
|
-
hasLink(linkName: any): boolean;
|
|
2939
|
-
linkFor(linkName: any): any;
|
|
2940
|
-
followLink(linkName: any, opt?: {}): any;
|
|
2941
|
-
hasAction(actionName: any): boolean;
|
|
2942
|
-
actionLinkFor(actionName: any): any;
|
|
2943
|
-
doAction(actionName: any, body: any, opt?: {}): any;
|
|
2944
|
-
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<void>;
|
|
2945
|
-
patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
|
|
2946
|
-
save(...args: any[]): Promise<Resource>;
|
|
2947
|
-
/**
|
|
2948
|
-
* Remove any unwanted properties from the object that will be saved
|
|
2949
|
-
*/
|
|
2950
|
-
cleanForSave(data: any, forNew: any): any;
|
|
2951
|
-
/**
|
|
2952
|
-
* Allow to handle the response of the save request
|
|
2953
|
-
* @param {*} res Full request response
|
|
2954
|
-
*/
|
|
2955
|
-
processSaveResponse(res: any): void;
|
|
2956
|
-
_save(opt?: {}): Promise<Resource>;
|
|
2957
|
-
remove(...args: any[]): Promise<void>;
|
|
2958
|
-
_remove(opt?: {}): Promise<void>;
|
|
2959
|
-
currentRoute(): any;
|
|
2960
|
-
currentRouter(): any;
|
|
2961
|
-
get listLocation(): {
|
|
2962
|
-
name: string;
|
|
2963
|
-
params: {
|
|
2964
|
-
product: any;
|
|
2965
|
-
cluster: any;
|
|
2966
|
-
resource: any;
|
|
2967
|
-
};
|
|
2968
|
-
};
|
|
2969
|
-
get _detailLocation(): {
|
|
2970
|
-
name: string;
|
|
2971
|
-
params: {
|
|
2972
|
-
product: any;
|
|
2973
|
-
cluster: any;
|
|
2974
|
-
resource: any;
|
|
2975
|
-
namespace: any;
|
|
2976
|
-
id: any;
|
|
2977
|
-
};
|
|
2978
|
-
};
|
|
2979
|
-
get detailLocation(): {
|
|
2980
|
-
name: string;
|
|
2981
|
-
params: {
|
|
2982
|
-
product: any;
|
|
2983
|
-
cluster: any;
|
|
2984
|
-
resource: any;
|
|
2985
|
-
namespace: any;
|
|
2986
|
-
id: any;
|
|
2987
|
-
};
|
|
2988
|
-
};
|
|
2989
|
-
goToDetail(): void;
|
|
2990
|
-
goToClone(moreQuery?: {}): void;
|
|
2991
|
-
goToEdit(moreQuery?: {}): void;
|
|
2992
|
-
goToViewConfig(moreQuery?: {}): void;
|
|
2993
|
-
goToEditYaml(): void;
|
|
2994
|
-
goToViewYaml(): void;
|
|
2995
|
-
cloneYaml(moreQuery?: {}): void;
|
|
2996
|
-
download(): Promise<void>;
|
|
2997
|
-
downloadBulk(items: any): Promise<void>;
|
|
2998
|
-
viewInApi(): void;
|
|
2999
|
-
promptRemove(resources: any): void;
|
|
3000
|
-
get confirmRemove(): boolean;
|
|
3001
|
-
applyDefaults(): void;
|
|
3002
|
-
get urlFromAttrs(): any;
|
|
3003
|
-
cleanYaml(yaml: any, mode?: string): any;
|
|
3004
|
-
cleanForNew(): void;
|
|
3005
|
-
cleanForDiff(): void;
|
|
3006
|
-
cleanForDownload(yaml: any): Promise<any>;
|
|
3007
|
-
yamlForSave(yaml: any): any;
|
|
3008
|
-
saveYaml(yaml: any): Promise<void>;
|
|
3009
|
-
_saveYaml(yaml: any): Promise<void>;
|
|
3010
|
-
get modelValidationRules(): {
|
|
3011
|
-
path: any;
|
|
3012
|
-
rules: any[];
|
|
3013
|
-
}[];
|
|
3014
|
-
customValidationErrors(data: any, ignorePaths?: any[]): any[];
|
|
3015
|
-
/**
|
|
3016
|
-
* Check this instance is valid against
|
|
3017
|
-
* - any custom dashboard validation
|
|
3018
|
-
*
|
|
3019
|
-
* Models can override this and call super.validationErrors
|
|
3020
|
-
*/
|
|
3021
|
-
validationErrors(data?: Resource, opts?: {}): any[];
|
|
3022
|
-
get ownersByType(): {};
|
|
3023
|
-
get owners(): any[];
|
|
3024
|
-
get details(): ({
|
|
3025
|
-
label: any;
|
|
3026
|
-
formatter: string;
|
|
3027
|
-
content: {
|
|
3028
|
-
key: any;
|
|
3029
|
-
row: any;
|
|
3030
|
-
col: {};
|
|
3031
|
-
value: any;
|
|
3032
|
-
}[];
|
|
3033
|
-
formatterOpts?: undefined;
|
|
3034
|
-
} | {
|
|
3035
|
-
label: any;
|
|
3036
|
-
formatter: string;
|
|
3037
|
-
formatterOpts: {
|
|
3038
|
-
addSuffix: boolean;
|
|
3039
|
-
};
|
|
3040
|
-
content: any;
|
|
3041
|
-
})[];
|
|
3042
|
-
get _details(): ({
|
|
3043
|
-
label: any;
|
|
3044
|
-
formatter: string;
|
|
3045
|
-
content: {
|
|
3046
|
-
key: any;
|
|
3047
|
-
row: any;
|
|
3048
|
-
col: {};
|
|
3049
|
-
value: any;
|
|
3050
|
-
}[];
|
|
3051
|
-
formatterOpts?: undefined;
|
|
3052
|
-
} | {
|
|
3053
|
-
label: any;
|
|
3054
|
-
formatter: string;
|
|
3055
|
-
formatterOpts: {
|
|
3056
|
-
addSuffix: boolean;
|
|
3057
|
-
};
|
|
3058
|
-
content: any;
|
|
3059
|
-
})[];
|
|
3060
|
-
get t(): any;
|
|
3061
|
-
findOwners(): any[];
|
|
3062
|
-
getOwners(): any[];
|
|
3063
|
-
findOwned(): Promise<any[]>;
|
|
3064
|
-
_relationshipsFor(rel: any, direction: any): {
|
|
3065
|
-
selectors: any[];
|
|
3066
|
-
ids: any[];
|
|
3067
|
-
};
|
|
3068
|
-
_getRelationship(rel: any, direction: any): any[];
|
|
3069
|
-
_findRelationship(rel: any, direction: any): Promise<any[]>;
|
|
3070
|
-
get shortId(): any;
|
|
3071
|
-
toJSON(): {};
|
|
3072
|
-
/**
|
|
3073
|
-
* Allow models to override the object that is sent when saving this resource
|
|
3074
|
-
*/
|
|
3075
|
-
toSave(): any;
|
|
3076
|
-
get creationTimestamp(): any;
|
|
3077
|
-
/**
|
|
3078
|
-
* Allows model to specify JSON Paths that should be folded in the YAML editor by default
|
|
3079
|
-
*/
|
|
3080
|
-
get yamlFolding(): any[];
|
|
3081
|
-
}
|
|
3082
|
-
}
|
|
3083
|
-
|
|
3084
|
-
// @shell/store/features
|
|
3085
|
-
|
|
3086
|
-
declare module '@shell/store/features' {
|
|
3087
|
-
export function create(name: any, defaultValue: any): any;
|
|
3088
|
-
export function mapFeature(name: any): {
|
|
3089
|
-
get(): any;
|
|
3090
|
-
set(value: any): never;
|
|
3091
|
-
};
|
|
3092
|
-
export const MULTI_CLUSTER: any;
|
|
3093
|
-
export const LEGACY: any;
|
|
3094
|
-
export const RKE2: any;
|
|
3095
|
-
export const RKE1_UI: any;
|
|
3096
|
-
export const UNSUPPORTED_STORAGE_DRIVERS: any;
|
|
3097
|
-
export const FLEET: any;
|
|
3098
|
-
export const HARVESTER: any;
|
|
3099
|
-
export const HARVESTER_CONTAINER: any;
|
|
3100
|
-
export const FLEET_WORKSPACE_BACK: any;
|
|
3101
|
-
export const STEVE_CACHE: any;
|
|
3102
|
-
export const UIEXTENSION: any;
|
|
3103
|
-
export namespace getters {
|
|
3104
|
-
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
3105
|
-
}
|
|
3106
|
-
export namespace actions {
|
|
3107
|
-
function loadServer({ rootGetters, dispatch }: {
|
|
3108
|
-
rootGetters: any;
|
|
3109
|
-
dispatch: any;
|
|
3110
|
-
}): Promise<any>;
|
|
3111
|
-
function loadServer({ rootGetters, dispatch }: {
|
|
3112
|
-
rootGetters: any;
|
|
3113
|
-
dispatch: any;
|
|
3114
|
-
}): Promise<any>;
|
|
3115
|
-
}
|
|
3116
|
-
}
|
|
3117
|
-
|
|
3118
|
-
// @shell/store/prefs
|
|
3119
|
-
|
|
3120
|
-
declare module '@shell/store/prefs' {
|
|
3121
|
-
export function create(name: any, def: any, opt?: {}): any;
|
|
3122
|
-
export function mapPref(name: any): {
|
|
3123
|
-
get(): any;
|
|
3124
|
-
set(value: any): void;
|
|
3125
|
-
};
|
|
3126
|
-
export const CLUSTER: any;
|
|
3127
|
-
export const LAST_NAMESPACE: any;
|
|
3128
|
-
export const NAMESPACE_FILTERS: any;
|
|
3129
|
-
export const WORKSPACE: any;
|
|
3130
|
-
export const EXPANDED_GROUPS: any;
|
|
3131
|
-
export const FAVORITE_TYPES: any;
|
|
3132
|
-
export const PINNED_CLUSTERS: any;
|
|
3133
|
-
export const GROUP_RESOURCES: any;
|
|
3134
|
-
export const DIFF: any;
|
|
3135
|
-
export const THEME: any;
|
|
3136
|
-
export const PREFERS_SCHEME: any;
|
|
3137
|
-
export const LOCALE: any;
|
|
3138
|
-
export const KEYMAP: any;
|
|
3139
|
-
export const ROWS_PER_PAGE: any;
|
|
3140
|
-
export const LOGS_WRAP: any;
|
|
3141
|
-
export const LOGS_TIME: any;
|
|
3142
|
-
export const LOGS_RANGE: any;
|
|
3143
|
-
export const HIDE_REPOS: any;
|
|
3144
|
-
export const HIDE_DESC: any;
|
|
3145
|
-
export const HIDE_SENSITIVE: any;
|
|
3146
|
-
export const SHOW_PRE_RELEASE: any;
|
|
3147
|
-
export const SHOW_CHART_MODE: any;
|
|
3148
|
-
export const DATE_FORMAT: any;
|
|
3149
|
-
export const TIME_FORMAT: any;
|
|
3150
|
-
export const TIME_ZONE: any;
|
|
3151
|
-
export const DEV: any;
|
|
3152
|
-
export const VIEW_IN_API: any;
|
|
3153
|
-
export const ALL_NAMESPACES: any;
|
|
3154
|
-
export const THEME_SHORTCUT: any;
|
|
3155
|
-
export const LAST_VISITED: any;
|
|
3156
|
-
export const SEEN_WHATS_NEW: any;
|
|
3157
|
-
export const READ_WHATS_NEW: any;
|
|
3158
|
-
export const AFTER_LOGIN_ROUTE: any;
|
|
3159
|
-
export const HIDE_HOME_PAGE_CARDS: any;
|
|
3160
|
-
export const PLUGIN_DEVELOPER: any;
|
|
3161
|
-
export const _RKE1: "rke1";
|
|
3162
|
-
export const _RKE2: "rke2";
|
|
3163
|
-
export const PROVISIONER: any;
|
|
3164
|
-
export const MENU_MAX_CLUSTERS: 10;
|
|
3165
|
-
export const SCALE_POOL_PROMPT: any;
|
|
3166
|
-
export function state(): {
|
|
3167
|
-
cookiesLoaded: boolean;
|
|
3168
|
-
data: {};
|
|
3169
|
-
definitions: {};
|
|
3170
|
-
};
|
|
3171
|
-
export namespace getters {
|
|
3172
|
-
function get(state: any): (key: any) => any;
|
|
3173
|
-
function defaultValue(state: any): (key: any) => any;
|
|
3174
|
-
function options(state: any): (key: any) => any;
|
|
3175
|
-
function theme(state: any, getters: any, rootState: any, rootGetters: any): any;
|
|
3176
|
-
function afterLoginRoute(state: any, getters: any): any;
|
|
3177
|
-
}
|
|
3178
|
-
export namespace mutations {
|
|
3179
|
-
function load(state: any, { key, value }: {
|
|
3180
|
-
key: any;
|
|
3181
|
-
value: any;
|
|
3182
|
-
}): void;
|
|
3183
|
-
function load(state: any, { key, value }: {
|
|
3184
|
-
key: any;
|
|
3185
|
-
value: any;
|
|
3186
|
-
}): void;
|
|
3187
|
-
function cookiesLoaded(state: any): void;
|
|
3188
|
-
function cookiesLoaded(state: any): void;
|
|
3189
|
-
function reset(state: any): void;
|
|
3190
|
-
function reset(state: any): void;
|
|
3191
|
-
function setDefinition(state: any, { name, definition }: {
|
|
3192
|
-
name: any;
|
|
3193
|
-
definition?: {};
|
|
3194
|
-
}): void;
|
|
3195
|
-
function setDefinition(state: any, { name, definition }: {
|
|
3196
|
-
name: any;
|
|
3197
|
-
definition?: {};
|
|
3198
|
-
}): void;
|
|
3199
|
-
}
|
|
3200
|
-
export namespace actions {
|
|
3201
|
-
function set({ dispatch, commit, rootGetters, state }: {
|
|
3202
|
-
dispatch: any;
|
|
3203
|
-
commit: any;
|
|
3204
|
-
rootGetters: any;
|
|
3205
|
-
state: any;
|
|
3206
|
-
}, opt: any): Promise<{
|
|
3207
|
-
type: any;
|
|
3208
|
-
status: any;
|
|
3209
|
-
}>;
|
|
3210
|
-
function set({ dispatch, commit, rootGetters, state }: {
|
|
3211
|
-
dispatch: any;
|
|
3212
|
-
commit: any;
|
|
3213
|
-
rootGetters: any;
|
|
3214
|
-
state: any;
|
|
3215
|
-
}, opt: any): Promise<{
|
|
3216
|
-
type: any;
|
|
3217
|
-
status: any;
|
|
3218
|
-
}>;
|
|
3219
|
-
function setTheme({ dispatch }: {
|
|
3220
|
-
dispatch: any;
|
|
3221
|
-
}, val: any): Promise<void>;
|
|
3222
|
-
function setTheme({ dispatch }: {
|
|
3223
|
-
dispatch: any;
|
|
3224
|
-
}, val: any): Promise<void>;
|
|
3225
|
-
function loadCookies({ state, commit }: {
|
|
3226
|
-
state: any;
|
|
3227
|
-
commit: any;
|
|
3228
|
-
}): void;
|
|
3229
|
-
function loadCookies({ state, commit }: {
|
|
3230
|
-
state: any;
|
|
3231
|
-
commit: any;
|
|
3232
|
-
}): void;
|
|
3233
|
-
function loadTheme({ dispatch }: {
|
|
3234
|
-
dispatch: any;
|
|
3235
|
-
}): void;
|
|
3236
|
-
function loadTheme({ dispatch }: {
|
|
3237
|
-
dispatch: any;
|
|
3238
|
-
}): void;
|
|
3239
|
-
function loadServer({ state, dispatch, commit, rootState, rootGetters }: {
|
|
3240
|
-
state: any;
|
|
3241
|
-
dispatch: any;
|
|
3242
|
-
commit: any;
|
|
3243
|
-
rootState: any;
|
|
3244
|
-
rootGetters: any;
|
|
3245
|
-
}, ignoreKey: any): Promise<{
|
|
3246
|
-
data: {};
|
|
3247
|
-
}>;
|
|
3248
|
-
function loadServer({ state, dispatch, commit, rootState, rootGetters }: {
|
|
3249
|
-
state: any;
|
|
3250
|
-
dispatch: any;
|
|
3251
|
-
commit: any;
|
|
3252
|
-
rootState: any;
|
|
3253
|
-
rootGetters: any;
|
|
3254
|
-
}, ignoreKey: any): Promise<{
|
|
3255
|
-
data: {};
|
|
3256
|
-
}>;
|
|
3257
|
-
function setLastVisited({ state, dispatch, getters }: {
|
|
3258
|
-
state: any;
|
|
3259
|
-
dispatch: any;
|
|
3260
|
-
getters: any;
|
|
3261
|
-
}, route: any): any;
|
|
3262
|
-
function setLastVisited({ state, dispatch, getters }: {
|
|
3263
|
-
state: any;
|
|
3264
|
-
dispatch: any;
|
|
3265
|
-
getters: any;
|
|
3266
|
-
}, route: any): any;
|
|
3267
|
-
function toggleTheme({ getters, dispatch }: {
|
|
3268
|
-
getters: any;
|
|
3269
|
-
dispatch: any;
|
|
3270
|
-
}): any;
|
|
3271
|
-
function toggleTheme({ getters, dispatch }: {
|
|
3272
|
-
getters: any;
|
|
3273
|
-
dispatch: any;
|
|
3274
|
-
}): any;
|
|
3275
|
-
function setBrandStyle({ rootState, rootGetters }: {
|
|
3276
|
-
rootState: any;
|
|
3277
|
-
rootGetters: any;
|
|
3278
|
-
}, dark?: boolean): void;
|
|
3279
|
-
function setBrandStyle({ rootState, rootGetters }: {
|
|
3280
|
-
rootState: any;
|
|
3281
|
-
rootGetters: any;
|
|
3282
|
-
}, dark?: boolean): void;
|
|
3283
|
-
}
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
// @shell/utils/alertmanagerconfig
|
|
3287
|
-
|
|
3288
|
-
declare module '@shell/utils/alertmanagerconfig' {
|
|
3289
|
-
export function getSecretId(dispatch: any): Promise<string>;
|
|
3290
|
-
export function getSecret(dispatch: any): Promise<any>;
|
|
3291
|
-
export function loadConfig(dispatch: any): Promise<{
|
|
3292
|
-
config: any;
|
|
3293
|
-
secret: any;
|
|
3294
|
-
}>;
|
|
3295
|
-
export function updateConfig(dispatch: any, path: any, type: any, updateFn: any): Promise<void>;
|
|
3296
|
-
export function getAllReceivers(dispatch: any): Promise<any[]>;
|
|
3297
|
-
export function getAllRoutes(dispatch: any): Promise<any[]>;
|
|
3298
|
-
export function createDefaultRouteName(index: any): string;
|
|
3299
|
-
export function areRoutesSupportedFormat(secret: any): boolean;
|
|
3300
|
-
export function canCreate(rootGetters: any): any;
|
|
3301
|
-
export function fetchAlertManagerConfigSpecs($store: any): Promise<{
|
|
3302
|
-
receiverSchema: any;
|
|
3303
|
-
routeSchema: any;
|
|
3304
|
-
}>;
|
|
3305
|
-
export const FILENAME: "alertmanager.yaml";
|
|
3306
|
-
}
|
|
3307
|
-
|
|
3308
|
-
// @shell/utils/auth
|
|
3309
|
-
|
|
3310
|
-
declare module '@shell/utils/auth' {
|
|
3311
|
-
export function openAuthPopup(url: any, provider: any): any;
|
|
3312
|
-
export function returnTo(opt: any, vm: any): string;
|
|
3313
|
-
/**
|
|
3314
|
-
* Attempt to set the product in our datastore if the route matches a known product. Otherwise show an error page instead.
|
|
3315
|
-
*/
|
|
3316
|
-
export function setProduct(store: any, to: any): void;
|
|
3317
|
-
/**
|
|
3318
|
-
* Check that the resource is valid, if not redirect to fail whale
|
|
3319
|
-
*
|
|
3320
|
-
* This requires that
|
|
3321
|
-
* - product is set
|
|
3322
|
-
* - product's store is set and setup (so we can check schema's within it)
|
|
3323
|
-
* - product's store has the schemaFor getter (extension stores might not have it)
|
|
3324
|
-
* - there's a resource associated with route (meta or param)
|
|
3325
|
-
*/
|
|
3326
|
-
export function validateResource(store: any, to: any): boolean;
|
|
3327
|
-
/**
|
|
3328
|
-
* Attempt to load the current user's principal
|
|
3329
|
-
*/
|
|
3330
|
-
export function findMe(store: any): Promise<any>;
|
|
3331
|
-
/**
|
|
3332
|
-
* Attempt to login with default credentials. Note: I think that this may actually be outdated since we don't use these default credentials anymore on setup.
|
|
3333
|
-
*/
|
|
3334
|
-
export function tryInitialSetup(store: any, password?: string): Promise<boolean>;
|
|
3335
|
-
/**
|
|
3336
|
-
* Record in our state management that we're indeed logged in
|
|
3337
|
-
*/
|
|
3338
|
-
export function isLoggedIn(store: any, me: any): void;
|
|
3339
|
-
/**
|
|
3340
|
-
* Record in our state management that we're not logged in and then redirect to the login page
|
|
3341
|
-
*/
|
|
3342
|
-
export function notLoggedIn(store: any, redirect: any, route: any): any;
|
|
3343
|
-
/**
|
|
3344
|
-
* Record in our state management that we don't have any auth providers
|
|
3345
|
-
*/
|
|
3346
|
-
export function noAuth(store: any): void;
|
|
3347
|
-
export function authProvidersInfo(store: any): Promise<{
|
|
3348
|
-
nonLocal: any;
|
|
3349
|
-
enabledLocation: {
|
|
3350
|
-
name: string;
|
|
3351
|
-
params: {
|
|
3352
|
-
id: any;
|
|
3353
|
-
};
|
|
3354
|
-
query: {
|
|
3355
|
-
mode: any;
|
|
3356
|
-
};
|
|
3357
|
-
};
|
|
3358
|
-
enabled: any;
|
|
3359
|
-
}>;
|
|
3360
|
-
export function checkSchemasForFindAllHash(types: any, store: any): any;
|
|
3361
|
-
export function checkPermissions(types: any, getters: any): any;
|
|
3362
|
-
export function canViewResource(store: any, resource: any): boolean;
|
|
3363
|
-
}
|
|
3364
|
-
|
|
3365
|
-
// @shell/utils/aws
|
|
3366
|
-
|
|
3367
|
-
declare module '@shell/utils/aws' {
|
|
3368
|
-
}
|
|
3369
|
-
|
|
3370
|
-
// @shell/utils/axios
|
|
3371
|
-
|
|
3372
|
-
declare module '@shell/utils/axios' {
|
|
3373
|
-
declare function _default(ctx: any, inject: any): void;
|
|
3374
|
-
export default _default;
|
|
3375
|
-
}
|
|
3376
|
-
|
|
3377
|
-
// @shell/utils/azure
|
|
3378
|
-
|
|
3379
|
-
declare module '@shell/utils/azure' {
|
|
3380
|
-
export function parseAzureError(err: any): any;
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3383
|
-
// @shell/utils/banners
|
|
3384
|
-
|
|
3385
|
-
declare module '@shell/utils/banners' {
|
|
3386
|
-
/**
|
|
3387
|
-
* Get the individual banner settings
|
|
3388
|
-
*/
|
|
3389
|
-
export function getIndividualBanners(store: any): {};
|
|
3390
|
-
/**
|
|
3391
|
-
* Overlay settings from the individual banner settings onto the single banner setting
|
|
3392
|
-
*/
|
|
3393
|
-
export function overlayIndividualBanners(parsedBanner: any, banners: any): void;
|
|
3394
|
-
/**
|
|
3395
|
-
* Get banner font sizes - used to add margins when header and footer banners are present
|
|
3396
|
-
**/
|
|
3397
|
-
export function getGlobalBannerFontSizes(store: any): {
|
|
3398
|
-
headerFont: string;
|
|
3399
|
-
footerFont: string;
|
|
3400
|
-
};
|
|
3401
|
-
}
|
|
3402
|
-
|
|
3403
|
-
// @shell/utils/clipboard
|
|
3404
|
-
|
|
3405
|
-
declare module '@shell/utils/clipboard' {
|
|
3406
|
-
export function copyTextToClipboard(text: any): Promise<void>;
|
|
3407
|
-
}
|
|
3408
|
-
|
|
3409
|
-
// @shell/utils/cluster
|
|
3410
|
-
|
|
3411
|
-
declare module '@shell/utils/cluster' {
|
|
3412
|
-
export function filterOnlyKubernetesClusters(mgmtClusters: any, store: any): any;
|
|
3413
|
-
export function isHarvesterCluster(mgmtCluster: any): boolean;
|
|
3414
|
-
export function isHarvesterSatisfiesVersion(version?: string): any;
|
|
3415
|
-
export function filterHiddenLocalCluster(mgmtClusters: any, store: any): any;
|
|
3416
|
-
/**
|
|
3417
|
-
* Shortens an input string based on the number of segments it contains.
|
|
3418
|
-
* @param {string} input - The input string to be shortened.
|
|
3419
|
-
* @returns {string} - The shortened string.
|
|
3420
|
-
* @example smallIdentifier('local') => 'lcl'
|
|
3421
|
-
* @example smallIdentifier('word-wide-web') => 'www'
|
|
3422
|
-
*/
|
|
3423
|
-
export function abbreviateClusterName(input: string): string;
|
|
3424
|
-
}
|
|
3425
|
-
|
|
3426
|
-
// @shell/utils/color
|
|
3427
|
-
|
|
3428
|
-
declare module '@shell/utils/color' {
|
|
3429
|
-
export function createCssVars(color: any, theme?: string, name?: string): {
|
|
3430
|
-
[x: string]: any;
|
|
3431
|
-
};
|
|
3432
|
-
export function contrastColor(color: any, contrastOptions?: {
|
|
3433
|
-
dark: string;
|
|
3434
|
-
light: string;
|
|
3435
|
-
}): string;
|
|
3436
|
-
export function parseColor(str: any): any;
|
|
3437
|
-
export function textColor(color: any): "black" | "white";
|
|
3438
|
-
export function hexToRgb(hex: any): {
|
|
3439
|
-
r: number;
|
|
3440
|
-
g: number;
|
|
3441
|
-
b: number;
|
|
3442
|
-
};
|
|
3443
|
-
export function mapStandardColors(color: any): any;
|
|
3444
|
-
export function rgbToRgb(rgb: any): {
|
|
3445
|
-
r: number;
|
|
3446
|
-
g: number;
|
|
3447
|
-
b: number;
|
|
3448
|
-
};
|
|
3449
|
-
export function colorToRgb(color: any): {
|
|
3450
|
-
r: number;
|
|
3451
|
-
g: number;
|
|
3452
|
-
b: number;
|
|
3453
|
-
};
|
|
3454
|
-
export function normalizeHex(hex: any): any;
|
|
3455
|
-
}
|
|
3456
|
-
|
|
3457
|
-
// @shell/utils/computed
|
|
3458
|
-
|
|
3459
|
-
declare module '@shell/utils/computed' {
|
|
3460
|
-
/**
|
|
3461
|
-
* Creates a computed property that handles converting strings to numbers and numbers to strings. Particularly when dealing with UnitInput.
|
|
3462
|
-
* @param {*} path The path of the real value
|
|
3463
|
-
* @returns the computed property
|
|
3464
|
-
*/
|
|
3465
|
-
export function integerString(path: any): {
|
|
3466
|
-
get(): number;
|
|
3467
|
-
set(value: any): void;
|
|
3468
|
-
};
|
|
3469
|
-
/**
|
|
3470
|
-
* Creates a computed property that handles converting strings a list of strings that look like ['key=value'] into { key: value } and back
|
|
3471
|
-
* @param {*} path The path of the real value
|
|
3472
|
-
* @param {*} delimiter the character/s used between the key/value. Default value '='.
|
|
3473
|
-
* @returns the computed property
|
|
3474
|
-
*/
|
|
3475
|
-
export function keyValueStrings(path: any, delimiter?: any): {
|
|
3476
|
-
get(): {};
|
|
3477
|
-
set(value: any): void;
|
|
3478
|
-
};
|
|
3479
|
-
}
|
|
3480
|
-
|
|
3481
|
-
// @shell/utils/config
|
|
3482
|
-
|
|
3483
|
-
declare module '@shell/utils/config' {
|
|
3484
|
-
declare function _default(context: any, inject: any): void;
|
|
3485
|
-
export default _default;
|
|
3486
|
-
}
|
|
3487
|
-
|
|
3488
|
-
// @shell/utils/cookie-universal-nuxt
|
|
3489
|
-
|
|
3490
|
-
declare module '@shell/utils/cookie-universal-nuxt' {
|
|
3491
|
-
declare function _default({ req, res }: {
|
|
3492
|
-
req: any;
|
|
3493
|
-
res: any;
|
|
3494
|
-
}, inject: any): void;
|
|
3495
|
-
export default _default;
|
|
3496
|
-
}
|
|
3497
|
-
|
|
3498
|
-
// @shell/utils/create-yaml
|
|
3499
|
-
|
|
3500
|
-
declare module '@shell/utils/create-yaml' {
|
|
3501
|
-
export function createYamlWithOptions(schemas: any, type: any, data: any, options: any): string;
|
|
3502
|
-
export function createYaml(schemas: any, type: any, data: any, processAlwaysAdd?: boolean, depth?: number, path?: string, rootType?: any, dataOptions?: {}): string;
|
|
3503
|
-
export function getBlockDescriptor(value: any, key: any): {
|
|
3504
|
-
header: string;
|
|
3505
|
-
indentation: string;
|
|
3506
|
-
};
|
|
3507
|
-
/**
|
|
3508
|
-
* Check for a specific type and if valid return it's sub type or self
|
|
3509
|
-
* @param {string} type required type
|
|
3510
|
-
* @param {string} str actual type
|
|
3511
|
-
* @param {ResourceField} field resourceField entry to the actual type
|
|
3512
|
-
*
|
|
3513
|
-
* @returns the sub type, or if not found the type
|
|
3514
|
-
*/
|
|
3515
|
-
export function typeRef(type: string, str: string, field?: ResourceField): any;
|
|
3516
|
-
export function typeMunge(type: any): any;
|
|
3517
|
-
export function saferDump(obj: any): any;
|
|
3518
|
-
/**
|
|
3519
|
-
* Handles newlines indicators in the multiline blocks.
|
|
3520
|
-
*
|
|
3521
|
-
* this is required since jsyaml.dump doesn't support chomping and scalar style at the moment.
|
|
3522
|
-
* see: https://github.com/nodeca/js-yaml/issues/171
|
|
3523
|
-
|
|
3524
|
-
* @typedef {Object} DumpBlockOptions
|
|
3525
|
-
* @property {('>' | '|')} [scalarStyle] - The scalar style.
|
|
3526
|
-
* @property {('-' | '+' | '' | null)} [chomping] - The chomping style.
|
|
3527
|
-
*
|
|
3528
|
-
* @param {*} data the multiline block
|
|
3529
|
-
* @param {Object} options - Serialization options for jsyaml.dump.
|
|
3530
|
-
* @param {number} options.lineWidth - Set max line width. Set -1 for unlimited width.
|
|
3531
|
-
* @param {DumpBlockOptions} [options.dynamicProperties] - Options for dynamic properties.
|
|
3532
|
-
* Developers can provide their own property names under `options`.
|
|
3533
|
-
*
|
|
3534
|
-
* @returns the result of jsyaml.dump with the addition of multiline indicators
|
|
3535
|
-
*/
|
|
3536
|
-
export function dumpBlock(data: any, options?: {
|
|
3537
|
-
lineWidth: number;
|
|
3538
|
-
dynamicProperties?: DumpBlockOptions;
|
|
3539
|
-
}): any;
|
|
3540
|
-
export const SIMPLE_TYPES: string[];
|
|
3541
|
-
export const NEVER_ADD: string[];
|
|
3542
|
-
export const ACTIVELY_REMOVE: string[];
|
|
3543
|
-
/**
|
|
3544
|
-
* Handles newlines indicators in the multiline blocks.
|
|
3545
|
-
*
|
|
3546
|
-
* this is required since jsyaml.dump doesn't support chomping and scalar style at the moment.
|
|
3547
|
-
* see: https://github.com/nodeca/js-yaml/issues/171
|
|
3548
|
-
*/
|
|
3549
|
-
export type DumpBlockOptions = {
|
|
3550
|
-
/**
|
|
3551
|
-
* - The scalar style.
|
|
3552
|
-
*/
|
|
3553
|
-
scalarStyle?: ('>' | '|');
|
|
3554
|
-
/**
|
|
3555
|
-
* - The chomping style.
|
|
3556
|
-
*/
|
|
3557
|
-
chomping?: ('-' | '+' | '' | null);
|
|
3558
|
-
};
|
|
3559
|
-
}
|
|
3560
|
-
|
|
3561
|
-
// @shell/utils/crypto/browserHashUtils
|
|
3562
|
-
|
|
3563
|
-
declare module '@shell/utils/crypto/browserHashUtils' {
|
|
3564
|
-
export function hashObj(obj: any): string;
|
|
3565
|
-
/**
|
|
3566
|
-
* @api private
|
|
3567
|
-
*/
|
|
3568
|
-
export function isEmptyData(data: any): boolean;
|
|
3569
|
-
/**
|
|
3570
|
-
* @api private
|
|
3571
|
-
*/
|
|
3572
|
-
export function convertToBuffer(data: any): Uint8Array;
|
|
3573
|
-
declare namespace _default {
|
|
3574
|
-
export { isEmptyData };
|
|
3575
|
-
export { convertToBuffer };
|
|
3576
|
-
}
|
|
3577
|
-
export default _default;
|
|
3578
|
-
}
|
|
3579
|
-
|
|
3580
|
-
// @shell/utils/crypto/browserMd5
|
|
3581
|
-
|
|
3582
|
-
declare module '@shell/utils/crypto/browserMd5' {
|
|
3583
|
-
/// <reference types="node" />
|
|
3584
|
-
export default Md5;
|
|
3585
|
-
/**
|
|
3586
|
-
* @api private
|
|
3587
|
-
*/
|
|
3588
|
-
declare function Md5(): void;
|
|
3589
|
-
declare class Md5 {
|
|
3590
|
-
state: number[];
|
|
3591
|
-
buffer: DataView;
|
|
3592
|
-
bufferLength: number;
|
|
3593
|
-
bytesHashed: number;
|
|
3594
|
-
finished: boolean;
|
|
3595
|
-
update(sourceData: any): Md5;
|
|
3596
|
-
digest(encoding: any): string | Buffer;
|
|
3597
|
-
hashBuffer(): void;
|
|
3598
|
-
}
|
|
3599
|
-
declare namespace Md5 {
|
|
3600
|
-
export { BLOCK_SIZE };
|
|
3601
|
-
}
|
|
3602
|
-
import { Buffer } from "buffer";
|
|
3603
|
-
declare const BLOCK_SIZE: 64;
|
|
3604
|
-
}
|
|
3605
|
-
|
|
3606
|
-
// @shell/utils/crypto/browserSha1
|
|
3607
|
-
|
|
3608
|
-
declare module '@shell/utils/crypto/browserSha1' {
|
|
3609
|
-
/// <reference types="node" />
|
|
3610
|
-
export default Sha1;
|
|
3611
|
-
/**
|
|
3612
|
-
* @api private
|
|
3613
|
-
*/
|
|
3614
|
-
declare function Sha1(): void;
|
|
3615
|
-
declare class Sha1 {
|
|
3616
|
-
h0: number;
|
|
3617
|
-
h1: number;
|
|
3618
|
-
h2: number;
|
|
3619
|
-
h3: number;
|
|
3620
|
-
h4: number;
|
|
3621
|
-
block: Uint32Array;
|
|
3622
|
-
offset: number;
|
|
3623
|
-
shift: number;
|
|
3624
|
-
totalLength: number;
|
|
3625
|
-
update(data: any): Sha1;
|
|
3626
|
-
write(byte: any): void;
|
|
3627
|
-
digest(encoding: any): string | Buffer;
|
|
3628
|
-
processBlock(): void;
|
|
3629
|
-
}
|
|
3630
|
-
declare namespace Sha1 {
|
|
3631
|
-
export { BLOCK_SIZE };
|
|
3632
|
-
}
|
|
3633
|
-
import { Buffer } from "buffer";
|
|
3634
|
-
declare const BLOCK_SIZE: 64;
|
|
3635
|
-
}
|
|
3636
|
-
|
|
3637
|
-
// @shell/utils/crypto/browserSha256
|
|
3638
|
-
|
|
3639
|
-
declare module '@shell/utils/crypto/browserSha256' {
|
|
3640
|
-
/// <reference types="node" />
|
|
3641
|
-
export default Sha256;
|
|
3642
|
-
/**
|
|
3643
|
-
* @private
|
|
3644
|
-
*/
|
|
3645
|
-
declare function Sha256(): void;
|
|
3646
|
-
declare class Sha256 {
|
|
3647
|
-
state: number[];
|
|
3648
|
-
temp: Int32Array;
|
|
3649
|
-
buffer: Uint8Array;
|
|
3650
|
-
bufferLength: number;
|
|
3651
|
-
bytesHashed: number;
|
|
3652
|
-
/**
|
|
3653
|
-
* @private
|
|
3654
|
-
*/
|
|
3655
|
-
private finished;
|
|
3656
|
-
update(data: any): Sha256;
|
|
3657
|
-
digest(encoding: any): string | Buffer;
|
|
3658
|
-
hashBuffer(): void;
|
|
3659
|
-
}
|
|
3660
|
-
declare namespace Sha256 {
|
|
3661
|
-
export { BLOCK_SIZE };
|
|
3662
|
-
}
|
|
3663
|
-
import { Buffer } from "buffer";
|
|
3664
|
-
declare const BLOCK_SIZE: 64;
|
|
3665
|
-
}
|
|
3666
|
-
|
|
3667
|
-
// @shell/utils/crypto
|
|
3668
|
-
|
|
3669
|
-
declare module '@shell/utils/crypto' {
|
|
3670
|
-
/// <reference types="node" />
|
|
3671
|
-
export function base64Encode(string: any, alphabet?: string): any;
|
|
3672
|
-
export function base64DecodeToBuffer(string: any): any;
|
|
3673
|
-
export function base64Decode(string: any): any;
|
|
3674
|
-
export function md5(data: any, digest: any, callback: any): string | Buffer;
|
|
3675
|
-
export function sha256(data: any, digest: any, callback: any): string | Buffer;
|
|
3676
|
-
export function binarySize(val: any): number;
|
|
3677
|
-
import { Buffer } from "buffer";
|
|
3678
|
-
}
|
|
3679
|
-
|
|
3680
|
-
// @shell/utils/custom-validators
|
|
3681
|
-
|
|
3682
|
-
declare module '@shell/utils/custom-validators' {
|
|
3683
|
-
declare namespace _default {
|
|
3684
|
-
export { clusterName };
|
|
3685
|
-
export { clusterIp };
|
|
3686
|
-
export { externalName };
|
|
3687
|
-
export { flowOutput };
|
|
3688
|
-
export { groupsAreValid };
|
|
3689
|
-
export { logdna };
|
|
3690
|
-
export { ruleGroups };
|
|
3691
|
-
export { interval };
|
|
3692
|
-
export { servicePort };
|
|
3693
|
-
export { matching };
|
|
3694
|
-
export { containerImages };
|
|
3695
|
-
export { cronSchedule };
|
|
3696
|
-
export { podAffinity };
|
|
3697
|
-
export { roleTemplateRules };
|
|
3698
|
-
}
|
|
3699
|
-
export default _default;
|
|
3700
|
-
}
|
|
3701
|
-
|
|
3702
|
-
// @shell/utils/dom
|
|
3703
|
-
|
|
3704
|
-
declare module '@shell/utils/dom' {
|
|
3705
|
-
export function getParent(el: any, parentSelector: any): any;
|
|
3706
|
-
}
|
|
3707
|
-
|
|
3708
|
-
// @shell/utils/download
|
|
3709
|
-
|
|
3710
|
-
declare module '@shell/utils/download' {
|
|
3711
|
-
export function downloadFile(fileName: any, content: any, contentType?: string): Promise<any>;
|
|
3712
|
-
export function generateZip(files: any): any;
|
|
3713
|
-
export function downloadUrl(url: any, id?: string): void;
|
|
3714
|
-
}
|
|
3715
|
-
|
|
3716
|
-
// @shell/utils/dynamic-importer
|
|
3717
|
-
|
|
3718
|
-
declare module '@shell/utils/dynamic-importer' {
|
|
3719
|
-
export function importCloudCredential(name: any): () => Promise<any>;
|
|
3720
|
-
export function importMachineConfig(name: any): () => Promise<any>;
|
|
3721
|
-
export function importLogin(name: any): () => Promise<any>;
|
|
3722
|
-
export function importChart(name: any): () => Promise<any>;
|
|
3723
|
-
export function importList(name: any): () => Promise<any>;
|
|
3724
|
-
export function importDetail(name: any): () => Promise<any>;
|
|
3725
|
-
export function importEdit(name: any): () => Promise<any>;
|
|
3726
|
-
export function importDialog(name: any): () => Promise<any>;
|
|
3727
|
-
export function importWindowComponent(name: any): () => Promise<any>;
|
|
3728
|
-
export function loadProduct(name: any): Promise<any>;
|
|
3729
|
-
export function listProducts(): string[];
|
|
3730
|
-
export function loadTranslation(name: any): Promise<any>;
|
|
3731
|
-
export function importCustomPromptRemove(name: any): () => Promise<any>;
|
|
3732
|
-
export function resolveList(key: any): string;
|
|
3733
|
-
export function resolveChart(key: any): string;
|
|
3734
|
-
export function resolveEdit(key: any): string;
|
|
3735
|
-
export function resolveDetail(key: any): string;
|
|
3736
|
-
export function resolveWindowComponent(key: any): string;
|
|
3737
|
-
export function resolveMachineConfigComponent(key: any): string;
|
|
3738
|
-
export function resolveCloudCredentialComponent(key: any): string;
|
|
3739
|
-
}
|
|
3740
|
-
|
|
3741
|
-
// @shell/utils/ember-page
|
|
3742
|
-
|
|
3743
|
-
declare module '@shell/utils/ember-page' {
|
|
3744
|
-
export function findEmberPage(): HTMLElement;
|
|
3745
|
-
export function clearEmberInactiveTimer(): void;
|
|
3746
|
-
export function startEmberInactiveTimer(): void;
|
|
3747
|
-
export function removeEmberPage(): void;
|
|
3748
|
-
export const EMBER_FRAME: "ember-iframe";
|
|
3749
|
-
}
|
|
3750
|
-
|
|
3751
|
-
// @shell/utils/error
|
|
3752
|
-
|
|
3753
|
-
declare module '@shell/utils/error' {
|
|
3754
|
-
export function stringify(err: any): any;
|
|
3755
|
-
export function exceptionToErrorsArray(err: any): any;
|
|
3756
|
-
export class ClusterNotFoundError extends Error {
|
|
3757
|
-
static name: string;
|
|
3758
|
-
constructor(message: any);
|
|
3759
|
-
}
|
|
3760
|
-
/**
|
|
3761
|
-
* An error occurred and the user should be redirected to a certain location (where this is handled)
|
|
3762
|
-
*/
|
|
3763
|
-
export class RedirectToError extends Error {
|
|
3764
|
-
static name: string;
|
|
3765
|
-
constructor(message: any, url: any);
|
|
3766
|
-
url: any;
|
|
3767
|
-
}
|
|
3768
|
-
export class ApiError extends Error {
|
|
3769
|
-
constructor(res: any);
|
|
3770
|
-
status: any;
|
|
3771
|
-
statusText: any;
|
|
3772
|
-
headers: any;
|
|
3773
|
-
url: any;
|
|
3774
|
-
toJSON(): {
|
|
3775
|
-
type: string;
|
|
3776
|
-
status: any;
|
|
3777
|
-
statusText: any;
|
|
3778
|
-
message: any;
|
|
3779
|
-
url: any;
|
|
3780
|
-
};
|
|
3781
|
-
}
|
|
3782
|
-
export function normalizeError(err: any): any;
|
|
3783
|
-
}
|
|
3784
|
-
|
|
3785
|
-
// @shell/utils/favicon
|
|
3786
|
-
|
|
3787
|
-
declare module '@shell/utils/favicon' {
|
|
3788
|
-
export function haveSetFavIcon(): boolean;
|
|
3789
|
-
export function setFavIcon(store: any): void;
|
|
3790
|
-
}
|
|
3791
|
-
|
|
3792
|
-
// @shell/utils/formatter
|
|
3793
|
-
|
|
3794
|
-
declare module '@shell/utils/formatter' {
|
|
3795
|
-
export function formatEncryptionSecretNames(secrets: any, chartNamespace: any): any;
|
|
3796
|
-
}
|
|
3797
|
-
|
|
3798
|
-
// @shell/utils/grafana
|
|
3799
|
-
|
|
3800
|
-
declare module '@shell/utils/grafana' {
|
|
3801
|
-
export function getClusterPrefix(monitoringVersion: any, clusterId: any): string;
|
|
3802
|
-
export function computeDashboardUrl(monitoringVersion: any, embedUrl: any, clusterId: any, params: any, modifyPrefix?: boolean): any;
|
|
3803
|
-
export function dashboardExists(monitoringVersion: any, store: any, clusterId: any, embedUrl: any, storeName?: string, projectId?: any): Promise<boolean>;
|
|
3804
|
-
export function allDashboardsExist(store: any, clusterId: any, embeddedUrls: any, storeName?: string, projectId?: any): Promise<boolean>;
|
|
3805
|
-
export function queryGrafana(monitoringVersion: any, dispatch: any, clusterId: any, query: any, range: any, step: any): any;
|
|
3806
|
-
export function hasLeader(monitoringVersion: any, dispatch: any, clusterId: any): Promise<boolean>;
|
|
3807
|
-
export function leaderChanges(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
|
|
3808
|
-
export function failedProposals(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
|
|
3809
|
-
}
|
|
3810
|
-
|
|
3811
|
-
// @shell/utils/install-redirect
|
|
3812
|
-
|
|
3813
|
-
declare module '@shell/utils/install-redirect' {
|
|
3814
|
-
export default function _default(product: any, chartName: any, defaultResourceOrRoute: any, install?: boolean): ({ redirect, store }: {
|
|
3815
|
-
redirect: any;
|
|
3816
|
-
store: any;
|
|
3817
|
-
}) => Promise<any>;
|
|
3818
|
-
}
|
|
3819
|
-
|
|
3820
|
-
// @shell/utils/kube
|
|
3821
|
-
|
|
3822
|
-
declare module '@shell/utils/kube' {
|
|
3823
|
-
export function normalizeName(str: any): any;
|
|
3824
|
-
}
|
|
3825
|
-
|
|
3826
|
-
// @shell/utils/monitoring
|
|
3827
|
-
|
|
3828
|
-
declare module '@shell/utils/monitoring' {
|
|
3829
|
-
export function monitoringStatus(): {
|
|
3830
|
-
monitoringStatus(): {
|
|
3831
|
-
v2: boolean;
|
|
3832
|
-
};
|
|
3833
|
-
};
|
|
3834
|
-
export function haveV2Monitoring(getters: any): boolean;
|
|
3835
|
-
export function canViewGrafanaLink(store: any): Promise<boolean>;
|
|
3836
|
-
export function canViewAlertManagerLink(store: any): Promise<boolean>;
|
|
3837
|
-
export function canViewPrometheusLink(store: any): Promise<boolean>;
|
|
3838
|
-
export const CATTLE_MONITORING_NAMESPACE: "cattle-monitoring-system";
|
|
3839
|
-
}
|
|
3840
|
-
|
|
3841
|
-
// @shell/utils/namespace-filter
|
|
3842
|
-
|
|
3843
|
-
declare module '@shell/utils/namespace-filter' {
|
|
3844
|
-
export const NAMESPACE_FILTER_ALL_PREFIX: "all";
|
|
3845
|
-
export const NAMESPACE_FILTER_NS_PREFIX: "ns";
|
|
3846
|
-
export const NAMESPACE_FILTER_P_PREFIX: "project";
|
|
3847
|
-
export const NAMESPACE_FILTER_NS_FULL_PREFIX: string;
|
|
3848
|
-
export const NAMESPACE_FILTER_P_FULL_PREFIX: string;
|
|
3849
|
-
export const NAMESPACE_FILTER_ALL: "all";
|
|
3850
|
-
export const NAMESPACE_FILTER_ALL_SYSTEM: string;
|
|
3851
|
-
export const NAMESPACE_FILTER_ALL_USER: string;
|
|
3852
|
-
export const NAMESPACE_FILTER_ALL_ORPHANS: string;
|
|
3853
|
-
export const NAMESPACE_FILTER_NAMESPACED_PREFIX: "namespaced://";
|
|
3854
|
-
export const NAMESPACE_FILTER_NAMESPACED_YES: "namespaced://true";
|
|
3855
|
-
export const NAMESPACE_FILTER_NAMESPACED_NO: "namespaced://false";
|
|
3856
|
-
export namespace NAMESPACE_FILTER_KINDS {
|
|
3857
|
-
const DIVIDER: string;
|
|
3858
|
-
const PROJECT: string;
|
|
3859
|
-
const NAMESPACE: string;
|
|
3860
|
-
const SPECIAL: string;
|
|
3861
|
-
}
|
|
3862
|
-
export function createNamespaceFilterKey(clusterId: any, product: any): any;
|
|
3863
|
-
export function createNamespaceFilterKeyWithId(clusterId: any, productId: any): string;
|
|
3864
|
-
export function splitNamespaceFilterKey(key: any): {
|
|
3865
|
-
clusterId: any;
|
|
3866
|
-
productId: any;
|
|
3867
|
-
};
|
|
3868
|
-
}
|
|
3869
|
-
|
|
3870
|
-
// @shell/utils/object
|
|
3871
|
-
|
|
3872
|
-
declare module '@shell/utils/object' {
|
|
3873
|
-
export function set(obj: any, path: any, value: any): any;
|
|
3874
|
-
export function getAllValues(obj: any, path: any): any[];
|
|
3875
|
-
export function get(obj: any, path: any): any;
|
|
3876
|
-
export function remove(obj: any, path: any): any;
|
|
3877
|
-
/**
|
|
3878
|
-
* `delete` a property at the given path.
|
|
3879
|
-
*
|
|
3880
|
-
* This is similar to `remove` but doesn't need any fancy kube obj path splitting
|
|
3881
|
-
* and doesn't use `Vue.set` (avoids reactivity)
|
|
3882
|
-
*/
|
|
3883
|
-
export function deleteProperty(obj: any, path: any): void;
|
|
3884
|
-
export function getter(path: any): (obj: any) => any;
|
|
3885
|
-
export function clone(obj: any): any;
|
|
3886
|
-
export function isEmpty(obj: any): boolean;
|
|
3887
|
-
/**
|
|
3888
|
-
* Checks to see if the object is a simple key value pair where all values are
|
|
3889
|
-
* just primitives.
|
|
3890
|
-
* @param {any} obj
|
|
3891
|
-
*/
|
|
3892
|
-
export function isSimpleKeyValue(obj: any): boolean;
|
|
3893
|
-
export function cleanUp(obj: any): any;
|
|
3894
|
-
export function definedKeys(obj: any): any;
|
|
3895
|
-
export function diff(from: any, to: any): any;
|
|
3896
|
-
export function changeset(from: any, to: any, parentPath?: any[]): {};
|
|
3897
|
-
export function changesetConflicts(a: any, b: any): any[];
|
|
3898
|
-
export function applyChangeset(obj: any, changeset: any): any;
|
|
3899
|
-
/**
|
|
3900
|
-
* Creates an object composed of the `object` properties `predicate` returns
|
|
3901
|
-
*/
|
|
3902
|
-
export function pickBy(obj?: {}, predicate?: (value: any, key: any) => boolean): {};
|
|
3903
|
-
export function dropKeys(obj: any, keys: any): void;
|
|
3904
|
-
export { isEqualBasic as isEqual };
|
|
3905
|
-
export function toDictionary(array: any, callback: any): any;
|
|
3906
|
-
/**
|
|
3907
|
-
* Super simple lodash isEqual equivalent.
|
|
3908
|
-
*
|
|
3909
|
-
* Only checks root properties for strict equality
|
|
3910
|
-
*/
|
|
3911
|
-
declare function isEqualBasic(from: any, to: any): boolean;
|
|
3912
|
-
}
|
|
3913
|
-
|
|
3914
|
-
// @shell/utils/parse-externalid
|
|
3915
|
-
|
|
3916
|
-
declare module '@shell/utils/parse-externalid' {
|
|
3917
|
-
export function parseExternalId(externalId: any): {
|
|
3918
|
-
kind: any;
|
|
3919
|
-
group: any;
|
|
3920
|
-
base: any;
|
|
3921
|
-
id: any;
|
|
3922
|
-
name: any;
|
|
3923
|
-
version: any;
|
|
3924
|
-
};
|
|
3925
|
-
export function parseHelmExternalId(externalId: any): {
|
|
3926
|
-
kind: any;
|
|
3927
|
-
group: any;
|
|
3928
|
-
base: any;
|
|
3929
|
-
id: any;
|
|
3930
|
-
name: any;
|
|
3931
|
-
version: any;
|
|
3932
|
-
};
|
|
3933
|
-
}
|
|
3934
|
-
|
|
3935
|
-
// @shell/utils/platform
|
|
3936
|
-
|
|
3937
|
-
declare module '@shell/utils/platform' {
|
|
3938
|
-
export function isAlternate(event: any): boolean;
|
|
3939
|
-
export function isMore(event: any): boolean;
|
|
3940
|
-
export function isRange(event: any): boolean;
|
|
3941
|
-
export function suppressContextMenu(event: any): boolean;
|
|
3942
|
-
export function version(): number;
|
|
3943
|
-
export const platform: string;
|
|
3944
|
-
export const userAgent: string;
|
|
3945
|
-
export const isLinuxy: boolean;
|
|
3946
|
-
export const isMac: boolean;
|
|
3947
|
-
export const isWin: boolean;
|
|
3948
|
-
export const alternateKey: "metaKey" | "ctrlKey";
|
|
3949
|
-
export const alternateLabel: "Command" | "Control";
|
|
3950
|
-
export const moreKey: "metaKey" | "ctrlKey";
|
|
3951
|
-
export const moreLabel: "Command" | "Control";
|
|
3952
|
-
export const rangeKey: "shiftKey";
|
|
3953
|
-
export const rangeLabel: "Shift";
|
|
3954
|
-
export const isGecko: boolean;
|
|
3955
|
-
export const isBlink: boolean;
|
|
3956
|
-
export const isWebKit: boolean;
|
|
3957
|
-
export const isSafari: boolean;
|
|
3958
|
-
export const isMobile: boolean;
|
|
3959
|
-
export namespace KEY {
|
|
3960
|
-
const LEFT: number;
|
|
3961
|
-
const UP: number;
|
|
3962
|
-
const RIGHT: number;
|
|
3963
|
-
const DOWN: number;
|
|
3964
|
-
const ESCAPE: number;
|
|
3965
|
-
const CR: number;
|
|
3966
|
-
const LF: number;
|
|
3967
|
-
const TAB: number;
|
|
3968
|
-
const SPACE: number;
|
|
3969
|
-
const PAGE_UP: number;
|
|
3970
|
-
const PAGE_DOWN: number;
|
|
3971
|
-
const HOME: number;
|
|
3972
|
-
const END: number;
|
|
3973
|
-
}
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
// @shell/utils/poller-sequential
|
|
3977
|
-
|
|
3978
|
-
declare module '@shell/utils/poller-sequential' {
|
|
3979
|
-
export default class PollerSequential {
|
|
3980
|
-
constructor(fn: any, pollRateMs: any, maxRetries?: number);
|
|
3981
|
-
fn: any;
|
|
3982
|
-
pollRateMs: any;
|
|
3983
|
-
maxRetries: number;
|
|
3984
|
-
timeoutId: any;
|
|
3985
|
-
tryCount: number;
|
|
3986
|
-
start(): void;
|
|
3987
|
-
stop(): void;
|
|
3988
|
-
_poll(): void;
|
|
3989
|
-
_intervalMethod(): Promise<void>;
|
|
3990
|
-
}
|
|
3991
|
-
}
|
|
3992
|
-
|
|
3993
|
-
// @shell/utils/poller
|
|
3994
|
-
|
|
3995
|
-
declare module '@shell/utils/poller' {
|
|
3996
|
-
export default class Poller {
|
|
3997
|
-
constructor(fn: any, pollRateMs: any, maxRetries?: number);
|
|
3998
|
-
fn: any;
|
|
3999
|
-
pollRateMs: any;
|
|
4000
|
-
maxRetries: number;
|
|
4001
|
-
intervalId: any;
|
|
4002
|
-
tryCount: number;
|
|
4003
|
-
start(): void;
|
|
4004
|
-
stop(): void;
|
|
4005
|
-
_intervalMethod(): Promise<void>;
|
|
4006
|
-
}
|
|
4007
|
-
}
|
|
4008
|
-
|
|
4009
|
-
// @shell/utils/position
|
|
4010
|
-
|
|
4011
|
-
declare module '@shell/utils/position' {
|
|
4012
|
-
export function boundingRect(elem: any): {
|
|
4013
|
-
top: any;
|
|
4014
|
-
right: any;
|
|
4015
|
-
bottom: any;
|
|
4016
|
-
left: any;
|
|
4017
|
-
width: any;
|
|
4018
|
-
height: any;
|
|
4019
|
-
};
|
|
4020
|
-
export function fakeRectFor(event: any): {
|
|
4021
|
-
top: any;
|
|
4022
|
-
left: any;
|
|
4023
|
-
bottom: any;
|
|
4024
|
-
right: any;
|
|
4025
|
-
width: number;
|
|
4026
|
-
height: number;
|
|
4027
|
-
};
|
|
4028
|
-
export function screenRect(): {
|
|
4029
|
-
top: number;
|
|
4030
|
-
right: number;
|
|
4031
|
-
bottom: number;
|
|
4032
|
-
left: number;
|
|
4033
|
-
width: number;
|
|
4034
|
-
height: number;
|
|
4035
|
-
};
|
|
4036
|
-
export function fitOnScreen(contentElem: any, triggerElemOrEvent: any, opt: any, useDefaults: any): {
|
|
4037
|
-
position: string;
|
|
4038
|
-
};
|
|
4039
|
-
export const LEFT: "left";
|
|
4040
|
-
export const RIGHT: "right";
|
|
4041
|
-
export const TOP: "top";
|
|
4042
|
-
export const CENTER: "center";
|
|
4043
|
-
export const MIDDLE: "center";
|
|
4044
|
-
export const BOTTOM: "bottom";
|
|
4045
|
-
export const AUTO: "auto";
|
|
4046
|
-
}
|
|
4047
|
-
|
|
4048
|
-
// @shell/utils/promise
|
|
4049
|
-
|
|
4050
|
-
declare module '@shell/utils/promise' {
|
|
4051
|
-
export function allHash(hash: any): Promise<{}>;
|
|
4052
|
-
export function allHashSettled(hash: any): Promise<{}>;
|
|
4053
|
-
export function eachLimit(items: any, limit: any, iterator: any, debug?: boolean): Promise<any>;
|
|
4054
|
-
export function deferred(name: any): {
|
|
4055
|
-
promise: Promise<any>;
|
|
4056
|
-
};
|
|
4057
|
-
/**
|
|
4058
|
-
* Apply the result of a promise to a given object's property
|
|
4059
|
-
*
|
|
4060
|
-
* This is a non-blocking method
|
|
4061
|
-
*
|
|
4062
|
-
* @param promise Promise to fetch result for
|
|
4063
|
-
* @param obj Object to set result of promise to
|
|
4064
|
-
* @param key Property in object to set result to
|
|
4065
|
-
* @param label Description of what promise is trying to do
|
|
4066
|
-
*/
|
|
4067
|
-
export function setPromiseResult(promise: any, obj: any, key: any, label: any): void;
|
|
4068
|
-
}
|
|
4069
|
-
|
|
4070
|
-
// @shell/utils/router
|
|
4071
|
-
|
|
4072
|
-
declare module '@shell/utils/router' {
|
|
4073
|
-
export function queryParamsFor(current: any, qp: any, defaults?: {}): any;
|
|
4074
|
-
export function getClusterFromRoute(to: any): any;
|
|
4075
|
-
export function getProductFromRoute(to: any): any;
|
|
4076
|
-
export function getPackageFromRoute(route: any): any;
|
|
4077
|
-
export function getResourceFromRoute(to: any): any;
|
|
4078
|
-
export function routeMatched(to: any, fn: any): boolean;
|
|
4079
|
-
export function routeRequiresAuthentication(to: any): boolean;
|
|
4080
|
-
}
|
|
4081
|
-
|
|
4082
|
-
// @shell/utils/select
|
|
4083
|
-
|
|
4084
|
-
declare module '@shell/utils/select' {
|
|
4085
|
-
export function onClickOption(option: any, e: any): void;
|
|
4086
|
-
export function calculatePosition(dropdownList: any, component: any, width: any, placement: any): void;
|
|
4087
|
-
}
|
|
4088
|
-
|
|
4089
|
-
// @shell/utils/selector
|
|
4090
|
-
|
|
4091
|
-
declare module '@shell/utils/selector' {
|
|
4092
|
-
export function parse(labelSelector: any): any;
|
|
4093
|
-
export function convertSelectorObj(obj: any): any;
|
|
4094
|
-
export function convert(matchLabelsObj: any, matchExpressions: any): any;
|
|
4095
|
-
export function simplify(matchExpressionsInput: any): {
|
|
4096
|
-
matchLabels: {};
|
|
4097
|
-
matchExpressions: any[];
|
|
4098
|
-
};
|
|
4099
|
-
export function matches(obj: any, selector: any, labelKey?: string): boolean;
|
|
4100
|
-
export function matching(ary: any, selector: any, labelKey: any): any;
|
|
4101
|
-
}
|
|
4102
|
-
|
|
4103
|
-
// @shell/utils/socket
|
|
4104
|
-
|
|
4105
|
-
declare module '@shell/utils/socket' {
|
|
4106
|
-
export const addEventListener: any;
|
|
4107
|
-
export const STATE_CONNECTING: "connecting";
|
|
4108
|
-
export const STATE_CONNECTED: "connected";
|
|
4109
|
-
export const EVENT_CONNECTING: "connecting";
|
|
4110
|
-
export const EVENT_CONNECTED: "connected";
|
|
4111
|
-
export const EVENT_DISCONNECTED: "disconnected";
|
|
4112
|
-
export const EVENT_MESSAGE: "message";
|
|
4113
|
-
export const EVENT_FRAME_TIMEOUT: "frame_timeout";
|
|
4114
|
-
export const EVENT_CONNECT_ERROR: "connect_error";
|
|
4115
|
-
export const EVENT_DISCONNECT_ERROR: "disconnect_error";
|
|
4116
|
-
export const NO_WATCH: "NO_WATCH";
|
|
4117
|
-
export const NO_SCHEMA: "NO_SCHEMA";
|
|
4118
|
-
export const NO_PERMS: "NO_PERMS";
|
|
4119
|
-
export const REVISION_TOO_OLD: "TOO_OLD";
|
|
4120
|
-
declare const Socket_base: import("event-target-shim").EventTargetConstructor<{}, {}, "loose"> & {
|
|
4121
|
-
<TEvents extends EventTarget.EventDefinition = {}, TEventAttributes extends EventTarget.EventDefinition = {}, TMode extends EventTarget.Mode = "loose">(events: string[]): import("event-target-shim").EventTargetConstructor<TEvents, TEventAttributes, TMode>;
|
|
4122
|
-
<TEvents_1 extends EventTarget.EventDefinition = {}, TEventAttributes_1 extends EventTarget.EventDefinition = {}, TMode_1 extends EventTarget.Mode = "loose">(event0: string, ...events: string[]): import("event-target-shim").EventTargetConstructor<TEvents_1, TEventAttributes_1, TMode_1>;
|
|
4123
|
-
new <TEvents_2 extends EventTarget.EventDefinition, TEventAttributes_2 extends EventTarget.EventDefinition, TMode_2 extends EventTarget.Mode = "loose">(): EventTarget<TEvents_2, TEventAttributes_2, TMode_2>;
|
|
4124
|
-
};
|
|
4125
|
-
export default class Socket extends Socket_base {
|
|
4126
|
-
constructor(url: any, autoReconnect?: boolean, frameTimeout?: any, protocol?: any, maxTries?: any, idAsTimestamp?: boolean);
|
|
4127
|
-
url: any;
|
|
4128
|
-
autoReconnect: boolean;
|
|
4129
|
-
frameTimeout: number;
|
|
4130
|
-
metadata: {};
|
|
4131
|
-
hasBeenOpen: boolean;
|
|
4132
|
-
hasReconnected: boolean;
|
|
4133
|
-
protocol: any;
|
|
4134
|
-
maxTries: any;
|
|
4135
|
-
tries: number;
|
|
4136
|
-
idAsTimestamp: boolean;
|
|
4137
|
-
socket: any;
|
|
4138
|
-
state: string;
|
|
4139
|
-
framesReceived: number;
|
|
4140
|
-
frameTimer: any;
|
|
4141
|
-
reconnectTimer: any;
|
|
4142
|
-
disconnectCallBacks: any[];
|
|
4143
|
-
disconnectedAt: number;
|
|
4144
|
-
closingId: number;
|
|
4145
|
-
autoReconnectUrl: any;
|
|
4146
|
-
setUrl(url: any): void;
|
|
4147
|
-
connect(metadata?: {}): void;
|
|
4148
|
-
send(data: any): boolean;
|
|
4149
|
-
disconnect(callBack: any): Promise<any>;
|
|
4150
|
-
reconnect(metadata?: {}): void;
|
|
4151
|
-
getMetadata(): any;
|
|
4152
|
-
getId(): any;
|
|
4153
|
-
isConnected(): boolean;
|
|
4154
|
-
setAutoReconnect(autoReconnect: any): void;
|
|
4155
|
-
/**
|
|
4156
|
-
* Supply an async fn that will provide a new url to reconnect to
|
|
4157
|
-
*/
|
|
4158
|
-
setAutoReconnectUrl(autoReconnectUrl: any): void;
|
|
4159
|
-
_close(): void;
|
|
4160
|
-
_opened(): void;
|
|
4161
|
-
_onmessage(event: any): void;
|
|
4162
|
-
_resetWatchdog(): void;
|
|
4163
|
-
_error(): void;
|
|
4164
|
-
_closed(event: any): void;
|
|
4165
|
-
/**
|
|
4166
|
-
* `console.log` the provided summary statement, with default information to identify the socket and the provided props
|
|
4167
|
-
*/
|
|
4168
|
-
_log(summary: any, props: any): void;
|
|
4169
|
-
/**
|
|
4170
|
-
* `console.log` the provided summary statement and props
|
|
4171
|
-
*
|
|
4172
|
-
* This does not contain information to identify the socket and can be used in scenarios where it's not known or default
|
|
4173
|
-
*/
|
|
4174
|
-
_baseLog(summary: any, props: any): void;
|
|
4175
|
-
}
|
|
4176
|
-
import { EventTarget } from "event-target-shim";
|
|
4177
|
-
export {};
|
|
4178
|
-
}
|
|
4179
|
-
|
|
4180
|
-
// @shell/utils/sort
|
|
4181
|
-
|
|
4182
|
-
declare module '@shell/utils/sort' {
|
|
4183
|
-
/**
|
|
4184
|
-
Returns a consistent type for the passed object.
|
|
4185
|
-
|
|
4186
|
-
Use this instead of the built-in `typeof` to get the type of an item.
|
|
4187
|
-
It will return the same result across all browsers and includes a bit
|
|
4188
|
-
more detail. Here is what will be returned:
|
|
4189
|
-
|
|
4190
|
-
| Return Value | Meaning |
|
|
4191
|
-
|---------------|------------------------------------------------------|
|
|
4192
|
-
| 'string' | String primitive or String object. |
|
|
4193
|
-
| 'number' | Number primitive or Number object. |
|
|
4194
|
-
| 'boolean' | Boolean primitive or Boolean object. |
|
|
4195
|
-
| 'null' | Null value |
|
|
4196
|
-
| 'undefined' | Undefined value |
|
|
4197
|
-
| 'function' | A function |
|
|
4198
|
-
| 'array' | An instance of Array |
|
|
4199
|
-
| 'regexp' | An instance of RegExp |
|
|
4200
|
-
| 'date' | An instance of Date |
|
|
4201
|
-
| 'filelist' | An instance of FileList |
|
|
4202
|
-
| 'error' | An instance of the Error object |
|
|
4203
|
-
| 'object' | A JavaScript object |
|
|
4204
|
-
|
|
4205
|
-
Examples:
|
|
4206
|
-
|
|
4207
|
-
import { typeOf } from '@shell/utils/type-of';
|
|
4208
|
-
|
|
4209
|
-
typeOf(); // 'undefined'
|
|
4210
|
-
typeOf(null); // 'null'
|
|
4211
|
-
typeOf(undefined); // 'undefined'
|
|
4212
|
-
typeOf('michael'); // 'string'
|
|
4213
|
-
typeOf(new String('michael')); // 'string'
|
|
4214
|
-
typeOf(101); // 'number'
|
|
4215
|
-
typeOf(new Number(101)); // 'number'
|
|
4216
|
-
typeOf(true); // 'boolean'
|
|
4217
|
-
typeOf(new Boolean(true)); // 'boolean'
|
|
4218
|
-
typeOf(A); // 'function'
|
|
4219
|
-
typeOf([1, 2, 90]); // 'array'
|
|
4220
|
-
typeOf(/abc/); // 'regexp'
|
|
4221
|
-
typeOf(new Date()); // 'date'
|
|
4222
|
-
typeOf(event.target.files); // 'filelist'
|
|
4223
|
-
typeOf(new Error('teamocil')); // 'error'
|
|
4224
|
-
|
|
4225
|
-
// 'normal' JavaScript object
|
|
4226
|
-
typeOf({ a: 'b' }); // 'object'
|
|
4227
|
-
*/
|
|
4228
|
-
export function typeOf(item: any): any;
|
|
4229
|
-
export function spaceship(a: any, b: any): number;
|
|
4230
|
-
export function compare(a: any, b: any): any;
|
|
4231
|
-
export function parseField(str: any): {
|
|
4232
|
-
field: any;
|
|
4233
|
-
reverse: boolean;
|
|
4234
|
-
};
|
|
4235
|
-
export function sortBy(ary: any, keys: any, desc: any): any;
|
|
4236
|
-
export function sortableNumericSuffix(str: any): any;
|
|
4237
|
-
export function isNumeric(num: any): boolean;
|
|
4238
|
-
}
|
|
4239
|
-
|
|
4240
|
-
// @shell/utils/stream
|
|
4241
|
-
|
|
4242
|
-
declare module '@shell/utils/stream' {
|
|
4243
|
-
export function streamJson(url: any, opt: any, onData: any): Promise<any>;
|
|
4244
|
-
export function streamingSupported(): boolean;
|
|
4245
|
-
}
|
|
4246
|
-
|
|
4247
|
-
// @shell/utils/string
|
|
4248
|
-
|
|
4249
|
-
declare module '@shell/utils/string' {
|
|
4250
|
-
export function camelToTitle(str: any): any;
|
|
4251
|
-
export function ucFirst(str: any): any;
|
|
4252
|
-
export function lcFirst(str: any): any;
|
|
4253
|
-
export function strPad(str: any, toLength: any, padChars?: string, right?: boolean): any;
|
|
4254
|
-
export function sortableNumericSuffix(str: any): any;
|
|
4255
|
-
export function escapeHtml(html: any): string;
|
|
4256
|
-
/**
|
|
4257
|
-
* Return HTML markup from escaped HTML string, allowing specific tags
|
|
4258
|
-
* @param text string
|
|
4259
|
-
* @returns string
|
|
4260
|
-
*/
|
|
4261
|
-
export function decodeHtml(text: any): string;
|
|
4262
|
-
export function escapeRegex(string: any): any;
|
|
4263
|
-
export function random32(count: any): number | number[];
|
|
4264
|
-
export function randomStr(length?: number, chars?: string): any;
|
|
4265
|
-
export function formatPercent(value: any, maxPrecision?: number): string;
|
|
4266
|
-
export function pluralize(str: any): any;
|
|
4267
|
-
export function resourceNames(names: any, plusMore: any, t: any): any;
|
|
4268
|
-
export function indent(lines: any, count?: number, token?: string, afterRegex?: any): any;
|
|
4269
|
-
export function decamelize(str: any): any;
|
|
4270
|
-
export function dasherize(str: any): any;
|
|
4271
|
-
export function asciiLike(str: any): boolean;
|
|
4272
|
-
export function coerceStringTypeToScalarType(val: any, type: any): any;
|
|
4273
|
-
export function matchesSomeRegex(stringRaw: any, regexes?: any[]): boolean;
|
|
4274
|
-
export function ensureRegex(strOrRegex: any, exact?: boolean): any;
|
|
4275
|
-
export function nlToBr(value: any): string;
|
|
4276
|
-
export function splitObjectPath(path: any): any;
|
|
4277
|
-
export function joinObjectPath(ary: any): string;
|
|
4278
|
-
export function shortenedImage(image: any): any;
|
|
4279
|
-
export function isIpv4(ip: any): boolean;
|
|
4280
|
-
export function sanitizeKey(k: any): any;
|
|
4281
|
-
export function sanitizeValue(v: any): any;
|
|
4282
|
-
export function sanitizeIP(v: any): any;
|
|
4283
|
-
export namespace CHARSET {
|
|
4284
|
-
export { num as NUMERIC };
|
|
4285
|
-
export const NO_VOWELS: string;
|
|
4286
|
-
export const ALPHA: string;
|
|
4287
|
-
export const ALPHA_NUM: string;
|
|
4288
|
-
export { alpha as ALPHA_LOWER };
|
|
4289
|
-
export const ALPHA_UPPER: string;
|
|
4290
|
-
export const HEX: string;
|
|
4291
|
-
export const PASSWORD: string;
|
|
4292
|
-
}
|
|
4293
|
-
declare const num: "0123456789";
|
|
4294
|
-
declare const alpha: "abcdefghijklmnopqrstuvwxyz";
|
|
4295
|
-
export {};
|
|
4296
|
-
}
|
|
4297
|
-
|
|
4298
|
-
// @shell/utils/svg-filter
|
|
4299
|
-
|
|
4300
|
-
declare module '@shell/utils/svg-filter' {
|
|
4301
|
-
export class Solver {
|
|
4302
|
-
constructor(rgb: any);
|
|
4303
|
-
target: Color;
|
|
4304
|
-
targetHSL: {
|
|
4305
|
-
h: number;
|
|
4306
|
-
s: number;
|
|
4307
|
-
l: number;
|
|
4308
|
-
};
|
|
4309
|
-
reusedColor: Color;
|
|
4310
|
-
solve(): {
|
|
4311
|
-
values: any;
|
|
4312
|
-
loss: number;
|
|
4313
|
-
filter: string;
|
|
4314
|
-
};
|
|
4315
|
-
solveWide(): {
|
|
4316
|
-
loss: number;
|
|
4317
|
-
};
|
|
4318
|
-
solveNarrow(wide: any): {
|
|
4319
|
-
values: any;
|
|
4320
|
-
loss: number;
|
|
4321
|
-
};
|
|
4322
|
-
spsa(A: any, a: any, c: any, values: any, iters: any): {
|
|
4323
|
-
values: any;
|
|
4324
|
-
loss: number;
|
|
4325
|
-
};
|
|
4326
|
-
loss(filters: any): number;
|
|
4327
|
-
css(filters: any): string;
|
|
4328
|
-
}
|
|
4329
|
-
declare class Color {
|
|
4330
|
-
constructor(r: any, g: any, b: any);
|
|
4331
|
-
toString(): string;
|
|
4332
|
-
set(r: any, g: any, b: any): void;
|
|
4333
|
-
r: any;
|
|
4334
|
-
g: any;
|
|
4335
|
-
b: any;
|
|
4336
|
-
hueRotate(angle?: number): void;
|
|
4337
|
-
grayscale(value?: number): void;
|
|
4338
|
-
sepia(value?: number): void;
|
|
4339
|
-
saturate(value?: number): void;
|
|
4340
|
-
multiply(matrix: any): void;
|
|
4341
|
-
brightness(value?: number): void;
|
|
4342
|
-
contrast(value?: number): void;
|
|
4343
|
-
linear(slope?: number, intercept?: number): void;
|
|
4344
|
-
invert(value?: number): void;
|
|
4345
|
-
hsl(): {
|
|
4346
|
-
h: number;
|
|
4347
|
-
s: number;
|
|
4348
|
-
l: number;
|
|
4349
|
-
};
|
|
4350
|
-
clamp(value: any): any;
|
|
4351
|
-
}
|
|
4352
|
-
export {};
|
|
4353
|
-
}
|
|
4354
|
-
|
|
4355
|
-
// @shell/utils/time
|
|
4356
|
-
|
|
4357
|
-
declare module '@shell/utils/time' {
|
|
4358
|
-
export function diffFrom(value: any, from: any, t: any): {
|
|
4359
|
-
diff: any;
|
|
4360
|
-
absDiff: number;
|
|
4361
|
-
label: string;
|
|
4362
|
-
unitsKey: string;
|
|
4363
|
-
units: string;
|
|
4364
|
-
next: number;
|
|
4365
|
-
};
|
|
4366
|
-
export function safeSetTimeout(timeout: any, callback: any, that: any): NodeJS.Timeout;
|
|
4367
|
-
export function getSecondsDiff(startDate: any, endDate: any): number;
|
|
4368
|
-
/**
|
|
4369
|
-
* return { diff: number; label: string }
|
|
4370
|
-
*
|
|
4371
|
-
* diff: update frequency in seconds
|
|
4372
|
-
* label: content of the cell's column
|
|
4373
|
-
*/
|
|
4374
|
-
export function elapsedTime(seconds: any): {
|
|
4375
|
-
diff?: undefined;
|
|
4376
|
-
label?: undefined;
|
|
4377
|
-
} | {
|
|
4378
|
-
diff: number;
|
|
4379
|
-
label: string;
|
|
4380
|
-
};
|
|
4381
|
-
}
|
|
4382
|
-
|
|
4383
|
-
// @shell/utils/units
|
|
4384
|
-
|
|
4385
|
-
declare module '@shell/utils/units' {
|
|
4386
|
-
export function formatSi(inValue: any, { increment, addSuffix, addSuffixSpace, suffix, firstSuffix, startingExponent, minExponent, maxExponent, maxPrecision, canRoundToZero, }?: {
|
|
4387
|
-
increment?: number;
|
|
4388
|
-
addSuffix?: boolean;
|
|
4389
|
-
addSuffixSpace?: boolean;
|
|
4390
|
-
suffix?: string;
|
|
4391
|
-
firstSuffix?: any;
|
|
4392
|
-
startingExponent?: number;
|
|
4393
|
-
minExponent?: number;
|
|
4394
|
-
maxExponent?: number;
|
|
4395
|
-
maxPrecision?: number;
|
|
4396
|
-
canRoundToZero?: boolean;
|
|
4397
|
-
}): any;
|
|
4398
|
-
export function exponentNeeded(val: any, increment?: number): number;
|
|
4399
|
-
export function parseSi(inValue: any, opt: any): number;
|
|
4400
|
-
export function createMemoryFormat(n: any): {
|
|
4401
|
-
maxExponent: number;
|
|
4402
|
-
minExponent: number;
|
|
4403
|
-
addSuffix: boolean;
|
|
4404
|
-
firstSuffix: string;
|
|
4405
|
-
increment: number;
|
|
4406
|
-
maxPrecision: number;
|
|
4407
|
-
startingExponent: number;
|
|
4408
|
-
suffix: string;
|
|
4409
|
-
};
|
|
4410
|
-
export function createMemoryValues(total: any, useful: any): {
|
|
4411
|
-
total: number;
|
|
4412
|
-
useful: number;
|
|
4413
|
-
units: string;
|
|
4414
|
-
};
|
|
4415
|
-
export const UNITS: string[];
|
|
4416
|
-
export const FRACTIONAL: string[];
|
|
4417
|
-
export namespace MEMORY_PARSE_RULES {
|
|
4418
|
-
namespace memory {
|
|
4419
|
-
namespace format {
|
|
4420
|
-
const addSuffix: boolean;
|
|
4421
|
-
const firstSuffix: string;
|
|
4422
|
-
const increment: number;
|
|
4423
|
-
const maxExponent: number;
|
|
4424
|
-
const maxPrecision: number;
|
|
4425
|
-
const minExponent: number;
|
|
4426
|
-
const startingExponent: number;
|
|
4427
|
-
const suffix: string;
|
|
4428
|
-
}
|
|
4429
|
-
}
|
|
4430
|
-
}
|
|
4431
|
-
declare namespace _default {
|
|
4432
|
-
export { exponentNeeded };
|
|
4433
|
-
export { formatSi };
|
|
4434
|
-
export { parseSi };
|
|
4435
|
-
}
|
|
4436
|
-
export default _default;
|
|
4437
|
-
}
|
|
4438
|
-
|
|
4439
|
-
// @shell/utils/validators/cidr
|
|
4440
|
-
|
|
4441
|
-
declare module '@shell/utils/validators/cidr' {
|
|
4442
|
-
export function isValidCIDR(cidr: any): boolean;
|
|
4443
|
-
export function isValidIP(ip: any): boolean;
|
|
4444
|
-
export function isValidMac(value: any): boolean;
|
|
4445
|
-
}
|
|
4446
|
-
|
|
4447
|
-
// @shell/utils/validators/cluster-name
|
|
4448
|
-
|
|
4449
|
-
declare module '@shell/utils/validators/cluster-name' {
|
|
4450
|
-
export function clusterName(pathValue: any, getters: any, errors: any, validatorArgs: any, displayKey: any): any;
|
|
4451
|
-
}
|
|
4452
|
-
|
|
4453
|
-
// @shell/utils/validators/container-images
|
|
4454
|
-
|
|
4455
|
-
declare module '@shell/utils/validators/container-images' {
|
|
4456
|
-
export function containerImages(spec: any, getters: any, errors: any): void;
|
|
4457
|
-
}
|
|
4458
|
-
|
|
4459
|
-
// @shell/utils/validators/cron-schedule
|
|
4460
|
-
|
|
4461
|
-
declare module '@shell/utils/validators/cron-schedule' {
|
|
4462
|
-
export function cronSchedule(schedule: string, getters: any, errors: any): void;
|
|
4463
|
-
}
|
|
4464
|
-
|
|
4465
|
-
// @shell/utils/validators/flow-output
|
|
4466
|
-
|
|
4467
|
-
declare module '@shell/utils/validators/flow-output' {
|
|
4468
|
-
export function flowOutput(spec: any, getters: any, errors: any, validatorArgs: any): void;
|
|
4469
|
-
}
|
|
4470
|
-
|
|
4471
|
-
// @shell/utils/validators
|
|
4472
|
-
|
|
4473
|
-
declare module '@shell/utils/validators' {
|
|
4474
|
-
export function displayKeyFor(type: any, key: any, getters: any): any;
|
|
4475
|
-
export function validateLength(val: any, field: any, displayKey: any, getters: any, errors?: any[]): any[];
|
|
4476
|
-
export function validateChars(val: any, field: any, displayKey: any, getters: any, errors?: any[]): any[];
|
|
4477
|
-
export function validateHostname(val: any, displayKey: any, getters: any, opts: any, errors?: any[]): any[];
|
|
4478
|
-
export function validateDnsLabel(label: any, displayKey: any, getters: any, opts: any, errors?: any[]): any[];
|
|
4479
|
-
export function validateDnsLikeTypes(val: any, type: any, displayKey: any, getters: any, opts: any, errors?: any[]): any[];
|
|
4480
|
-
export function validateBoolean(val: any, field: any, displayKey: any, getters: any, errors?: any[]): void;
|
|
4481
|
-
}
|
|
4482
|
-
|
|
4483
|
-
// @shell/utils/validators/kubernetes-name
|
|
4484
|
-
|
|
4485
|
-
declare module '@shell/utils/validators/kubernetes-name' {
|
|
4486
|
-
export function validateKubernetesName(label: any, displayKey: any, getters: any, opts: any, errors?: any[]): any[];
|
|
4487
|
-
}
|
|
4488
|
-
|
|
4489
|
-
// @shell/utils/validators/logging-outputs
|
|
4490
|
-
|
|
4491
|
-
declare module '@shell/utils/validators/logging-outputs' {
|
|
4492
|
-
export function logdna(value: any, getters: any, errors: any, validatorArgs: any): void;
|
|
4493
|
-
}
|
|
4494
|
-
|
|
4495
|
-
// @shell/utils/validators/monitoring-route
|
|
4496
|
-
|
|
4497
|
-
declare module '@shell/utils/validators/monitoring-route' {
|
|
4498
|
-
export function matching(spec: any, getters: any, errors: any, validatorArgs: any): void;
|
|
4499
|
-
export function interval(value: any, getters: any, errors: any, validatorArgs: any, displayKey: any): void;
|
|
4500
|
-
}
|
|
4501
|
-
|
|
4502
|
-
// @shell/utils/validators/pod-affinity
|
|
4503
|
-
|
|
4504
|
-
declare module '@shell/utils/validators/pod-affinity' {
|
|
4505
|
-
export function podAffinity(spec: any, getters: any, errors: any): void;
|
|
4506
|
-
}
|
|
4507
|
-
|
|
4508
|
-
// @shell/utils/validators/prometheusrule
|
|
4509
|
-
|
|
4510
|
-
declare module '@shell/utils/validators/prometheusrule' {
|
|
4511
|
-
export function ruleGroups(spec: any, getters: any, errors: any, validatorArgs: any): any;
|
|
4512
|
-
export function groupsAreValid(groups: any[], getters: any, errors: any, validatorArgs: any): any;
|
|
4513
|
-
}
|
|
4514
|
-
|
|
4515
|
-
// @shell/utils/validators/role-template
|
|
4516
|
-
|
|
4517
|
-
declare module '@shell/utils/validators/role-template' {
|
|
4518
|
-
export function roleTemplateRules(rules: any[], getters: any, errors: any, validatorArgs?: any[]): void;
|
|
4519
|
-
}
|
|
4520
|
-
|
|
4521
|
-
// @shell/utils/validators/service
|
|
4522
|
-
|
|
4523
|
-
declare module '@shell/utils/validators/service' {
|
|
4524
|
-
export function servicePort(spec: any, getters: any, errors: any, validatorArgs: any): any;
|
|
4525
|
-
export function clusterIp(spec: any, getters: any, errors: any, validatorArgs: any): any;
|
|
4526
|
-
export function externalName(spec: any, getters: any, errors: any, validatorArgs: any): any;
|
|
4527
|
-
}
|
|
4528
|
-
|
|
4529
|
-
// @shell/utils/validators/setting
|
|
4530
|
-
|
|
4531
|
-
declare module '@shell/utils/validators/setting' {
|
|
4532
|
-
export function isServerUrl(value: any): boolean;
|
|
4533
|
-
export function isHttps(value: any): any;
|
|
4534
|
-
export function isLocalhost(value: any): boolean;
|
|
4535
|
-
export function hasTrailingForwardSlash(value: any): any;
|
|
4536
|
-
}
|
|
4537
|
-
|
|
4538
|
-
// @shell/utils/version
|
|
4539
|
-
|
|
4540
|
-
declare module '@shell/utils/version' {
|
|
4541
|
-
export function parse(str: any): any;
|
|
4542
|
-
export function sortable(str: any): any;
|
|
4543
|
-
export function compare(in1: any, in2: any): any;
|
|
4544
|
-
export function isPrerelease(version: any): boolean;
|
|
4545
|
-
export function isDevBuild(version: any): boolean;
|
|
4546
|
-
export function getVersionInfo(store: any): {
|
|
4547
|
-
displayVersion: any;
|
|
4548
|
-
fullVersion: any;
|
|
4549
|
-
};
|
|
4550
|
-
export function seenReleaseNotes(store: any): boolean;
|
|
4551
|
-
export function markSeenReleaseNotes(store: any): Promise<void>;
|
|
4552
|
-
export function readReleaseNotes(store: any): boolean;
|
|
4553
|
-
export function markReadReleaseNotes(store: any): Promise<void>;
|
|
4554
|
-
}
|
|
4555
|
-
|
|
4556
|
-
// @shell/utils/width
|
|
4557
|
-
|
|
4558
|
-
declare module '@shell/utils/width' {
|
|
4559
|
-
/**
|
|
4560
|
-
* Sets the width of a DOM element. Adapted from [youmightnotneedjquery.com](https://youmightnotneedjquery.com/#set_width)
|
|
4561
|
-
* @param {Element} el - The target DOM element
|
|
4562
|
-
* @param {function | string | number} val - The desired width represented as a Number
|
|
4563
|
-
*/
|
|
4564
|
-
export function setWidth(el: Element, val: Function | string | number): void;
|
|
4565
|
-
/**
|
|
4566
|
-
* Gets the width of a DOM element. Adapted from [youmightnotneedjquery.com](https://youmightnotneedjquery.com/#get_width)
|
|
4567
|
-
* @param {Element} el - The target DOM element
|
|
4568
|
-
* @returns Number representing the width for the provided element
|
|
4569
|
-
*/
|
|
4570
|
-
export function getWidth(el: Element): number;
|
|
4571
|
-
}
|
|
4572
|
-
|
|
4573
|
-
// @shell/utils/window
|
|
4574
|
-
|
|
4575
|
-
declare module '@shell/utils/window' {
|
|
4576
|
-
export function popupWindowOptions(width: any, height: any): string;
|
|
4577
|
-
export function open(url: any, name?: string, opt?: string): Window;
|
|
4578
|
-
export class Popup {
|
|
4579
|
-
constructor(onOpen?: () => void, onClose?: () => void);
|
|
4580
|
-
onOpen: () => void;
|
|
4581
|
-
onClose: () => void;
|
|
4582
|
-
popup: Window;
|
|
4583
|
-
open(url: any, name: any, opt: any): void;
|
|
4584
|
-
}
|
|
4585
|
-
}
|