@rancher/shell 3.0.6 → 3.0.8-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/images/pl/dark/rancher-logo.svg +131 -44
- package/assets/images/pl/rancher-logo.svg +120 -44
- package/assets/images/vendor/githubapp.svg +13 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_color-classic.scss +51 -0
- package/assets/styles/base/_color.scss +3 -3
- package/assets/styles/base/_mixins.scss +1 -1
- package/assets/styles/base/_typography.scss +1 -1
- package/assets/styles/base/_variables-classic.scss +47 -0
- package/assets/styles/global/_button.scss +49 -17
- package/assets/styles/global/_form.scss +1 -1
- package/assets/styles/themes/_dark.scss +4 -0
- package/assets/styles/themes/_light.scss +3 -69
- package/assets/styles/themes/_modern.scss +194 -50
- package/assets/styles/vendor/vue-select.scss +1 -2
- package/assets/translations/en-us.yaml +124 -32
- package/assets/translations/zh-hans.yaml +0 -4
- package/components/ClusterIconMenu.vue +1 -1
- package/components/ClusterProviderIcon.vue +1 -1
- package/components/CodeMirror.vue +1 -1
- package/components/IconOrSvg.vue +40 -29
- package/components/Inactivity.vue +222 -106
- package/components/InstallHelmCharts.vue +2 -2
- package/components/ResourceDetail/index.vue +2 -1
- package/components/SortableTable/index.vue +17 -2
- package/components/SortableTable/sorting.js +3 -1
- package/components/Tabbed/index.vue +5 -5
- package/components/fleet/FleetConfigMapSelector.vue +117 -0
- package/components/fleet/FleetSecretSelector.vue +127 -0
- package/components/fleet/__tests__/FleetConfigMapSelector.test.ts +125 -0
- package/components/fleet/__tests__/FleetSecretSelector.test.ts +82 -0
- package/components/form/FileImageSelector.vue +13 -4
- package/components/form/FileSelector.vue +11 -2
- package/components/form/ResourceLabeledSelect.vue +1 -0
- package/components/form/ResourceTabs/index.vue +37 -18
- package/components/form/SecretSelector.vue +6 -2
- package/components/form/__tests__/ResourceLabeledSelect.test.ts +90 -0
- package/components/nav/Group.vue +29 -9
- package/components/nav/Header.vue +7 -8
- package/components/nav/NamespaceFilter.vue +1 -1
- package/components/nav/TopLevelMenu.helper.ts +47 -20
- package/components/nav/TopLevelMenu.vue +44 -14
- package/components/nav/Type.vue +0 -5
- package/components/nav/__tests__/TopLevelMenu.test.ts +2 -0
- package/config/pagination-table-headers.js +10 -2
- package/config/product/auth.js +1 -0
- package/config/product/explorer.js +4 -3
- package/config/query-params.js +1 -0
- package/config/settings.ts +8 -1
- package/config/table-headers.js +9 -0
- package/config/types.js +2 -0
- package/core/plugin.ts +18 -6
- package/core/types.ts +8 -0
- package/detail/provisioning.cattle.io.cluster.vue +1 -0
- package/dialog/AddonConfigConfirmationDialog.vue +45 -1
- package/dialog/InstallExtensionDialog.vue +71 -45
- package/dialog/UninstallExtensionDialog.vue +2 -1
- package/dialog/__tests__/InstallExtensionDialog.test.ts +111 -0
- package/edit/__tests__/fleet.cattle.io.helmop.test.ts +52 -11
- package/edit/auth/AuthProviderWarningBanners.vue +14 -1
- package/edit/auth/github-app-steps.vue +97 -0
- package/edit/auth/github-steps.vue +75 -0
- package/edit/auth/github.vue +94 -65
- package/edit/auth/oidc.vue +86 -16
- package/edit/fleet.cattle.io.helmop.vue +51 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +15 -5
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +11 -9
- package/edit/provisioning.cattle.io.cluster/rke2.vue +56 -9
- package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +28 -2
- package/list/projectsecret.vue +1 -1
- package/machine-config/azure.vue +1 -1
- package/mixins/__tests__/chart.test.ts +1 -1
- package/mixins/chart.js +2 -2
- package/models/__tests__/chart.test.ts +17 -9
- package/models/__tests__/compliance.cattle.io.clusterscanprofile.spec.js +30 -0
- package/models/catalog.cattle.io.app.js +1 -1
- package/models/chart.js +3 -1
- package/models/compliance.cattle.io.clusterscanprofile.js +1 -1
- package/models/event.js +7 -0
- package/models/management.cattle.io.authconfig.js +1 -0
- package/models/provisioning.cattle.io.cluster.js +9 -0
- package/package.json +2 -2
- package/pages/auth/login.vue +5 -2
- package/pages/auth/verify.vue +1 -1
- package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +3 -2
- package/pages/c/_cluster/apps/charts/chart.vue +2 -2
- package/pages/c/_cluster/explorer/EventsTable.vue +92 -9
- package/pages/c/_cluster/explorer/tools/index.vue +3 -3
- package/pages/c/_cluster/settings/performance.vue +13 -26
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +159 -62
- package/pages/c/_cluster/uiplugins/__tests__/PluginInfoPanel.test.ts +102 -0
- package/pages/c/_cluster/uiplugins/__tests__/{index.spec.ts → index.test.ts} +121 -55
- package/pages/c/_cluster/uiplugins/index.vue +110 -94
- package/pages/home.vue +313 -12
- package/plugins/__tests__/subscribe.events.test.ts +194 -0
- package/plugins/axios.js +2 -1
- package/plugins/dashboard-store/actions.js +4 -1
- package/plugins/dashboard-store/getters.js +1 -1
- package/plugins/dashboard-store/resource-class.js +20 -5
- package/plugins/steve/__tests__/subscribe.spec.ts +27 -24
- package/plugins/steve/index.js +18 -10
- package/plugins/steve/mutations.js +2 -2
- package/plugins/steve/resourceWatcher.js +2 -2
- package/plugins/steve/steve-pagination-utils.ts +12 -9
- package/plugins/steve/subscribe.js +113 -85
- package/plugins/subscribe-events.ts +211 -0
- package/rancher-components/BadgeState/BadgeState.vue +8 -6
- package/rancher-components/Banner/Banner.vue +2 -1
- package/rancher-components/Form/Checkbox/Checkbox.vue +3 -3
- package/rancher-components/Form/Radio/RadioButton.vue +3 -3
- package/scripts/extension/publish +1 -1
- package/store/auth.js +8 -3
- package/store/aws.js +8 -6
- package/store/features.js +1 -0
- package/store/index.js +21 -25
- package/store/prefs.js +6 -0
- package/types/extension-manager.ts +8 -1
- package/types/kube/kube-api.ts +2 -1
- package/types/rancher/index.d.ts +1 -0
- package/types/resources/settings.d.ts +52 -23
- package/types/shell/index.d.ts +412 -336
- package/types/store/subscribe-events.types.ts +70 -0
- package/types/store/subscribe.types.ts +6 -22
- package/utils/__tests__/cluster.test.ts +379 -1
- package/utils/cluster.js +157 -3
- package/utils/dynamic-content/__tests__/config.test.ts +187 -0
- package/utils/dynamic-content/__tests__/index.test.ts +390 -0
- package/utils/dynamic-content/__tests__/info.test.ts +263 -0
- package/utils/dynamic-content/__tests__/new-release.test.ts +216 -0
- package/utils/dynamic-content/__tests__/support-notice.test.ts +262 -0
- package/utils/dynamic-content/__tests__/util.test.ts +235 -0
- package/utils/dynamic-content/config.ts +55 -0
- package/utils/dynamic-content/index.ts +273 -0
- package/utils/dynamic-content/info.ts +219 -0
- package/utils/dynamic-content/new-release.ts +126 -0
- package/utils/dynamic-content/support-notice.ts +169 -0
- package/utils/dynamic-content/types.d.ts +101 -0
- package/utils/dynamic-content/util.ts +122 -0
- package/utils/inactivity.ts +104 -0
- package/utils/pagination-utils.ts +105 -31
- package/utils/pagination-wrapper.ts +6 -8
- package/utils/release-notes.ts +1 -1
- package/utils/sort.js +5 -0
- package/utils/unit-tests/pagination-utils.spec.ts +283 -0
- package/utils/validators/formRules/__tests__/index.test.ts +7 -0
- package/utils/validators/formRules/index.ts +2 -2
package/types/shell/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export const STEP: "step";
|
|
|
174
174
|
export const LOGGED_OUT: "logged-out";
|
|
175
175
|
export const IS_SSO: "is-sso";
|
|
176
176
|
export const IS_SLO: "is-slo";
|
|
177
|
+
export const IS_SESSION_IDLE: "is-session-idle";
|
|
177
178
|
export const UPGRADED: "upgraded";
|
|
178
179
|
export const TIMED_OUT: "timed-out";
|
|
179
180
|
export const AUTH_TEST: "test";
|
|
@@ -1034,24 +1035,22 @@ export namespace LAST_SEEN_TIME {
|
|
|
1034
1035
|
let tooltip_2: string;
|
|
1035
1036
|
export { tooltip_2 as tooltip };
|
|
1036
1037
|
}
|
|
1037
|
-
export namespace
|
|
1038
|
-
let defaultSort: boolean;
|
|
1039
|
-
}
|
|
1040
|
-
export namespace LAST_HEARTBEAT_TIME {
|
|
1038
|
+
export namespace EVENT_FIRST_SEEN_TIME {
|
|
1041
1039
|
let name_60: string;
|
|
1042
1040
|
export { name_60 as name };
|
|
1043
1041
|
let labelKey_60: string;
|
|
1044
1042
|
export { labelKey_60 as labelKey };
|
|
1043
|
+
let tooltip_3: string;
|
|
1044
|
+
export { tooltip_3 as tooltip };
|
|
1045
1045
|
let value_60: string;
|
|
1046
1046
|
export { value_60 as value };
|
|
1047
|
-
let sort_52: string
|
|
1047
|
+
let sort_52: string;
|
|
1048
1048
|
export { sort_52 as sort };
|
|
1049
|
-
let formatter_31: string;
|
|
1050
|
-
export { formatter_31 as formatter };
|
|
1051
|
-
let width_17: number;
|
|
1052
|
-
export { width_17 as width };
|
|
1053
1049
|
}
|
|
1054
|
-
export namespace
|
|
1050
|
+
export namespace EVENT_LAST_SEEN_TIME {
|
|
1051
|
+
let defaultSort: boolean;
|
|
1052
|
+
}
|
|
1053
|
+
export namespace LAST_HEARTBEAT_TIME {
|
|
1055
1054
|
let name_61: string;
|
|
1056
1055
|
export { name_61 as name };
|
|
1057
1056
|
let labelKey_61: string;
|
|
@@ -1060,8 +1059,12 @@ export namespace REASON {
|
|
|
1060
1059
|
export { value_61 as value };
|
|
1061
1060
|
let sort_53: string[];
|
|
1062
1061
|
export { sort_53 as sort };
|
|
1062
|
+
let formatter_31: string;
|
|
1063
|
+
export { formatter_31 as formatter };
|
|
1064
|
+
let width_17: number;
|
|
1065
|
+
export { width_17 as width };
|
|
1063
1066
|
}
|
|
1064
|
-
export namespace
|
|
1067
|
+
export namespace REASON {
|
|
1065
1068
|
let name_62: string;
|
|
1066
1069
|
export { name_62 as name };
|
|
1067
1070
|
let labelKey_62: string;
|
|
@@ -1070,12 +1073,8 @@ export namespace OBJECT {
|
|
|
1070
1073
|
export { value_62 as value };
|
|
1071
1074
|
let sort_54: string[];
|
|
1072
1075
|
export { sort_54 as sort };
|
|
1073
|
-
let canBeVariable_6: boolean;
|
|
1074
|
-
export { canBeVariable_6 as canBeVariable };
|
|
1075
|
-
let formatter_32: string;
|
|
1076
|
-
export { formatter_32 as formatter };
|
|
1077
1076
|
}
|
|
1078
|
-
export namespace
|
|
1077
|
+
export namespace OBJECT {
|
|
1079
1078
|
let name_63: string;
|
|
1080
1079
|
export { name_63 as name };
|
|
1081
1080
|
let labelKey_63: string;
|
|
@@ -1084,8 +1083,12 @@ export namespace RECLAIM_POLICY {
|
|
|
1084
1083
|
export { value_63 as value };
|
|
1085
1084
|
let sort_55: string[];
|
|
1086
1085
|
export { sort_55 as sort };
|
|
1086
|
+
let canBeVariable_6: boolean;
|
|
1087
|
+
export { canBeVariable_6 as canBeVariable };
|
|
1088
|
+
let formatter_32: string;
|
|
1089
|
+
export { formatter_32 as formatter };
|
|
1087
1090
|
}
|
|
1088
|
-
export namespace
|
|
1091
|
+
export namespace RECLAIM_POLICY {
|
|
1089
1092
|
let name_64: string;
|
|
1090
1093
|
export { name_64 as name };
|
|
1091
1094
|
let labelKey_64: string;
|
|
@@ -1095,7 +1098,7 @@ export namespace PV_REASON {
|
|
|
1095
1098
|
let sort_56: string[];
|
|
1096
1099
|
export { sort_56 as sort };
|
|
1097
1100
|
}
|
|
1098
|
-
export namespace
|
|
1101
|
+
export namespace PV_REASON {
|
|
1099
1102
|
let name_65: string;
|
|
1100
1103
|
export { name_65 as name };
|
|
1101
1104
|
let labelKey_65: string;
|
|
@@ -1105,7 +1108,7 @@ export namespace MESSAGE {
|
|
|
1105
1108
|
let sort_57: string[];
|
|
1106
1109
|
export { sort_57 as sort };
|
|
1107
1110
|
}
|
|
1108
|
-
export namespace
|
|
1111
|
+
export namespace MESSAGE {
|
|
1109
1112
|
let name_66: string;
|
|
1110
1113
|
export { name_66 as name };
|
|
1111
1114
|
let labelKey_66: string;
|
|
@@ -1115,7 +1118,7 @@ export namespace KEY {
|
|
|
1115
1118
|
let sort_58: string[];
|
|
1116
1119
|
export { sort_58 as sort };
|
|
1117
1120
|
}
|
|
1118
|
-
export namespace
|
|
1121
|
+
export namespace KEY {
|
|
1119
1122
|
let name_67: string;
|
|
1120
1123
|
export { name_67 as name };
|
|
1121
1124
|
let labelKey_67: string;
|
|
@@ -1125,7 +1128,7 @@ export namespace VALUE {
|
|
|
1125
1128
|
let sort_59: string[];
|
|
1126
1129
|
export { sort_59 as sort };
|
|
1127
1130
|
}
|
|
1128
|
-
export namespace
|
|
1131
|
+
export namespace VALUE {
|
|
1129
1132
|
let name_68: string;
|
|
1130
1133
|
export { name_68 as name };
|
|
1131
1134
|
let labelKey_68: string;
|
|
@@ -1134,12 +1137,8 @@ export namespace BUILT_IN {
|
|
|
1134
1137
|
export { value_68 as value };
|
|
1135
1138
|
let sort_60: string[];
|
|
1136
1139
|
export { sort_60 as sort };
|
|
1137
|
-
let align_8: string;
|
|
1138
|
-
export { align_8 as align };
|
|
1139
|
-
let formatter_33: string;
|
|
1140
|
-
export { formatter_33 as formatter };
|
|
1141
1140
|
}
|
|
1142
|
-
export namespace
|
|
1141
|
+
export namespace BUILT_IN {
|
|
1143
1142
|
let name_69: string;
|
|
1144
1143
|
export { name_69 as name };
|
|
1145
1144
|
let labelKey_69: string;
|
|
@@ -1148,46 +1147,50 @@ export namespace CLUSTER_CREATOR_DEFAULT {
|
|
|
1148
1147
|
export { value_69 as value };
|
|
1149
1148
|
let sort_61: string[];
|
|
1150
1149
|
export { sort_61 as sort };
|
|
1151
|
-
let
|
|
1152
|
-
export {
|
|
1153
|
-
let
|
|
1154
|
-
export {
|
|
1150
|
+
let align_8: string;
|
|
1151
|
+
export { align_8 as align };
|
|
1152
|
+
let formatter_33: string;
|
|
1153
|
+
export { formatter_33 as formatter };
|
|
1155
1154
|
}
|
|
1156
|
-
export namespace
|
|
1155
|
+
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
1157
1156
|
let name_70: string;
|
|
1158
1157
|
export { name_70 as name };
|
|
1159
1158
|
let labelKey_70: string;
|
|
1160
1159
|
export { labelKey_70 as labelKey };
|
|
1161
1160
|
let value_70: string;
|
|
1162
1161
|
export { value_70 as value };
|
|
1163
|
-
let formatter_35: string;
|
|
1164
|
-
export { formatter_35 as formatter };
|
|
1165
1162
|
let sort_62: string[];
|
|
1166
1163
|
export { sort_62 as sort };
|
|
1164
|
+
let align_9: string;
|
|
1165
|
+
export { align_9 as align };
|
|
1166
|
+
let formatter_34: string;
|
|
1167
|
+
export { formatter_34 as formatter };
|
|
1167
1168
|
}
|
|
1168
|
-
export namespace
|
|
1169
|
+
export namespace RBAC_DEFAULT {
|
|
1169
1170
|
let name_71: string;
|
|
1170
1171
|
export { name_71 as name };
|
|
1171
1172
|
let labelKey_71: string;
|
|
1172
1173
|
export { labelKey_71 as labelKey };
|
|
1173
1174
|
let value_71: string;
|
|
1174
1175
|
export { value_71 as value };
|
|
1175
|
-
let
|
|
1176
|
-
export {
|
|
1176
|
+
let formatter_35: string;
|
|
1177
|
+
export { formatter_35 as formatter };
|
|
1177
1178
|
let sort_63: string[];
|
|
1178
1179
|
export { sort_63 as sort };
|
|
1179
1180
|
}
|
|
1180
|
-
export namespace
|
|
1181
|
+
export namespace RBAC_BUILTIN {
|
|
1181
1182
|
let name_72: string;
|
|
1182
1183
|
export { name_72 as name };
|
|
1183
1184
|
let labelKey_72: string;
|
|
1184
1185
|
export { labelKey_72 as labelKey };
|
|
1185
1186
|
let value_72: string;
|
|
1186
1187
|
export { value_72 as value };
|
|
1188
|
+
let formatter_36: string;
|
|
1189
|
+
export { formatter_36 as formatter };
|
|
1187
1190
|
let sort_64: string[];
|
|
1188
1191
|
export { sort_64 as sort };
|
|
1189
1192
|
}
|
|
1190
|
-
export namespace
|
|
1193
|
+
export namespace RESOURCE {
|
|
1191
1194
|
let name_73: string;
|
|
1192
1195
|
export { name_73 as name };
|
|
1193
1196
|
let labelKey_73: string;
|
|
@@ -1197,103 +1200,101 @@ export namespace API_GROUP {
|
|
|
1197
1200
|
let sort_65: string[];
|
|
1198
1201
|
export { sort_65 as sort };
|
|
1199
1202
|
}
|
|
1200
|
-
export namespace
|
|
1203
|
+
export namespace API_GROUP {
|
|
1201
1204
|
let name_74: string;
|
|
1202
1205
|
export { name_74 as name };
|
|
1203
1206
|
let labelKey_74: string;
|
|
1204
1207
|
export { labelKey_74 as labelKey };
|
|
1205
1208
|
let value_74: string;
|
|
1206
1209
|
export { value_74 as value };
|
|
1207
|
-
let sort_66: string;
|
|
1210
|
+
let sort_66: string[];
|
|
1208
1211
|
export { sort_66 as sort };
|
|
1209
1212
|
}
|
|
1210
|
-
export namespace
|
|
1213
|
+
export namespace INGRESS_CLASS {
|
|
1211
1214
|
let name_75: string;
|
|
1212
1215
|
export { name_75 as name };
|
|
1213
1216
|
let labelKey_75: string;
|
|
1214
1217
|
export { labelKey_75 as labelKey };
|
|
1215
1218
|
let value_75: string;
|
|
1216
1219
|
export { value_75 as value };
|
|
1217
|
-
let sort_67: string
|
|
1220
|
+
let sort_67: string;
|
|
1218
1221
|
export { sort_67 as sort };
|
|
1219
|
-
let formatter_37: string;
|
|
1220
|
-
export { formatter_37 as formatter };
|
|
1221
|
-
let width_18: number;
|
|
1222
|
-
export { width_18 as width };
|
|
1223
|
-
let align_10: string;
|
|
1224
|
-
export { align_10 as align };
|
|
1225
1222
|
}
|
|
1226
|
-
export namespace
|
|
1223
|
+
export namespace INGRESS_DEFAULT_BACKEND {
|
|
1227
1224
|
let name_76: string;
|
|
1228
1225
|
export { name_76 as name };
|
|
1229
1226
|
let labelKey_76: string;
|
|
1230
1227
|
export { labelKey_76 as labelKey };
|
|
1231
1228
|
let value_76: string;
|
|
1232
1229
|
export { value_76 as value };
|
|
1233
|
-
let
|
|
1234
|
-
export { formatter_38 as formatter };
|
|
1235
|
-
let sort_68: string;
|
|
1230
|
+
let sort_68: string[];
|
|
1236
1231
|
export { sort_68 as sort };
|
|
1232
|
+
let formatter_37: string;
|
|
1233
|
+
export { formatter_37 as formatter };
|
|
1234
|
+
let width_18: number;
|
|
1235
|
+
export { width_18 as width };
|
|
1236
|
+
let align_10: string;
|
|
1237
|
+
export { align_10 as align };
|
|
1237
1238
|
}
|
|
1238
|
-
export namespace
|
|
1239
|
+
export namespace INGRESS_TARGET {
|
|
1239
1240
|
let name_77: string;
|
|
1240
1241
|
export { name_77 as name };
|
|
1241
1242
|
let labelKey_77: string;
|
|
1242
1243
|
export { labelKey_77 as labelKey };
|
|
1243
1244
|
let value_77: string;
|
|
1244
1245
|
export { value_77 as value };
|
|
1246
|
+
let formatter_38: string;
|
|
1247
|
+
export { formatter_38 as formatter };
|
|
1245
1248
|
let sort_69: string;
|
|
1246
1249
|
export { sort_69 as sort };
|
|
1250
|
+
}
|
|
1251
|
+
export namespace SPEC_TYPE {
|
|
1252
|
+
let name_78: string;
|
|
1253
|
+
export { name_78 as name };
|
|
1254
|
+
let labelKey_78: string;
|
|
1255
|
+
export { labelKey_78 as labelKey };
|
|
1256
|
+
let value_78: string;
|
|
1257
|
+
export { value_78 as value };
|
|
1258
|
+
let sort_70: string;
|
|
1259
|
+
export { sort_70 as sort };
|
|
1247
1260
|
let formatter_39: string;
|
|
1248
1261
|
export { formatter_39 as formatter };
|
|
1249
1262
|
}
|
|
1250
1263
|
export namespace TARGET_PORT {
|
|
1251
1264
|
let formatter_40: string;
|
|
1252
1265
|
export { formatter_40 as formatter };
|
|
1253
|
-
let labelKey_78: string;
|
|
1254
|
-
export { labelKey_78 as labelKey };
|
|
1255
|
-
let name_78: string;
|
|
1256
|
-
export { name_78 as name };
|
|
1257
|
-
let sort_70: boolean;
|
|
1258
|
-
export { sort_70 as sort };
|
|
1259
|
-
let value_78: boolean;
|
|
1260
|
-
export { value_78 as value };
|
|
1261
|
-
}
|
|
1262
|
-
export namespace SELECTOR {
|
|
1263
|
-
let formatter_41: string;
|
|
1264
|
-
export { formatter_41 as formatter };
|
|
1265
|
-
let name_79: string;
|
|
1266
|
-
export { name_79 as name };
|
|
1267
1266
|
let labelKey_79: string;
|
|
1268
1267
|
export { labelKey_79 as labelKey };
|
|
1269
|
-
let
|
|
1270
|
-
export {
|
|
1271
|
-
let sort_71:
|
|
1268
|
+
let name_79: string;
|
|
1269
|
+
export { name_79 as name };
|
|
1270
|
+
let sort_71: boolean;
|
|
1272
1271
|
export { sort_71 as sort };
|
|
1272
|
+
let value_79: boolean;
|
|
1273
|
+
export { value_79 as value };
|
|
1273
1274
|
}
|
|
1274
|
-
export namespace
|
|
1275
|
+
export namespace SELECTOR {
|
|
1276
|
+
let formatter_41: string;
|
|
1277
|
+
export { formatter_41 as formatter };
|
|
1275
1278
|
let name_80: string;
|
|
1276
1279
|
export { name_80 as name };
|
|
1277
1280
|
let labelKey_80: string;
|
|
1278
1281
|
export { labelKey_80 as labelKey };
|
|
1279
1282
|
let value_80: string;
|
|
1280
1283
|
export { value_80 as value };
|
|
1281
|
-
let sort_72: string
|
|
1284
|
+
let sort_72: string;
|
|
1282
1285
|
export { sort_72 as sort };
|
|
1283
1286
|
}
|
|
1284
|
-
export namespace
|
|
1287
|
+
export namespace CHART {
|
|
1285
1288
|
let name_81: string;
|
|
1286
1289
|
export { name_81 as name };
|
|
1287
1290
|
let labelKey_81: string;
|
|
1288
1291
|
export { labelKey_81 as labelKey };
|
|
1289
1292
|
let value_81: string;
|
|
1290
1293
|
export { value_81 as value };
|
|
1291
|
-
let sort_73: string;
|
|
1294
|
+
let sort_73: string[];
|
|
1292
1295
|
export { sort_73 as sort };
|
|
1293
|
-
let dashIfEmpty_4: boolean;
|
|
1294
|
-
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1295
1296
|
}
|
|
1296
|
-
export namespace
|
|
1297
|
+
export namespace CHART_UPGRADE {
|
|
1297
1298
|
let name_82: string;
|
|
1298
1299
|
export { name_82 as name };
|
|
1299
1300
|
let labelKey_82: string;
|
|
@@ -1302,10 +1303,10 @@ export namespace RESOURCES {
|
|
|
1302
1303
|
export { value_82 as value };
|
|
1303
1304
|
let sort_74: string;
|
|
1304
1305
|
export { sort_74 as sort };
|
|
1305
|
-
let
|
|
1306
|
-
export {
|
|
1306
|
+
let dashIfEmpty_4: boolean;
|
|
1307
|
+
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1307
1308
|
}
|
|
1308
|
-
export namespace
|
|
1309
|
+
export namespace RESOURCES {
|
|
1309
1310
|
let name_83: string;
|
|
1310
1311
|
export { name_83 as name };
|
|
1311
1312
|
let labelKey_83: string;
|
|
@@ -1314,14 +1315,26 @@ export namespace URL {
|
|
|
1314
1315
|
export { value_83 as value };
|
|
1315
1316
|
let sort_75: string;
|
|
1316
1317
|
export { sort_75 as sort };
|
|
1318
|
+
let width_19: number;
|
|
1319
|
+
export { width_19 as width };
|
|
1317
1320
|
}
|
|
1318
|
-
export namespace
|
|
1321
|
+
export namespace URL {
|
|
1319
1322
|
let name_84: string;
|
|
1320
1323
|
export { name_84 as name };
|
|
1321
1324
|
let labelKey_84: string;
|
|
1322
1325
|
export { labelKey_84 as labelKey };
|
|
1323
1326
|
let value_84: string;
|
|
1324
1327
|
export { value_84 as value };
|
|
1328
|
+
let sort_76: string;
|
|
1329
|
+
export { sort_76 as sort };
|
|
1330
|
+
}
|
|
1331
|
+
export namespace LAST_UPDATED {
|
|
1332
|
+
let name_85: string;
|
|
1333
|
+
export { name_85 as name };
|
|
1334
|
+
let labelKey_85: string;
|
|
1335
|
+
export { labelKey_85 as labelKey };
|
|
1336
|
+
let value_85: string;
|
|
1337
|
+
export { value_85 as value };
|
|
1325
1338
|
let formatter_42: string;
|
|
1326
1339
|
export { formatter_42 as formatter };
|
|
1327
1340
|
export namespace formatterOpts_7 {
|
|
@@ -1329,30 +1342,30 @@ export namespace LAST_UPDATED {
|
|
|
1329
1342
|
export { addSuffix_2 as addSuffix };
|
|
1330
1343
|
}
|
|
1331
1344
|
export { formatterOpts_7 as formatterOpts };
|
|
1332
|
-
let sort_76: string[];
|
|
1333
|
-
export { sort_76 as sort };
|
|
1334
|
-
}
|
|
1335
|
-
export namespace WORKSPACE {
|
|
1336
|
-
let name_85: string;
|
|
1337
|
-
export { name_85 as name };
|
|
1338
|
-
export let label: string;
|
|
1339
|
-
let value_85: string;
|
|
1340
|
-
export { value_85 as value };
|
|
1341
1345
|
let sort_77: string[];
|
|
1342
1346
|
export { sort_77 as sort };
|
|
1343
1347
|
}
|
|
1344
|
-
export namespace
|
|
1348
|
+
export namespace WORKSPACE {
|
|
1349
|
+
let name_86: string;
|
|
1350
|
+
export { name_86 as name };
|
|
1351
|
+
export let label: string;
|
|
1345
1352
|
let value_86: string;
|
|
1346
1353
|
export { value_86 as value };
|
|
1347
|
-
|
|
1354
|
+
let sort_78: string[];
|
|
1355
|
+
export { sort_78 as sort };
|
|
1348
1356
|
}
|
|
1349
|
-
export namespace
|
|
1350
|
-
let name_86: string;
|
|
1351
|
-
export { name_86 as name };
|
|
1352
|
-
let labelKey_85: string;
|
|
1353
|
-
export { labelKey_85 as labelKey };
|
|
1357
|
+
export namespace WORKLOAD_IMAGES {
|
|
1354
1358
|
let value_87: string;
|
|
1355
1359
|
export { value_87 as value };
|
|
1360
|
+
export let breakpoint: any;
|
|
1361
|
+
}
|
|
1362
|
+
export namespace WORKLOAD_ENDPOINTS {
|
|
1363
|
+
let name_87: string;
|
|
1364
|
+
export { name_87 as name };
|
|
1365
|
+
let labelKey_86: string;
|
|
1366
|
+
export { labelKey_86 as labelKey };
|
|
1367
|
+
let value_88: string;
|
|
1368
|
+
export { value_88 as value };
|
|
1356
1369
|
export function getValue_12(row: any): any;
|
|
1357
1370
|
export { getValue_12 as getValue };
|
|
1358
1371
|
let formatter_43: string;
|
|
@@ -1364,10 +1377,10 @@ export namespace WORKLOAD_ENDPOINTS {
|
|
|
1364
1377
|
export let maxPageSize: number;
|
|
1365
1378
|
}
|
|
1366
1379
|
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1367
|
-
let
|
|
1368
|
-
export {
|
|
1369
|
-
let
|
|
1370
|
-
export {
|
|
1380
|
+
let name_88: string;
|
|
1381
|
+
export { name_88 as name };
|
|
1382
|
+
let labelKey_87: string;
|
|
1383
|
+
export { labelKey_87 as labelKey };
|
|
1371
1384
|
let formatter_44: string;
|
|
1372
1385
|
export { formatter_44 as formatter };
|
|
1373
1386
|
export function getValue_13(): any;
|
|
@@ -1383,14 +1396,14 @@ export namespace WORKLOAD_HEALTH_SCALE {
|
|
|
1383
1396
|
export { liveUpdates_1 as liveUpdates };
|
|
1384
1397
|
}
|
|
1385
1398
|
export namespace FLEET_SUMMARY {
|
|
1386
|
-
let
|
|
1387
|
-
export {
|
|
1388
|
-
let
|
|
1389
|
-
export {
|
|
1390
|
-
let
|
|
1391
|
-
export {
|
|
1392
|
-
let
|
|
1393
|
-
export {
|
|
1399
|
+
let name_89: string;
|
|
1400
|
+
export { name_89 as name };
|
|
1401
|
+
let labelKey_88: string;
|
|
1402
|
+
export { labelKey_88 as labelKey };
|
|
1403
|
+
let value_89: string;
|
|
1404
|
+
export { value_89 as value };
|
|
1405
|
+
let sort_79: boolean;
|
|
1406
|
+
export { sort_79 as sort };
|
|
1394
1407
|
let search_9: boolean;
|
|
1395
1408
|
export { search_9 as search };
|
|
1396
1409
|
let formatter_45: string;
|
|
@@ -1401,68 +1414,68 @@ export namespace FLEET_SUMMARY {
|
|
|
1401
1414
|
export { width_21 as width };
|
|
1402
1415
|
}
|
|
1403
1416
|
export namespace FLEET_APPLICATION_TYPE {
|
|
1404
|
-
let name_89: string;
|
|
1405
|
-
export { name_89 as name };
|
|
1406
|
-
let labelKey_88: string;
|
|
1407
|
-
export { labelKey_88 as labelKey };
|
|
1408
|
-
let value_89: string;
|
|
1409
|
-
export { value_89 as value };
|
|
1410
|
-
let sort_79: string;
|
|
1411
|
-
export { sort_79 as sort };
|
|
1412
|
-
let search_10: boolean;
|
|
1413
|
-
export { search_10 as search };
|
|
1414
|
-
let align_12: string;
|
|
1415
|
-
export { align_12 as align };
|
|
1416
|
-
let width_22: number;
|
|
1417
|
-
export { width_22 as width };
|
|
1418
|
-
}
|
|
1419
|
-
export namespace FLEET_APPLICATION_SOURCE {
|
|
1420
1417
|
let name_90: string;
|
|
1421
1418
|
export { name_90 as name };
|
|
1422
1419
|
let labelKey_89: string;
|
|
1423
1420
|
export { labelKey_89 as labelKey };
|
|
1424
1421
|
let value_90: string;
|
|
1425
1422
|
export { value_90 as value };
|
|
1426
|
-
let formatter_46: string;
|
|
1427
|
-
export { formatter_46 as formatter };
|
|
1428
1423
|
let sort_80: string;
|
|
1429
1424
|
export { sort_80 as sort };
|
|
1430
|
-
let
|
|
1431
|
-
export {
|
|
1425
|
+
let search_10: boolean;
|
|
1426
|
+
export { search_10 as search };
|
|
1427
|
+
let align_12: string;
|
|
1428
|
+
export { align_12 as align };
|
|
1429
|
+
let width_22: number;
|
|
1430
|
+
export { width_22 as width };
|
|
1432
1431
|
}
|
|
1433
|
-
export namespace
|
|
1432
|
+
export namespace FLEET_APPLICATION_SOURCE {
|
|
1434
1433
|
let name_91: string;
|
|
1435
1434
|
export { name_91 as name };
|
|
1436
1435
|
let labelKey_90: string;
|
|
1437
1436
|
export { labelKey_90 as labelKey };
|
|
1438
1437
|
let value_91: string;
|
|
1439
1438
|
export { value_91 as value };
|
|
1440
|
-
let
|
|
1439
|
+
let formatter_46: string;
|
|
1440
|
+
export { formatter_46 as formatter };
|
|
1441
|
+
let sort_81: string;
|
|
1441
1442
|
export { sort_81 as sort };
|
|
1443
|
+
let search_11: string[];
|
|
1444
|
+
export { search_11 as search };
|
|
1442
1445
|
}
|
|
1443
|
-
export namespace
|
|
1446
|
+
export namespace FLEET_APPLICATION_TARGET {
|
|
1444
1447
|
let name_92: string;
|
|
1445
1448
|
export { name_92 as name };
|
|
1446
1449
|
let labelKey_91: string;
|
|
1447
1450
|
export { labelKey_91 as labelKey };
|
|
1448
1451
|
let value_92: string;
|
|
1449
1452
|
export { value_92 as value };
|
|
1450
|
-
let
|
|
1451
|
-
export { formatter_47 as formatter };
|
|
1452
|
-
let sort_82: string;
|
|
1453
|
+
let sort_82: string[];
|
|
1453
1454
|
export { sort_82 as sort };
|
|
1454
|
-
let search_12: boolean;
|
|
1455
|
-
export { search_12 as search };
|
|
1456
1455
|
}
|
|
1457
|
-
export namespace
|
|
1456
|
+
export namespace FLEET_APPLICATION_CLUSTERS_READY {
|
|
1458
1457
|
let name_93: string;
|
|
1459
1458
|
export { name_93 as name };
|
|
1460
1459
|
let labelKey_92: string;
|
|
1461
1460
|
export { labelKey_92 as labelKey };
|
|
1462
1461
|
let value_93: string;
|
|
1463
1462
|
export { value_93 as value };
|
|
1464
|
-
let
|
|
1463
|
+
let formatter_47: string;
|
|
1464
|
+
export { formatter_47 as formatter };
|
|
1465
|
+
let sort_83: string;
|
|
1465
1466
|
export { sort_83 as sort };
|
|
1467
|
+
let search_12: boolean;
|
|
1468
|
+
export { search_12 as search };
|
|
1469
|
+
}
|
|
1470
|
+
export namespace FLEET_APPLICATION_RESOURCES_SUMMARY {
|
|
1471
|
+
let name_94: string;
|
|
1472
|
+
export { name_94 as name };
|
|
1473
|
+
let labelKey_93: string;
|
|
1474
|
+
export { labelKey_93 as labelKey };
|
|
1475
|
+
let value_94: string;
|
|
1476
|
+
export { value_94 as value };
|
|
1477
|
+
let sort_84: boolean;
|
|
1478
|
+
export { sort_84 as sort };
|
|
1466
1479
|
let search_13: boolean;
|
|
1467
1480
|
export { search_13 as search };
|
|
1468
1481
|
let formatter_48: string;
|
|
@@ -1473,14 +1486,14 @@ export namespace FLEET_APPLICATION_RESOURCES_SUMMARY {
|
|
|
1473
1486
|
export { width_23 as width };
|
|
1474
1487
|
}
|
|
1475
1488
|
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1476
|
-
let
|
|
1477
|
-
export {
|
|
1478
|
-
let
|
|
1479
|
-
export {
|
|
1480
|
-
let
|
|
1481
|
-
export {
|
|
1482
|
-
let
|
|
1483
|
-
export {
|
|
1489
|
+
let name_95: string;
|
|
1490
|
+
export { name_95 as name };
|
|
1491
|
+
let labelKey_94: string;
|
|
1492
|
+
export { labelKey_94 as labelKey };
|
|
1493
|
+
let value_95: string;
|
|
1494
|
+
export { value_95 as value };
|
|
1495
|
+
let sort_85: boolean;
|
|
1496
|
+
export { sort_85 as sort };
|
|
1484
1497
|
let search_14: boolean;
|
|
1485
1498
|
export { search_14 as search };
|
|
1486
1499
|
let formatter_49: string;
|
|
@@ -1491,14 +1504,14 @@ export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
|
1491
1504
|
export { width_24 as width };
|
|
1492
1505
|
}
|
|
1493
1506
|
export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
1494
|
-
let
|
|
1495
|
-
export {
|
|
1496
|
-
let
|
|
1497
|
-
export {
|
|
1498
|
-
let
|
|
1499
|
-
export {
|
|
1500
|
-
let
|
|
1501
|
-
export {
|
|
1507
|
+
let name_96: string;
|
|
1508
|
+
export { name_96 as name };
|
|
1509
|
+
let labelKey_95: string;
|
|
1510
|
+
export { labelKey_95 as labelKey };
|
|
1511
|
+
let tooltip_4: string;
|
|
1512
|
+
export { tooltip_4 as tooltip };
|
|
1513
|
+
let sort_86: string[];
|
|
1514
|
+
export { sort_86 as sort };
|
|
1502
1515
|
let width_25: number;
|
|
1503
1516
|
export { width_25 as width };
|
|
1504
1517
|
let _default_2: string;
|
|
@@ -1511,14 +1524,14 @@ export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
|
1511
1524
|
export { formatterOpts_8 as formatterOpts };
|
|
1512
1525
|
}
|
|
1513
1526
|
export namespace APP_SUMMARY {
|
|
1514
|
-
let
|
|
1515
|
-
export {
|
|
1516
|
-
let
|
|
1517
|
-
export {
|
|
1518
|
-
let
|
|
1519
|
-
export {
|
|
1520
|
-
let
|
|
1521
|
-
export {
|
|
1527
|
+
let name_97: string;
|
|
1528
|
+
export { name_97 as name };
|
|
1529
|
+
let labelKey_96: string;
|
|
1530
|
+
export { labelKey_96 as labelKey };
|
|
1531
|
+
let value_96: string;
|
|
1532
|
+
export { value_96 as value };
|
|
1533
|
+
let sort_87: boolean;
|
|
1534
|
+
export { sort_87 as sort };
|
|
1522
1535
|
let search_15: boolean;
|
|
1523
1536
|
export { search_15 as search };
|
|
1524
1537
|
let formatter_51: string;
|
|
@@ -1529,14 +1542,14 @@ export namespace APP_SUMMARY {
|
|
|
1529
1542
|
export { width_26 as width };
|
|
1530
1543
|
}
|
|
1531
1544
|
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1532
|
-
let
|
|
1533
|
-
export {
|
|
1534
|
-
let
|
|
1535
|
-
export {
|
|
1536
|
-
let
|
|
1537
|
-
export {
|
|
1538
|
-
let
|
|
1539
|
-
export {
|
|
1545
|
+
let name_98: string;
|
|
1546
|
+
export { name_98 as name };
|
|
1547
|
+
let labelKey_97: string;
|
|
1548
|
+
export { labelKey_97 as labelKey };
|
|
1549
|
+
let value_97: string;
|
|
1550
|
+
export { value_97 as value };
|
|
1551
|
+
let sort_88: string;
|
|
1552
|
+
export { sort_88 as sort };
|
|
1540
1553
|
let formatter_52: string;
|
|
1541
1554
|
export { formatter_52 as formatter };
|
|
1542
1555
|
export namespace formatterOpts_9 {
|
|
@@ -1549,14 +1562,14 @@ export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
|
1549
1562
|
export { formatterOpts_9 as formatterOpts };
|
|
1550
1563
|
}
|
|
1551
1564
|
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1552
|
-
let
|
|
1553
|
-
export {
|
|
1554
|
-
let
|
|
1555
|
-
export {
|
|
1556
|
-
let
|
|
1557
|
-
export {
|
|
1558
|
-
let
|
|
1559
|
-
export {
|
|
1565
|
+
let name_99: string;
|
|
1566
|
+
export { name_99 as name };
|
|
1567
|
+
let labelKey_98: string;
|
|
1568
|
+
export { labelKey_98 as labelKey };
|
|
1569
|
+
let value_98: string;
|
|
1570
|
+
export { value_98 as value };
|
|
1571
|
+
let sort_89: string;
|
|
1572
|
+
export { sort_89 as sort };
|
|
1560
1573
|
let search_16: string;
|
|
1561
1574
|
export { search_16 as search };
|
|
1562
1575
|
let formatter_53: string;
|
|
@@ -1571,16 +1584,6 @@ export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
|
1571
1584
|
export { formatterOpts_10 as formatterOpts };
|
|
1572
1585
|
}
|
|
1573
1586
|
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1574
|
-
let name_99: string;
|
|
1575
|
-
export { name_99 as name };
|
|
1576
|
-
let labelKey_98: string;
|
|
1577
|
-
export { labelKey_98 as labelKey };
|
|
1578
|
-
let value_98: string;
|
|
1579
|
-
export { value_98 as value };
|
|
1580
|
-
let sort_89: string;
|
|
1581
|
-
export { sort_89 as sort };
|
|
1582
|
-
}
|
|
1583
|
-
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1584
1587
|
let name_100: string;
|
|
1585
1588
|
export { name_100 as name };
|
|
1586
1589
|
let labelKey_99: string;
|
|
@@ -1589,10 +1592,8 @@ export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
|
1589
1592
|
export { value_99 as value };
|
|
1590
1593
|
let sort_90: string;
|
|
1591
1594
|
export { sort_90 as sort };
|
|
1592
|
-
let search_17: string;
|
|
1593
|
-
export { search_17 as search };
|
|
1594
1595
|
}
|
|
1595
|
-
export namespace
|
|
1596
|
+
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1596
1597
|
let name_101: string;
|
|
1597
1598
|
export { name_101 as name };
|
|
1598
1599
|
let labelKey_100: string;
|
|
@@ -1601,8 +1602,10 @@ export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
|
1601
1602
|
export { value_100 as value };
|
|
1602
1603
|
let sort_91: string;
|
|
1603
1604
|
export { sort_91 as sort };
|
|
1605
|
+
let search_17: string;
|
|
1606
|
+
export { search_17 as search };
|
|
1604
1607
|
}
|
|
1605
|
-
export namespace
|
|
1608
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1606
1609
|
let name_102: string;
|
|
1607
1610
|
export { name_102 as name };
|
|
1608
1611
|
let labelKey_101: string;
|
|
@@ -1611,6 +1614,16 @@ export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
|
1611
1614
|
export { value_101 as value };
|
|
1612
1615
|
let sort_92: string;
|
|
1613
1616
|
export { sort_92 as sort };
|
|
1617
|
+
}
|
|
1618
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1619
|
+
let name_103: string;
|
|
1620
|
+
export { name_103 as name };
|
|
1621
|
+
let labelKey_102: string;
|
|
1622
|
+
export { labelKey_102 as labelKey };
|
|
1623
|
+
let value_102: string;
|
|
1624
|
+
export { value_102 as value };
|
|
1625
|
+
let sort_93: string;
|
|
1626
|
+
export { sort_93 as sort };
|
|
1614
1627
|
let formatter_54: string;
|
|
1615
1628
|
export { formatter_54 as formatter };
|
|
1616
1629
|
export namespace formatterOpts_11 {
|
|
@@ -1623,14 +1636,14 @@ export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
|
1623
1636
|
export { formatterOpts_11 as formatterOpts };
|
|
1624
1637
|
}
|
|
1625
1638
|
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1626
|
-
let
|
|
1627
|
-
export {
|
|
1628
|
-
let
|
|
1629
|
-
export {
|
|
1630
|
-
let
|
|
1631
|
-
export {
|
|
1632
|
-
let
|
|
1633
|
-
export {
|
|
1639
|
+
let name_104: string;
|
|
1640
|
+
export { name_104 as name };
|
|
1641
|
+
let labelKey_103: string;
|
|
1642
|
+
export { labelKey_103 as labelKey };
|
|
1643
|
+
let value_103: string;
|
|
1644
|
+
export { value_103 as value };
|
|
1645
|
+
let sort_94: string;
|
|
1646
|
+
export { sort_94 as sort };
|
|
1634
1647
|
let formatter_55: string;
|
|
1635
1648
|
export { formatter_55 as formatter };
|
|
1636
1649
|
export namespace formatterOpts_12 {
|
|
@@ -1639,26 +1652,26 @@ export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
|
1639
1652
|
export { formatterOpts_12 as formatterOpts };
|
|
1640
1653
|
}
|
|
1641
1654
|
export namespace RECEIVER_PROVIDERS {
|
|
1642
|
-
let
|
|
1643
|
-
export {
|
|
1655
|
+
let name_105: string;
|
|
1656
|
+
export { name_105 as name };
|
|
1644
1657
|
let label_1: string;
|
|
1645
1658
|
export { label_1 as label };
|
|
1646
|
-
let
|
|
1647
|
-
export {
|
|
1648
|
-
let
|
|
1649
|
-
export {
|
|
1659
|
+
let value_104: string;
|
|
1660
|
+
export { value_104 as value };
|
|
1661
|
+
let sort_95: string;
|
|
1662
|
+
export { sort_95 as sort };
|
|
1650
1663
|
let formatter_56: string;
|
|
1651
1664
|
export { formatter_56 as formatter };
|
|
1652
1665
|
}
|
|
1653
1666
|
export namespace CONFIGURED_RECEIVER {
|
|
1654
|
-
let
|
|
1655
|
-
export {
|
|
1667
|
+
let name_106: string;
|
|
1668
|
+
export { name_106 as name };
|
|
1656
1669
|
let label_2: string;
|
|
1657
|
-
export { label_2 as label };
|
|
1658
|
-
let
|
|
1659
|
-
export {
|
|
1660
|
-
let
|
|
1661
|
-
export {
|
|
1670
|
+
export { label_2 as label };
|
|
1671
|
+
let value_105: string;
|
|
1672
|
+
export { value_105 as value };
|
|
1673
|
+
let sort_96: string;
|
|
1674
|
+
export { sort_96 as sort };
|
|
1662
1675
|
let formatter_57: string;
|
|
1663
1676
|
export { formatter_57 as formatter };
|
|
1664
1677
|
export namespace formatterOpts_13 {
|
|
@@ -1671,14 +1684,14 @@ export namespace CONFIGURED_RECEIVER {
|
|
|
1671
1684
|
export { formatterOpts_13 as formatterOpts };
|
|
1672
1685
|
}
|
|
1673
1686
|
export namespace GROUP_NAME {
|
|
1674
|
-
let
|
|
1675
|
-
export {
|
|
1676
|
-
let
|
|
1677
|
-
export {
|
|
1678
|
-
let
|
|
1679
|
-
export {
|
|
1680
|
-
let
|
|
1681
|
-
export {
|
|
1687
|
+
let name_107: string;
|
|
1688
|
+
export { name_107 as name };
|
|
1689
|
+
let labelKey_104: string;
|
|
1690
|
+
export { labelKey_104 as labelKey };
|
|
1691
|
+
let value_106: string;
|
|
1692
|
+
export { value_106 as value };
|
|
1693
|
+
let sort_97: string[];
|
|
1694
|
+
export { sort_97 as sort };
|
|
1682
1695
|
let search_18: string[];
|
|
1683
1696
|
export { search_18 as search };
|
|
1684
1697
|
let formatter_58: string;
|
|
@@ -1687,26 +1700,16 @@ export namespace GROUP_NAME {
|
|
|
1687
1700
|
export { width_27 as width };
|
|
1688
1701
|
}
|
|
1689
1702
|
export namespace GROUP_ROLE_NAME {
|
|
1690
|
-
let name_107: string;
|
|
1691
|
-
export { name_107 as name };
|
|
1692
|
-
let labelKey_104: string;
|
|
1693
|
-
export { labelKey_104 as labelKey };
|
|
1694
|
-
let value_106: string;
|
|
1695
|
-
export { value_106 as value };
|
|
1696
|
-
let formatter_59: string;
|
|
1697
|
-
export { formatter_59 as formatter };
|
|
1698
|
-
}
|
|
1699
|
-
export namespace HPA_REFERENCE {
|
|
1700
1703
|
let name_108: string;
|
|
1701
1704
|
export { name_108 as name };
|
|
1702
1705
|
let labelKey_105: string;
|
|
1703
1706
|
export { labelKey_105 as labelKey };
|
|
1704
1707
|
let value_107: string;
|
|
1705
1708
|
export { value_107 as value };
|
|
1706
|
-
let
|
|
1707
|
-
export {
|
|
1709
|
+
let formatter_59: string;
|
|
1710
|
+
export { formatter_59 as formatter };
|
|
1708
1711
|
}
|
|
1709
|
-
export namespace
|
|
1712
|
+
export namespace HPA_REFERENCE {
|
|
1710
1713
|
let name_109: string;
|
|
1711
1714
|
export { name_109 as name };
|
|
1712
1715
|
let labelKey_106: string;
|
|
@@ -1716,7 +1719,7 @@ export namespace MIN_REPLICA {
|
|
|
1716
1719
|
let sort_98: string;
|
|
1717
1720
|
export { sort_98 as sort };
|
|
1718
1721
|
}
|
|
1719
|
-
export namespace
|
|
1722
|
+
export namespace MIN_REPLICA {
|
|
1720
1723
|
let name_110: string;
|
|
1721
1724
|
export { name_110 as name };
|
|
1722
1725
|
let labelKey_107: string;
|
|
@@ -1726,7 +1729,7 @@ export namespace MAX_REPLICA {
|
|
|
1726
1729
|
let sort_99: string;
|
|
1727
1730
|
export { sort_99 as sort };
|
|
1728
1731
|
}
|
|
1729
|
-
export namespace
|
|
1732
|
+
export namespace MAX_REPLICA {
|
|
1730
1733
|
let name_111: string;
|
|
1731
1734
|
export { name_111 as name };
|
|
1732
1735
|
let labelKey_108: string;
|
|
@@ -1736,73 +1739,83 @@ export namespace CURRENT_REPLICA {
|
|
|
1736
1739
|
let sort_100: string;
|
|
1737
1740
|
export { sort_100 as sort };
|
|
1738
1741
|
}
|
|
1739
|
-
export namespace
|
|
1742
|
+
export namespace CURRENT_REPLICA {
|
|
1743
|
+
let name_112: string;
|
|
1744
|
+
export { name_112 as name };
|
|
1745
|
+
let labelKey_109: string;
|
|
1746
|
+
export { labelKey_109 as labelKey };
|
|
1740
1747
|
let value_111: string;
|
|
1741
1748
|
export { value_111 as value };
|
|
1749
|
+
let sort_101: string;
|
|
1750
|
+
export { sort_101 as sort };
|
|
1751
|
+
}
|
|
1752
|
+
export namespace EXPIRY_STATE {
|
|
1753
|
+
let value_112: string;
|
|
1754
|
+
export { value_112 as value };
|
|
1742
1755
|
let formatter_60: string;
|
|
1743
1756
|
export { formatter_60 as formatter };
|
|
1744
1757
|
}
|
|
1745
1758
|
export namespace ACCESS_KEY {
|
|
1746
|
-
let
|
|
1747
|
-
export {
|
|
1748
|
-
let
|
|
1749
|
-
export {
|
|
1759
|
+
let name_113: string;
|
|
1760
|
+
export { name_113 as name };
|
|
1761
|
+
let labelKey_110: string;
|
|
1762
|
+
export { labelKey_110 as labelKey };
|
|
1750
1763
|
let align_16: string;
|
|
1751
1764
|
export { align_16 as align };
|
|
1752
|
-
let
|
|
1753
|
-
export {
|
|
1765
|
+
let sort_102: string[];
|
|
1766
|
+
export { sort_102 as sort };
|
|
1754
1767
|
let width_28: number;
|
|
1755
1768
|
export { width_28 as width };
|
|
1756
1769
|
}
|
|
1757
1770
|
export namespace SCOPE {
|
|
1758
|
-
let
|
|
1759
|
-
export {
|
|
1760
|
-
let
|
|
1761
|
-
export {
|
|
1762
|
-
let
|
|
1763
|
-
export {
|
|
1771
|
+
let name_114: string;
|
|
1772
|
+
export { name_114 as name };
|
|
1773
|
+
let value_113: string;
|
|
1774
|
+
export { value_113 as value };
|
|
1775
|
+
let labelKey_111: string;
|
|
1776
|
+
export { labelKey_111 as labelKey };
|
|
1764
1777
|
let dashIfEmpty_6: boolean;
|
|
1765
1778
|
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1766
1779
|
let align_17: string;
|
|
1767
1780
|
export { align_17 as align };
|
|
1768
|
-
let
|
|
1769
|
-
export {
|
|
1781
|
+
let sort_103: string[];
|
|
1782
|
+
export { sort_103 as sort };
|
|
1770
1783
|
let width_29: number;
|
|
1771
1784
|
export { width_29 as width };
|
|
1772
1785
|
}
|
|
1773
1786
|
export namespace SCOPE_NORMAN {
|
|
1774
|
-
let value_113: string;
|
|
1775
|
-
export { value_113 as value };
|
|
1776
|
-
let sort_103: string[];
|
|
1777
|
-
export { sort_103 as sort };
|
|
1778
|
-
}
|
|
1779
|
-
export namespace EXPIRES {
|
|
1780
|
-
let name_114: string;
|
|
1781
|
-
export { name_114 as name };
|
|
1782
1787
|
let value_114: string;
|
|
1783
1788
|
export { value_114 as value };
|
|
1784
|
-
let labelKey_111: string;
|
|
1785
|
-
export { labelKey_111 as labelKey };
|
|
1786
|
-
let align_18: string;
|
|
1787
|
-
export { align_18 as align };
|
|
1788
1789
|
let sort_104: string[];
|
|
1789
1790
|
export { sort_104 as sort };
|
|
1790
|
-
let width_30: number;
|
|
1791
|
-
export { width_30 as width };
|
|
1792
|
-
let formatter_61: string;
|
|
1793
|
-
export { formatter_61 as formatter };
|
|
1794
1791
|
}
|
|
1795
|
-
export namespace
|
|
1792
|
+
export namespace EXPIRES {
|
|
1796
1793
|
let name_115: string;
|
|
1797
1794
|
export { name_115 as name };
|
|
1798
1795
|
let value_115: string;
|
|
1799
1796
|
export { value_115 as value };
|
|
1800
1797
|
let labelKey_112: string;
|
|
1801
1798
|
export { labelKey_112 as labelKey };
|
|
1802
|
-
let
|
|
1803
|
-
export {
|
|
1799
|
+
let align_18: string;
|
|
1800
|
+
export { align_18 as align };
|
|
1804
1801
|
let sort_105: string[];
|
|
1805
1802
|
export { sort_105 as sort };
|
|
1803
|
+
let width_30: number;
|
|
1804
|
+
export { width_30 as width };
|
|
1805
|
+
let formatter_61: string;
|
|
1806
|
+
export { formatter_61 as formatter };
|
|
1807
|
+
}
|
|
1808
|
+
export namespace LAST_USED {
|
|
1809
|
+
let name_116: string;
|
|
1810
|
+
export { name_116 as name };
|
|
1811
|
+
let value_116: string;
|
|
1812
|
+
export { value_116 as value };
|
|
1813
|
+
let labelKey_113: string;
|
|
1814
|
+
export { labelKey_113 as labelKey };
|
|
1815
|
+
let align_19: string;
|
|
1816
|
+
export { align_19 as align };
|
|
1817
|
+
let sort_106: string[];
|
|
1818
|
+
export { sort_106 as sort };
|
|
1806
1819
|
let width_31: number;
|
|
1807
1820
|
export { width_31 as width };
|
|
1808
1821
|
let formatter_62: string;
|
|
@@ -1813,14 +1826,14 @@ export namespace LAST_USED {
|
|
|
1813
1826
|
export { formatterOpts_14 as formatterOpts };
|
|
1814
1827
|
}
|
|
1815
1828
|
export namespace RESTART {
|
|
1816
|
-
let
|
|
1817
|
-
export {
|
|
1818
|
-
let
|
|
1819
|
-
export {
|
|
1820
|
-
let
|
|
1821
|
-
export {
|
|
1822
|
-
let
|
|
1823
|
-
export {
|
|
1829
|
+
let name_117: string;
|
|
1830
|
+
export { name_117 as name };
|
|
1831
|
+
let labelKey_114: string;
|
|
1832
|
+
export { labelKey_114 as labelKey };
|
|
1833
|
+
let value_117: string;
|
|
1834
|
+
export { value_117 as value };
|
|
1835
|
+
let sort_107: string[];
|
|
1836
|
+
export { sort_107 as sort };
|
|
1824
1837
|
let formatter_63: string;
|
|
1825
1838
|
export { formatter_63 as formatter };
|
|
1826
1839
|
let width_32: number;
|
|
@@ -1829,24 +1842,24 @@ export namespace RESTART {
|
|
|
1829
1842
|
export { align_20 as align };
|
|
1830
1843
|
}
|
|
1831
1844
|
export namespace ROLE {
|
|
1832
|
-
let name_117: string;
|
|
1833
|
-
export { name_117 as name };
|
|
1834
|
-
let value_117: string;
|
|
1835
|
-
export { value_117 as value };
|
|
1836
|
-
let labelKey_114: string;
|
|
1837
|
-
export { labelKey_114 as labelKey };
|
|
1838
|
-
}
|
|
1839
|
-
export namespace FEATURE_DESCRIPTION {
|
|
1840
1845
|
let name_118: string;
|
|
1841
1846
|
export { name_118 as name };
|
|
1842
|
-
let labelKey_115: string;
|
|
1843
|
-
export { labelKey_115 as labelKey };
|
|
1844
1847
|
let value_118: string;
|
|
1845
1848
|
export { value_118 as value };
|
|
1849
|
+
let labelKey_115: string;
|
|
1850
|
+
export { labelKey_115 as labelKey };
|
|
1851
|
+
}
|
|
1852
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1853
|
+
let name_119: string;
|
|
1854
|
+
export { name_119 as name };
|
|
1855
|
+
let labelKey_116: string;
|
|
1856
|
+
export { labelKey_116 as labelKey };
|
|
1857
|
+
let value_119: string;
|
|
1858
|
+
export { value_119 as value };
|
|
1846
1859
|
let align_21: string;
|
|
1847
1860
|
export { align_21 as align };
|
|
1848
|
-
let
|
|
1849
|
-
export {
|
|
1861
|
+
let sort_108: string[];
|
|
1862
|
+
export { sort_108 as sort };
|
|
1850
1863
|
let formatter_64: string;
|
|
1851
1864
|
export { formatter_64 as formatter };
|
|
1852
1865
|
export namespace formatterOpts_15 {
|
|
@@ -1855,14 +1868,14 @@ export namespace FEATURE_DESCRIPTION {
|
|
|
1855
1868
|
export { formatterOpts_15 as formatterOpts };
|
|
1856
1869
|
}
|
|
1857
1870
|
export namespace STATE_NORMAN {
|
|
1858
|
-
let
|
|
1859
|
-
export {
|
|
1860
|
-
let
|
|
1861
|
-
export {
|
|
1862
|
-
let
|
|
1863
|
-
export {
|
|
1864
|
-
let
|
|
1865
|
-
export {
|
|
1871
|
+
let name_120: string;
|
|
1872
|
+
export { name_120 as name };
|
|
1873
|
+
let labelKey_117: string;
|
|
1874
|
+
export { labelKey_117 as labelKey };
|
|
1875
|
+
let sort_109: string[];
|
|
1876
|
+
export { sort_109 as sort };
|
|
1877
|
+
let value_120: string;
|
|
1878
|
+
export { value_120 as value };
|
|
1866
1879
|
let width_33: number;
|
|
1867
1880
|
export { width_33 as width };
|
|
1868
1881
|
let _default_3: string;
|
|
@@ -1871,18 +1884,6 @@ export namespace STATE_NORMAN {
|
|
|
1871
1884
|
export { formatter_65 as formatter };
|
|
1872
1885
|
}
|
|
1873
1886
|
export namespace KUBE_NODE_OS {
|
|
1874
|
-
let name_120: string;
|
|
1875
|
-
export { name_120 as name };
|
|
1876
|
-
let labelKey_117: string;
|
|
1877
|
-
export { labelKey_117 as labelKey };
|
|
1878
|
-
let value_120: string;
|
|
1879
|
-
export { value_120 as value };
|
|
1880
|
-
let sort_109: string[];
|
|
1881
|
-
export { sort_109 as sort };
|
|
1882
|
-
let formatter_66: string;
|
|
1883
|
-
export { formatter_66 as formatter };
|
|
1884
|
-
}
|
|
1885
|
-
export namespace MACHINE_NODE_OS {
|
|
1886
1887
|
let name_121: string;
|
|
1887
1888
|
export { name_121 as name };
|
|
1888
1889
|
let labelKey_118: string;
|
|
@@ -1891,12 +1892,10 @@ export namespace MACHINE_NODE_OS {
|
|
|
1891
1892
|
export { value_121 as value };
|
|
1892
1893
|
let sort_110: string[];
|
|
1893
1894
|
export { sort_110 as sort };
|
|
1894
|
-
let
|
|
1895
|
-
export {
|
|
1896
|
-
let dashIfEmpty_7: boolean;
|
|
1897
|
-
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1895
|
+
let formatter_66: string;
|
|
1896
|
+
export { formatter_66 as formatter };
|
|
1898
1897
|
}
|
|
1899
|
-
export namespace
|
|
1898
|
+
export namespace MACHINE_NODE_OS {
|
|
1900
1899
|
let name_122: string;
|
|
1901
1900
|
export { name_122 as name };
|
|
1902
1901
|
let labelKey_119: string;
|
|
@@ -1905,49 +1904,63 @@ export namespace MANAGEMENT_NODE_OS {
|
|
|
1905
1904
|
export { value_122 as value };
|
|
1906
1905
|
let sort_111: string[];
|
|
1907
1906
|
export { sort_111 as sort };
|
|
1908
|
-
let
|
|
1909
|
-
export {
|
|
1910
|
-
let
|
|
1911
|
-
export {
|
|
1907
|
+
let formatter_67: string;
|
|
1908
|
+
export { formatter_67 as formatter };
|
|
1909
|
+
let dashIfEmpty_7: boolean;
|
|
1910
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1912
1911
|
}
|
|
1913
|
-
export namespace
|
|
1912
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1914
1913
|
let name_123: string;
|
|
1915
1914
|
export { name_123 as name };
|
|
1916
1915
|
let labelKey_120: string;
|
|
1917
1916
|
export { labelKey_120 as labelKey };
|
|
1918
1917
|
let value_123: string;
|
|
1919
1918
|
export { value_123 as value };
|
|
1920
|
-
let formatter_69: string;
|
|
1921
|
-
export { formatter_69 as formatter };
|
|
1922
|
-
export namespace formatterOpts_16 {
|
|
1923
|
-
let addSuffix_3: boolean;
|
|
1924
|
-
export { addSuffix_3 as addSuffix };
|
|
1925
|
-
}
|
|
1926
|
-
export { formatterOpts_16 as formatterOpts };
|
|
1927
1919
|
let sort_112: string[];
|
|
1928
1920
|
export { sort_112 as sort };
|
|
1921
|
+
let formatter_68: string;
|
|
1922
|
+
export { formatter_68 as formatter };
|
|
1923
|
+
let dashIfEmpty_8: boolean;
|
|
1924
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1929
1925
|
}
|
|
1930
|
-
export namespace
|
|
1926
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1931
1927
|
let name_124: string;
|
|
1932
1928
|
export { name_124 as name };
|
|
1933
1929
|
let labelKey_121: string;
|
|
1934
1930
|
export { labelKey_121 as labelKey };
|
|
1935
1931
|
let value_124: string;
|
|
1936
1932
|
export { value_124 as value };
|
|
1933
|
+
let formatter_69: string;
|
|
1934
|
+
export { formatter_69 as formatter };
|
|
1935
|
+
export namespace formatterOpts_16 {
|
|
1936
|
+
let addSuffix_3: boolean;
|
|
1937
|
+
export { addSuffix_3 as addSuffix };
|
|
1938
|
+
}
|
|
1939
|
+
export { formatterOpts_16 as formatterOpts };
|
|
1937
1940
|
let sort_113: string[];
|
|
1938
1941
|
export { sort_113 as sort };
|
|
1939
1942
|
}
|
|
1940
|
-
export namespace
|
|
1943
|
+
export namespace FLEET_REPO_TARGET {
|
|
1941
1944
|
let name_125: string;
|
|
1942
1945
|
export { name_125 as name };
|
|
1943
1946
|
let labelKey_122: string;
|
|
1944
1947
|
export { labelKey_122 as labelKey };
|
|
1945
1948
|
let value_125: string;
|
|
1946
1949
|
export { value_125 as value };
|
|
1950
|
+
let sort_114: string[];
|
|
1951
|
+
export { sort_114 as sort };
|
|
1952
|
+
}
|
|
1953
|
+
export namespace FLEET_REPO {
|
|
1954
|
+
let name_126: string;
|
|
1955
|
+
export { name_126 as name };
|
|
1956
|
+
let labelKey_123: string;
|
|
1957
|
+
export { labelKey_123 as labelKey };
|
|
1958
|
+
let value_126: string;
|
|
1959
|
+
export { value_126 as value };
|
|
1947
1960
|
let formatter_70: string;
|
|
1948
1961
|
export { formatter_70 as formatter };
|
|
1949
|
-
let
|
|
1950
|
-
export {
|
|
1962
|
+
let sort_115: string;
|
|
1963
|
+
export { sort_115 as sort };
|
|
1951
1964
|
let search_19: string[];
|
|
1952
1965
|
export { search_19 as search };
|
|
1953
1966
|
}
|
|
@@ -1982,10 +1995,10 @@ export const UI_PLUGIN_CATALOG: ({
|
|
|
1982
1995
|
formatterOpts?: undefined;
|
|
1983
1996
|
})[];
|
|
1984
1997
|
export namespace PROJECT {
|
|
1985
|
-
let
|
|
1986
|
-
export {
|
|
1987
|
-
let
|
|
1988
|
-
export {
|
|
1998
|
+
let name_127: string;
|
|
1999
|
+
export { name_127 as name };
|
|
2000
|
+
let labelKey_124: string;
|
|
2001
|
+
export { labelKey_124 as labelKey };
|
|
1989
2002
|
}
|
|
1990
2003
|
}
|
|
1991
2004
|
|
|
@@ -2178,6 +2191,9 @@ export namespace MANAGEMENT {
|
|
|
2178
2191
|
export let CLUSTER_PROXY_CONFIG: string;
|
|
2179
2192
|
export let OIDC_CLIENT: string;
|
|
2180
2193
|
}
|
|
2194
|
+
export namespace EXT {
|
|
2195
|
+
let USER_ACTIVITY: string;
|
|
2196
|
+
}
|
|
2181
2197
|
export namespace CAPI {
|
|
2182
2198
|
let CAPI_CLUSTER: string;
|
|
2183
2199
|
let MACHINE_DEPLOYMENT: string;
|
|
@@ -3659,6 +3675,7 @@ export const STEVE_CACHE: any;
|
|
|
3659
3675
|
export const UIEXTENSION: any;
|
|
3660
3676
|
export const PROVISIONING_PRE_BOOTSTRAP: any;
|
|
3661
3677
|
export const SCHEDULING_CUSTOMIZATION: any;
|
|
3678
|
+
export const SCC: any;
|
|
3662
3679
|
export namespace getters {
|
|
3663
3680
|
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
3664
3681
|
}
|
|
@@ -3742,6 +3759,9 @@ export const _RKE2: "rke2";
|
|
|
3742
3759
|
export const PROVISIONER: any;
|
|
3743
3760
|
export const MENU_MAX_CLUSTERS: 10;
|
|
3744
3761
|
export const SCALE_POOL_PROMPT: any;
|
|
3762
|
+
export const READ_NEW_RELEASE: any;
|
|
3763
|
+
export const READ_SUPPORT_NOTICE: any;
|
|
3764
|
+
export const READ_UPCOMING_SUPPORT_NOTICE: any;
|
|
3745
3765
|
export function state(): {
|
|
3746
3766
|
cookiesLoaded: boolean;
|
|
3747
3767
|
data: {};
|
|
@@ -3968,6 +3988,57 @@ export function initSchedulingCustomization(value: any, features: any, store: an
|
|
|
3968
3988
|
schedulingCustomizationOriginallyEnabled: boolean;
|
|
3969
3989
|
errors: any[];
|
|
3970
3990
|
}>;
|
|
3991
|
+
/**
|
|
3992
|
+
* Recursively filters a `diffs` object to only include differences that are relevant to the user.
|
|
3993
|
+
* A difference is considered relevant if the user has provided a custom value for that specific field.
|
|
3994
|
+
*
|
|
3995
|
+
* @param {object} diffs - The object representing the differences between two chart versions' default values.
|
|
3996
|
+
* @param {object} userVals - The object containing the user's custom values.
|
|
3997
|
+
* @returns {object} A new object containing only the relevant differences.
|
|
3998
|
+
*/
|
|
3999
|
+
export function _addonConfigPreserveFilter(diffs: object, userVals: object): object;
|
|
4000
|
+
/**
|
|
4001
|
+
* @typedef {object} AddonPreserveContext
|
|
4002
|
+
* @property {object} addonConfigDiffs - An object that stores the diffs.
|
|
4003
|
+
* @property {string[]} addonNames - An array of addon names to check.
|
|
4004
|
+
* @property {object} $store - The Vuex store.
|
|
4005
|
+
* @property {object} userChartValues - The user's customized chart values.
|
|
4006
|
+
*
|
|
4007
|
+
* When the Kubernetes version is changed, this method is called to handle the add-on configurations
|
|
4008
|
+
* for all enabled addons. It checks if an addon's version has changed and, if so, determines if the
|
|
4009
|
+
* user's custom configurations should be preserved for the new version.
|
|
4010
|
+
*
|
|
4011
|
+
* The goal is to avoid showing a confirmation dialog for changes in default values that the user has not customized.
|
|
4012
|
+
*
|
|
4013
|
+
* @param {AddonPreserveContext} context The context object from the component.
|
|
4014
|
+
* @param {object} oldCharts The charts object from the K8s release object being changed from.
|
|
4015
|
+
* @param {object} newCharts The charts object from the K8s release object being changed to.
|
|
4016
|
+
*/
|
|
4017
|
+
export function addonConfigPreserve(context: AddonPreserveContext, oldCharts: object, newCharts: object): Promise<void>;
|
|
4018
|
+
export type AddonPreserveContext = {
|
|
4019
|
+
/**
|
|
4020
|
+
* - An object that stores the diffs.
|
|
4021
|
+
*/
|
|
4022
|
+
addonConfigDiffs: object;
|
|
4023
|
+
/**
|
|
4024
|
+
* - An array of addon names to check.
|
|
4025
|
+
*/
|
|
4026
|
+
addonNames: string[];
|
|
4027
|
+
/**
|
|
4028
|
+
* - The Vuex store.
|
|
4029
|
+
*/
|
|
4030
|
+
$store: object;
|
|
4031
|
+
/**
|
|
4032
|
+
* - The user's customized chart values.
|
|
4033
|
+
*
|
|
4034
|
+
* When the Kubernetes version is changed, this method is called to handle the add-on configurations
|
|
4035
|
+
* for all enabled addons. It checks if an addon's version has changed and, if so, determines if the
|
|
4036
|
+
* user's custom configurations should be preserved for the new version.
|
|
4037
|
+
*
|
|
4038
|
+
* The goal is to avoid showing a confirmation dialog for changes in default values that the user has not customized.
|
|
4039
|
+
*/
|
|
4040
|
+
userChartValues: object;
|
|
4041
|
+
};
|
|
3971
4042
|
}
|
|
3972
4043
|
|
|
3973
4044
|
// @shell/utils/color
|
|
@@ -4837,6 +4908,11 @@ declare module '@shell/utils/sort' {
|
|
|
4837
4908
|
export function typeOf(item: any): any;
|
|
4838
4909
|
export function spaceship(a: any, b: any): number;
|
|
4839
4910
|
export function compare(a: any, b: any): any;
|
|
4911
|
+
/**
|
|
4912
|
+
* Should the logic of this sort field be flipped?
|
|
4913
|
+
*
|
|
4914
|
+
* For instance show descending but sort by ascending
|
|
4915
|
+
*/
|
|
4840
4916
|
export function parseField(str: any): {
|
|
4841
4917
|
field: any;
|
|
4842
4918
|
reverse: boolean;
|