@rancher/shell 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/images/providers/ovhcloudmks.svg +122 -0
- package/assets/images/providers/ovhcloudpubliccloud.svg +122 -0
- package/assets/styles/global/_layout.scss +99 -0
- package/assets/translations/en-us.yaml +30 -5
- package/assets/translations/zh-hans.yaml +1 -1
- package/babel.config.js +7 -1
- package/chart/monitoring/alerting/index.vue +7 -21
- package/chart/monitoring/grafana/index.vue +55 -0
- package/chart/monitoring/index.vue +51 -17
- package/chart/monitoring/prometheus/index.vue +37 -43
- package/chart/rancher-backup/index.vue +2 -1
- package/cloud-credential/azure.vue +4 -17
- package/components/AsyncButton.vue +17 -5
- package/components/Certificates.vue +164 -0
- package/components/CodeMirror.vue +19 -21
- package/components/CruResource.vue +1 -0
- package/components/DraggableZone.vue +2 -2
- package/components/EtcdInfoBanner.vue +1 -1
- package/components/ExplorerProjectsNamespaces.vue +25 -1
- package/components/IconOrSvg.vue +1 -1
- package/components/LandingPagePreference.vue +1 -4
- package/components/PodSecurityAdmission.vue +2 -2
- package/components/Questions/index.vue +1 -1
- package/components/ResourceDetail/Masthead.vue +16 -3
- package/components/ResourceTable.vue +14 -2
- package/components/ResourceYaml.vue +5 -0
- package/components/SideNav.vue +1 -1
- package/components/SingleClusterInfo.vue +1 -4
- package/components/Tabbed/index.vue +12 -0
- package/components/fleet/FleetRepos.vue +62 -27
- package/components/fleet/FleetResources.vue +6 -1
- package/components/form/ArrayListSelect.vue +10 -0
- package/components/form/Error.vue +3 -3
- package/components/form/Footer.vue +2 -2
- package/components/form/GitPicker.vue +83 -38
- package/components/form/KeyValue.vue +4 -0
- package/components/form/LabeledSelect.vue +4 -0
- package/components/formatter/Checked.vue +11 -3
- package/components/formatter/FleetClusterSummaryGraph.vue +27 -0
- package/components/formatter/FleetSummaryGraph.vue +23 -11
- package/components/formatter/LiveDuration.vue +1 -1
- package/components/formatter/PercentageBar.vue +1 -1
- package/components/formatter/__tests__/Checked.test.ts +19 -0
- package/components/nav/Group.vue +2 -2
- package/components/nav/Header.vue +0 -1
- package/components/nav/TopLevelMenu.vue +36 -6
- package/components/nav/Type.vue +1 -3
- package/components/nav/WindowManager/ContainerLogs.vue +101 -3
- package/components/nav/WindowManager/ContainerShell.vue +6 -1
- package/components/nav/WindowManager/__tests__/ContainerLogs.test.ts +186 -0
- package/components/nav/WindowManager/index.vue +11 -10
- package/components/nav/__tests__/TopLevelMenu.test.ts +33 -0
- package/components/nav/__tests__/Type.test.ts +1 -1
- package/components/nuxt/nuxt-child.js +14 -78
- package/components/nuxt/nuxt.js +1 -1
- package/{layouts → components/templates}/blank.vue +1 -1
- package/{layouts → components/templates}/default.vue +8 -98
- package/{layouts → components/templates}/error.vue +10 -19
- package/{layouts → components/templates}/home.vue +4 -1
- package/{layouts → components/templates}/plain.vue +4 -1
- package/{layouts → components/templates}/standalone.vue +1 -1
- package/{layouts → components/templates}/unauthenticated.vue +1 -1
- package/composables/useCompactInput.test.ts +36 -0
- package/composables/useCompactInput.ts +20 -0
- package/composables/useLabeledFormElement.test.ts +135 -0
- package/composables/useLabeledFormElement.ts +138 -0
- package/config/harvester-manager-types.js +2 -0
- package/config/private-label.js +22 -0
- package/config/product/explorer.js +3 -0
- package/config/product/fleet.js +6 -1
- package/config/product/manager.js +8 -2
- package/config/query-params.js +1 -0
- package/config/router.js +385 -364
- package/config/settings.ts +1 -0
- package/config/store.js +1 -1
- package/config/system-namespaces.js +3 -0
- package/config/table-headers.js +47 -0
- package/core/plugin-routes.ts +56 -114
- package/core/plugin.ts +16 -10
- package/core/plugins-loader.js +7 -9
- package/core/plugins.js +0 -3
- package/creators/app/files/.gitlab-ci.yml +1 -1
- package/detail/fleet.cattle.io.cluster.vue +11 -1
- package/detail/provisioning.cattle.io.cluster.vue +4 -3
- package/dialog/ScaleMachineDownDialog.vue +34 -17
- package/edit/__tests__/service.test.ts +89 -0
- package/edit/auth/googleoauth.vue +1 -5
- package/edit/cloudcredential.vue +2 -0
- package/edit/configmap.vue +2 -1
- package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +2 -2
- package/edit/networking.k8s.io.networkpolicy/__tests__/PolicyRuleTarget.spec.ts +1 -1
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +15 -7
- package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +112 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +473 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/{CustomCommand.tests.ts → CustomCommand.test.ts} +4 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/DrainOptions.test.ts +1 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +73 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +7 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +386 -0
- package/edit/provisioning.cattle.io.cluster/import.vue +2 -2
- package/edit/provisioning.cattle.io.cluster/index.vue +92 -36
- package/edit/provisioning.cattle.io.cluster/rke2.vue +171 -583
- package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +137 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +157 -0
- package/edit/provisioning.cattle.io.cluster/{Basics.vue → tabs/Basics.vue} +94 -19
- package/edit/provisioning.cattle.io.cluster/{MachinePool.vue → tabs/MachinePool.vue} +1 -0
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +135 -0
- package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +189 -0
- package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +144 -0
- package/edit/provisioning.cattle.io.cluster/tabs/upgrade/index.vue +76 -0
- package/edit/service.vue +12 -0
- package/edit/workload/mixins/workload.js +1 -1
- package/initialize/App.js +25 -71
- package/initialize/client.js +21 -162
- package/initialize/index.js +27 -123
- package/list/management.cattle.io.feature.vue +1 -7
- package/list/node.vue +1 -0
- package/machine-config/__tests__/vmwarevsphere.test.ts +100 -21
- package/machine-config/vmwarevsphere.vue +73 -51
- package/middleware/authenticated.js +10 -17
- package/mixins/auth-config.js +2 -7
- package/mixins/brand.js +29 -41
- package/mixins/create-edit-view/index.js +2 -2
- package/mixins/labeled-form-element.ts +6 -1
- package/models/__tests__/management.cattle.io.node.ts +85 -0
- package/models/__tests__/management.cattle.io.nodepool.ts +83 -0
- package/models/__tests__/namespace.test.ts +49 -9
- package/models/__tests__/workload.test.ts +91 -0
- package/models/cluster/node.js +4 -4
- package/models/cluster.x-k8s.io.machinedeployment.js +14 -0
- package/models/fleet.cattle.io.cluster.js +4 -0
- package/models/fleet.cattle.io.gitrepo.js +56 -13
- package/models/management.cattle.io.kontainerdriver.js +1 -1
- package/models/management.cattle.io.node.js +18 -14
- package/models/management.cattle.io.nodepool.js +17 -0
- package/models/namespace.js +1 -1
- package/models/pod.js +20 -0
- package/models/provisioning.cattle.io.cluster.js +20 -3
- package/models/secret.js +117 -18
- package/models/workload.js +16 -0
- package/models/workload.service.js +18 -0
- package/package.json +10 -9
- package/pages/about.vue +0 -1
- package/pages/account/create-key.vue +0 -1
- package/pages/account/index.vue +0 -1
- package/pages/auth/login.vue +0 -1
- package/pages/auth/logout.vue +0 -2
- package/pages/auth/setup.vue +0 -4
- package/pages/auth/verify.vue +14 -8
- package/pages/c/_cluster/apps/charts/install.vue +4 -4
- package/pages/c/_cluster/apps/index.vue +0 -2
- package/pages/c/_cluster/auth/index.vue +0 -2
- package/pages/c/_cluster/ecm/index.vue +0 -2
- package/pages/c/_cluster/explorer/index.vue +28 -2
- package/pages/c/_cluster/fleet/index.vue +1 -1
- package/pages/c/_cluster/index.vue +0 -2
- package/pages/c/_cluster/settings/banners.vue +0 -2
- package/pages/c/_cluster/settings/brand.vue +0 -2
- package/pages/c/_cluster/settings/index.vue +0 -2
- package/pages/c/_cluster/settings/links.vue +0 -1
- package/pages/c/_cluster/settings/performance.vue +0 -1
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +2 -1
- package/pages/c/_cluster/uiplugins/CatalogList/index.vue +10 -46
- package/pages/c/_cluster/uiplugins/index.vue +0 -2
- package/pages/diagnostic.vue +1 -2
- package/pages/fail-whale.vue +0 -1
- package/pages/prefs.vue +0 -1
- package/pages/support/index.vue +2 -8
- package/pkg/auto-import.js +1 -1
- package/plugins/axios.js +0 -36
- package/plugins/back-button.js +3 -5
- package/plugins/codemirror-loader.js +1 -1
- package/plugins/codemirror.js +41 -0
- package/plugins/dashboard-store/__tests__/{mutations.spec.ts → mutations.test.ts} +1 -1
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +49 -0
- package/plugins/dashboard-store/__tests__/utils/store-mocks.ts +7 -0
- package/plugins/dashboard-store/actions.js +30 -4
- package/plugins/dashboard-store/classify.js +1 -18
- package/plugins/dashboard-store/getters.js +10 -5
- package/plugins/dashboard-store/index.js +0 -12
- package/plugins/dashboard-store/mutations.js +0 -4
- package/plugins/dashboard-store/resource-class.js +59 -18
- package/plugins/steve/__tests__/steve-class.spec.ts +59 -0
- package/plugins/steve/__tests__/utils/steve-mocks.ts +31 -0
- package/plugins/steve/getters.js +4 -1
- package/plugins/steve/norman-class.js +19 -0
- package/plugins/steve/steve-class.js +22 -0
- package/plugins/steve/subscribe.js +4 -10
- package/rancher-components/Accordion/Accordion.test.ts +45 -0
- package/rancher-components/Accordion/Accordion.vue +86 -0
- package/rancher-components/Accordion/index.ts +1 -0
- package/rancher-components/BadgeState/BadgeState.vue +3 -3
- package/rancher-components/Banner/Banner.vue +2 -2
- package/rancher-components/Card/Card.vue +3 -3
- package/rancher-components/Form/Checkbox/Checkbox.vue +3 -3
- package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +18 -1
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +65 -24
- package/rancher-components/Form/Radio/RadioButton.test.ts +7 -3
- package/rancher-components/Form/Radio/RadioButton.vue +13 -7
- package/rancher-components/Form/Radio/RadioGroup.test.ts +30 -0
- package/rancher-components/Form/Radio/RadioGroup.vue +8 -3
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +6 -4
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +9 -4
- package/rancher-components/StringList/StringList.test.ts +270 -0
- package/rancher-components/StringList/StringList.vue +65 -26
- package/rancher-components/components/Accordion/Accordion.test.ts +45 -0
- package/rancher-components/components/Accordion/Accordion.vue +86 -0
- package/rancher-components/components/Accordion/index.ts +1 -0
- package/rancher-components/components/BadgeState/BadgeState.vue +3 -3
- package/rancher-components/components/Banner/Banner.vue +2 -2
- package/rancher-components/components/Card/Card.vue +3 -3
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +3 -3
- package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +18 -1
- package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +57 -24
- package/rancher-components/components/Form/Radio/RadioButton.vue +13 -7
- package/rancher-components/components/Form/Radio/RadioGroup.vue +4 -3
- package/rancher-components/components/Form/TextArea/TextAreaAutoGrow.vue +6 -4
- package/rancher-components/components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
- package/rancher-components/components/LabeledTooltip/LabeledTooltip.vue +9 -4
- package/rancher-components/components/StringList/StringList.vue +8 -8
- package/scripts/.gitlab/workflows/build-extension-catalog.gitlab-ci.yml +50 -0
- package/scripts/extension/parse-tag-name +2 -2
- package/scripts/publish-shell.sh +10 -0
- package/scripts/test-plugins-build.sh +85 -9
- package/server/har-file.js +183 -0
- package/store/catalog.js +1 -1
- package/store/features.js +1 -0
- package/store/i18n.js +11 -0
- package/store/index.js +10 -11
- package/store/prefs.js +33 -35
- package/store/type-map.js +8 -7
- package/tsconfig.json +35 -9
- package/tsconfig.paths.json +21 -0
- package/types/shell/index.d.ts +427 -234
- package/types/vue-shim.d.ts +42 -0
- package/utils/__tests__/create-yaml.test.ts +60 -0
- package/utils/axios.js +0 -19
- package/utils/azure.js +24 -0
- package/utils/create-yaml.js +17 -10
- package/utils/git.ts +1 -1
- package/utils/monitoring.js +1 -1
- package/utils/nuxt.js +18 -39
- package/utils/object.js +14 -0
- package/utils/router.scrollBehavior.js +12 -14
- package/utils/time.js +1 -1
- package/utils/url.ts +1 -1
- package/vue.config.js +23 -2
- package/.DS_Store +0 -0
- package/assets/images/providers/aks-black.svg +0 -28
- package/assets/images/providers/aks.svg +0 -31
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.tests.ts +0 -234
- package/initialize/layouts.ts +0 -26
- package/mixins/fetch.server.js +0 -73
- package/pages/c/index.vue +0 -9
- package/pages/rio/mesh.vue +0 -508
- package/plugins/transitions.js +0 -4
- package/scripts/.DS_Store +0 -0
- package/scripts/verdaccio.log +0 -205
- package/tsconfig.default.json +0 -46
- package/yarn-error.log +0 -200
- /package/components/form/__tests__/{NameNsDescription.ts → NameNsDescription.test.ts} +0 -0
- /package/edit/networking.k8s.io.networkpolicy/__tests__/utils/{selectors.ts → selectors.test.ts} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{AgentConfiguration.vue → tabs/AgentConfiguration.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{MemberRoles.vue → tabs/MemberRoles.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{S3Config.vue → tabs/etcd/S3Config.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{ACE.vue → tabs/networking/ACE.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{RegistryConfigs.vue → tabs/registries/RegistryConfigs.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{RegistryMirrors.vue → tabs/registries/RegistryMirrors.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{DrainOptions.vue → tabs/upgrade/DrainOptions.vue} +0 -0
- /package/plugins/dashboard-store/__tests__/{actions.spec.ts → actions.test.ts} +0 -0
- /package/plugins/dashboard-store/__tests__/{getters.spec.ts → getters.test.ts} +0 -0
- /package/rancher-components/BadgeState/{BadgeState.spec.ts → BadgeState.test.ts} +0 -0
- /package/rancher-components/components/BadgeState/{BadgeState.spec.ts → BadgeState.test.ts} +0 -0
package/types/shell/index.d.ts
CHANGED
|
@@ -200,6 +200,7 @@ export const DIFF: "diff";
|
|
|
200
200
|
export const _UNIFIED: "unified";
|
|
201
201
|
export const _SPLIT: "split";
|
|
202
202
|
export const SUB_TYPE: "type";
|
|
203
|
+
export const RKE_TYPE: "rkeType";
|
|
203
204
|
export const REPO_TYPE: "repo-type";
|
|
204
205
|
export const REPO: "repo";
|
|
205
206
|
export const CHART: "chart";
|
|
@@ -1276,7 +1277,7 @@ export namespace FLEET_SUMMARY {
|
|
|
1276
1277
|
const width_22: number;
|
|
1277
1278
|
export { width_22 as width };
|
|
1278
1279
|
}
|
|
1279
|
-
export namespace
|
|
1280
|
+
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1280
1281
|
const name_83: string;
|
|
1281
1282
|
export { name_83 as name };
|
|
1282
1283
|
const labelKey_82: string;
|
|
@@ -1294,397 +1295,469 @@ export namespace APP_SUMMARY {
|
|
|
1294
1295
|
const width_23: number;
|
|
1295
1296
|
export { width_23 as width };
|
|
1296
1297
|
}
|
|
1297
|
-
export namespace
|
|
1298
|
+
export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
1298
1299
|
const name_84: string;
|
|
1299
1300
|
export { name_84 as name };
|
|
1300
1301
|
const labelKey_83: string;
|
|
1301
1302
|
export { labelKey_83 as labelKey };
|
|
1302
|
-
const
|
|
1303
|
-
export {
|
|
1304
|
-
const sort_75: string;
|
|
1303
|
+
const tooltip_1: string;
|
|
1304
|
+
export { tooltip_1 as tooltip };
|
|
1305
|
+
const sort_75: string[];
|
|
1305
1306
|
export { sort_75 as sort };
|
|
1307
|
+
const width_24: number;
|
|
1308
|
+
export { width_24 as width };
|
|
1309
|
+
const _default_1: string;
|
|
1310
|
+
export { _default_1 as default };
|
|
1306
1311
|
const formatter_41: string;
|
|
1307
1312
|
export { formatter_41 as formatter };
|
|
1308
1313
|
export namespace formatterOpts_4 {
|
|
1309
|
-
|
|
1310
|
-
const internal_1: boolean;
|
|
1311
|
-
export { internal_1 as internal };
|
|
1312
|
-
}
|
|
1313
|
-
export { options_1 as options };
|
|
1314
|
+
const arbitrary: boolean;
|
|
1314
1315
|
}
|
|
1315
1316
|
export { formatterOpts_4 as formatterOpts };
|
|
1316
1317
|
}
|
|
1317
|
-
export namespace
|
|
1318
|
+
export namespace APP_SUMMARY {
|
|
1318
1319
|
const name_85: string;
|
|
1319
1320
|
export { name_85 as name };
|
|
1320
1321
|
const labelKey_84: string;
|
|
1321
1322
|
export { labelKey_84 as labelKey };
|
|
1322
|
-
const
|
|
1323
|
-
export {
|
|
1324
|
-
const sort_76:
|
|
1323
|
+
const value_83: string;
|
|
1324
|
+
export { value_83 as value };
|
|
1325
|
+
const sort_76: boolean;
|
|
1325
1326
|
export { sort_76 as sort };
|
|
1326
|
-
const search_9:
|
|
1327
|
+
const search_9: boolean;
|
|
1327
1328
|
export { search_9 as search };
|
|
1328
1329
|
const formatter_42: string;
|
|
1329
1330
|
export { formatter_42 as formatter };
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
}
|
|
1335
|
-
export { options_2 as options };
|
|
1336
|
-
}
|
|
1337
|
-
export { formatterOpts_5 as formatterOpts };
|
|
1331
|
+
const align_14: string;
|
|
1332
|
+
export { align_14 as align };
|
|
1333
|
+
const width_25: number;
|
|
1334
|
+
export { width_25 as width };
|
|
1338
1335
|
}
|
|
1339
|
-
export namespace
|
|
1336
|
+
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1340
1337
|
const name_86: string;
|
|
1341
1338
|
export { name_86 as name };
|
|
1342
1339
|
const labelKey_85: string;
|
|
1343
1340
|
export { labelKey_85 as labelKey };
|
|
1344
|
-
const
|
|
1345
|
-
export {
|
|
1341
|
+
const value_84: string;
|
|
1342
|
+
export { value_84 as value };
|
|
1346
1343
|
const sort_77: string;
|
|
1347
1344
|
export { sort_77 as sort };
|
|
1345
|
+
const formatter_43: string;
|
|
1346
|
+
export { formatter_43 as formatter };
|
|
1347
|
+
export namespace formatterOpts_5 {
|
|
1348
|
+
export namespace options_1 {
|
|
1349
|
+
const internal_1: boolean;
|
|
1350
|
+
export { internal_1 as internal };
|
|
1351
|
+
}
|
|
1352
|
+
export { options_1 as options };
|
|
1353
|
+
}
|
|
1354
|
+
export { formatterOpts_5 as formatterOpts };
|
|
1348
1355
|
}
|
|
1349
|
-
export namespace
|
|
1356
|
+
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1350
1357
|
const name_87: string;
|
|
1351
1358
|
export { name_87 as name };
|
|
1352
1359
|
const labelKey_86: string;
|
|
1353
1360
|
export { labelKey_86 as labelKey };
|
|
1354
|
-
const
|
|
1355
|
-
export {
|
|
1361
|
+
const value_85: string;
|
|
1362
|
+
export { value_85 as value };
|
|
1356
1363
|
const sort_78: string;
|
|
1357
1364
|
export { sort_78 as sort };
|
|
1358
1365
|
const search_10: string;
|
|
1359
1366
|
export { search_10 as search };
|
|
1367
|
+
const formatter_44: string;
|
|
1368
|
+
export { formatter_44 as formatter };
|
|
1369
|
+
export namespace formatterOpts_6 {
|
|
1370
|
+
export namespace options_2 {
|
|
1371
|
+
const internal_2: boolean;
|
|
1372
|
+
export { internal_2 as internal };
|
|
1373
|
+
}
|
|
1374
|
+
export { options_2 as options };
|
|
1375
|
+
}
|
|
1376
|
+
export { formatterOpts_6 as formatterOpts };
|
|
1360
1377
|
}
|
|
1361
|
-
export namespace
|
|
1378
|
+
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1362
1379
|
const name_88: string;
|
|
1363
1380
|
export { name_88 as name };
|
|
1364
1381
|
const labelKey_87: string;
|
|
1365
1382
|
export { labelKey_87 as labelKey };
|
|
1366
|
-
const
|
|
1367
|
-
export {
|
|
1383
|
+
const value_86: string;
|
|
1384
|
+
export { value_86 as value };
|
|
1368
1385
|
const sort_79: string;
|
|
1369
1386
|
export { sort_79 as sort };
|
|
1370
1387
|
}
|
|
1371
|
-
export namespace
|
|
1388
|
+
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1372
1389
|
const name_89: string;
|
|
1373
1390
|
export { name_89 as name };
|
|
1374
1391
|
const labelKey_88: string;
|
|
1375
1392
|
export { labelKey_88 as labelKey };
|
|
1376
|
-
const
|
|
1377
|
-
export {
|
|
1393
|
+
const value_87: string;
|
|
1394
|
+
export { value_87 as value };
|
|
1378
1395
|
const sort_80: string;
|
|
1379
1396
|
export { sort_80 as sort };
|
|
1380
|
-
const
|
|
1381
|
-
export {
|
|
1382
|
-
export namespace formatterOpts_6 {
|
|
1383
|
-
export namespace options_3 {
|
|
1384
|
-
const internal_3: boolean;
|
|
1385
|
-
export { internal_3 as internal };
|
|
1386
|
-
}
|
|
1387
|
-
export { options_3 as options };
|
|
1388
|
-
}
|
|
1389
|
-
export { formatterOpts_6 as formatterOpts };
|
|
1397
|
+
const search_11: string;
|
|
1398
|
+
export { search_11 as search };
|
|
1390
1399
|
}
|
|
1391
|
-
export namespace
|
|
1400
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1392
1401
|
const name_90: string;
|
|
1393
1402
|
export { name_90 as name };
|
|
1394
1403
|
const labelKey_89: string;
|
|
1395
1404
|
export { labelKey_89 as labelKey };
|
|
1396
|
-
const
|
|
1397
|
-
export {
|
|
1405
|
+
const value_88: string;
|
|
1406
|
+
export { value_88 as value };
|
|
1398
1407
|
const sort_81: string;
|
|
1399
1408
|
export { sort_81 as sort };
|
|
1400
|
-
const formatter_44: string;
|
|
1401
|
-
export { formatter_44 as formatter };
|
|
1402
|
-
export namespace formatterOpts_7 {
|
|
1403
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1404
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1405
|
-
}
|
|
1406
|
-
export { formatterOpts_7 as formatterOpts };
|
|
1407
1409
|
}
|
|
1408
|
-
export namespace
|
|
1410
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1409
1411
|
const name_91: string;
|
|
1410
1412
|
export { name_91 as name };
|
|
1411
|
-
const
|
|
1412
|
-
export {
|
|
1413
|
-
const
|
|
1414
|
-
export {
|
|
1413
|
+
const labelKey_90: string;
|
|
1414
|
+
export { labelKey_90 as labelKey };
|
|
1415
|
+
const value_89: string;
|
|
1416
|
+
export { value_89 as value };
|
|
1415
1417
|
const sort_82: string;
|
|
1416
1418
|
export { sort_82 as sort };
|
|
1417
1419
|
const formatter_45: string;
|
|
1418
1420
|
export { formatter_45 as formatter };
|
|
1421
|
+
export namespace formatterOpts_7 {
|
|
1422
|
+
export namespace options_3 {
|
|
1423
|
+
const internal_3: boolean;
|
|
1424
|
+
export { internal_3 as internal };
|
|
1425
|
+
}
|
|
1426
|
+
export { options_3 as options };
|
|
1427
|
+
}
|
|
1428
|
+
export { formatterOpts_7 as formatterOpts };
|
|
1419
1429
|
}
|
|
1420
|
-
export namespace
|
|
1430
|
+
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1421
1431
|
const name_92: string;
|
|
1422
1432
|
export { name_92 as name };
|
|
1423
|
-
const
|
|
1424
|
-
export {
|
|
1425
|
-
const
|
|
1426
|
-
export {
|
|
1433
|
+
const labelKey_91: string;
|
|
1434
|
+
export { labelKey_91 as labelKey };
|
|
1435
|
+
const value_90: string;
|
|
1436
|
+
export { value_90 as value };
|
|
1427
1437
|
const sort_83: string;
|
|
1428
1438
|
export { sort_83 as sort };
|
|
1429
1439
|
const formatter_46: string;
|
|
1430
1440
|
export { formatter_46 as formatter };
|
|
1431
1441
|
export namespace formatterOpts_8 {
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
export { internal_4 as internal };
|
|
1435
|
-
}
|
|
1436
|
-
export { options_4 as options };
|
|
1442
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1443
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1437
1444
|
}
|
|
1438
1445
|
export { formatterOpts_8 as formatterOpts };
|
|
1439
1446
|
}
|
|
1440
|
-
export namespace
|
|
1447
|
+
export namespace RECEIVER_PROVIDERS {
|
|
1441
1448
|
const name_93: string;
|
|
1442
1449
|
export { name_93 as name };
|
|
1443
|
-
const
|
|
1444
|
-
export {
|
|
1445
|
-
const
|
|
1446
|
-
export {
|
|
1447
|
-
const sort_84: string
|
|
1450
|
+
const label_1: string;
|
|
1451
|
+
export { label_1 as label };
|
|
1452
|
+
const value_91: string;
|
|
1453
|
+
export { value_91 as value };
|
|
1454
|
+
const sort_84: string;
|
|
1448
1455
|
export { sort_84 as sort };
|
|
1449
|
-
const search_11: string[];
|
|
1450
|
-
export { search_11 as search };
|
|
1451
1456
|
const formatter_47: string;
|
|
1452
1457
|
export { formatter_47 as formatter };
|
|
1453
|
-
const width_24: number;
|
|
1454
|
-
export { width_24 as width };
|
|
1455
1458
|
}
|
|
1456
|
-
export namespace
|
|
1459
|
+
export namespace CONFIGURED_RECEIVER {
|
|
1457
1460
|
const name_94: string;
|
|
1458
1461
|
export { name_94 as name };
|
|
1459
|
-
const
|
|
1460
|
-
export {
|
|
1461
|
-
const
|
|
1462
|
-
export {
|
|
1462
|
+
const label_2: string;
|
|
1463
|
+
export { label_2 as label };
|
|
1464
|
+
const value_92: string;
|
|
1465
|
+
export { value_92 as value };
|
|
1466
|
+
const sort_85: string;
|
|
1467
|
+
export { sort_85 as sort };
|
|
1463
1468
|
const formatter_48: string;
|
|
1464
1469
|
export { formatter_48 as formatter };
|
|
1470
|
+
export namespace formatterOpts_9 {
|
|
1471
|
+
export namespace options_4 {
|
|
1472
|
+
const internal_4: boolean;
|
|
1473
|
+
export { internal_4 as internal };
|
|
1474
|
+
}
|
|
1475
|
+
export { options_4 as options };
|
|
1476
|
+
}
|
|
1477
|
+
export { formatterOpts_9 as formatterOpts };
|
|
1465
1478
|
}
|
|
1466
|
-
export namespace
|
|
1479
|
+
export namespace GROUP_NAME {
|
|
1467
1480
|
const name_95: string;
|
|
1468
1481
|
export { name_95 as name };
|
|
1469
1482
|
const labelKey_92: string;
|
|
1470
1483
|
export { labelKey_92 as labelKey };
|
|
1471
|
-
const
|
|
1472
|
-
export {
|
|
1473
|
-
const
|
|
1474
|
-
export {
|
|
1484
|
+
const value_93: string;
|
|
1485
|
+
export { value_93 as value };
|
|
1486
|
+
const sort_86: string[];
|
|
1487
|
+
export { sort_86 as sort };
|
|
1488
|
+
const search_12: string[];
|
|
1489
|
+
export { search_12 as search };
|
|
1490
|
+
const formatter_49: string;
|
|
1491
|
+
export { formatter_49 as formatter };
|
|
1492
|
+
const width_26: number;
|
|
1493
|
+
export { width_26 as width };
|
|
1475
1494
|
}
|
|
1476
|
-
export namespace
|
|
1495
|
+
export namespace GROUP_ROLE_NAME {
|
|
1477
1496
|
const name_96: string;
|
|
1478
1497
|
export { name_96 as name };
|
|
1479
1498
|
const labelKey_93: string;
|
|
1480
1499
|
export { labelKey_93 as labelKey };
|
|
1481
|
-
const
|
|
1482
|
-
export {
|
|
1483
|
-
const
|
|
1484
|
-
export {
|
|
1500
|
+
const value_94: string;
|
|
1501
|
+
export { value_94 as value };
|
|
1502
|
+
const formatter_50: string;
|
|
1503
|
+
export { formatter_50 as formatter };
|
|
1485
1504
|
}
|
|
1486
|
-
export namespace
|
|
1505
|
+
export namespace HPA_REFERENCE {
|
|
1487
1506
|
const name_97: string;
|
|
1488
1507
|
export { name_97 as name };
|
|
1489
1508
|
const labelKey_94: string;
|
|
1490
1509
|
export { labelKey_94 as labelKey };
|
|
1491
|
-
const
|
|
1492
|
-
export {
|
|
1510
|
+
const value_95: string;
|
|
1511
|
+
export { value_95 as value };
|
|
1493
1512
|
const sort_87: string;
|
|
1494
1513
|
export { sort_87 as sort };
|
|
1495
1514
|
}
|
|
1496
|
-
export namespace
|
|
1515
|
+
export namespace MIN_REPLICA {
|
|
1497
1516
|
const name_98: string;
|
|
1498
1517
|
export { name_98 as name };
|
|
1499
1518
|
const labelKey_95: string;
|
|
1500
1519
|
export { labelKey_95 as labelKey };
|
|
1501
|
-
const
|
|
1502
|
-
export {
|
|
1520
|
+
const value_96: string;
|
|
1521
|
+
export { value_96 as value };
|
|
1503
1522
|
const sort_88: string;
|
|
1504
1523
|
export { sort_88 as sort };
|
|
1505
1524
|
}
|
|
1506
|
-
export namespace
|
|
1507
|
-
const value_98: string;
|
|
1508
|
-
export { value_98 as value };
|
|
1509
|
-
const formatter_49: string;
|
|
1510
|
-
export { formatter_49 as formatter };
|
|
1511
|
-
}
|
|
1512
|
-
export namespace ACCESS_KEY {
|
|
1525
|
+
export namespace MAX_REPLICA {
|
|
1513
1526
|
const name_99: string;
|
|
1514
1527
|
export { name_99 as name };
|
|
1515
1528
|
const labelKey_96: string;
|
|
1516
1529
|
export { labelKey_96 as labelKey };
|
|
1517
|
-
const
|
|
1518
|
-
export {
|
|
1519
|
-
const sort_89: string
|
|
1530
|
+
const value_97: string;
|
|
1531
|
+
export { value_97 as value };
|
|
1532
|
+
const sort_89: string;
|
|
1520
1533
|
export { sort_89 as sort };
|
|
1521
|
-
const width_25: number;
|
|
1522
|
-
export { width_25 as width };
|
|
1523
1534
|
}
|
|
1524
|
-
export namespace
|
|
1535
|
+
export namespace CURRENT_REPLICA {
|
|
1525
1536
|
const name_100: string;
|
|
1526
1537
|
export { name_100 as name };
|
|
1527
|
-
const value_99: string;
|
|
1528
|
-
export { value_99 as value };
|
|
1529
1538
|
const labelKey_97: string;
|
|
1530
1539
|
export { labelKey_97 as labelKey };
|
|
1531
|
-
const
|
|
1532
|
-
export {
|
|
1533
|
-
const
|
|
1534
|
-
export { align_15 as align };
|
|
1535
|
-
const sort_90: string[];
|
|
1540
|
+
const value_98: string;
|
|
1541
|
+
export { value_98 as value };
|
|
1542
|
+
const sort_90: string;
|
|
1536
1543
|
export { sort_90 as sort };
|
|
1537
|
-
const width_26: number;
|
|
1538
|
-
export { width_26 as width };
|
|
1539
1544
|
}
|
|
1540
|
-
export namespace
|
|
1541
|
-
const
|
|
1542
|
-
export {
|
|
1543
|
-
const
|
|
1544
|
-
export {
|
|
1545
|
+
export namespace EXPIRY_STATE {
|
|
1546
|
+
const value_99: string;
|
|
1547
|
+
export { value_99 as value };
|
|
1548
|
+
const formatter_51: string;
|
|
1549
|
+
export { formatter_51 as formatter };
|
|
1545
1550
|
}
|
|
1546
|
-
export namespace
|
|
1551
|
+
export namespace ACCESS_KEY {
|
|
1547
1552
|
const name_101: string;
|
|
1548
1553
|
export { name_101 as name };
|
|
1549
|
-
const value_101: string;
|
|
1550
|
-
export { value_101 as value };
|
|
1551
1554
|
const labelKey_98: string;
|
|
1552
1555
|
export { labelKey_98 as labelKey };
|
|
1553
|
-
const
|
|
1554
|
-
export {
|
|
1555
|
-
const
|
|
1556
|
-
export {
|
|
1556
|
+
const align_15: string;
|
|
1557
|
+
export { align_15 as align };
|
|
1558
|
+
const sort_91: string[];
|
|
1559
|
+
export { sort_91 as sort };
|
|
1557
1560
|
const width_27: number;
|
|
1558
1561
|
export { width_27 as width };
|
|
1559
|
-
const formatter_50: string;
|
|
1560
|
-
export { formatter_50 as formatter };
|
|
1561
1562
|
}
|
|
1562
|
-
export namespace
|
|
1563
|
+
export namespace SCOPE {
|
|
1563
1564
|
const name_102: string;
|
|
1564
1565
|
export { name_102 as name };
|
|
1566
|
+
const value_100: string;
|
|
1567
|
+
export { value_100 as value };
|
|
1565
1568
|
const labelKey_99: string;
|
|
1566
1569
|
export { labelKey_99 as labelKey };
|
|
1567
|
-
const
|
|
1568
|
-
export {
|
|
1569
|
-
const
|
|
1570
|
-
export {
|
|
1571
|
-
const
|
|
1572
|
-
export {
|
|
1570
|
+
const dashIfEmpty_6: boolean;
|
|
1571
|
+
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1572
|
+
const align_16: string;
|
|
1573
|
+
export { align_16 as align };
|
|
1574
|
+
const sort_92: string[];
|
|
1575
|
+
export { sort_92 as sort };
|
|
1573
1576
|
const width_28: number;
|
|
1574
1577
|
export { width_28 as width };
|
|
1575
|
-
const align_17: string;
|
|
1576
|
-
export { align_17 as align };
|
|
1577
1578
|
}
|
|
1578
|
-
export namespace
|
|
1579
|
+
export namespace SCOPE_NORMAN {
|
|
1580
|
+
const value_101: string;
|
|
1581
|
+
export { value_101 as value };
|
|
1582
|
+
const sort_93: string[];
|
|
1583
|
+
export { sort_93 as sort };
|
|
1584
|
+
}
|
|
1585
|
+
export namespace EXPIRES {
|
|
1579
1586
|
const name_103: string;
|
|
1580
1587
|
export { name_103 as name };
|
|
1581
|
-
const
|
|
1582
|
-
export {
|
|
1588
|
+
const value_102: string;
|
|
1589
|
+
export { value_102 as value };
|
|
1583
1590
|
const labelKey_100: string;
|
|
1584
1591
|
export { labelKey_100 as labelKey };
|
|
1592
|
+
const align_17: string;
|
|
1593
|
+
export { align_17 as align };
|
|
1594
|
+
const sort_94: string[];
|
|
1595
|
+
export { sort_94 as sort };
|
|
1596
|
+
const width_29: number;
|
|
1597
|
+
export { width_29 as width };
|
|
1598
|
+
const formatter_52: string;
|
|
1599
|
+
export { formatter_52 as formatter };
|
|
1585
1600
|
}
|
|
1586
|
-
export namespace
|
|
1601
|
+
export namespace RESTART {
|
|
1587
1602
|
const name_104: string;
|
|
1588
1603
|
export { name_104 as name };
|
|
1589
1604
|
const labelKey_101: string;
|
|
1590
1605
|
export { labelKey_101 as labelKey };
|
|
1591
|
-
const
|
|
1592
|
-
export {
|
|
1606
|
+
const value_103: string;
|
|
1607
|
+
export { value_103 as value };
|
|
1608
|
+
const sort_95: string[];
|
|
1609
|
+
export { sort_95 as sort };
|
|
1610
|
+
const formatter_53: string;
|
|
1611
|
+
export { formatter_53 as formatter };
|
|
1612
|
+
const width_30: number;
|
|
1613
|
+
export { width_30 as width };
|
|
1593
1614
|
const align_18: string;
|
|
1594
1615
|
export { align_18 as align };
|
|
1595
|
-
const sort_94: string[];
|
|
1596
|
-
export { sort_94 as sort };
|
|
1597
|
-
const formatter_52: string;
|
|
1598
|
-
export { formatter_52 as formatter };
|
|
1599
|
-
export namespace formatterOpts_9 {
|
|
1600
|
-
const prefix: string;
|
|
1601
|
-
}
|
|
1602
|
-
export { formatterOpts_9 as formatterOpts };
|
|
1603
1616
|
}
|
|
1604
|
-
export namespace
|
|
1617
|
+
export namespace ROLE {
|
|
1605
1618
|
const name_105: string;
|
|
1606
1619
|
export { name_105 as name };
|
|
1620
|
+
const value_104: string;
|
|
1621
|
+
export { value_104 as value };
|
|
1607
1622
|
const labelKey_102: string;
|
|
1608
1623
|
export { labelKey_102 as labelKey };
|
|
1609
|
-
const sort_95: string[];
|
|
1610
|
-
export { sort_95 as sort };
|
|
1611
|
-
const value_105: string;
|
|
1612
|
-
export { value_105 as value };
|
|
1613
|
-
const width_29: number;
|
|
1614
|
-
export { width_29 as width };
|
|
1615
|
-
const _default_1: string;
|
|
1616
|
-
export { _default_1 as default };
|
|
1617
|
-
const formatter_53: string;
|
|
1618
|
-
export { formatter_53 as formatter };
|
|
1619
1624
|
}
|
|
1620
|
-
export namespace
|
|
1625
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1621
1626
|
const name_106: string;
|
|
1622
1627
|
export { name_106 as name };
|
|
1623
1628
|
const labelKey_103: string;
|
|
1624
1629
|
export { labelKey_103 as labelKey };
|
|
1625
|
-
const
|
|
1626
|
-
export {
|
|
1630
|
+
const value_105: string;
|
|
1631
|
+
export { value_105 as value };
|
|
1632
|
+
const align_19: string;
|
|
1633
|
+
export { align_19 as align };
|
|
1627
1634
|
const sort_96: string[];
|
|
1628
1635
|
export { sort_96 as sort };
|
|
1629
1636
|
const formatter_54: string;
|
|
1630
1637
|
export { formatter_54 as formatter };
|
|
1638
|
+
export namespace formatterOpts_10 {
|
|
1639
|
+
const prefix: string;
|
|
1640
|
+
}
|
|
1641
|
+
export { formatterOpts_10 as formatterOpts };
|
|
1631
1642
|
}
|
|
1632
|
-
export namespace
|
|
1643
|
+
export namespace STATE_NORMAN {
|
|
1633
1644
|
const name_107: string;
|
|
1634
1645
|
export { name_107 as name };
|
|
1635
1646
|
const labelKey_104: string;
|
|
1636
1647
|
export { labelKey_104 as labelKey };
|
|
1637
|
-
const value_107: string;
|
|
1638
|
-
export { value_107 as value };
|
|
1639
1648
|
const sort_97: string[];
|
|
1640
1649
|
export { sort_97 as sort };
|
|
1650
|
+
const value_106: string;
|
|
1651
|
+
export { value_106 as value };
|
|
1652
|
+
const width_31: number;
|
|
1653
|
+
export { width_31 as width };
|
|
1654
|
+
const _default_2: string;
|
|
1655
|
+
export { _default_2 as default };
|
|
1641
1656
|
const formatter_55: string;
|
|
1642
1657
|
export { formatter_55 as formatter };
|
|
1643
|
-
const dashIfEmpty_7: boolean;
|
|
1644
|
-
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1645
1658
|
}
|
|
1646
|
-
export namespace
|
|
1659
|
+
export namespace KUBE_NODE_OS {
|
|
1647
1660
|
const name_108: string;
|
|
1648
1661
|
export { name_108 as name };
|
|
1649
1662
|
const labelKey_105: string;
|
|
1650
1663
|
export { labelKey_105 as labelKey };
|
|
1651
|
-
const
|
|
1652
|
-
export {
|
|
1664
|
+
const value_107: string;
|
|
1665
|
+
export { value_107 as value };
|
|
1653
1666
|
const sort_98: string[];
|
|
1654
1667
|
export { sort_98 as sort };
|
|
1655
1668
|
const formatter_56: string;
|
|
1656
1669
|
export { formatter_56 as formatter };
|
|
1657
|
-
const dashIfEmpty_8: boolean;
|
|
1658
|
-
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1659
1670
|
}
|
|
1660
|
-
export namespace
|
|
1671
|
+
export namespace MACHINE_NODE_OS {
|
|
1661
1672
|
const name_109: string;
|
|
1662
1673
|
export { name_109 as name };
|
|
1663
1674
|
const labelKey_106: string;
|
|
1664
1675
|
export { labelKey_106 as labelKey };
|
|
1665
|
-
const
|
|
1666
|
-
export {
|
|
1667
|
-
const formatter_57: string;
|
|
1668
|
-
export { formatter_57 as formatter };
|
|
1669
|
-
export namespace formatterOpts_10 {
|
|
1670
|
-
const addSuffix_1: boolean;
|
|
1671
|
-
export { addSuffix_1 as addSuffix };
|
|
1672
|
-
}
|
|
1673
|
-
export { formatterOpts_10 as formatterOpts };
|
|
1676
|
+
const value_108: string;
|
|
1677
|
+
export { value_108 as value };
|
|
1674
1678
|
const sort_99: string[];
|
|
1675
1679
|
export { sort_99 as sort };
|
|
1680
|
+
const formatter_57: string;
|
|
1681
|
+
export { formatter_57 as formatter };
|
|
1682
|
+
const dashIfEmpty_7: boolean;
|
|
1683
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1676
1684
|
}
|
|
1677
|
-
export namespace
|
|
1685
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1678
1686
|
const name_110: string;
|
|
1679
1687
|
export { name_110 as name };
|
|
1680
1688
|
const labelKey_107: string;
|
|
1681
1689
|
export { labelKey_107 as labelKey };
|
|
1682
|
-
const
|
|
1683
|
-
export {
|
|
1690
|
+
const value_109: string;
|
|
1691
|
+
export { value_109 as value };
|
|
1684
1692
|
const sort_100: string[];
|
|
1685
1693
|
export { sort_100 as sort };
|
|
1686
|
-
const
|
|
1687
|
-
export {
|
|
1694
|
+
const formatter_58: string;
|
|
1695
|
+
export { formatter_58 as formatter };
|
|
1696
|
+
const dashIfEmpty_8: boolean;
|
|
1697
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1698
|
+
}
|
|
1699
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1700
|
+
const name_111: string;
|
|
1701
|
+
export { name_111 as name };
|
|
1702
|
+
const labelKey_108: string;
|
|
1703
|
+
export { labelKey_108 as labelKey };
|
|
1704
|
+
const value_110: string;
|
|
1705
|
+
export { value_110 as value };
|
|
1706
|
+
const formatter_59: string;
|
|
1707
|
+
export { formatter_59 as formatter };
|
|
1708
|
+
export namespace formatterOpts_11 {
|
|
1709
|
+
const addSuffix_1: boolean;
|
|
1710
|
+
export { addSuffix_1 as addSuffix };
|
|
1711
|
+
}
|
|
1712
|
+
export { formatterOpts_11 as formatterOpts };
|
|
1713
|
+
const sort_101: string[];
|
|
1714
|
+
export { sort_101 as sort };
|
|
1715
|
+
}
|
|
1716
|
+
export namespace FLEET_BUNDLE_TYPE {
|
|
1717
|
+
const name_112: string;
|
|
1718
|
+
export { name_112 as name };
|
|
1719
|
+
const labelKey_109: string;
|
|
1720
|
+
export { labelKey_109 as labelKey };
|
|
1721
|
+
const value_111: string;
|
|
1722
|
+
export { value_111 as value };
|
|
1723
|
+
const sort_102: string[];
|
|
1724
|
+
export { sort_102 as sort };
|
|
1725
|
+
const width_32: number;
|
|
1726
|
+
export { width_32 as width };
|
|
1727
|
+
}
|
|
1728
|
+
export namespace FLEET_REPO_CLUSTERS_READY {
|
|
1729
|
+
const name_113: string;
|
|
1730
|
+
export { name_113 as name };
|
|
1731
|
+
const labelKey_110: string;
|
|
1732
|
+
export { labelKey_110 as labelKey };
|
|
1733
|
+
const value_112: string;
|
|
1734
|
+
export { value_112 as value };
|
|
1735
|
+
const sort_103: string;
|
|
1736
|
+
export { sort_103 as sort };
|
|
1737
|
+
const search_13: boolean;
|
|
1738
|
+
export { search_13 as search };
|
|
1739
|
+
}
|
|
1740
|
+
export namespace FLEET_REPO_TARGET {
|
|
1741
|
+
const name_114: string;
|
|
1742
|
+
export { name_114 as name };
|
|
1743
|
+
const labelKey_111: string;
|
|
1744
|
+
export { labelKey_111 as labelKey };
|
|
1745
|
+
const value_113: string;
|
|
1746
|
+
export { value_113 as value };
|
|
1747
|
+
const sort_104: string[];
|
|
1748
|
+
export { sort_104 as sort };
|
|
1749
|
+
}
|
|
1750
|
+
export namespace FLEET_REPO {
|
|
1751
|
+
const name_115: string;
|
|
1752
|
+
export { name_115 as name };
|
|
1753
|
+
const labelKey_112: string;
|
|
1754
|
+
export { labelKey_112 as labelKey };
|
|
1755
|
+
const value_114: string;
|
|
1756
|
+
export { value_114 as value };
|
|
1757
|
+
const sort_105: string;
|
|
1758
|
+
export { sort_105 as sort };
|
|
1759
|
+
const search_14: string[];
|
|
1760
|
+
export { search_14 as search };
|
|
1688
1761
|
}
|
|
1689
1762
|
export const UI_PLUGIN_CATALOG: ({
|
|
1690
1763
|
name: string;
|
|
@@ -2061,35 +2134,97 @@ export default _default;
|
|
|
2061
2134
|
// @shell/mixins/create-edit-view
|
|
2062
2135
|
|
|
2063
2136
|
declare module '@shell/mixins/create-edit-view' {
|
|
2064
|
-
declare var _default: import("vue
|
|
2137
|
+
declare var _default: import("vue").DefineComponent<{
|
|
2138
|
+
mode: {
|
|
2139
|
+
type: StringConstructor;
|
|
2140
|
+
default: any;
|
|
2141
|
+
};
|
|
2142
|
+
realMode: {
|
|
2143
|
+
type: StringConstructor;
|
|
2144
|
+
default: any;
|
|
2145
|
+
};
|
|
2146
|
+
as: {
|
|
2147
|
+
type: StringConstructor;
|
|
2148
|
+
default: any;
|
|
2149
|
+
};
|
|
2150
|
+
value: {
|
|
2151
|
+
type: ObjectConstructor;
|
|
2152
|
+
required: true;
|
|
2153
|
+
};
|
|
2154
|
+
initialValue: {
|
|
2155
|
+
type: ObjectConstructor;
|
|
2156
|
+
default: any;
|
|
2157
|
+
};
|
|
2158
|
+
liveValue: {
|
|
2159
|
+
type: ObjectConstructor;
|
|
2160
|
+
default: any;
|
|
2161
|
+
};
|
|
2162
|
+
doneEvent: {
|
|
2163
|
+
type: BooleanConstructor;
|
|
2164
|
+
default: boolean;
|
|
2165
|
+
};
|
|
2166
|
+
}, {}, {
|
|
2065
2167
|
errors: any[];
|
|
2168
|
+
}, {
|
|
2169
|
+
isCreate(): boolean;
|
|
2170
|
+
isEdit(): boolean;
|
|
2171
|
+
isView(): boolean;
|
|
2172
|
+
schema(): any;
|
|
2173
|
+
isNamespaced(): any;
|
|
2174
|
+
labels: {
|
|
2175
|
+
get(): any;
|
|
2176
|
+
set(neu: any): void;
|
|
2177
|
+
};
|
|
2178
|
+
annotations: {
|
|
2179
|
+
get(): any;
|
|
2180
|
+
set(neu: any): void;
|
|
2181
|
+
};
|
|
2182
|
+
doneRoute(): any;
|
|
2183
|
+
doneParams(): any;
|
|
2066
2184
|
}, {
|
|
2067
2185
|
done(): any;
|
|
2068
2186
|
conflict(): Promise<any>;
|
|
2069
2187
|
save(buttonDone: any, url: any, depth?: number): any;
|
|
2070
2188
|
actuallySave(url: any): Promise<void>;
|
|
2071
2189
|
setErrors(errors: any): void;
|
|
2072
|
-
}, {
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2190
|
+
}, any, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
2191
|
+
mode: {
|
|
2192
|
+
type: StringConstructor;
|
|
2193
|
+
default: any;
|
|
2194
|
+
};
|
|
2195
|
+
realMode: {
|
|
2196
|
+
type: StringConstructor;
|
|
2197
|
+
default: any;
|
|
2198
|
+
};
|
|
2199
|
+
as: {
|
|
2200
|
+
type: StringConstructor;
|
|
2201
|
+
default: any;
|
|
2202
|
+
};
|
|
2203
|
+
value: {
|
|
2204
|
+
type: ObjectConstructor;
|
|
2205
|
+
required: true;
|
|
2206
|
+
};
|
|
2207
|
+
initialValue: {
|
|
2208
|
+
type: ObjectConstructor;
|
|
2209
|
+
default: any;
|
|
2210
|
+
};
|
|
2211
|
+
liveValue: {
|
|
2212
|
+
type: ObjectConstructor;
|
|
2213
|
+
default: any;
|
|
2214
|
+
};
|
|
2215
|
+
doneEvent: {
|
|
2216
|
+
type: BooleanConstructor;
|
|
2217
|
+
default: boolean;
|
|
2218
|
+
};
|
|
2219
|
+
}>>, {
|
|
2220
|
+
as: string;
|
|
2221
|
+
mode: string;
|
|
2089
2222
|
doneEvent: boolean;
|
|
2090
|
-
|
|
2223
|
+
initialValue: Record<string, any>;
|
|
2224
|
+
liveValue: Record<string, any>;
|
|
2225
|
+
realMode: string;
|
|
2226
|
+
}>;
|
|
2091
2227
|
export default _default;
|
|
2092
|
-
import Vue from "vue";
|
|
2093
2228
|
}
|
|
2094
2229
|
|
|
2095
2230
|
// @shell/models/namespace
|
|
@@ -2372,6 +2507,20 @@ declare namespace _default {
|
|
|
2372
2507
|
}, { type }: {
|
|
2373
2508
|
type: any;
|
|
2374
2509
|
}): Promise<void>;
|
|
2510
|
+
export function waitForHaveAll({ getters }: {
|
|
2511
|
+
getters: any;
|
|
2512
|
+
}, { type, throwError, attempts }: {
|
|
2513
|
+
type: any;
|
|
2514
|
+
throwError?: boolean;
|
|
2515
|
+
attempts?: number;
|
|
2516
|
+
}): Promise<void>;
|
|
2517
|
+
export function waitForHaveAll({ getters }: {
|
|
2518
|
+
getters: any;
|
|
2519
|
+
}, { type, throwError, attempts }: {
|
|
2520
|
+
type: any;
|
|
2521
|
+
throwError?: boolean;
|
|
2522
|
+
attempts?: number;
|
|
2523
|
+
}): Promise<void>;
|
|
2375
2524
|
export function incrementLoadCounter({ commit }: {
|
|
2376
2525
|
commit: any;
|
|
2377
2526
|
}, resource: any): void;
|
|
@@ -2413,6 +2562,7 @@ export const KEY_FIELD_FOR: {
|
|
|
2413
2562
|
// @shell/plugins/dashboard-store/resource-class
|
|
2414
2563
|
|
|
2415
2564
|
declare module '@shell/plugins/dashboard-store/resource-class' {
|
|
2565
|
+
export function mapStateToEnum(statusString: any): string;
|
|
2416
2566
|
export function getStatesByType(type?: string): {
|
|
2417
2567
|
info: any[];
|
|
2418
2568
|
error: any[];
|
|
@@ -2423,6 +2573,7 @@ export function getStatesByType(type?: string): {
|
|
|
2423
2573
|
export function getStateLabel(state: any): string;
|
|
2424
2574
|
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
2425
2575
|
export function stateDisplay(state: any): any;
|
|
2576
|
+
export function primaryDisplayStatusFromCount(status: any): string;
|
|
2426
2577
|
export function stateSort(color: any, display: any): string;
|
|
2427
2578
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
2428
2579
|
export namespace STATES_ENUM {
|
|
@@ -2456,6 +2607,7 @@ export namespace STATES_ENUM {
|
|
|
2456
2607
|
const ERRORING: string;
|
|
2457
2608
|
const ERRORS: string;
|
|
2458
2609
|
const EXPIRED: string;
|
|
2610
|
+
const EXPIRING: string;
|
|
2459
2611
|
const FAIL: string;
|
|
2460
2612
|
const FAILED: string;
|
|
2461
2613
|
const HEALTHY: string;
|
|
@@ -2666,6 +2818,10 @@ export default class Resource {
|
|
|
2666
2818
|
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<void>;
|
|
2667
2819
|
patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
|
|
2668
2820
|
save(...args: any[]): Promise<Resource>;
|
|
2821
|
+
/**
|
|
2822
|
+
* Remove any unwanted properties from the object that will be saved
|
|
2823
|
+
*/
|
|
2824
|
+
cleanForSave(data: any, forNew: any): any;
|
|
2669
2825
|
/**
|
|
2670
2826
|
* Allow to handle the response of the save request
|
|
2671
2827
|
* @param {*} res Full request response
|
|
@@ -2785,6 +2941,10 @@ export default class Resource {
|
|
|
2785
2941
|
*/
|
|
2786
2942
|
toSave(): any;
|
|
2787
2943
|
get creationTimestamp(): any;
|
|
2944
|
+
/**
|
|
2945
|
+
* Allows model to specify JSON Paths that should be folded in the YAML editor by default
|
|
2946
|
+
*/
|
|
2947
|
+
get yamlFolding(): any[];
|
|
2788
2948
|
}
|
|
2789
2949
|
}
|
|
2790
2950
|
|
|
@@ -2799,6 +2959,7 @@ export function mapFeature(name: any): {
|
|
|
2799
2959
|
export const MULTI_CLUSTER: any;
|
|
2800
2960
|
export const LEGACY: any;
|
|
2801
2961
|
export const RKE2: any;
|
|
2962
|
+
export const RKE1_UI: any;
|
|
2802
2963
|
export const UNSUPPORTED_STORAGE_DRIVERS: any;
|
|
2803
2964
|
export const FLEET: any;
|
|
2804
2965
|
export const HARVESTER: any;
|
|
@@ -2934,12 +3095,10 @@ export namespace actions {
|
|
|
2934
3095
|
state: any;
|
|
2935
3096
|
commit: any;
|
|
2936
3097
|
}): void;
|
|
2937
|
-
function loadTheme({
|
|
2938
|
-
state: any;
|
|
3098
|
+
function loadTheme({ dispatch }: {
|
|
2939
3099
|
dispatch: any;
|
|
2940
3100
|
}): void;
|
|
2941
|
-
function loadTheme({
|
|
2942
|
-
state: any;
|
|
3101
|
+
function loadTheme({ dispatch }: {
|
|
2943
3102
|
dispatch: any;
|
|
2944
3103
|
}): void;
|
|
2945
3104
|
function loadServer({ state, dispatch, commit, rootState, rootGetters }: {
|
|
@@ -2999,8 +3158,8 @@ export function loadConfig(dispatch: any): Promise<{
|
|
|
2999
3158
|
secret: any;
|
|
3000
3159
|
}>;
|
|
3001
3160
|
export function updateConfig(dispatch: any, path: any, type: any, updateFn: any): Promise<void>;
|
|
3002
|
-
export function getAllReceivers(dispatch: any): Promise<any[]
|
|
3003
|
-
export function getAllRoutes(dispatch: any): Promise<any[]
|
|
3161
|
+
export function getAllReceivers(dispatch: any): Promise<any[]>;
|
|
3162
|
+
export function getAllRoutes(dispatch: any): Promise<any[]>;
|
|
3004
3163
|
export function createDefaultRouteName(index: any): string;
|
|
3005
3164
|
export function areRoutesSupportedFormat(secret: any): boolean;
|
|
3006
3165
|
export function canCreate(rootGetters: any): any;
|
|
@@ -3042,6 +3201,12 @@ declare function _default(ctx: any, inject: any): void;
|
|
|
3042
3201
|
export default _default;
|
|
3043
3202
|
}
|
|
3044
3203
|
|
|
3204
|
+
// @shell/utils/azure
|
|
3205
|
+
|
|
3206
|
+
declare module '@shell/utils/azure' {
|
|
3207
|
+
export function parseAzureError(err: any): any;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3045
3210
|
// @shell/utils/clipboard
|
|
3046
3211
|
|
|
3047
3212
|
declare module '@shell/utils/clipboard' {
|
|
@@ -3147,22 +3312,42 @@ export function saferDump(obj: any): any;
|
|
|
3147
3312
|
*
|
|
3148
3313
|
* this is required since jsyaml.dump doesn't support chomping and scalar style at the moment.
|
|
3149
3314
|
* see: https://github.com/nodeca/js-yaml/issues/171
|
|
3315
|
+
|
|
3316
|
+
* @typedef {Object} DumpBlockOptions
|
|
3317
|
+
* @property {('>' | '|')} [scalarStyle] - The scalar style.
|
|
3318
|
+
* @property {('-' | '+' | '' | null)} [chomping] - The chomping style.
|
|
3150
3319
|
*
|
|
3151
3320
|
* @param {*} data the multiline block
|
|
3152
|
-
* @param {
|
|
3321
|
+
* @param {Object} options - Serialization options for jsyaml.dump.
|
|
3322
|
+
* @param {number} options.lineWidth - Set max line width. Set -1 for unlimited width.
|
|
3323
|
+
* @param {DumpBlockOptions} [options.dynamicProperties] - Options for dynamic properties.
|
|
3324
|
+
* Developers can provide their own property names under `options`.
|
|
3153
3325
|
*
|
|
3154
|
-
* - scalarStyle:
|
|
3155
|
-
* one of '|', '>'
|
|
3156
|
-
* default '|'
|
|
3157
|
-
* - chomping:
|
|
3158
|
-
* one of: null, '', '-', '+'
|
|
3159
|
-
* default: null
|
|
3160
3326
|
* @returns the result of jsyaml.dump with the addition of multiline indicators
|
|
3161
3327
|
*/
|
|
3162
|
-
export function dumpBlock(data: any, options?:
|
|
3328
|
+
export function dumpBlock(data: any, options?: {
|
|
3329
|
+
lineWidth: number;
|
|
3330
|
+
dynamicProperties?: DumpBlockOptions;
|
|
3331
|
+
}): any;
|
|
3163
3332
|
export const SIMPLE_TYPES: string[];
|
|
3164
3333
|
export const NEVER_ADD: string[];
|
|
3165
3334
|
export const ACTIVELY_REMOVE: string[];
|
|
3335
|
+
/**
|
|
3336
|
+
* Handles newlines indicators in the multiline blocks.
|
|
3337
|
+
*
|
|
3338
|
+
* this is required since jsyaml.dump doesn't support chomping and scalar style at the moment.
|
|
3339
|
+
* see: https://github.com/nodeca/js-yaml/issues/171
|
|
3340
|
+
*/
|
|
3341
|
+
export type DumpBlockOptions = {
|
|
3342
|
+
/**
|
|
3343
|
+
* - The scalar style.
|
|
3344
|
+
*/
|
|
3345
|
+
scalarStyle?: ('>' | '|');
|
|
3346
|
+
/**
|
|
3347
|
+
* - The chomping style.
|
|
3348
|
+
*/
|
|
3349
|
+
chomping?: ('-' | '+' | '' | null);
|
|
3350
|
+
};
|
|
3166
3351
|
}
|
|
3167
3352
|
|
|
3168
3353
|
// @shell/utils/crypto/browserHashUtils
|
|
@@ -3457,6 +3642,7 @@ export function haveV1MonitoringWorkloads(store: any): Promise<boolean>;
|
|
|
3457
3642
|
export function canViewGrafanaLink(store: any): Promise<boolean>;
|
|
3458
3643
|
export function canViewAlertManagerLink(store: any): Promise<boolean>;
|
|
3459
3644
|
export function canViewPrometheusLink(store: any): Promise<boolean>;
|
|
3645
|
+
export const CATTLE_MONITORING_NAMESPACE: "cattle-monitoring-system";
|
|
3460
3646
|
}
|
|
3461
3647
|
|
|
3462
3648
|
// @shell/utils/namespace-filter
|
|
@@ -3503,7 +3689,7 @@ export function sanitizeComponent(Component: any): any;
|
|
|
3503
3689
|
export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
|
|
3504
3690
|
export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
|
|
3505
3691
|
export function flatMapComponents(route: any, fn: any): any;
|
|
3506
|
-
export function resolveRouteComponents(route: any, fn: any): Promise<[
|
|
3692
|
+
export function resolveRouteComponents(route: any, fn: any): Promise<any[]>;
|
|
3507
3693
|
export function getRouteData(route: any): Promise<any>;
|
|
3508
3694
|
export function setContext(app: any, context: any): Promise<void>;
|
|
3509
3695
|
export function middlewareSeries(promises: any, appContext: any): any;
|
|
@@ -3536,6 +3722,13 @@ export function set(obj: any, path: any, value: any): any;
|
|
|
3536
3722
|
export function getAllValues(obj: any, path: any): any[];
|
|
3537
3723
|
export function get(obj: any, path: any): any;
|
|
3538
3724
|
export function remove(obj: any, path: any): any;
|
|
3725
|
+
/**
|
|
3726
|
+
* `delete` a property at the given path.
|
|
3727
|
+
*
|
|
3728
|
+
* This is similar to `remove` but doesn't need any fancy kube obj path splitting
|
|
3729
|
+
* and doesn't use `Vue.set` (avoids reactivity)
|
|
3730
|
+
*/
|
|
3731
|
+
export function deleteProperty(obj: any, path: any): void;
|
|
3539
3732
|
export function getter(path: any): (obj: any) => any;
|
|
3540
3733
|
export function clone(obj: any): any;
|
|
3541
3734
|
export function isEmpty(obj: any): boolean;
|