@rancher/shell 0.5.3 → 2.0.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/data/aws-regions.json +9 -0
- package/assets/images/vendor/openid.svg +18 -0
- package/assets/styles/app.scss +1 -2
- package/assets/styles/fonts/_icons.scss +3 -3
- package/assets/styles/global/_columns.scss +1 -1
- package/assets/styles/global/_labeled-input.scss +2 -0
- package/assets/styles/themes/_csp.scss +2 -2
- package/assets/styles/themes/_dark.scss +8 -2
- package/assets/styles/themes/_light.scss +2 -1
- package/assets/styles/themes/_suse.scss +1 -1
- package/assets/styles/vendor/vue-select.scss +5 -0
- package/assets/translations/en-us.yaml +296 -58
- package/assets/translations/zh-hans.yaml +5 -27
- package/babel.config.js +1 -1
- package/chart/__tests__/S3.test.ts +9 -2
- package/chart/monitoring/grafana/index.vue +6 -2
- package/chart/monitoring/prometheus/index.vue +2 -2
- package/chart/rancher-backup/S3.vue +11 -9
- package/chart/rancher-backup/index.vue +15 -5
- package/cloud-credential/__tests__/harvester.test.ts +18 -0
- package/cloud-credential/generic.vue +18 -9
- package/cloud-credential/harvester.vue +11 -3
- package/components/AppModal.vue +167 -0
- package/components/AssignTo.vue +7 -4
- package/components/AsyncButton.vue +18 -5
- package/components/BackLink.vue +4 -4
- package/components/BannerGraphic.vue +1 -0
- package/components/BrandImage.vue +47 -1
- package/components/Carousel.vue +14 -8
- package/components/Certificates.vue +8 -11
- package/components/ClusterBadge.vue +12 -3
- package/components/ClusterIconMenu.vue +44 -16
- package/components/ClusterProviderIcon.vue +14 -3
- package/components/CodeMirror.vue +73 -38
- package/components/CommunityLinks.vue +12 -8
- package/components/CreateDriver.vue +81 -0
- package/components/CruResource.vue +51 -27
- package/components/DetailTop.vue +2 -2
- package/components/Dialog.vue +6 -5
- package/components/DisableAuthProviderModal.vue +14 -8
- package/components/DraggableZone.vue +2 -2
- package/components/ExplorerMembers.vue +3 -3
- package/components/ExplorerProjectsNamespaces.vue +6 -6
- package/components/FixedBanner.vue +47 -36
- package/components/GlobalRoleBindings.vue +26 -0
- package/components/Import.vue +10 -6
- package/components/Inactivity.vue +1 -5
- package/components/KeyValueView.vue +14 -10
- package/components/MessageLink.vue +2 -2
- package/components/ModalWithCard.vue +5 -8
- package/components/MoveModal.vue +35 -33
- package/components/PodSecurityAdmission.vue +3 -3
- package/components/PromptChangePassword.vue +33 -33
- package/components/PromptModal.vue +11 -21
- package/components/PromptRemove.vue +11 -17
- package/components/PromptRestore.vue +18 -16
- package/components/Questions/__tests__/Boolean.test.ts +9 -19
- package/components/Questions/__tests__/Float.test.ts +9 -19
- package/components/Questions/__tests__/Int.test.ts +9 -19
- package/components/Questions/__tests__/String.test.ts +9 -19
- package/components/Questions/__tests__/Yaml.test.ts +9 -20
- package/components/Questions/__tests__/utils/questions-defaults.ts +20 -0
- package/components/Questions/index.vue +18 -2
- package/components/ResourceCancelModal.vue +34 -29
- package/components/ResourceDetail/Masthead.vue +23 -7
- package/components/ResourceDetail/index.vue +5 -0
- package/components/ResourceList/Masthead.vue +28 -10
- package/components/ResourceList/index.vue +65 -14
- package/components/ResourceTable.vue +73 -19
- package/components/ResourceYaml.vue +1 -0
- package/components/SelectIconGrid.vue +3 -3
- package/components/SideNav.vue +15 -37
- package/components/SingleClusterInfo.vue +4 -4
- package/components/SortableTable/THead.vue +26 -12
- package/components/SortableTable/filtering.js +9 -1
- package/components/SortableTable/grouping.js +8 -1
- package/components/SortableTable/index.vue +142 -42
- package/components/SortableTable/paging.js +36 -7
- package/components/SortableTable/selection.js +2 -1
- package/components/SortableTable/sorting.js +24 -7
- package/components/TabTitle.vue +84 -0
- package/components/Tabbed/index.vue +6 -1
- package/components/TableDataUserIcon.vue +47 -0
- package/components/TypeDescription.vue +1 -0
- package/components/Wizard.vue +1 -0
- package/components/__tests__/AppModal.test.ts +98 -0
- package/components/__tests__/AsyncButton.test.ts +1 -3
- package/components/__tests__/BackLink.test.ts +1 -1
- package/components/__tests__/ButtonGroup.test.ts +3 -6
- package/components/__tests__/Carousel.test.ts +43 -0
- package/components/__tests__/Certificates.test.ts +29 -0
- package/components/__tests__/{CodeMirror.spec.ts → CodeMirror.test.ts} +5 -17
- package/components/__tests__/CruResource.test.ts +10 -9
- package/components/__tests__/EtcdInfoBanner.test.ts +37 -0
- package/components/__tests__/FixedBanner.test.ts +5 -20
- package/components/__tests__/NamespaceFilter.test.ts +9 -18
- package/components/__tests__/TabTitle.test.ts +129 -0
- package/components/auth/AzureWarning.vue +2 -2
- package/components/auth/RoleDetailEdit.vue +10 -0
- package/components/auth/__tests__/RoleDetailEdit.test.ts +3 -2
- package/components/auth/login/oidc.vue +7 -1
- package/components/fleet/FleetClusters.vue +9 -9
- package/components/fleet/FleetIntro.vue +11 -17
- package/components/fleet/FleetNoWorkspaces.vue +2 -2
- package/components/fleet/FleetRepos.vue +1 -0
- package/components/fleet/ForceDirectedTreeChart/index.vue +9 -3
- package/components/form/ArrayList.vue +30 -19
- package/components/form/ArrayListSelect.vue +9 -4
- package/components/form/ClusterAppearance.vue +132 -0
- package/components/form/ColorInput.vue +1 -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 +67 -48
- package/components/form/LabeledSelect.vue +143 -43
- package/components/form/Labels.vue +3 -1
- package/components/form/NameNsDescription.vue +26 -9
- package/components/form/ResourceLabeledSelect.vue +187 -0
- package/components/form/ResourceTabs/index.vue +31 -15
- package/components/form/SecretSelector.vue +93 -18
- package/components/form/Select.vue +1 -1
- package/components/form/SelectOrCreateAuthSecret.vue +135 -62
- package/components/form/SimpleSecretSelector.vue +88 -28
- package/components/form/__tests__/BannerSettings.test.ts +53 -0
- package/components/form/__tests__/KeyValue.test.ts +121 -12
- package/components/form/__tests__/LabeledSelect.test.ts +0 -18
- package/components/form/__tests__/NameNsDescription.test.ts +25 -15
- package/components/form/labeled-select-utils/labeled-select-pagination.ts +151 -0
- package/components/form/labeled-select-utils/labeled-select.utils.ts +122 -0
- package/components/formatter/AppSummaryGraph.vue +2 -2
- package/components/formatter/CloudCredPublicData.vue +30 -0
- package/components/formatter/ClusterLink.vue +2 -2
- package/components/formatter/FleetSummaryGraph.vue +2 -1
- package/components/formatter/ImagePercentageBar.vue +0 -4
- package/components/formatter/IngressTarget.vue +18 -7
- package/components/formatter/Link.vue +2 -2
- package/components/formatter/LinkDetail.vue +2 -2
- package/components/formatter/LinkDetailImage.vue +2 -2
- package/components/formatter/LinkName.vue +2 -2
- package/components/formatter/LiveDate.vue +16 -0
- package/components/formatter/PrincipalGroupBindings.vue +2 -2
- package/components/formatter/SecretType.vue +2 -2
- package/components/formatter/VirtualServiceGateways.vue +2 -2
- package/components/formatter/__tests__/LinkDetail.test.ts +5 -5
- package/components/nav/Group.vue +7 -5
- package/components/nav/Header.vue +82 -43
- package/components/nav/NamespaceFilter.vue +8 -1
- package/components/nav/TopLevelMenu.vue +336 -125
- package/components/nav/Type.vue +58 -102
- package/components/nav/__tests__/TopLevelMenu.test.ts +370 -9
- package/components/nav/__tests__/Type.test.ts +321 -126
- package/components/nuxt/nuxt-child.js +0 -5
- package/components/nuxt/nuxt-error.vue +1 -1
- package/components/nuxt/nuxt-link.client.js +13 -95
- package/components/templates/default.vue +3 -3
- package/components/templates/error.vue +6 -10
- package/components/templates/standalone.vue +0 -4
- package/components/templates/unauthenticated.vue +1 -2
- package/components/user.retention/user-retention-header.vue +34 -0
- package/composables/useCompactInput.test.ts +36 -0
- package/composables/useCompactInput.ts +2 -2
- package/composables/useI18n.ts +26 -0
- package/composables/useLabeledFormElement.test.ts +135 -0
- package/composables/useStore.ts +16 -0
- package/config/home-links.js +32 -1
- package/config/labels-annotations.js +2 -1
- package/config/middleware.js +0 -6
- package/config/pagination-table-headers.js +57 -0
- package/config/pod-security-admission.ts +1 -1
- package/config/private-label.js +1 -3
- package/config/product/auth.js +1 -0
- package/config/product/explorer.js +167 -46
- package/config/product/legacy.js +3 -95
- package/config/product/manager.js +44 -11
- package/config/query-params.js +1 -0
- package/config/roles.ts +23 -0
- package/config/router/index.js +23 -0
- package/config/router/navigation-guards/attempt-first-login.js +73 -0
- package/config/router/navigation-guards/authentication.js +63 -0
- package/config/router/navigation-guards/index.js +15 -0
- package/config/router/navigation-guards/load-initial-settings.js +15 -0
- package/config/router/routes.js +487 -0
- package/config/settings.ts +38 -2
- package/config/store.js +7 -3
- package/config/table-headers.js +46 -1
- package/config/types.js +36 -16
- package/config/uiplugins.js +10 -5
- package/core/plugin-helpers.js +1 -1
- package/core/plugin.ts +2 -1
- package/core/plugins.js +289 -282
- package/creators/app/files/.eslintignore +0 -2
- package/creators/app/files/.vscode/settings.json +0 -1
- package/creators/pkg/files/.github/workflows/build-extension-catalog.yml +2 -6
- package/creators/pkg/files/.github/workflows/build-extension-charts.yml +2 -6
- package/creators/pkg/init +32 -0
- package/detail/__tests__/service.test.ts +62 -0
- package/detail/catalog.cattle.io.app.vue +1 -1
- package/detail/cis.cattle.io.clusterscan.vue +14 -3
- package/detail/fleet.cattle.io.gitrepo.vue +15 -9
- package/detail/namespace.vue +2 -2
- package/detail/networking.k8s.io.ingress.vue +52 -19
- package/detail/node.vue +20 -43
- package/detail/pod.vue +1 -68
- package/detail/provisioning.cattle.io.cluster.vue +2 -1
- package/detail/service.vue +1 -1
- package/detail/workload/index.vue +2 -15
- package/dialog/AddCustomBadgeDialog.vue +318 -161
- package/dialog/DeactivateDriverDialog.vue +118 -0
- package/dialog/RollbackWorkloadDialog.vue +2 -2
- package/dialog/RotateCertificatesDialog.vue +0 -21
- package/directives/clean-html.js +15 -0
- package/directives/clean-tooltip.js +32 -0
- package/directives/focus.js +41 -0
- package/directives/int-number.js +21 -0
- package/directives/positive-int-number.js +19 -0
- package/directives/trim-whitespace.js +19 -0
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +3 -2
- package/edit/__tests__/kontainerDriver.test.ts +107 -0
- package/edit/__tests__/management.cattle.io.clusterroletemplatebinding.test.ts +12 -1
- package/edit/__tests__/management.cattle.io.setting.test.ts +2 -1
- package/edit/__tests__/monitoring.coreos.com.prometheusrule.test.ts +2 -3
- package/edit/__tests__/nodeDriver.test.ts +107 -0
- package/edit/__tests__/service.test.ts +1 -5
- package/edit/__tests__/ui.cattle.io.navlink.test.ts +3 -1
- package/edit/auth/AuthProviderWarningBanners.vue +34 -0
- package/edit/auth/__tests__/AuthProviderWarningBanners.test.ts +19 -0
- package/edit/auth/__tests__/azuread.test.ts +241 -0
- package/edit/auth/__tests__/oidc.test.ts +137 -0
- package/edit/auth/azuread.vue +133 -31
- package/edit/auth/github.vue +5 -17
- package/edit/auth/googleoauth.vue +5 -18
- package/edit/auth/ldap/index.vue +5 -17
- package/edit/auth/oidc.vue +143 -42
- package/edit/auth/saml.vue +5 -14
- package/edit/catalog.cattle.io.clusterrepo.vue +175 -20
- package/edit/cis.cattle.io.clusterscan.vue +5 -2
- package/edit/cis.cattle.io.clusterscanbenchmark.vue +41 -9
- package/edit/cloudcredential.vue +26 -4
- package/edit/configmap.vue +10 -4
- package/edit/fleet.cattle.io.gitrepo.vue +7 -4
- package/edit/helm.cattle.io.projecthelmchart.vue +29 -19
- package/edit/kontainerDriver.vue +65 -0
- package/edit/logging-flow/Match.vue +10 -9
- package/edit/logging-flow/index.vue +4 -19
- package/edit/logging.banzaicloud.io.output/__tests__/logging.banzaicloud.io.output.test.ts +232 -2
- package/edit/logging.banzaicloud.io.output/index.vue +43 -26
- package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +3 -3
- package/edit/management.cattle.io.project.vue +2 -1
- package/edit/management.cattle.io.setting.vue +20 -0
- package/edit/management.cattle.io.user.vue +2 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/index.vue +10 -7
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +21 -16
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +1 -0
- package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +3 -0
- package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +2 -0
- package/edit/monitoring.coreos.com.prometheusrule/RecordingRule.vue +2 -0
- package/edit/monitoring.coreos.com.prometheusrule/index.vue +2 -0
- package/edit/networking.k8s.io.ingress/Rules.vue +8 -3
- package/edit/networking.k8s.io.ingress/index.vue +64 -8
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +1 -0
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +6 -2
- package/edit/networking.k8s.io.networkpolicy/__tests__/{PolicyRuleTarget.spec.ts → PolicyRuleTarget.test.ts} +45 -6
- package/edit/networking.k8s.io.networkpolicy/__tests__/utils/selectors.test.ts +1 -1
- package/edit/networking.k8s.io.networkpolicy/index.vue +2 -0
- package/edit/nodeDriver.vue +65 -0
- package/edit/persistentvolume/index.vue +2 -2
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +18 -9
- package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +165 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +1 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/CustomCommand.test.ts +0 -3
- package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +228 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +70 -12
- package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +5 -0
- package/edit/provisioning.cattle.io.cluster/import.vue +2 -2
- package/edit/provisioning.cattle.io.cluster/index.vue +21 -15
- package/edit/provisioning.cattle.io.cluster/rke2.vue +185 -114
- package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +67 -7
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +19 -6
- package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +132 -0
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +7 -0
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/S3Config.vue +1 -0
- package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +1 -0
- package/edit/provisioning.cattle.io.cluster/tabs/registries/RegistryConfigs.vue +3 -0
- package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +1 -0
- package/edit/resources.cattle.io.backup.vue +139 -124
- package/edit/resources.cattle.io.restore.vue +146 -126
- package/edit/service.vue +1 -0
- package/edit/serviceaccount.vue +46 -4
- package/edit/workload/__tests__/Job.test.ts +1 -3
- package/edit/workload/__tests__/Upgrading.test.ts +2 -2
- package/edit/workload/mixins/workload.js +34 -1
- package/edit/workload/storage/emptyDir.vue +2 -2
- package/initialize/App.vue +75 -0
- package/initialize/app-extended.js +128 -0
- package/initialize/entry-helpers.js +549 -0
- package/initialize/entry.js +32 -0
- package/initialize/install-components.js +23 -0
- package/initialize/install-directives.js +59 -0
- package/initialize/install-plugins.js +123 -0
- package/list/__tests__/workload.test.ts +1 -1
- package/list/cis.cattle.io.clusterscan.vue +16 -10
- package/list/group.principal.vue +2 -2
- package/list/management.cattle.io.feature.vue +11 -7
- package/list/management.cattle.io.user.vue +36 -3
- package/list/networking.k8s.io.ingress.vue +36 -0
- package/list/node.vue +211 -73
- package/list/provisioning.cattle.io.cluster.vue +17 -4
- package/list/ui.cattle.io.navlink.vue +2 -2
- package/list/workload.vue +22 -0
- package/machine-config/__tests__/vmwarevsphere-pool-config-merge.test.ts +30 -0
- package/machine-config/__tests__/vmwarevsphere.test.ts +162 -59
- package/machine-config/amazonec2.vue +1 -1
- package/machine-config/azure.vue +38 -21
- package/machine-config/generic.vue +11 -15
- package/machine-config/vmwarevsphere-pool-config-merge.ts +25 -0
- package/machine-config/vmwarevsphere.vue +20 -11
- package/middleware/authenticated.js +9 -361
- package/mixins/__tests__/chart.test.ts +48 -6
- package/mixins/__tests__/create-edit-view.test.ts +2 -3
- package/mixins/auth-config.js +3 -2
- package/mixins/brand.js +75 -57
- package/mixins/chart.js +27 -13
- package/mixins/create-edit-view/index.js +2 -2
- package/mixins/fetch.client.js +42 -48
- package/mixins/labeled-form-element.ts +21 -1
- package/mixins/page-actions.js +7 -5
- package/mixins/resource-fetch-api-pagination.js +304 -0
- package/mixins/resource-fetch-namespaced.js +1 -1
- package/mixins/resource-fetch.js +46 -5
- package/models/__tests__/cluster.test.ts +44 -0
- package/models/__tests__/fleet.cattle.io.cluster.test.ts +36 -0
- package/models/__tests__/schema.tests.ts +24 -0
- package/models/__tests__/steve-schema.test.ts +73 -0
- package/models/__tests__/workload.test.ts +1 -1
- package/models/catalog.cattle.io.app.js +8 -0
- package/models/catalog.cattle.io.clusterrepo.js +9 -1
- package/models/catalog.cattle.io.uiplugin.js +7 -8
- package/models/cis.cattle.io.clusterscan.js +29 -8
- package/models/cloudcredential.js +9 -1
- package/models/cluster/node.js +4 -0
- package/models/cluster/schema.js +6 -0
- package/models/cluster.js +33 -0
- package/models/driver.js +62 -0
- package/models/fleet.cattle.io.cluster.js +23 -11
- package/models/fleet.cattle.io.gitrepo.js +10 -0
- package/models/helm.cattle.io.projecthelmchart.js +1 -1
- package/models/kontainerdriver.js +68 -0
- package/models/management/schema.js +6 -0
- package/models/management.cattle.io.authconfig.js +3 -2
- package/models/management.cattle.io.cluster.js +5 -4
- package/models/management.cattle.io.globalrole.js +2 -0
- package/models/management.cattle.io.user.js +67 -2
- package/models/monitoring.coreos.com.receiver.js +3 -1
- package/models/monitoring.coreos.com.route.js +1 -1
- package/models/networking.k8s.io.ingress.js +2 -1
- package/models/nodedriver.js +68 -0
- package/models/provisioning.cattle.io.cluster.js +34 -1
- package/models/schema.js +28 -7
- package/models/service.js +2 -0
- package/models/steve-schema.ts +254 -0
- package/models/workload.js +1 -0
- package/package.json +6 -5
- package/pages/about.vue +12 -5
- package/pages/account/index.vue +7 -2
- package/pages/auth/login.vue +106 -102
- package/pages/auth/logout.vue +2 -2
- package/pages/auth/setup.vue +57 -64
- package/pages/auth/verify.vue +17 -17
- package/pages/c/_cluster/apps/charts/chart.vue +54 -9
- package/pages/c/_cluster/apps/charts/index.vue +37 -13
- package/pages/c/_cluster/apps/charts/install.vue +4 -4
- package/pages/c/_cluster/auth/config/_id.vue +0 -6
- package/pages/c/_cluster/auth/config/index.vue +15 -9
- package/pages/c/_cluster/auth/roles/index.vue +8 -10
- package/pages/c/_cluster/auth/user.retention/index.vue +384 -0
- package/pages/c/_cluster/explorer/ConfigBadge.vue +13 -8
- package/pages/c/_cluster/explorer/EventsTable.vue +18 -0
- package/pages/c/_cluster/explorer/__tests__/index.test.ts +181 -0
- package/pages/c/_cluster/explorer/index.vue +231 -72
- package/pages/c/_cluster/explorer/tools/__tests__/index.test.ts +69 -0
- package/pages/c/_cluster/explorer/tools/index.vue +12 -176
- package/pages/c/_cluster/fleet/index.vue +88 -93
- package/pages/c/_cluster/longhorn/__tests__/longhorn.index.test.ts +89 -0
- package/pages/c/_cluster/longhorn/index.vue +52 -17
- package/pages/c/_cluster/manager/cloudCredential/index.vue +18 -25
- package/pages/c/_cluster/manager/drivers/kontainerDriver/_id.vue +12 -0
- package/pages/c/_cluster/manager/drivers/kontainerDriver/create.vue +15 -0
- package/pages/c/_cluster/manager/drivers/kontainerDriver/index.vue +94 -0
- package/pages/c/_cluster/manager/drivers/nodeDriver/_id.vue +12 -0
- package/pages/c/_cluster/manager/drivers/nodeDriver/create.vue +15 -0
- package/pages/c/_cluster/manager/drivers/nodeDriver/index.vue +63 -0
- package/pages/c/_cluster/manager/jwt.authentication/index.vue +235 -0
- package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +4 -0
- package/pages/c/_cluster/monitoring/index.vue +1 -17
- package/pages/c/_cluster/monitoring/route-receiver/index.vue +2 -2
- package/pages/c/_cluster/neuvector/index.vue +1 -0
- package/pages/c/_cluster/settings/DefaultLinksEditor.vue +1 -0
- package/pages/c/_cluster/settings/banners.vue +86 -8
- package/pages/c/_cluster/settings/brand.vue +258 -36
- package/pages/c/_cluster/settings/index.vue +4 -4
- package/pages/c/_cluster/settings/links.vue +5 -3
- package/pages/c/_cluster/settings/performance.vue +71 -2
- package/pages/c/_cluster/uiplugins/AddExtensionRepos.vue +5 -2
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +10 -7
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogUninstallDialog.vue +9 -6
- package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +11 -5
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +53 -18
- package/pages/c/_cluster/uiplugins/SetupUIPlugins.vue +36 -301
- package/pages/c/_cluster/uiplugins/UninstallDialog.vue +14 -6
- package/pages/c/_cluster/uiplugins/__tests__/SetupUIPlugins.test.ts +52 -106
- package/pages/c/_cluster/uiplugins/index.vue +38 -52
- package/pages/diagnostic.vue +1 -0
- package/pages/fail-whale.vue +103 -41
- package/pages/home.vue +81 -24
- package/pages/prefs.vue +8 -3
- package/pages/support/index.vue +12 -2
- package/plugins/clean-html-directive.js +5 -12
- package/plugins/clean-tooltip-directive.js +6 -31
- package/plugins/codemirror.js +0 -9
- package/plugins/dashboard-store/__tests__/mutations.test.ts +296 -313
- package/plugins/dashboard-store/actions.js +140 -32
- package/plugins/dashboard-store/getters.js +86 -39
- package/plugins/dashboard-store/index.js +0 -99
- package/plugins/dashboard-store/mutations.js +150 -48
- package/plugins/dashboard-store/resource-class.js +14 -109
- package/plugins/directives.js +6 -39
- package/plugins/ember-cookie.js +13 -0
- package/plugins/global-formatters.js +26 -5
- package/plugins/i18n.js +90 -56
- package/plugins/int-number.js +6 -20
- package/plugins/plugin.js +3 -3
- package/plugins/positive-int-number.js +6 -17
- package/plugins/steve/__tests__/{getters.spec.ts → getters.test.ts} +124 -31
- package/plugins/steve/__tests__/mutations.test.ts +49 -0
- package/plugins/steve/__tests__/subscribe.spec.ts +109 -0
- package/plugins/steve/__tests__/utils/mutation.test.helpers.ts +105 -0
- package/plugins/steve/accept-or-reject-socket-message.ts +103 -0
- package/plugins/steve/actions.js +0 -1
- package/plugins/steve/getters.js +183 -63
- package/plugins/steve/hybrid-class.js +5 -1
- package/plugins/steve/mutations.js +29 -5
- package/plugins/steve/norman-class.js +123 -2
- package/{utils → plugins/steve}/projectAndNamespaceFiltering.utils.ts +28 -10
- package/plugins/steve/schema.d.ts +22 -0
- package/plugins/steve/steve-pagination-utils.ts +368 -0
- package/plugins/steve/subscribe.js +37 -75
- package/plugins/trim-whitespace.js +6 -34
- package/plugins/vue-js-modal.js +1 -1
- package/public/index.html +1 -0
- package/rancher-components/Accordion/Accordion.vue +3 -2
- package/rancher-components/BadgeState/BadgeState.vue +3 -3
- package/rancher-components/Banner/Banner.test.ts +1 -5
- package/rancher-components/Banner/Banner.vue +2 -2
- package/rancher-components/Card/Card.vue +4 -4
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -3
- package/rancher-components/Form/LabeledInput/LabeledInput.test.ts +1 -1
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +66 -30
- package/rancher-components/Form/Radio/RadioButton.test.ts +1 -3
- package/rancher-components/Form/Radio/RadioButton.vue +13 -7
- package/rancher-components/Form/Radio/RadioGroup.vue +4 -3
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +7 -5
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +9 -4
- package/rancher-components/StringList/StringList.vue +8 -8
- package/rancher-components/components/Accordion/Accordion.vue +3 -2
- package/rancher-components/components/BadgeState/BadgeState.vue +3 -3
- package/rancher-components/components/Banner/Banner.test.ts +1 -5
- package/rancher-components/components/Banner/Banner.vue +2 -2
- package/rancher-components/components/Card/Card.vue +4 -4
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +4 -3
- package/rancher-components/components/Form/LabeledInput/LabeledInput.test.ts +1 -1
- package/rancher-components/components/Form/LabeledInput/LabeledInput.vue +66 -30
- package/rancher-components/components/Form/Radio/RadioButton.test.ts +1 -3
- 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 +7 -5
- 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 +27 -8
- package/scripts/clean +1 -1
- package/scripts/extension/helm/charts/ui-plugin-server/templates/_helpers.tpl +11 -0
- package/scripts/extension/helm/charts/ui-plugin-server/templates/cr.yaml +2 -0
- package/scripts/extension/helm/charts/ui-plugin-server/values.yaml +2 -0
- package/scripts/extension/helm/package/Dockerfile +1 -1
- package/scripts/extension/helm/scripts/patch +27 -0
- package/scripts/extension/publish +6 -6
- package/scripts/serve-pkgs +0 -2
- package/scripts/test-plugins-build.sh +6 -6
- package/scripts/vue-migrate.js +683 -0
- package/store/__tests__/catalog.test.ts +224 -0
- package/store/auth.js +23 -4
- package/store/aws.js +53 -6
- package/store/catalog.js +21 -5
- package/store/cru-resource.ts +26 -0
- package/store/customisation.js +35 -0
- package/store/features.js +6 -4
- package/store/index.js +132 -39
- package/store/plugins.js +8 -4
- package/store/type-map.js +143 -143
- package/store/type-map.utils.ts +226 -0
- package/tsconfig.json +0 -1
- package/tsconfig.paths.json +4 -1
- package/types/components/labeledSelect.ts +50 -0
- package/types/resources/settings.d.ts +32 -0
- package/types/{userPreferences.d.ts → resources/userPreferences.d.ts} +0 -1
- package/types/shell/index.d.ts +996 -782
- package/types/store/dashboard-store.types.ts +42 -0
- package/types/store/pagination.types.ts +457 -0
- package/types/store/type-map.ts +30 -0
- package/types/store/vuex.d.ts +9 -0
- package/types/vue-shim.d.ts +51 -0
- package/utils/__tests__/cluster.test.ts +20 -18
- package/utils/__tests__/create-yaml.test.ts +359 -2
- package/utils/__tests__/kontainer.test.ts +92 -0
- package/utils/__tests__/pod-security-admission.test.ts +1 -1
- package/utils/alertmanagerconfig.js +19 -0
- package/utils/array.ts +40 -1
- package/utils/async.ts +2 -0
- package/utils/auth.js +152 -4
- package/utils/axios.js +2 -2
- package/utils/banners.js +103 -0
- package/utils/cluster.js +1 -1
- package/utils/config.js +4 -0
- package/utils/create-yaml.js +54 -27
- package/utils/error.js +25 -0
- package/utils/formatter.js +5 -3
- package/utils/git.ts +1 -1
- package/utils/install-redirect.js +1 -1
- package/utils/kontainer.ts +186 -0
- package/utils/monitoring.js +2 -37
- package/utils/pagination-utils.ts +154 -0
- package/utils/pod-security-admission.ts +1 -1
- package/utils/router.js +86 -0
- package/utils/settings.ts +46 -0
- package/utils/socket.js +1 -0
- package/utils/time.js +1 -0
- package/utils/title.ts +3 -0
- package/utils/unit-tests/ChildRenderingRouterLinkStub.ts +36 -0
- package/utils/validators/formRules/__tests__/index.test.ts +21 -0
- package/utils/validators/formRules/index.ts +3 -0
- package/utils/validators/index.js +1 -0
- package/vue.config.js +376 -421
- package/assets/styles/vendor/vue-js-modal.scss +0 -16
- package/chart/monitoring/steps/uninstall-v1.vue +0 -135
- package/components/EventsTable.vue +0 -67
- package/components/TabbedLinks/index.vue +0 -94
- package/components/nuxt/nuxt-link.server.js +0 -16
- package/components/nuxt/nuxt.js +0 -101
- package/config/router.js +0 -425
- package/initialize/App.js +0 -152
- package/initialize/client.js +0 -734
- package/initialize/index.js +0 -287
- package/middleware/i18n.js +0 -10
- package/middleware/unauthenticated.js +0 -22
- package/mixins/v1-workload-metrics.js +0 -43
- package/pages/c/_cluster/apps/index.vue +0 -15
- package/pages/c/_cluster/auth/index.vue +0 -17
- package/pages/c/_cluster/index.vue +0 -15
- package/pages/c/_cluster/legacy/index.vue +0 -22
- package/pages/c/_cluster/manager/index.vue +0 -22
- package/pages/c/_cluster/mcapps/index.vue +0 -21
- package/pages/c/_cluster/uiplugins/RemoveUIPlugins.vue +0 -232
- package/plugins/dashboard-store/rehydrate-all.js +0 -44
- package/plugins/index.js +0 -11
- package/plugins/portal-vue.js +0 -4
- package/plugins/portal.js +0 -4
- package/plugins/resize.js +0 -5
- package/plugins/shortkey.js +0 -4
- package/plugins/tooltip.js +0 -4
- package/plugins/v-select.js +0 -4
- package/utils/group.js +0 -70
- package/utils/nuxt.js +0 -638
- package/utils/router.scrollBehavior.js +0 -78
- /package/components/__tests__/{Collapse.spec.ts → Collapse.test.ts} +0 -0
- /package/models/__tests__/{node.ts → node.test.ts} +0 -0
- /package/plugins/steve/__tests__/{header-warnings.spec.ts → header-warnings.test.ts} +0 -0
- /package/plugins/steve/__tests__/{steve-class.spec.ts → steve-class.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/{pod-security-admission.ts → resources/pod-security-admission.ts} +0 -0
package/types/shell/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export const CREATOR_ID: "field.cattle.io/creatorId";
|
|
|
40
40
|
export const RESOURCE_QUOTA: "field.cattle.io/resourceQuota";
|
|
41
41
|
export const AZURE_MIGRATED: "auth.cattle.io/azuread-endpoint-migrated";
|
|
42
42
|
export const WORKSPACE_ANNOTATION: "objectset.rio.cattle.io/id";
|
|
43
|
+
export const NODE_ARCHITECTURE: "kubernetes.io/arch";
|
|
43
44
|
export namespace KUBERNETES {
|
|
44
45
|
const SERVICE_ACCOUNT_UID: string;
|
|
45
46
|
const SERVICE_ACCOUNT_NAME: string;
|
|
@@ -167,6 +168,7 @@ export const LOCAL: "local";
|
|
|
167
168
|
export const SETUP: "setup";
|
|
168
169
|
export const STEP: "step";
|
|
169
170
|
export const LOGGED_OUT: "logged-out";
|
|
171
|
+
export const IS_SSO: "is-sso";
|
|
170
172
|
export const UPGRADED: "upgraded";
|
|
171
173
|
export const TIMED_OUT: "timed-out";
|
|
172
174
|
export const AUTH_TEST: "test";
|
|
@@ -235,56 +237,62 @@ export namespace STATE {
|
|
|
235
237
|
export { _default as default };
|
|
236
238
|
export const formatter: string;
|
|
237
239
|
}
|
|
238
|
-
export namespace
|
|
240
|
+
export namespace USER_STATE {
|
|
239
241
|
const name_1: string;
|
|
240
242
|
export { name_1 as name };
|
|
241
243
|
const labelKey_1: string;
|
|
242
244
|
export { labelKey_1 as labelKey };
|
|
245
|
+
const sort_1: string[];
|
|
246
|
+
export { sort_1 as sort };
|
|
243
247
|
const value_1: string;
|
|
244
248
|
export { value_1 as value };
|
|
245
|
-
export
|
|
246
|
-
export
|
|
249
|
+
export function getValue_1(row: any): any;
|
|
250
|
+
export { getValue_1 as getValue };
|
|
251
|
+
const width_1: number;
|
|
252
|
+
export { width_1 as width };
|
|
253
|
+
const _default_1: string;
|
|
254
|
+
export { _default_1 as default };
|
|
255
|
+
const formatter_1: string;
|
|
256
|
+
export { formatter_1 as formatter };
|
|
247
257
|
}
|
|
248
|
-
export namespace
|
|
258
|
+
export namespace DOWNLOAD {
|
|
249
259
|
const name_2: string;
|
|
250
260
|
export { name_2 as name };
|
|
251
261
|
const labelKey_2: string;
|
|
252
262
|
export { labelKey_2 as labelKey };
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
export
|
|
256
|
-
const
|
|
257
|
-
export { formatter_1 as formatter };
|
|
263
|
+
const value_2: string;
|
|
264
|
+
export { value_2 as value };
|
|
265
|
+
export const canBeVariable: boolean;
|
|
266
|
+
export const align: string;
|
|
258
267
|
}
|
|
259
|
-
export namespace
|
|
268
|
+
export namespace INTERNAL_EXTERNAL_IP {
|
|
260
269
|
const name_3: string;
|
|
261
270
|
export { name_3 as name };
|
|
262
271
|
const labelKey_3: string;
|
|
263
272
|
export { labelKey_3 as labelKey };
|
|
264
|
-
const
|
|
265
|
-
export { value_2 as value };
|
|
266
|
-
export function getValue_1(row: any): any;
|
|
267
|
-
export { getValue_1 as getValue };
|
|
273
|
+
export const search: string[];
|
|
268
274
|
const sort_2: string[];
|
|
269
275
|
export { sort_2 as sort };
|
|
270
276
|
const formatter_2: string;
|
|
271
277
|
export { formatter_2 as formatter };
|
|
272
|
-
const canBeVariable_1: boolean;
|
|
273
|
-
export { canBeVariable_1 as canBeVariable };
|
|
274
278
|
}
|
|
275
|
-
export namespace
|
|
279
|
+
export namespace NAME {
|
|
276
280
|
const name_4: string;
|
|
277
281
|
export { name_4 as name };
|
|
278
282
|
const labelKey_4: string;
|
|
279
283
|
export { labelKey_4 as labelKey };
|
|
280
284
|
const value_3: string;
|
|
281
285
|
export { value_3 as value };
|
|
286
|
+
export function getValue_2(row: any): any;
|
|
287
|
+
export { getValue_2 as getValue };
|
|
282
288
|
const sort_3: string[];
|
|
283
289
|
export { sort_3 as sort };
|
|
284
290
|
const formatter_3: string;
|
|
285
291
|
export { formatter_3 as formatter };
|
|
292
|
+
const canBeVariable_1: boolean;
|
|
293
|
+
export { canBeVariable_1 as canBeVariable };
|
|
286
294
|
}
|
|
287
|
-
export namespace
|
|
295
|
+
export namespace LOGGING_OUTPUT_PROVIDERS {
|
|
288
296
|
const name_5: string;
|
|
289
297
|
export { name_5 as name };
|
|
290
298
|
const labelKey_5: string;
|
|
@@ -293,12 +301,10 @@ export namespace SIMPLE_NAME {
|
|
|
293
301
|
export { value_4 as value };
|
|
294
302
|
const sort_4: string[];
|
|
295
303
|
export { sort_4 as sort };
|
|
296
|
-
const
|
|
297
|
-
export {
|
|
298
|
-
const canBeVariable_2: boolean;
|
|
299
|
-
export { canBeVariable_2 as canBeVariable };
|
|
304
|
+
const formatter_4: string;
|
|
305
|
+
export { formatter_4 as formatter };
|
|
300
306
|
}
|
|
301
|
-
export namespace
|
|
307
|
+
export namespace SIMPLE_NAME {
|
|
302
308
|
const name_6: string;
|
|
303
309
|
export { name_6 as name };
|
|
304
310
|
const labelKey_6: string;
|
|
@@ -307,8 +313,12 @@ export namespace EFFECT {
|
|
|
307
313
|
export { value_5 as value };
|
|
308
314
|
const sort_5: string[];
|
|
309
315
|
export { sort_5 as sort };
|
|
316
|
+
const width_2: number;
|
|
317
|
+
export { width_2 as width };
|
|
318
|
+
const canBeVariable_2: boolean;
|
|
319
|
+
export { canBeVariable_2 as canBeVariable };
|
|
310
320
|
}
|
|
311
|
-
export namespace
|
|
321
|
+
export namespace EFFECT {
|
|
312
322
|
const name_7: string;
|
|
313
323
|
export { name_7 as name };
|
|
314
324
|
const labelKey_7: string;
|
|
@@ -318,7 +328,7 @@ export namespace STORAGE_CLASS_PROVISIONER {
|
|
|
318
328
|
const sort_6: string[];
|
|
319
329
|
export { sort_6 as sort };
|
|
320
330
|
}
|
|
321
|
-
export namespace
|
|
331
|
+
export namespace STORAGE_CLASS_PROVISIONER {
|
|
322
332
|
const name_8: string;
|
|
323
333
|
export { name_8 as name };
|
|
324
334
|
const labelKey_8: string;
|
|
@@ -327,10 +337,8 @@ export namespace STORAGE_CLASS_DEFAULT {
|
|
|
327
337
|
export { value_7 as value };
|
|
328
338
|
const sort_7: string[];
|
|
329
339
|
export { sort_7 as sort };
|
|
330
|
-
const formatter_4: string;
|
|
331
|
-
export { formatter_4 as formatter };
|
|
332
340
|
}
|
|
333
|
-
export namespace
|
|
341
|
+
export namespace STORAGE_CLASS_DEFAULT {
|
|
334
342
|
const name_9: string;
|
|
335
343
|
export { name_9 as name };
|
|
336
344
|
const labelKey_9: string;
|
|
@@ -339,75 +347,75 @@ export namespace PERSISTENT_VOLUME_SOURCE {
|
|
|
339
347
|
export { value_8 as value };
|
|
340
348
|
const sort_8: string[];
|
|
341
349
|
export { sort_8 as sort };
|
|
350
|
+
const formatter_5: string;
|
|
351
|
+
export { formatter_5 as formatter };
|
|
342
352
|
}
|
|
343
|
-
export namespace
|
|
353
|
+
export namespace PERSISTENT_VOLUME_SOURCE {
|
|
344
354
|
const name_10: string;
|
|
345
355
|
export { name_10 as name };
|
|
346
356
|
const labelKey_10: string;
|
|
347
357
|
export { labelKey_10 as labelKey };
|
|
348
|
-
const sort_9: string[];
|
|
349
|
-
export { sort_9 as sort };
|
|
350
358
|
const value_9: string;
|
|
351
359
|
export { value_9 as value };
|
|
352
|
-
const
|
|
353
|
-
export {
|
|
354
|
-
export namespace formatterOpts {
|
|
355
|
-
const reference: string;
|
|
356
|
-
}
|
|
360
|
+
const sort_9: string[];
|
|
361
|
+
export { sort_9 as sort };
|
|
357
362
|
}
|
|
358
|
-
export namespace
|
|
363
|
+
export namespace PERSISTENT_VOLUME_CLAIM {
|
|
359
364
|
const name_11: string;
|
|
360
365
|
export { name_11 as name };
|
|
361
366
|
const labelKey_11: string;
|
|
362
367
|
export { labelKey_11 as labelKey };
|
|
363
|
-
const value_10: string;
|
|
364
|
-
export { value_10 as value };
|
|
365
368
|
const sort_10: string[];
|
|
366
369
|
export { sort_10 as sort };
|
|
370
|
+
const value_10: string;
|
|
371
|
+
export { value_10 as value };
|
|
367
372
|
const formatter_6: string;
|
|
368
373
|
export { formatter_6 as formatter };
|
|
369
|
-
export namespace
|
|
370
|
-
|
|
371
|
-
const internal: boolean;
|
|
372
|
-
}
|
|
374
|
+
export namespace formatterOpts {
|
|
375
|
+
const reference: string;
|
|
373
376
|
}
|
|
374
|
-
export { formatterOpts_1 as formatterOpts };
|
|
375
377
|
}
|
|
376
|
-
export namespace
|
|
378
|
+
export namespace OUTPUT {
|
|
377
379
|
const name_12: string;
|
|
378
380
|
export { name_12 as name };
|
|
379
381
|
const labelKey_12: string;
|
|
380
382
|
export { labelKey_12 as labelKey };
|
|
381
383
|
const value_11: string;
|
|
382
384
|
export { value_11 as value };
|
|
383
|
-
const sort_11: string;
|
|
385
|
+
const sort_11: string[];
|
|
384
386
|
export { sort_11 as sort };
|
|
385
387
|
const formatter_7: string;
|
|
386
388
|
export { formatter_7 as formatter };
|
|
389
|
+
export namespace formatterOpts_1 {
|
|
390
|
+
namespace options {
|
|
391
|
+
const internal: boolean;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
export { formatterOpts_1 as formatterOpts };
|
|
387
395
|
}
|
|
388
|
-
export namespace
|
|
396
|
+
export namespace CONFIGURED_PROVIDERS {
|
|
389
397
|
const name_13: string;
|
|
390
398
|
export { name_13 as name };
|
|
399
|
+
const labelKey_13: string;
|
|
400
|
+
export { labelKey_13 as labelKey };
|
|
391
401
|
const value_12: string;
|
|
392
402
|
export { value_12 as value };
|
|
393
|
-
const sort_12: string
|
|
403
|
+
const sort_12: string;
|
|
394
404
|
export { sort_12 as sort };
|
|
395
|
-
const
|
|
396
|
-
export {
|
|
405
|
+
const formatter_8: string;
|
|
406
|
+
export { formatter_8 as formatter };
|
|
397
407
|
}
|
|
398
|
-
export namespace
|
|
408
|
+
export namespace CLUSTER_OUTPUT {
|
|
399
409
|
const name_14: string;
|
|
400
410
|
export { name_14 as name };
|
|
401
|
-
const labelKey_14: string;
|
|
402
|
-
export { labelKey_14 as labelKey };
|
|
403
411
|
const value_13: string;
|
|
404
412
|
export { value_13 as value };
|
|
405
413
|
const sort_13: string[];
|
|
406
414
|
export { sort_13 as sort };
|
|
407
|
-
const
|
|
408
|
-
export {
|
|
415
|
+
const labelKey_14: string;
|
|
416
|
+
export { labelKey_14 as labelKey };
|
|
409
417
|
}
|
|
410
|
-
export namespace
|
|
418
|
+
export namespace ID_UNLINKED {
|
|
411
419
|
const name_15: string;
|
|
412
420
|
export { name_15 as name };
|
|
413
421
|
const labelKey_15: string;
|
|
@@ -416,23 +424,22 @@ export namespace NAME_UNLINKED {
|
|
|
416
424
|
export { value_14 as value };
|
|
417
425
|
const sort_14: string[];
|
|
418
426
|
export { sort_14 as sort };
|
|
419
|
-
const
|
|
420
|
-
export {
|
|
427
|
+
const canBeVariable_3: boolean;
|
|
428
|
+
export { canBeVariable_3 as canBeVariable };
|
|
421
429
|
}
|
|
422
|
-
export namespace
|
|
430
|
+
export namespace NAME_UNLINKED {
|
|
423
431
|
const name_16: string;
|
|
424
432
|
export { name_16 as name };
|
|
425
433
|
const labelKey_16: string;
|
|
426
434
|
export { labelKey_16 as labelKey };
|
|
427
435
|
const value_15: string;
|
|
428
436
|
export { value_15 as value };
|
|
429
|
-
|
|
430
|
-
export { getValue_2 as getValue };
|
|
431
|
-
const sort_15: string;
|
|
437
|
+
const sort_15: string[];
|
|
432
438
|
export { sort_15 as sort };
|
|
433
|
-
|
|
439
|
+
const canBeVariable_4: boolean;
|
|
440
|
+
export { canBeVariable_4 as canBeVariable };
|
|
434
441
|
}
|
|
435
|
-
export namespace
|
|
442
|
+
export namespace NAMESPACE {
|
|
436
443
|
const name_17: string;
|
|
437
444
|
export { name_17 as name };
|
|
438
445
|
const labelKey_17: string;
|
|
@@ -443,28 +450,27 @@ export namespace NODE {
|
|
|
443
450
|
export { getValue_3 as getValue };
|
|
444
451
|
const sort_16: string;
|
|
445
452
|
export { sort_16 as sort };
|
|
446
|
-
const
|
|
447
|
-
export { formatter_8 as formatter };
|
|
448
|
-
export namespace formatterOpts_2 {
|
|
449
|
-
export { NODE_TYPE as type };
|
|
450
|
-
}
|
|
451
|
-
export { formatterOpts_2 as formatterOpts };
|
|
453
|
+
export const dashIfEmpty: boolean;
|
|
452
454
|
}
|
|
453
|
-
export namespace
|
|
455
|
+
export namespace NODE {
|
|
454
456
|
const name_18: string;
|
|
455
457
|
export { name_18 as name };
|
|
456
458
|
const labelKey_18: string;
|
|
457
459
|
export { labelKey_18 as labelKey };
|
|
458
|
-
const sort_17: string;
|
|
459
|
-
export { sort_17 as sort };
|
|
460
460
|
const value_17: string;
|
|
461
461
|
export { value_17 as value };
|
|
462
462
|
export function getValue_4(row: any): any;
|
|
463
463
|
export { getValue_4 as getValue };
|
|
464
|
+
const sort_17: string;
|
|
465
|
+
export { sort_17 as sort };
|
|
464
466
|
const formatter_9: string;
|
|
465
467
|
export { formatter_9 as formatter };
|
|
468
|
+
export namespace formatterOpts_2 {
|
|
469
|
+
export { NODE_TYPE as type };
|
|
470
|
+
}
|
|
471
|
+
export { formatterOpts_2 as formatterOpts };
|
|
466
472
|
}
|
|
467
|
-
export namespace
|
|
473
|
+
export namespace NODE_NAME {
|
|
468
474
|
const name_19: string;
|
|
469
475
|
export { name_19 as name };
|
|
470
476
|
const labelKey_19: string;
|
|
@@ -473,8 +479,12 @@ export namespace ROLES {
|
|
|
473
479
|
export { sort_18 as sort };
|
|
474
480
|
const value_18: string;
|
|
475
481
|
export { value_18 as value };
|
|
482
|
+
export function getValue_5(row: any): any;
|
|
483
|
+
export { getValue_5 as getValue };
|
|
484
|
+
const formatter_10: string;
|
|
485
|
+
export { formatter_10 as formatter };
|
|
476
486
|
}
|
|
477
|
-
export namespace
|
|
487
|
+
export namespace ROLES {
|
|
478
488
|
const name_20: string;
|
|
479
489
|
export { name_20 as name };
|
|
480
490
|
const labelKey_20: string;
|
|
@@ -483,34 +493,28 @@ export namespace VERSION {
|
|
|
483
493
|
export { sort_19 as sort };
|
|
484
494
|
const value_19: string;
|
|
485
495
|
export { value_19 as value };
|
|
486
|
-
export function getValue_5(row: any): any;
|
|
487
|
-
export { getValue_5 as getValue };
|
|
488
496
|
}
|
|
489
|
-
export namespace
|
|
497
|
+
export namespace VERSION {
|
|
490
498
|
const name_21: string;
|
|
491
499
|
export { name_21 as name };
|
|
492
500
|
const labelKey_21: string;
|
|
493
501
|
export { labelKey_21 as labelKey };
|
|
494
502
|
const sort_20: string;
|
|
495
503
|
export { sort_20 as sort };
|
|
496
|
-
const search_1: boolean;
|
|
497
|
-
export { search_1 as search };
|
|
498
504
|
const value_20: string;
|
|
499
505
|
export { value_20 as value };
|
|
500
|
-
|
|
501
|
-
export {
|
|
502
|
-
const width_2: number;
|
|
503
|
-
export { width_2 as width };
|
|
506
|
+
export function getValue_6(row: any): any;
|
|
507
|
+
export { getValue_6 as getValue };
|
|
504
508
|
}
|
|
505
|
-
export namespace
|
|
509
|
+
export namespace CPU {
|
|
506
510
|
const name_22: string;
|
|
507
511
|
export { name_22 as name };
|
|
508
512
|
const labelKey_22: string;
|
|
509
513
|
export { labelKey_22 as labelKey };
|
|
510
514
|
const sort_21: string;
|
|
511
515
|
export { sort_21 as sort };
|
|
512
|
-
const
|
|
513
|
-
export {
|
|
516
|
+
const search_1: boolean;
|
|
517
|
+
export { search_1 as search };
|
|
514
518
|
const value_21: string;
|
|
515
519
|
export { value_21 as value };
|
|
516
520
|
const formatter_11: string;
|
|
@@ -518,171 +522,171 @@ export namespace RAM {
|
|
|
518
522
|
const width_3: number;
|
|
519
523
|
export { width_3 as width };
|
|
520
524
|
}
|
|
521
|
-
export namespace
|
|
525
|
+
export namespace RAM {
|
|
522
526
|
const name_23: string;
|
|
523
527
|
export { name_23 as name };
|
|
524
528
|
const labelKey_23: string;
|
|
525
529
|
export { labelKey_23 as labelKey };
|
|
526
530
|
const sort_22: string;
|
|
527
531
|
export { sort_22 as sort };
|
|
532
|
+
const search_2: boolean;
|
|
533
|
+
export { search_2 as search };
|
|
528
534
|
const value_22: string;
|
|
529
535
|
export { value_22 as value };
|
|
530
536
|
const formatter_12: string;
|
|
531
537
|
export { formatter_12 as formatter };
|
|
538
|
+
const width_4: number;
|
|
539
|
+
export { width_4 as width };
|
|
532
540
|
}
|
|
533
|
-
export namespace
|
|
541
|
+
export namespace PRINCIPAL {
|
|
534
542
|
const name_24: string;
|
|
535
543
|
export { name_24 as name };
|
|
536
544
|
const labelKey_24: string;
|
|
537
545
|
export { labelKey_24 as labelKey };
|
|
538
546
|
const sort_23: string;
|
|
539
547
|
export { sort_23 as sort };
|
|
540
|
-
const
|
|
541
|
-
export { search_3 as search };
|
|
542
|
-
export function value_23(row: any): any;
|
|
548
|
+
const value_23: string;
|
|
543
549
|
export { value_23 as value };
|
|
544
550
|
const formatter_13: string;
|
|
545
551
|
export { formatter_13 as formatter };
|
|
546
|
-
const width_4: number;
|
|
547
|
-
export { width_4 as width };
|
|
548
552
|
}
|
|
549
|
-
export namespace
|
|
553
|
+
export namespace PODS {
|
|
550
554
|
const name_25: string;
|
|
551
555
|
export { name_25 as name };
|
|
552
556
|
const labelKey_25: string;
|
|
553
557
|
export { labelKey_25 as labelKey };
|
|
554
|
-
const value_24: string;
|
|
555
|
-
export { value_24 as value };
|
|
556
|
-
export function getValue_6(row: any): any;
|
|
557
|
-
export { getValue_6 as getValue };
|
|
558
558
|
const sort_24: string;
|
|
559
559
|
export { sort_24 as sort };
|
|
560
|
-
const
|
|
561
|
-
export {
|
|
560
|
+
const search_3: boolean;
|
|
561
|
+
export { search_3 as search };
|
|
562
|
+
export function value_24(row: any): any;
|
|
563
|
+
export { value_24 as value };
|
|
562
564
|
const formatter_14: string;
|
|
563
565
|
export { formatter_14 as formatter };
|
|
564
566
|
const width_5: number;
|
|
565
567
|
export { width_5 as width };
|
|
566
|
-
const align_1: string;
|
|
567
|
-
export { align_1 as align };
|
|
568
568
|
}
|
|
569
|
-
export namespace
|
|
570
|
-
|
|
571
|
-
export {
|
|
569
|
+
export namespace AGE {
|
|
570
|
+
const name_26: string;
|
|
571
|
+
export { name_26 as name };
|
|
572
|
+
const labelKey_26: string;
|
|
573
|
+
export { labelKey_26 as labelKey };
|
|
572
574
|
const value_25: string;
|
|
573
575
|
export { value_25 as value };
|
|
576
|
+
export function getValue_7(row: any): any;
|
|
577
|
+
export { getValue_7 as getValue };
|
|
574
578
|
const sort_25: string;
|
|
575
579
|
export { sort_25 as sort };
|
|
580
|
+
const search_4: boolean;
|
|
581
|
+
export { search_4 as search };
|
|
582
|
+
const formatter_15: string;
|
|
583
|
+
export { formatter_15 as formatter };
|
|
584
|
+
const width_6: number;
|
|
585
|
+
export { width_6 as width };
|
|
586
|
+
const align_1: string;
|
|
587
|
+
export { align_1 as align };
|
|
576
588
|
}
|
|
577
|
-
export namespace
|
|
578
|
-
|
|
579
|
-
export {
|
|
580
|
-
const labelKey_26: string;
|
|
581
|
-
export { labelKey_26 as labelKey };
|
|
589
|
+
export namespace AGE_NORMAN {
|
|
590
|
+
export function getValue_8(row: any): any;
|
|
591
|
+
export { getValue_8 as getValue };
|
|
582
592
|
const value_26: string;
|
|
583
593
|
export { value_26 as value };
|
|
584
|
-
const sort_26: string
|
|
594
|
+
const sort_26: string;
|
|
585
595
|
export { sort_26 as sort };
|
|
586
|
-
const formatter_15: string;
|
|
587
|
-
export { formatter_15 as formatter };
|
|
588
596
|
}
|
|
589
|
-
export namespace
|
|
597
|
+
export namespace CREATION_DATE {
|
|
590
598
|
const name_27: string;
|
|
591
599
|
export { name_27 as name };
|
|
592
600
|
const labelKey_27: string;
|
|
593
601
|
export { labelKey_27 as labelKey };
|
|
594
|
-
const
|
|
595
|
-
export {
|
|
602
|
+
const value_27: string;
|
|
603
|
+
export { value_27 as value };
|
|
596
604
|
const sort_27: string[];
|
|
597
605
|
export { sort_27 as sort };
|
|
598
|
-
const
|
|
599
|
-
export {
|
|
606
|
+
const formatter_16: string;
|
|
607
|
+
export { formatter_16 as formatter };
|
|
600
608
|
}
|
|
601
|
-
export namespace
|
|
609
|
+
export namespace DESCRIPTION {
|
|
602
610
|
const name_28: string;
|
|
603
611
|
export { name_28 as name };
|
|
604
612
|
const labelKey_28: string;
|
|
605
613
|
export { labelKey_28 as labelKey };
|
|
606
|
-
const
|
|
607
|
-
export {
|
|
608
|
-
const sort_28: string;
|
|
614
|
+
const align_2: string;
|
|
615
|
+
export { align_2 as align };
|
|
616
|
+
const sort_28: string[];
|
|
609
617
|
export { sort_28 as sort };
|
|
610
|
-
const
|
|
611
|
-
export {
|
|
618
|
+
const width_7: number;
|
|
619
|
+
export { width_7 as width };
|
|
612
620
|
}
|
|
613
|
-
export namespace
|
|
621
|
+
export namespace DURATION {
|
|
614
622
|
const name_29: string;
|
|
615
623
|
export { name_29 as name };
|
|
616
624
|
const labelKey_29: string;
|
|
617
625
|
export { labelKey_29 as labelKey };
|
|
618
626
|
const value_28: string;
|
|
619
627
|
export { value_28 as value };
|
|
620
|
-
const sort_29: string
|
|
628
|
+
const sort_29: string;
|
|
621
629
|
export { sort_29 as sort };
|
|
622
630
|
const formatter_17: string;
|
|
623
631
|
export { formatter_17 as formatter };
|
|
624
632
|
}
|
|
625
|
-
export namespace
|
|
633
|
+
export namespace IMAGE_NAME {
|
|
626
634
|
const name_30: string;
|
|
627
635
|
export { name_30 as name };
|
|
628
636
|
const labelKey_30: string;
|
|
629
637
|
export { labelKey_30 as labelKey };
|
|
630
638
|
const value_29: string;
|
|
631
639
|
export { value_29 as value };
|
|
632
|
-
|
|
633
|
-
export { getValue_8 as getValue };
|
|
634
|
-
const sort_30: string;
|
|
640
|
+
const sort_30: string[];
|
|
635
641
|
export { sort_30 as sort };
|
|
636
642
|
const formatter_18: string;
|
|
637
643
|
export { formatter_18 as formatter };
|
|
638
644
|
}
|
|
639
|
-
export namespace
|
|
645
|
+
export namespace POD_IMAGES {
|
|
640
646
|
const name_31: string;
|
|
641
647
|
export { name_31 as name };
|
|
642
648
|
const labelKey_31: string;
|
|
643
649
|
export { labelKey_31 as labelKey };
|
|
644
|
-
const formatter_19: string;
|
|
645
|
-
export { formatter_19 as formatter };
|
|
646
|
-
export const delayLoading: boolean;
|
|
647
650
|
const value_30: string;
|
|
648
651
|
export { value_30 as value };
|
|
649
652
|
export function getValue_9(row: any): any;
|
|
650
653
|
export { getValue_9 as getValue };
|
|
651
|
-
const
|
|
652
|
-
export {
|
|
653
|
-
|
|
654
|
-
}
|
|
655
|
-
|
|
654
|
+
const sort_31: string;
|
|
655
|
+
export { sort_31 as sort };
|
|
656
|
+
const formatter_19: string;
|
|
657
|
+
export { formatter_19 as formatter };
|
|
658
|
+
}
|
|
659
|
+
export namespace POD_RESTARTS {
|
|
656
660
|
const name_32: string;
|
|
657
661
|
export { name_32 as name };
|
|
658
662
|
const labelKey_32: string;
|
|
659
663
|
export { labelKey_32 as labelKey };
|
|
660
|
-
const value_31: string;
|
|
661
|
-
export { value_31 as value };
|
|
662
664
|
const formatter_20: string;
|
|
663
665
|
export { formatter_20 as formatter };
|
|
664
|
-
const
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
export
|
|
666
|
+
export const delayLoading: boolean;
|
|
667
|
+
const value_31: string;
|
|
668
|
+
export { value_31 as value };
|
|
669
|
+
export function getValue_10(row: any): any;
|
|
670
|
+
export { getValue_10 as getValue };
|
|
671
|
+
const search_5: boolean;
|
|
672
|
+
export { search_5 as search };
|
|
673
|
+
export const liveUpdates: boolean;
|
|
668
674
|
}
|
|
669
|
-
export namespace
|
|
675
|
+
export namespace ENDPOINTS {
|
|
670
676
|
const name_33: string;
|
|
671
677
|
export { name_33 as name };
|
|
672
678
|
const labelKey_33: string;
|
|
673
679
|
export { labelKey_33 as labelKey };
|
|
674
680
|
const value_32: string;
|
|
675
681
|
export { value_32 as value };
|
|
676
|
-
const sort_31: string[];
|
|
677
|
-
export { sort_31 as sort };
|
|
678
682
|
const formatter_21: string;
|
|
679
683
|
export { formatter_21 as formatter };
|
|
680
684
|
const width_8: number;
|
|
681
685
|
export { width_8 as width };
|
|
682
|
-
const
|
|
683
|
-
export {
|
|
686
|
+
const align_3: string;
|
|
687
|
+
export { align_3 as align };
|
|
684
688
|
}
|
|
685
|
-
export namespace
|
|
689
|
+
export namespace SCALE {
|
|
686
690
|
const name_34: string;
|
|
687
691
|
export { name_34 as name };
|
|
688
692
|
const labelKey_34: string;
|
|
@@ -691,36 +695,40 @@ export namespace SIMPLE_SCALE {
|
|
|
691
695
|
export { value_33 as value };
|
|
692
696
|
const sort_32: string[];
|
|
693
697
|
export { sort_32 as sort };
|
|
698
|
+
const formatter_22: string;
|
|
699
|
+
export { formatter_22 as formatter };
|
|
700
|
+
const width_9: number;
|
|
701
|
+
export { width_9 as width };
|
|
702
|
+
const align_4: string;
|
|
703
|
+
export { align_4 as align };
|
|
694
704
|
}
|
|
695
|
-
export namespace
|
|
705
|
+
export namespace SIMPLE_SCALE {
|
|
696
706
|
const name_35: string;
|
|
697
707
|
export { name_35 as name };
|
|
698
708
|
const labelKey_35: string;
|
|
699
709
|
export { labelKey_35 as labelKey };
|
|
700
710
|
const value_34: string;
|
|
701
711
|
export { value_34 as value };
|
|
702
|
-
const sort_33: string;
|
|
712
|
+
const sort_33: string[];
|
|
703
713
|
export { sort_33 as sort };
|
|
704
|
-
const formatter_22: string;
|
|
705
|
-
export { formatter_22 as formatter };
|
|
706
|
-
const width_9: number;
|
|
707
|
-
export { width_9 as width };
|
|
708
|
-
const align_5: string;
|
|
709
|
-
export { align_5 as align };
|
|
710
714
|
}
|
|
711
|
-
export namespace
|
|
715
|
+
export namespace WEIGHT {
|
|
712
716
|
const name_36: string;
|
|
713
717
|
export { name_36 as name };
|
|
714
718
|
const labelKey_36: string;
|
|
715
719
|
export { labelKey_36 as labelKey };
|
|
716
720
|
const value_35: string;
|
|
717
721
|
export { value_35 as value };
|
|
722
|
+
const sort_34: string;
|
|
723
|
+
export { sort_34 as sort };
|
|
724
|
+
const formatter_23: string;
|
|
725
|
+
export { formatter_23 as formatter };
|
|
718
726
|
const width_10: number;
|
|
719
727
|
export { width_10 as width };
|
|
720
|
-
const
|
|
721
|
-
export {
|
|
728
|
+
const align_5: string;
|
|
729
|
+
export { align_5 as align };
|
|
722
730
|
}
|
|
723
|
-
export namespace
|
|
731
|
+
export namespace SUCCESS {
|
|
724
732
|
const name_37: string;
|
|
725
733
|
export { name_37 as name };
|
|
726
734
|
const labelKey_37: string;
|
|
@@ -729,10 +737,10 @@ export namespace REQ_RATE {
|
|
|
729
737
|
export { value_36 as value };
|
|
730
738
|
const width_11: number;
|
|
731
739
|
export { width_11 as width };
|
|
732
|
-
const
|
|
733
|
-
export {
|
|
740
|
+
const align_6: string;
|
|
741
|
+
export { align_6 as align };
|
|
734
742
|
}
|
|
735
|
-
export namespace
|
|
743
|
+
export namespace REQ_RATE {
|
|
736
744
|
const name_38: string;
|
|
737
745
|
export { name_38 as name };
|
|
738
746
|
const labelKey_38: string;
|
|
@@ -741,934 +749,936 @@ export namespace P95 {
|
|
|
741
749
|
export { value_37 as value };
|
|
742
750
|
const width_12: number;
|
|
743
751
|
export { width_12 as width };
|
|
744
|
-
const
|
|
745
|
-
export {
|
|
752
|
+
const align_7: string;
|
|
753
|
+
export { align_7 as align };
|
|
746
754
|
}
|
|
747
|
-
export namespace
|
|
755
|
+
export namespace P95 {
|
|
748
756
|
const name_39: string;
|
|
749
757
|
export { name_39 as name };
|
|
750
758
|
const labelKey_39: string;
|
|
751
759
|
export { labelKey_39 as labelKey };
|
|
752
|
-
const sort_34: boolean;
|
|
753
|
-
export { sort_34 as sort };
|
|
754
760
|
const value_38: string;
|
|
755
761
|
export { value_38 as value };
|
|
762
|
+
const width_13: number;
|
|
763
|
+
export { width_13 as width };
|
|
764
|
+
const align_8: string;
|
|
765
|
+
export { align_8 as align };
|
|
756
766
|
}
|
|
757
|
-
export namespace
|
|
767
|
+
export namespace KEYS {
|
|
758
768
|
const name_40: string;
|
|
759
769
|
export { name_40 as name };
|
|
760
770
|
const labelKey_40: string;
|
|
761
771
|
export { labelKey_40 as labelKey };
|
|
772
|
+
const sort_35: boolean;
|
|
773
|
+
export { sort_35 as sort };
|
|
762
774
|
const value_39: string;
|
|
763
775
|
export { value_39 as value };
|
|
764
|
-
const width_13: number;
|
|
765
|
-
export { width_13 as width };
|
|
766
776
|
}
|
|
767
|
-
export namespace
|
|
777
|
+
export namespace SECRET_DATA {
|
|
768
778
|
const name_41: string;
|
|
769
779
|
export { name_41 as name };
|
|
770
780
|
const labelKey_41: string;
|
|
771
781
|
export { labelKey_41 as labelKey };
|
|
772
782
|
const value_40: string;
|
|
773
783
|
export { value_40 as value };
|
|
784
|
+
const formatter_24: string;
|
|
785
|
+
export { formatter_24 as formatter };
|
|
774
786
|
}
|
|
775
|
-
export namespace
|
|
787
|
+
export namespace TARGET_KIND {
|
|
776
788
|
const name_42: string;
|
|
777
789
|
export { name_42 as name };
|
|
778
790
|
const labelKey_42: string;
|
|
779
791
|
export { labelKey_42 as labelKey };
|
|
780
792
|
const value_41: string;
|
|
781
793
|
export { value_41 as value };
|
|
782
|
-
const
|
|
783
|
-
export {
|
|
784
|
-
const sort_35: string;
|
|
785
|
-
export { sort_35 as sort };
|
|
794
|
+
const width_14: number;
|
|
795
|
+
export { width_14 as width };
|
|
786
796
|
}
|
|
787
|
-
export namespace
|
|
797
|
+
export namespace TARGET {
|
|
788
798
|
const name_43: string;
|
|
789
799
|
export { name_43 as name };
|
|
790
800
|
const labelKey_43: string;
|
|
791
801
|
export { labelKey_43 as labelKey };
|
|
792
802
|
const value_42: string;
|
|
793
803
|
export { value_42 as value };
|
|
794
|
-
const sort_36: string[];
|
|
795
|
-
export { sort_36 as sort };
|
|
796
|
-
const dashIfEmpty_2: boolean;
|
|
797
|
-
export { dashIfEmpty_2 as dashIfEmpty };
|
|
798
804
|
}
|
|
799
|
-
export namespace
|
|
805
|
+
export namespace USERNAME {
|
|
800
806
|
const name_44: string;
|
|
801
807
|
export { name_44 as name };
|
|
802
808
|
const labelKey_44: string;
|
|
803
809
|
export { labelKey_44 as labelKey };
|
|
804
810
|
const value_43: string;
|
|
805
811
|
export { value_43 as value };
|
|
806
|
-
const
|
|
807
|
-
export {
|
|
808
|
-
const
|
|
809
|
-
export {
|
|
812
|
+
const dashIfEmpty_1: boolean;
|
|
813
|
+
export { dashIfEmpty_1 as dashIfEmpty };
|
|
814
|
+
const sort_36: string;
|
|
815
|
+
export { sort_36 as sort };
|
|
810
816
|
}
|
|
811
|
-
export namespace
|
|
817
|
+
export namespace USER_DISPLAY_NAME {
|
|
812
818
|
const name_45: string;
|
|
813
819
|
export { name_45 as name };
|
|
814
820
|
const labelKey_45: string;
|
|
815
821
|
export { labelKey_45 as labelKey };
|
|
816
822
|
const value_44: string;
|
|
817
823
|
export { value_44 as value };
|
|
818
|
-
const
|
|
819
|
-
export {
|
|
820
|
-
const
|
|
821
|
-
export {
|
|
822
|
-
const sort_38: string;
|
|
823
|
-
export { sort_38 as sort };
|
|
824
|
+
const sort_37: string[];
|
|
825
|
+
export { sort_37 as sort };
|
|
826
|
+
const dashIfEmpty_2: boolean;
|
|
827
|
+
export { dashIfEmpty_2 as dashIfEmpty };
|
|
824
828
|
}
|
|
825
|
-
export namespace
|
|
829
|
+
export namespace USER_PROVIDER {
|
|
826
830
|
const name_46: string;
|
|
827
831
|
export { name_46 as name };
|
|
828
832
|
const labelKey_46: string;
|
|
829
833
|
export { labelKey_46 as labelKey };
|
|
830
834
|
const value_45: string;
|
|
831
835
|
export { value_45 as value };
|
|
832
|
-
const
|
|
833
|
-
export {
|
|
836
|
+
const dashIfEmpty_3: boolean;
|
|
837
|
+
export { dashIfEmpty_3 as dashIfEmpty };
|
|
838
|
+
const sort_38: string;
|
|
839
|
+
export { sort_38 as sort };
|
|
834
840
|
}
|
|
835
|
-
export namespace
|
|
841
|
+
export namespace USER_LAST_LOGIN {
|
|
836
842
|
const name_47: string;
|
|
837
843
|
export { name_47 as name };
|
|
838
844
|
const labelKey_47: string;
|
|
839
845
|
export { labelKey_47 as labelKey };
|
|
840
846
|
const value_46: string;
|
|
841
847
|
export { value_46 as value };
|
|
842
|
-
const
|
|
843
|
-
export {
|
|
844
|
-
|
|
845
|
-
|
|
848
|
+
const formatter_25: string;
|
|
849
|
+
export { formatter_25 as formatter };
|
|
850
|
+
export namespace formatterOpts_3 {
|
|
851
|
+
const addSuffix: boolean;
|
|
852
|
+
}
|
|
853
|
+
export { formatterOpts_3 as formatterOpts };
|
|
854
|
+
const sort_39: string;
|
|
855
|
+
export { sort_39 as sort };
|
|
846
856
|
}
|
|
847
|
-
export namespace
|
|
857
|
+
export namespace USER_DISABLED_IN {
|
|
848
858
|
const name_48: string;
|
|
849
859
|
export { name_48 as name };
|
|
850
860
|
const labelKey_48: string;
|
|
851
861
|
export { labelKey_48 as labelKey };
|
|
852
862
|
const value_47: string;
|
|
853
863
|
export { value_47 as value };
|
|
854
|
-
const
|
|
855
|
-
export {
|
|
856
|
-
|
|
857
|
-
|
|
864
|
+
const formatter_26: string;
|
|
865
|
+
export { formatter_26 as formatter };
|
|
866
|
+
export namespace formatterOpts_4 {
|
|
867
|
+
const isCountdown: boolean;
|
|
868
|
+
}
|
|
869
|
+
export { formatterOpts_4 as formatterOpts };
|
|
870
|
+
const sort_40: string;
|
|
871
|
+
export { sort_40 as sort };
|
|
858
872
|
}
|
|
859
|
-
export namespace
|
|
873
|
+
export namespace USER_DELETED_IN {
|
|
860
874
|
const name_49: string;
|
|
861
875
|
export { name_49 as name };
|
|
862
876
|
const labelKey_49: string;
|
|
863
877
|
export { labelKey_49 as labelKey };
|
|
864
878
|
const value_48: string;
|
|
865
879
|
export { value_48 as value };
|
|
866
|
-
|
|
867
|
-
export {
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
880
|
+
const formatter_27: string;
|
|
881
|
+
export { formatter_27 as formatter };
|
|
882
|
+
export namespace formatterOpts_5 {
|
|
883
|
+
const isCountdown_1: boolean;
|
|
884
|
+
export { isCountdown_1 as isCountdown };
|
|
885
|
+
}
|
|
886
|
+
export { formatterOpts_5 as formatterOpts };
|
|
887
|
+
const sort_41: string;
|
|
888
|
+
export { sort_41 as sort };
|
|
872
889
|
}
|
|
873
|
-
export namespace
|
|
890
|
+
export namespace USER_ID {
|
|
874
891
|
const name_50: string;
|
|
875
892
|
export { name_50 as name };
|
|
876
893
|
const labelKey_50: string;
|
|
877
894
|
export { labelKey_50 as labelKey };
|
|
878
895
|
const value_49: string;
|
|
879
896
|
export { value_49 as value };
|
|
880
|
-
const
|
|
881
|
-
export {
|
|
882
|
-
const
|
|
883
|
-
export {
|
|
897
|
+
const formatter_28: string;
|
|
898
|
+
export { formatter_28 as formatter };
|
|
899
|
+
const canBeVariable_5: boolean;
|
|
900
|
+
export { canBeVariable_5 as canBeVariable };
|
|
901
|
+
const sort_42: string;
|
|
902
|
+
export { sort_42 as sort };
|
|
884
903
|
}
|
|
885
|
-
export namespace
|
|
904
|
+
export namespace ADDRESS {
|
|
886
905
|
const name_51: string;
|
|
887
906
|
export { name_51 as name };
|
|
888
907
|
const labelKey_51: string;
|
|
889
908
|
export { labelKey_51 as labelKey };
|
|
890
909
|
const value_50: string;
|
|
891
910
|
export { value_50 as value };
|
|
892
|
-
const
|
|
893
|
-
export {
|
|
911
|
+
const sort_43: string[];
|
|
912
|
+
export { sort_43 as sort };
|
|
894
913
|
}
|
|
895
|
-
export namespace
|
|
914
|
+
export namespace SIMPLE_TYPE {
|
|
896
915
|
const name_52: string;
|
|
897
916
|
export { name_52 as name };
|
|
898
917
|
const labelKey_52: string;
|
|
899
918
|
export { labelKey_52 as labelKey };
|
|
900
919
|
const value_51: string;
|
|
901
920
|
export { value_51 as value };
|
|
902
|
-
const
|
|
903
|
-
export {
|
|
904
|
-
const
|
|
905
|
-
export {
|
|
921
|
+
const sort_44: string[];
|
|
922
|
+
export { sort_44 as sort };
|
|
923
|
+
const width_15: number;
|
|
924
|
+
export { width_15 as width };
|
|
906
925
|
}
|
|
907
|
-
export namespace
|
|
926
|
+
export namespace IMAGE_SIZE {
|
|
908
927
|
const name_53: string;
|
|
909
928
|
export { name_53 as name };
|
|
910
929
|
const labelKey_53: string;
|
|
911
930
|
export { labelKey_53 as labelKey };
|
|
912
931
|
const value_52: string;
|
|
913
932
|
export { value_52 as value };
|
|
914
|
-
const
|
|
915
|
-
export {
|
|
916
|
-
|
|
933
|
+
const sort_45: string[];
|
|
934
|
+
export { sort_45 as sort };
|
|
935
|
+
const formatter_29: string;
|
|
936
|
+
export { formatter_29 as formatter };
|
|
917
937
|
}
|
|
918
|
-
export namespace
|
|
938
|
+
export namespace TYPE {
|
|
919
939
|
const name_54: string;
|
|
920
940
|
export { name_54 as name };
|
|
921
941
|
const labelKey_54: string;
|
|
922
942
|
export { labelKey_54 as labelKey };
|
|
923
943
|
const value_53: string;
|
|
924
944
|
export { value_53 as value };
|
|
925
|
-
|
|
926
|
-
export {
|
|
927
|
-
const
|
|
928
|
-
export {
|
|
929
|
-
const
|
|
930
|
-
export {
|
|
945
|
+
export function getValue_11(row: any): any;
|
|
946
|
+
export { getValue_11 as getValue };
|
|
947
|
+
const sort_46: string[];
|
|
948
|
+
export { sort_46 as sort };
|
|
949
|
+
const width_16: number;
|
|
950
|
+
export { width_16 as width };
|
|
931
951
|
}
|
|
932
|
-
export namespace
|
|
952
|
+
export namespace SUB_TYPE {
|
|
933
953
|
const name_55: string;
|
|
934
954
|
export { name_55 as name };
|
|
935
955
|
const labelKey_55: string;
|
|
936
956
|
export { labelKey_55 as labelKey };
|
|
937
957
|
const value_54: string;
|
|
938
958
|
export { value_54 as value };
|
|
939
|
-
const
|
|
940
|
-
export {
|
|
959
|
+
const sort_47: string[];
|
|
960
|
+
export { sort_47 as sort };
|
|
961
|
+
const width_17: number;
|
|
962
|
+
export { width_17 as width };
|
|
941
963
|
}
|
|
942
|
-
export namespace
|
|
964
|
+
export namespace EVENT_TYPE {
|
|
943
965
|
const name_56: string;
|
|
944
966
|
export { name_56 as name };
|
|
945
967
|
const labelKey_56: string;
|
|
946
968
|
export { labelKey_56 as labelKey };
|
|
947
969
|
const value_55: string;
|
|
948
970
|
export { value_55 as value };
|
|
949
|
-
const
|
|
950
|
-
export {
|
|
951
|
-
const canBeVariable_6: boolean;
|
|
952
|
-
export { canBeVariable_6 as canBeVariable };
|
|
953
|
-
const formatter_26: string;
|
|
954
|
-
export { formatter_26 as formatter };
|
|
971
|
+
const sort_48: string;
|
|
972
|
+
export { sort_48 as sort };
|
|
955
973
|
}
|
|
956
|
-
export namespace
|
|
974
|
+
export namespace STATUS {
|
|
957
975
|
const name_57: string;
|
|
958
976
|
export { name_57 as name };
|
|
959
977
|
const labelKey_57: string;
|
|
960
978
|
export { labelKey_57 as labelKey };
|
|
961
979
|
const value_56: string;
|
|
962
980
|
export { value_56 as value };
|
|
963
|
-
const
|
|
964
|
-
export {
|
|
981
|
+
const sort_49: string[];
|
|
982
|
+
export { sort_49 as sort };
|
|
983
|
+
const width_18: number;
|
|
984
|
+
export { width_18 as width };
|
|
965
985
|
}
|
|
966
|
-
export namespace
|
|
986
|
+
export namespace LAST_SEEN_TIME {
|
|
967
987
|
const name_58: string;
|
|
968
988
|
export { name_58 as name };
|
|
969
989
|
const labelKey_58: string;
|
|
970
990
|
export { labelKey_58 as labelKey };
|
|
971
991
|
const value_57: string;
|
|
972
992
|
export { value_57 as value };
|
|
973
|
-
const
|
|
974
|
-
export {
|
|
993
|
+
const sort_50: string;
|
|
994
|
+
export { sort_50 as sort };
|
|
995
|
+
export const tooltip: string;
|
|
975
996
|
}
|
|
976
|
-
export namespace
|
|
997
|
+
export namespace LAST_HEARTBEAT_TIME {
|
|
977
998
|
const name_59: string;
|
|
978
999
|
export { name_59 as name };
|
|
979
1000
|
const labelKey_59: string;
|
|
980
1001
|
export { labelKey_59 as labelKey };
|
|
981
1002
|
const value_58: string;
|
|
982
1003
|
export { value_58 as value };
|
|
983
|
-
const
|
|
984
|
-
export {
|
|
1004
|
+
const sort_51: string[];
|
|
1005
|
+
export { sort_51 as sort };
|
|
1006
|
+
const formatter_30: string;
|
|
1007
|
+
export { formatter_30 as formatter };
|
|
1008
|
+
const width_19: number;
|
|
1009
|
+
export { width_19 as width };
|
|
985
1010
|
}
|
|
986
|
-
export namespace
|
|
1011
|
+
export namespace REASON {
|
|
987
1012
|
const name_60: string;
|
|
988
1013
|
export { name_60 as name };
|
|
989
1014
|
const labelKey_60: string;
|
|
990
1015
|
export { labelKey_60 as labelKey };
|
|
991
1016
|
const value_59: string;
|
|
992
1017
|
export { value_59 as value };
|
|
993
|
-
const
|
|
994
|
-
export {
|
|
1018
|
+
const sort_52: string[];
|
|
1019
|
+
export { sort_52 as sort };
|
|
995
1020
|
}
|
|
996
|
-
export namespace
|
|
1021
|
+
export namespace OBJECT {
|
|
997
1022
|
const name_61: string;
|
|
998
1023
|
export { name_61 as name };
|
|
999
1024
|
const labelKey_61: string;
|
|
1000
1025
|
export { labelKey_61 as labelKey };
|
|
1001
1026
|
const value_60: string;
|
|
1002
1027
|
export { value_60 as value };
|
|
1003
|
-
const
|
|
1004
|
-
export {
|
|
1028
|
+
const sort_53: string[];
|
|
1029
|
+
export { sort_53 as sort };
|
|
1030
|
+
const canBeVariable_6: boolean;
|
|
1031
|
+
export { canBeVariable_6 as canBeVariable };
|
|
1032
|
+
const formatter_31: string;
|
|
1033
|
+
export { formatter_31 as formatter };
|
|
1005
1034
|
}
|
|
1006
|
-
export namespace
|
|
1035
|
+
export namespace RECLAIM_POLICY {
|
|
1007
1036
|
const name_62: string;
|
|
1008
1037
|
export { name_62 as name };
|
|
1009
1038
|
const labelKey_62: string;
|
|
1010
1039
|
export { labelKey_62 as labelKey };
|
|
1011
1040
|
const value_61: string;
|
|
1012
1041
|
export { value_61 as value };
|
|
1013
|
-
const
|
|
1014
|
-
export {
|
|
1015
|
-
const align_9: string;
|
|
1016
|
-
export { align_9 as align };
|
|
1017
|
-
const formatter_27: string;
|
|
1018
|
-
export { formatter_27 as formatter };
|
|
1042
|
+
const sort_54: string[];
|
|
1043
|
+
export { sort_54 as sort };
|
|
1019
1044
|
}
|
|
1020
|
-
export namespace
|
|
1045
|
+
export namespace PV_REASON {
|
|
1021
1046
|
const name_63: string;
|
|
1022
1047
|
export { name_63 as name };
|
|
1023
1048
|
const labelKey_63: string;
|
|
1024
1049
|
export { labelKey_63 as labelKey };
|
|
1025
1050
|
const value_62: string;
|
|
1026
1051
|
export { value_62 as value };
|
|
1027
|
-
const
|
|
1028
|
-
export {
|
|
1029
|
-
const align_10: string;
|
|
1030
|
-
export { align_10 as align };
|
|
1031
|
-
const formatter_28: string;
|
|
1032
|
-
export { formatter_28 as formatter };
|
|
1052
|
+
const sort_55: string[];
|
|
1053
|
+
export { sort_55 as sort };
|
|
1033
1054
|
}
|
|
1034
|
-
export namespace
|
|
1055
|
+
export namespace MESSAGE {
|
|
1035
1056
|
const name_64: string;
|
|
1036
1057
|
export { name_64 as name };
|
|
1037
1058
|
const labelKey_64: string;
|
|
1038
1059
|
export { labelKey_64 as labelKey };
|
|
1039
1060
|
const value_63: string;
|
|
1040
1061
|
export { value_63 as value };
|
|
1041
|
-
const
|
|
1042
|
-
export {
|
|
1043
|
-
const sort_57: string[];
|
|
1044
|
-
export { sort_57 as sort };
|
|
1062
|
+
const sort_56: string[];
|
|
1063
|
+
export { sort_56 as sort };
|
|
1045
1064
|
}
|
|
1046
|
-
export namespace
|
|
1065
|
+
export namespace KEY {
|
|
1047
1066
|
const name_65: string;
|
|
1048
1067
|
export { name_65 as name };
|
|
1049
1068
|
const labelKey_65: string;
|
|
1050
1069
|
export { labelKey_65 as labelKey };
|
|
1051
1070
|
const value_64: string;
|
|
1052
1071
|
export { value_64 as value };
|
|
1053
|
-
const
|
|
1054
|
-
export {
|
|
1055
|
-
const sort_58: string[];
|
|
1056
|
-
export { sort_58 as sort };
|
|
1072
|
+
const sort_57: string[];
|
|
1073
|
+
export { sort_57 as sort };
|
|
1057
1074
|
}
|
|
1058
|
-
export namespace
|
|
1075
|
+
export namespace VALUE {
|
|
1059
1076
|
const name_66: string;
|
|
1060
1077
|
export { name_66 as name };
|
|
1061
1078
|
const labelKey_66: string;
|
|
1062
1079
|
export { labelKey_66 as labelKey };
|
|
1063
1080
|
const value_65: string;
|
|
1064
1081
|
export { value_65 as value };
|
|
1065
|
-
const
|
|
1066
|
-
export {
|
|
1082
|
+
const sort_58: string[];
|
|
1083
|
+
export { sort_58 as sort };
|
|
1067
1084
|
}
|
|
1068
|
-
export namespace
|
|
1085
|
+
export namespace BUILT_IN {
|
|
1069
1086
|
const name_67: string;
|
|
1070
1087
|
export { name_67 as name };
|
|
1071
1088
|
const labelKey_67: string;
|
|
1072
1089
|
export { labelKey_67 as labelKey };
|
|
1073
1090
|
const value_66: string;
|
|
1074
1091
|
export { value_66 as value };
|
|
1075
|
-
const
|
|
1076
|
-
export {
|
|
1092
|
+
const sort_59: string[];
|
|
1093
|
+
export { sort_59 as sort };
|
|
1094
|
+
const align_9: string;
|
|
1095
|
+
export { align_9 as align };
|
|
1096
|
+
const formatter_32: string;
|
|
1097
|
+
export { formatter_32 as formatter };
|
|
1077
1098
|
}
|
|
1078
|
-
export namespace
|
|
1099
|
+
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
1079
1100
|
const name_68: string;
|
|
1080
1101
|
export { name_68 as name };
|
|
1081
1102
|
const labelKey_68: string;
|
|
1082
1103
|
export { labelKey_68 as labelKey };
|
|
1083
1104
|
const value_67: string;
|
|
1084
1105
|
export { value_67 as value };
|
|
1085
|
-
const
|
|
1086
|
-
export {
|
|
1106
|
+
const sort_60: string[];
|
|
1107
|
+
export { sort_60 as sort };
|
|
1108
|
+
const align_10: string;
|
|
1109
|
+
export { align_10 as align };
|
|
1110
|
+
const formatter_33: string;
|
|
1111
|
+
export { formatter_33 as formatter };
|
|
1087
1112
|
}
|
|
1088
|
-
export namespace
|
|
1113
|
+
export namespace RBAC_DEFAULT {
|
|
1089
1114
|
const name_69: string;
|
|
1090
1115
|
export { name_69 as name };
|
|
1091
1116
|
const labelKey_69: string;
|
|
1092
1117
|
export { labelKey_69 as labelKey };
|
|
1093
1118
|
const value_68: string;
|
|
1094
1119
|
export { value_68 as value };
|
|
1095
|
-
const
|
|
1096
|
-
export {
|
|
1097
|
-
const
|
|
1098
|
-
export {
|
|
1099
|
-
const width_19: number;
|
|
1100
|
-
export { width_19 as width };
|
|
1101
|
-
const align_11: string;
|
|
1102
|
-
export { align_11 as align };
|
|
1120
|
+
const formatter_34: string;
|
|
1121
|
+
export { formatter_34 as formatter };
|
|
1122
|
+
const sort_61: string[];
|
|
1123
|
+
export { sort_61 as sort };
|
|
1103
1124
|
}
|
|
1104
|
-
export namespace
|
|
1125
|
+
export namespace RBAC_BUILTIN {
|
|
1105
1126
|
const name_70: string;
|
|
1106
1127
|
export { name_70 as name };
|
|
1107
1128
|
const labelKey_70: string;
|
|
1108
1129
|
export { labelKey_70 as labelKey };
|
|
1109
1130
|
const value_69: string;
|
|
1110
1131
|
export { value_69 as value };
|
|
1111
|
-
const
|
|
1112
|
-
export {
|
|
1113
|
-
const
|
|
1114
|
-
export {
|
|
1132
|
+
const formatter_35: string;
|
|
1133
|
+
export { formatter_35 as formatter };
|
|
1134
|
+
const sort_62: string[];
|
|
1135
|
+
export { sort_62 as sort };
|
|
1115
1136
|
}
|
|
1116
|
-
export namespace
|
|
1137
|
+
export namespace RESOURCE {
|
|
1117
1138
|
const name_71: string;
|
|
1118
1139
|
export { name_71 as name };
|
|
1119
1140
|
const labelKey_71: string;
|
|
1120
1141
|
export { labelKey_71 as labelKey };
|
|
1121
1142
|
const value_70: string;
|
|
1122
1143
|
export { value_70 as value };
|
|
1123
|
-
const
|
|
1124
|
-
export {
|
|
1125
|
-
const formatter_33: string;
|
|
1126
|
-
export { formatter_33 as formatter };
|
|
1144
|
+
const sort_63: string[];
|
|
1145
|
+
export { sort_63 as sort };
|
|
1127
1146
|
}
|
|
1128
|
-
export namespace
|
|
1129
|
-
const formatter_34: string;
|
|
1130
|
-
export { formatter_34 as formatter };
|
|
1131
|
-
const labelKey_72: string;
|
|
1132
|
-
export { labelKey_72 as labelKey };
|
|
1147
|
+
export namespace API_GROUP {
|
|
1133
1148
|
const name_72: string;
|
|
1134
1149
|
export { name_72 as name };
|
|
1135
|
-
const
|
|
1136
|
-
export {
|
|
1150
|
+
const labelKey_72: string;
|
|
1151
|
+
export { labelKey_72 as labelKey };
|
|
1137
1152
|
const value_71: string;
|
|
1138
1153
|
export { value_71 as value };
|
|
1154
|
+
const sort_64: string[];
|
|
1155
|
+
export { sort_64 as sort };
|
|
1139
1156
|
}
|
|
1140
|
-
export namespace
|
|
1141
|
-
const formatter_35: string;
|
|
1142
|
-
export { formatter_35 as formatter };
|
|
1157
|
+
export namespace INGRESS_CLASS {
|
|
1143
1158
|
const name_73: string;
|
|
1144
1159
|
export { name_73 as name };
|
|
1145
1160
|
const labelKey_73: string;
|
|
1146
1161
|
export { labelKey_73 as labelKey };
|
|
1147
1162
|
const value_72: string;
|
|
1148
1163
|
export { value_72 as value };
|
|
1149
|
-
const
|
|
1150
|
-
export {
|
|
1164
|
+
const sort_65: string;
|
|
1165
|
+
export { sort_65 as sort };
|
|
1151
1166
|
}
|
|
1152
|
-
export namespace
|
|
1167
|
+
export namespace INGRESS_DEFAULT_BACKEND {
|
|
1153
1168
|
const name_74: string;
|
|
1154
1169
|
export { name_74 as name };
|
|
1155
1170
|
const labelKey_74: string;
|
|
1156
1171
|
export { labelKey_74 as labelKey };
|
|
1157
1172
|
const value_73: string;
|
|
1158
1173
|
export { value_73 as value };
|
|
1159
|
-
const
|
|
1160
|
-
export {
|
|
1174
|
+
const sort_66: string[];
|
|
1175
|
+
export { sort_66 as sort };
|
|
1176
|
+
const formatter_36: string;
|
|
1177
|
+
export { formatter_36 as formatter };
|
|
1178
|
+
const width_20: number;
|
|
1179
|
+
export { width_20 as width };
|
|
1180
|
+
const align_11: string;
|
|
1181
|
+
export { align_11 as align };
|
|
1161
1182
|
}
|
|
1162
|
-
export namespace
|
|
1183
|
+
export namespace INGRESS_TARGET {
|
|
1163
1184
|
const name_75: string;
|
|
1164
1185
|
export { name_75 as name };
|
|
1165
1186
|
const labelKey_75: string;
|
|
1166
1187
|
export { labelKey_75 as labelKey };
|
|
1167
1188
|
const value_74: string;
|
|
1168
1189
|
export { value_74 as value };
|
|
1169
|
-
const
|
|
1170
|
-
export {
|
|
1171
|
-
const
|
|
1172
|
-
export {
|
|
1190
|
+
const formatter_37: string;
|
|
1191
|
+
export { formatter_37 as formatter };
|
|
1192
|
+
const sort_67: string;
|
|
1193
|
+
export { sort_67 as sort };
|
|
1173
1194
|
}
|
|
1174
|
-
export namespace
|
|
1195
|
+
export namespace SPEC_TYPE {
|
|
1175
1196
|
const name_76: string;
|
|
1176
1197
|
export { name_76 as name };
|
|
1177
1198
|
const labelKey_76: string;
|
|
1178
1199
|
export { labelKey_76 as labelKey };
|
|
1179
1200
|
const value_75: string;
|
|
1180
1201
|
export { value_75 as value };
|
|
1181
|
-
const
|
|
1182
|
-
export {
|
|
1183
|
-
const
|
|
1184
|
-
export {
|
|
1202
|
+
const sort_68: string;
|
|
1203
|
+
export { sort_68 as sort };
|
|
1204
|
+
const formatter_38: string;
|
|
1205
|
+
export { formatter_38 as formatter };
|
|
1185
1206
|
}
|
|
1186
|
-
export namespace
|
|
1187
|
-
const
|
|
1188
|
-
export {
|
|
1207
|
+
export namespace TARGET_PORT {
|
|
1208
|
+
const formatter_39: string;
|
|
1209
|
+
export { formatter_39 as formatter };
|
|
1189
1210
|
const labelKey_77: string;
|
|
1190
1211
|
export { labelKey_77 as labelKey };
|
|
1212
|
+
const name_77: string;
|
|
1213
|
+
export { name_77 as name };
|
|
1214
|
+
const sort_69: string;
|
|
1215
|
+
export { sort_69 as sort };
|
|
1191
1216
|
const value_76: string;
|
|
1192
1217
|
export { value_76 as value };
|
|
1193
|
-
const sort_70: string;
|
|
1194
|
-
export { sort_70 as sort };
|
|
1195
1218
|
}
|
|
1196
|
-
export namespace
|
|
1219
|
+
export namespace SELECTOR {
|
|
1220
|
+
const formatter_40: string;
|
|
1221
|
+
export { formatter_40 as formatter };
|
|
1197
1222
|
const name_78: string;
|
|
1198
1223
|
export { name_78 as name };
|
|
1199
1224
|
const labelKey_78: string;
|
|
1200
1225
|
export { labelKey_78 as labelKey };
|
|
1201
1226
|
const value_77: string;
|
|
1202
1227
|
export { value_77 as value };
|
|
1203
|
-
const
|
|
1204
|
-
export {
|
|
1205
|
-
export namespace formatterOpts_3 {
|
|
1206
|
-
const addSuffix: boolean;
|
|
1207
|
-
}
|
|
1208
|
-
export { formatterOpts_3 as formatterOpts };
|
|
1209
|
-
const sort_71: string[];
|
|
1210
|
-
export { sort_71 as sort };
|
|
1228
|
+
const sort_70: string;
|
|
1229
|
+
export { sort_70 as sort };
|
|
1211
1230
|
}
|
|
1212
|
-
export namespace
|
|
1231
|
+
export namespace CHART {
|
|
1213
1232
|
const name_79: string;
|
|
1214
1233
|
export { name_79 as name };
|
|
1215
|
-
|
|
1234
|
+
const labelKey_79: string;
|
|
1235
|
+
export { labelKey_79 as labelKey };
|
|
1216
1236
|
const value_78: string;
|
|
1217
1237
|
export { value_78 as value };
|
|
1218
|
-
const
|
|
1219
|
-
export {
|
|
1220
|
-
}
|
|
1221
|
-
export namespace WORKLOAD_IMAGES {
|
|
1222
|
-
const value_79: string;
|
|
1223
|
-
export { value_79 as value };
|
|
1224
|
-
export const breakpoint: any;
|
|
1238
|
+
const sort_71: string[];
|
|
1239
|
+
export { sort_71 as sort };
|
|
1225
1240
|
}
|
|
1226
|
-
export namespace
|
|
1241
|
+
export namespace CHART_UPGRADE {
|
|
1227
1242
|
const name_80: string;
|
|
1228
1243
|
export { name_80 as name };
|
|
1229
|
-
const
|
|
1230
|
-
export {
|
|
1231
|
-
const
|
|
1232
|
-
export {
|
|
1233
|
-
|
|
1234
|
-
export {
|
|
1235
|
-
const
|
|
1236
|
-
export {
|
|
1237
|
-
const dashIfEmpty_5: boolean;
|
|
1238
|
-
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1239
|
-
const breakpoint_1: any;
|
|
1240
|
-
export { breakpoint_1 as breakpoint };
|
|
1241
|
-
export const maxPageSize: number;
|
|
1244
|
+
const labelKey_80: string;
|
|
1245
|
+
export { labelKey_80 as labelKey };
|
|
1246
|
+
const value_79: string;
|
|
1247
|
+
export { value_79 as value };
|
|
1248
|
+
const sort_72: string;
|
|
1249
|
+
export { sort_72 as sort };
|
|
1250
|
+
const dashIfEmpty_4: boolean;
|
|
1251
|
+
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1242
1252
|
}
|
|
1243
|
-
export namespace
|
|
1253
|
+
export namespace RESOURCES {
|
|
1244
1254
|
const name_81: string;
|
|
1245
1255
|
export { name_81 as name };
|
|
1246
|
-
const
|
|
1247
|
-
export {
|
|
1248
|
-
const
|
|
1249
|
-
export {
|
|
1250
|
-
|
|
1251
|
-
export {
|
|
1256
|
+
const labelKey_81: string;
|
|
1257
|
+
export { labelKey_81 as labelKey };
|
|
1258
|
+
const value_80: string;
|
|
1259
|
+
export { value_80 as value };
|
|
1260
|
+
const sort_73: string;
|
|
1261
|
+
export { sort_73 as sort };
|
|
1252
1262
|
const width_21: number;
|
|
1253
1263
|
export { width_21 as width };
|
|
1254
|
-
export const skipSelect: boolean;
|
|
1255
|
-
const delayLoading_1: boolean;
|
|
1256
|
-
export { delayLoading_1 as delayLoading };
|
|
1257
|
-
const search_6: boolean;
|
|
1258
|
-
export { search_6 as search };
|
|
1259
|
-
const liveUpdates_1: boolean;
|
|
1260
|
-
export { liveUpdates_1 as liveUpdates };
|
|
1261
1264
|
}
|
|
1262
|
-
export namespace
|
|
1265
|
+
export namespace URL {
|
|
1263
1266
|
const name_82: string;
|
|
1264
1267
|
export { name_82 as name };
|
|
1265
|
-
const
|
|
1266
|
-
export {
|
|
1268
|
+
const labelKey_82: string;
|
|
1269
|
+
export { labelKey_82 as labelKey };
|
|
1267
1270
|
const value_81: string;
|
|
1268
1271
|
export { value_81 as value };
|
|
1269
|
-
const
|
|
1270
|
-
export {
|
|
1271
|
-
const search_7: boolean;
|
|
1272
|
-
export { search_7 as search };
|
|
1273
|
-
const formatter_39: string;
|
|
1274
|
-
export { formatter_39 as formatter };
|
|
1275
|
-
const align_12: string;
|
|
1276
|
-
export { align_12 as align };
|
|
1277
|
-
const width_22: number;
|
|
1278
|
-
export { width_22 as width };
|
|
1272
|
+
const sort_74: string;
|
|
1273
|
+
export { sort_74 as sort };
|
|
1279
1274
|
}
|
|
1280
|
-
export namespace
|
|
1275
|
+
export namespace LAST_UPDATED {
|
|
1281
1276
|
const name_83: string;
|
|
1282
1277
|
export { name_83 as name };
|
|
1283
|
-
const
|
|
1284
|
-
export {
|
|
1278
|
+
const labelKey_83: string;
|
|
1279
|
+
export { labelKey_83 as labelKey };
|
|
1285
1280
|
const value_82: string;
|
|
1286
1281
|
export { value_82 as value };
|
|
1287
|
-
const
|
|
1288
|
-
export {
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
export { width_23 as width };
|
|
1282
|
+
const formatter_41: string;
|
|
1283
|
+
export { formatter_41 as formatter };
|
|
1284
|
+
export namespace formatterOpts_6 {
|
|
1285
|
+
const addSuffix_1: boolean;
|
|
1286
|
+
export { addSuffix_1 as addSuffix };
|
|
1287
|
+
}
|
|
1288
|
+
export { formatterOpts_6 as formatterOpts };
|
|
1289
|
+
const sort_75: string[];
|
|
1290
|
+
export { sort_75 as sort };
|
|
1297
1291
|
}
|
|
1298
|
-
export namespace
|
|
1292
|
+
export namespace WORKSPACE {
|
|
1299
1293
|
const name_84: string;
|
|
1300
1294
|
export { name_84 as name };
|
|
1301
|
-
const
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
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 };
|
|
1311
|
-
const formatter_41: string;
|
|
1312
|
-
export { formatter_41 as formatter };
|
|
1313
|
-
export namespace formatterOpts_4 {
|
|
1314
|
-
const arbitrary: boolean;
|
|
1315
|
-
}
|
|
1316
|
-
export { formatterOpts_4 as formatterOpts };
|
|
1295
|
+
export const label: string;
|
|
1296
|
+
const value_83: string;
|
|
1297
|
+
export { value_83 as value };
|
|
1298
|
+
const sort_76: string[];
|
|
1299
|
+
export { sort_76 as sort };
|
|
1317
1300
|
}
|
|
1318
|
-
export namespace
|
|
1301
|
+
export namespace WORKLOAD_IMAGES {
|
|
1302
|
+
const value_84: string;
|
|
1303
|
+
export { value_84 as value };
|
|
1304
|
+
export const breakpoint: any;
|
|
1305
|
+
}
|
|
1306
|
+
export namespace WORKLOAD_ENDPOINTS {
|
|
1319
1307
|
const name_85: string;
|
|
1320
1308
|
export { name_85 as name };
|
|
1321
1309
|
const labelKey_84: string;
|
|
1322
1310
|
export { labelKey_84 as labelKey };
|
|
1323
|
-
const
|
|
1324
|
-
export {
|
|
1325
|
-
|
|
1326
|
-
export {
|
|
1327
|
-
const search_9: boolean;
|
|
1328
|
-
export { search_9 as search };
|
|
1311
|
+
const value_85: string;
|
|
1312
|
+
export { value_85 as value };
|
|
1313
|
+
export function getValue_12(row: any): any;
|
|
1314
|
+
export { getValue_12 as getValue };
|
|
1329
1315
|
const formatter_42: string;
|
|
1330
1316
|
export { formatter_42 as formatter };
|
|
1331
|
-
const
|
|
1332
|
-
export {
|
|
1333
|
-
const
|
|
1334
|
-
export {
|
|
1317
|
+
const dashIfEmpty_5: boolean;
|
|
1318
|
+
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1319
|
+
const breakpoint_1: any;
|
|
1320
|
+
export { breakpoint_1 as breakpoint };
|
|
1321
|
+
export const maxPageSize: number;
|
|
1335
1322
|
}
|
|
1336
|
-
export namespace
|
|
1323
|
+
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1337
1324
|
const name_86: string;
|
|
1338
1325
|
export { name_86 as name };
|
|
1339
1326
|
const labelKey_85: string;
|
|
1340
1327
|
export { labelKey_85 as labelKey };
|
|
1341
|
-
const value_84: string;
|
|
1342
|
-
export { value_84 as value };
|
|
1343
|
-
const sort_77: string;
|
|
1344
|
-
export { sort_77 as sort };
|
|
1345
1328
|
const formatter_43: string;
|
|
1346
1329
|
export { formatter_43 as formatter };
|
|
1347
|
-
export
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1330
|
+
export function getValue_13(): any;
|
|
1331
|
+
export { getValue_13 as getValue };
|
|
1332
|
+
const width_22: number;
|
|
1333
|
+
export { width_22 as width };
|
|
1334
|
+
export const skipSelect: boolean;
|
|
1335
|
+
const delayLoading_1: boolean;
|
|
1336
|
+
export { delayLoading_1 as delayLoading };
|
|
1337
|
+
const search_6: boolean;
|
|
1338
|
+
export { search_6 as search };
|
|
1339
|
+
const liveUpdates_1: boolean;
|
|
1340
|
+
export { liveUpdates_1 as liveUpdates };
|
|
1355
1341
|
}
|
|
1356
|
-
export namespace
|
|
1342
|
+
export namespace FLEET_SUMMARY {
|
|
1357
1343
|
const name_87: string;
|
|
1358
1344
|
export { name_87 as name };
|
|
1359
1345
|
const labelKey_86: string;
|
|
1360
1346
|
export { labelKey_86 as labelKey };
|
|
1361
|
-
const
|
|
1362
|
-
export {
|
|
1363
|
-
const
|
|
1364
|
-
export {
|
|
1365
|
-
const
|
|
1366
|
-
export {
|
|
1347
|
+
const value_86: string;
|
|
1348
|
+
export { value_86 as value };
|
|
1349
|
+
const sort_77: boolean;
|
|
1350
|
+
export { sort_77 as sort };
|
|
1351
|
+
const search_7: boolean;
|
|
1352
|
+
export { search_7 as search };
|
|
1367
1353
|
const formatter_44: string;
|
|
1368
1354
|
export { formatter_44 as formatter };
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
}
|
|
1374
|
-
export { options_2 as options };
|
|
1375
|
-
}
|
|
1376
|
-
export { formatterOpts_6 as formatterOpts };
|
|
1355
|
+
const align_12: string;
|
|
1356
|
+
export { align_12 as align };
|
|
1357
|
+
const width_23: number;
|
|
1358
|
+
export { width_23 as width };
|
|
1377
1359
|
}
|
|
1378
|
-
export namespace
|
|
1360
|
+
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1379
1361
|
const name_88: string;
|
|
1380
1362
|
export { name_88 as name };
|
|
1381
1363
|
const labelKey_87: string;
|
|
1382
1364
|
export { labelKey_87 as labelKey };
|
|
1383
|
-
const
|
|
1384
|
-
export {
|
|
1385
|
-
const
|
|
1386
|
-
export {
|
|
1365
|
+
const value_87: string;
|
|
1366
|
+
export { value_87 as value };
|
|
1367
|
+
const sort_78: boolean;
|
|
1368
|
+
export { sort_78 as sort };
|
|
1369
|
+
const search_8: boolean;
|
|
1370
|
+
export { search_8 as search };
|
|
1371
|
+
const formatter_45: string;
|
|
1372
|
+
export { formatter_45 as formatter };
|
|
1373
|
+
const align_13: string;
|
|
1374
|
+
export { align_13 as align };
|
|
1375
|
+
const width_24: number;
|
|
1376
|
+
export { width_24 as width };
|
|
1387
1377
|
}
|
|
1388
|
-
export namespace
|
|
1378
|
+
export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
1389
1379
|
const name_89: string;
|
|
1390
1380
|
export { name_89 as name };
|
|
1391
1381
|
const labelKey_88: string;
|
|
1392
1382
|
export { labelKey_88 as labelKey };
|
|
1393
|
-
const
|
|
1394
|
-
export {
|
|
1395
|
-
const
|
|
1396
|
-
export {
|
|
1397
|
-
const
|
|
1398
|
-
export {
|
|
1383
|
+
const tooltip_1: string;
|
|
1384
|
+
export { tooltip_1 as tooltip };
|
|
1385
|
+
const sort_79: string[];
|
|
1386
|
+
export { sort_79 as sort };
|
|
1387
|
+
const width_25: number;
|
|
1388
|
+
export { width_25 as width };
|
|
1389
|
+
const _default_2: string;
|
|
1390
|
+
export { _default_2 as default };
|
|
1391
|
+
const formatter_46: string;
|
|
1392
|
+
export { formatter_46 as formatter };
|
|
1393
|
+
export namespace formatterOpts_7 {
|
|
1394
|
+
const arbitrary: boolean;
|
|
1395
|
+
}
|
|
1396
|
+
export { formatterOpts_7 as formatterOpts };
|
|
1399
1397
|
}
|
|
1400
|
-
export namespace
|
|
1398
|
+
export namespace APP_SUMMARY {
|
|
1401
1399
|
const name_90: string;
|
|
1402
1400
|
export { name_90 as name };
|
|
1403
1401
|
const labelKey_89: string;
|
|
1404
1402
|
export { labelKey_89 as labelKey };
|
|
1405
1403
|
const value_88: string;
|
|
1406
1404
|
export { value_88 as value };
|
|
1407
|
-
const
|
|
1408
|
-
export {
|
|
1405
|
+
const sort_80: boolean;
|
|
1406
|
+
export { sort_80 as sort };
|
|
1407
|
+
const search_9: boolean;
|
|
1408
|
+
export { search_9 as search };
|
|
1409
|
+
const formatter_47: string;
|
|
1410
|
+
export { formatter_47 as formatter };
|
|
1411
|
+
const align_14: string;
|
|
1412
|
+
export { align_14 as align };
|
|
1413
|
+
const width_26: number;
|
|
1414
|
+
export { width_26 as width };
|
|
1409
1415
|
}
|
|
1410
|
-
export namespace
|
|
1416
|
+
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1411
1417
|
const name_91: string;
|
|
1412
1418
|
export { name_91 as name };
|
|
1413
1419
|
const labelKey_90: string;
|
|
1414
1420
|
export { labelKey_90 as labelKey };
|
|
1415
1421
|
const value_89: string;
|
|
1416
1422
|
export { value_89 as value };
|
|
1417
|
-
const
|
|
1418
|
-
export {
|
|
1419
|
-
const
|
|
1420
|
-
export {
|
|
1421
|
-
export namespace
|
|
1422
|
-
export namespace
|
|
1423
|
-
const
|
|
1424
|
-
export {
|
|
1423
|
+
const sort_81: string;
|
|
1424
|
+
export { sort_81 as sort };
|
|
1425
|
+
const formatter_48: string;
|
|
1426
|
+
export { formatter_48 as formatter };
|
|
1427
|
+
export namespace formatterOpts_8 {
|
|
1428
|
+
export namespace options_1 {
|
|
1429
|
+
const internal_1: boolean;
|
|
1430
|
+
export { internal_1 as internal };
|
|
1425
1431
|
}
|
|
1426
|
-
export {
|
|
1432
|
+
export { options_1 as options };
|
|
1427
1433
|
}
|
|
1428
|
-
export {
|
|
1434
|
+
export { formatterOpts_8 as formatterOpts };
|
|
1429
1435
|
}
|
|
1430
|
-
export namespace
|
|
1436
|
+
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1431
1437
|
const name_92: string;
|
|
1432
1438
|
export { name_92 as name };
|
|
1433
1439
|
const labelKey_91: string;
|
|
1434
1440
|
export { labelKey_91 as labelKey };
|
|
1435
1441
|
const value_90: string;
|
|
1436
1442
|
export { value_90 as value };
|
|
1437
|
-
const
|
|
1438
|
-
export {
|
|
1439
|
-
const
|
|
1440
|
-
export {
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1443
|
+
const sort_82: string;
|
|
1444
|
+
export { sort_82 as sort };
|
|
1445
|
+
const search_10: string;
|
|
1446
|
+
export { search_10 as search };
|
|
1447
|
+
const formatter_49: string;
|
|
1448
|
+
export { formatter_49 as formatter };
|
|
1449
|
+
export namespace formatterOpts_9 {
|
|
1450
|
+
export namespace options_2 {
|
|
1451
|
+
const internal_2: boolean;
|
|
1452
|
+
export { internal_2 as internal };
|
|
1453
|
+
}
|
|
1454
|
+
export { options_2 as options };
|
|
1444
1455
|
}
|
|
1445
|
-
export {
|
|
1456
|
+
export { formatterOpts_9 as formatterOpts };
|
|
1446
1457
|
}
|
|
1447
|
-
export namespace
|
|
1458
|
+
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1448
1459
|
const name_93: string;
|
|
1449
1460
|
export { name_93 as name };
|
|
1450
|
-
const
|
|
1451
|
-
export {
|
|
1461
|
+
const labelKey_92: string;
|
|
1462
|
+
export { labelKey_92 as labelKey };
|
|
1452
1463
|
const value_91: string;
|
|
1453
1464
|
export { value_91 as value };
|
|
1454
|
-
const
|
|
1455
|
-
export {
|
|
1456
|
-
const formatter_47: string;
|
|
1457
|
-
export { formatter_47 as formatter };
|
|
1465
|
+
const sort_83: string;
|
|
1466
|
+
export { sort_83 as sort };
|
|
1458
1467
|
}
|
|
1459
|
-
export namespace
|
|
1468
|
+
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1460
1469
|
const name_94: string;
|
|
1461
1470
|
export { name_94 as name };
|
|
1462
|
-
const
|
|
1463
|
-
export {
|
|
1471
|
+
const labelKey_93: string;
|
|
1472
|
+
export { labelKey_93 as labelKey };
|
|
1464
1473
|
const value_92: string;
|
|
1465
1474
|
export { value_92 as value };
|
|
1466
|
-
const
|
|
1467
|
-
export {
|
|
1468
|
-
const
|
|
1469
|
-
export {
|
|
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 };
|
|
1475
|
+
const sort_84: string;
|
|
1476
|
+
export { sort_84 as sort };
|
|
1477
|
+
const search_11: string;
|
|
1478
|
+
export { search_11 as search };
|
|
1478
1479
|
}
|
|
1479
|
-
export namespace
|
|
1480
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1480
1481
|
const name_95: string;
|
|
1481
1482
|
export { name_95 as name };
|
|
1482
|
-
const
|
|
1483
|
-
export {
|
|
1483
|
+
const labelKey_94: string;
|
|
1484
|
+
export { labelKey_94 as labelKey };
|
|
1484
1485
|
const value_93: string;
|
|
1485
1486
|
export { value_93 as value };
|
|
1486
|
-
const
|
|
1487
|
-
export {
|
|
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 };
|
|
1487
|
+
const sort_85: string;
|
|
1488
|
+
export { sort_85 as sort };
|
|
1494
1489
|
}
|
|
1495
|
-
export namespace
|
|
1490
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1496
1491
|
const name_96: string;
|
|
1497
1492
|
export { name_96 as name };
|
|
1498
|
-
const
|
|
1499
|
-
export {
|
|
1493
|
+
const labelKey_95: string;
|
|
1494
|
+
export { labelKey_95 as labelKey };
|
|
1500
1495
|
const value_94: string;
|
|
1501
1496
|
export { value_94 as value };
|
|
1497
|
+
const sort_86: string;
|
|
1498
|
+
export { sort_86 as sort };
|
|
1502
1499
|
const formatter_50: string;
|
|
1503
1500
|
export { formatter_50 as formatter };
|
|
1501
|
+
export namespace formatterOpts_10 {
|
|
1502
|
+
export namespace options_3 {
|
|
1503
|
+
const internal_3: boolean;
|
|
1504
|
+
export { internal_3 as internal };
|
|
1505
|
+
}
|
|
1506
|
+
export { options_3 as options };
|
|
1507
|
+
}
|
|
1508
|
+
export { formatterOpts_10 as formatterOpts };
|
|
1504
1509
|
}
|
|
1505
|
-
export namespace
|
|
1510
|
+
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1506
1511
|
const name_97: string;
|
|
1507
1512
|
export { name_97 as name };
|
|
1508
|
-
const
|
|
1509
|
-
export {
|
|
1513
|
+
const labelKey_96: string;
|
|
1514
|
+
export { labelKey_96 as labelKey };
|
|
1510
1515
|
const value_95: string;
|
|
1511
1516
|
export { value_95 as value };
|
|
1512
1517
|
const sort_87: string;
|
|
1513
1518
|
export { sort_87 as sort };
|
|
1519
|
+
const formatter_51: string;
|
|
1520
|
+
export { formatter_51 as formatter };
|
|
1521
|
+
export namespace formatterOpts_11 {
|
|
1522
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1523
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1524
|
+
}
|
|
1525
|
+
export { formatterOpts_11 as formatterOpts };
|
|
1514
1526
|
}
|
|
1515
|
-
export namespace
|
|
1527
|
+
export namespace RECEIVER_PROVIDERS {
|
|
1516
1528
|
const name_98: string;
|
|
1517
1529
|
export { name_98 as name };
|
|
1518
|
-
const
|
|
1519
|
-
export {
|
|
1530
|
+
const label_1: string;
|
|
1531
|
+
export { label_1 as label };
|
|
1520
1532
|
const value_96: string;
|
|
1521
1533
|
export { value_96 as value };
|
|
1522
1534
|
const sort_88: string;
|
|
1523
1535
|
export { sort_88 as sort };
|
|
1536
|
+
const formatter_52: string;
|
|
1537
|
+
export { formatter_52 as formatter };
|
|
1524
1538
|
}
|
|
1525
|
-
export namespace
|
|
1539
|
+
export namespace CONFIGURED_RECEIVER {
|
|
1526
1540
|
const name_99: string;
|
|
1527
1541
|
export { name_99 as name };
|
|
1528
|
-
const
|
|
1529
|
-
export {
|
|
1542
|
+
const label_2: string;
|
|
1543
|
+
export { label_2 as label };
|
|
1530
1544
|
const value_97: string;
|
|
1531
1545
|
export { value_97 as value };
|
|
1532
1546
|
const sort_89: string;
|
|
1533
1547
|
export { sort_89 as sort };
|
|
1548
|
+
const formatter_53: string;
|
|
1549
|
+
export { formatter_53 as formatter };
|
|
1550
|
+
export namespace formatterOpts_12 {
|
|
1551
|
+
export namespace options_4 {
|
|
1552
|
+
const internal_4: boolean;
|
|
1553
|
+
export { internal_4 as internal };
|
|
1554
|
+
}
|
|
1555
|
+
export { options_4 as options };
|
|
1556
|
+
}
|
|
1557
|
+
export { formatterOpts_12 as formatterOpts };
|
|
1534
1558
|
}
|
|
1535
|
-
export namespace
|
|
1559
|
+
export namespace GROUP_NAME {
|
|
1536
1560
|
const name_100: string;
|
|
1537
1561
|
export { name_100 as name };
|
|
1538
1562
|
const labelKey_97: string;
|
|
1539
1563
|
export { labelKey_97 as labelKey };
|
|
1540
1564
|
const value_98: string;
|
|
1541
1565
|
export { value_98 as value };
|
|
1542
|
-
const sort_90: string;
|
|
1566
|
+
const sort_90: string[];
|
|
1543
1567
|
export { sort_90 as sort };
|
|
1568
|
+
const search_12: string[];
|
|
1569
|
+
export { search_12 as search };
|
|
1570
|
+
const formatter_54: string;
|
|
1571
|
+
export { formatter_54 as formatter };
|
|
1572
|
+
const width_27: number;
|
|
1573
|
+
export { width_27 as width };
|
|
1544
1574
|
}
|
|
1545
|
-
export namespace
|
|
1546
|
-
const value_99: string;
|
|
1547
|
-
export { value_99 as value };
|
|
1548
|
-
const formatter_51: string;
|
|
1549
|
-
export { formatter_51 as formatter };
|
|
1550
|
-
}
|
|
1551
|
-
export namespace ACCESS_KEY {
|
|
1575
|
+
export namespace GROUP_ROLE_NAME {
|
|
1552
1576
|
const name_101: string;
|
|
1553
1577
|
export { name_101 as name };
|
|
1554
1578
|
const labelKey_98: string;
|
|
1555
1579
|
export { labelKey_98 as labelKey };
|
|
1556
|
-
const
|
|
1557
|
-
export {
|
|
1558
|
-
const
|
|
1559
|
-
export {
|
|
1560
|
-
const width_27: number;
|
|
1561
|
-
export { width_27 as width };
|
|
1580
|
+
const value_99: string;
|
|
1581
|
+
export { value_99 as value };
|
|
1582
|
+
const formatter_55: string;
|
|
1583
|
+
export { formatter_55 as formatter };
|
|
1562
1584
|
}
|
|
1563
|
-
export namespace
|
|
1585
|
+
export namespace HPA_REFERENCE {
|
|
1564
1586
|
const name_102: string;
|
|
1565
1587
|
export { name_102 as name };
|
|
1566
|
-
const value_100: string;
|
|
1567
|
-
export { value_100 as value };
|
|
1568
1588
|
const labelKey_99: string;
|
|
1569
1589
|
export { labelKey_99 as labelKey };
|
|
1570
|
-
const
|
|
1571
|
-
export {
|
|
1572
|
-
const
|
|
1573
|
-
export {
|
|
1574
|
-
const sort_92: string[];
|
|
1575
|
-
export { sort_92 as sort };
|
|
1576
|
-
const width_28: number;
|
|
1577
|
-
export { width_28 as width };
|
|
1578
|
-
}
|
|
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 };
|
|
1590
|
+
const value_100: string;
|
|
1591
|
+
export { value_100 as value };
|
|
1592
|
+
const sort_91: string;
|
|
1593
|
+
export { sort_91 as sort };
|
|
1584
1594
|
}
|
|
1585
|
-
export namespace
|
|
1595
|
+
export namespace MIN_REPLICA {
|
|
1586
1596
|
const name_103: string;
|
|
1587
1597
|
export { name_103 as name };
|
|
1588
|
-
const value_102: string;
|
|
1589
|
-
export { value_102 as value };
|
|
1590
1598
|
const labelKey_100: string;
|
|
1591
1599
|
export { labelKey_100 as labelKey };
|
|
1592
|
-
const
|
|
1593
|
-
export {
|
|
1594
|
-
const
|
|
1595
|
-
export {
|
|
1596
|
-
const width_29: number;
|
|
1597
|
-
export { width_29 as width };
|
|
1598
|
-
const formatter_52: string;
|
|
1599
|
-
export { formatter_52 as formatter };
|
|
1600
|
-
}
|
|
1601
|
-
export namespace RESTART {
|
|
1602
|
-
const name_104: string;
|
|
1603
|
-
export { name_104 as name };
|
|
1604
|
-
const labelKey_101: string;
|
|
1605
|
-
export { labelKey_101 as labelKey };
|
|
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 };
|
|
1614
|
-
const align_18: string;
|
|
1615
|
-
export { align_18 as align };
|
|
1600
|
+
const value_101: string;
|
|
1601
|
+
export { value_101 as value };
|
|
1602
|
+
const sort_92: string;
|
|
1603
|
+
export { sort_92 as sort };
|
|
1616
1604
|
}
|
|
1617
|
-
export namespace
|
|
1605
|
+
export namespace MAX_REPLICA {
|
|
1606
|
+
const name_104: string;
|
|
1607
|
+
export { name_104 as name };
|
|
1608
|
+
const labelKey_101: string;
|
|
1609
|
+
export { labelKey_101 as labelKey };
|
|
1610
|
+
const value_102: string;
|
|
1611
|
+
export { value_102 as value };
|
|
1612
|
+
const sort_93: string;
|
|
1613
|
+
export { sort_93 as sort };
|
|
1614
|
+
}
|
|
1615
|
+
export namespace CURRENT_REPLICA {
|
|
1618
1616
|
const name_105: string;
|
|
1619
1617
|
export { name_105 as name };
|
|
1620
|
-
const value_104: string;
|
|
1621
|
-
export { value_104 as value };
|
|
1622
1618
|
const labelKey_102: string;
|
|
1623
1619
|
export { labelKey_102 as labelKey };
|
|
1620
|
+
const value_103: string;
|
|
1621
|
+
export { value_103 as value };
|
|
1622
|
+
const sort_94: string;
|
|
1623
|
+
export { sort_94 as sort };
|
|
1624
1624
|
}
|
|
1625
|
-
export namespace
|
|
1625
|
+
export namespace EXPIRY_STATE {
|
|
1626
|
+
const value_104: string;
|
|
1627
|
+
export { value_104 as value };
|
|
1628
|
+
const formatter_56: string;
|
|
1629
|
+
export { formatter_56 as formatter };
|
|
1630
|
+
}
|
|
1631
|
+
export namespace ACCESS_KEY {
|
|
1626
1632
|
const name_106: string;
|
|
1627
1633
|
export { name_106 as name };
|
|
1628
1634
|
const labelKey_103: string;
|
|
1629
1635
|
export { labelKey_103 as labelKey };
|
|
1630
|
-
const
|
|
1631
|
-
export {
|
|
1632
|
-
const
|
|
1633
|
-
export {
|
|
1634
|
-
const
|
|
1635
|
-
export {
|
|
1636
|
-
const formatter_54: string;
|
|
1637
|
-
export { formatter_54 as formatter };
|
|
1638
|
-
export namespace formatterOpts_10 {
|
|
1639
|
-
const prefix: string;
|
|
1640
|
-
}
|
|
1641
|
-
export { formatterOpts_10 as formatterOpts };
|
|
1636
|
+
const align_15: string;
|
|
1637
|
+
export { align_15 as align };
|
|
1638
|
+
const sort_95: string[];
|
|
1639
|
+
export { sort_95 as sort };
|
|
1640
|
+
const width_28: number;
|
|
1641
|
+
export { width_28 as width };
|
|
1642
1642
|
}
|
|
1643
|
-
export namespace
|
|
1643
|
+
export namespace SCOPE {
|
|
1644
1644
|
const name_107: string;
|
|
1645
1645
|
export { name_107 as name };
|
|
1646
|
+
const value_105: string;
|
|
1647
|
+
export { value_105 as value };
|
|
1646
1648
|
const labelKey_104: string;
|
|
1647
1649
|
export { labelKey_104 as labelKey };
|
|
1648
|
-
const
|
|
1649
|
-
export {
|
|
1650
|
+
const dashIfEmpty_6: boolean;
|
|
1651
|
+
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1652
|
+
const align_16: string;
|
|
1653
|
+
export { align_16 as align };
|
|
1654
|
+
const sort_96: string[];
|
|
1655
|
+
export { sort_96 as sort };
|
|
1656
|
+
const width_29: number;
|
|
1657
|
+
export { width_29 as width };
|
|
1658
|
+
}
|
|
1659
|
+
export namespace SCOPE_NORMAN {
|
|
1650
1660
|
const value_106: string;
|
|
1651
1661
|
export { value_106 as value };
|
|
1652
|
-
const
|
|
1653
|
-
export {
|
|
1654
|
-
const _default_2: string;
|
|
1655
|
-
export { _default_2 as default };
|
|
1656
|
-
const formatter_55: string;
|
|
1657
|
-
export { formatter_55 as formatter };
|
|
1662
|
+
const sort_97: string[];
|
|
1663
|
+
export { sort_97 as sort };
|
|
1658
1664
|
}
|
|
1659
|
-
export namespace
|
|
1665
|
+
export namespace EXPIRES {
|
|
1660
1666
|
const name_108: string;
|
|
1661
1667
|
export { name_108 as name };
|
|
1662
|
-
const labelKey_105: string;
|
|
1663
|
-
export { labelKey_105 as labelKey };
|
|
1664
1668
|
const value_107: string;
|
|
1665
1669
|
export { value_107 as value };
|
|
1670
|
+
const labelKey_105: string;
|
|
1671
|
+
export { labelKey_105 as labelKey };
|
|
1672
|
+
const align_17: string;
|
|
1673
|
+
export { align_17 as align };
|
|
1666
1674
|
const sort_98: string[];
|
|
1667
1675
|
export { sort_98 as sort };
|
|
1668
|
-
const
|
|
1669
|
-
export {
|
|
1676
|
+
const width_30: number;
|
|
1677
|
+
export { width_30 as width };
|
|
1678
|
+
const formatter_57: string;
|
|
1679
|
+
export { formatter_57 as formatter };
|
|
1670
1680
|
}
|
|
1671
|
-
export namespace
|
|
1681
|
+
export namespace RESTART {
|
|
1672
1682
|
const name_109: string;
|
|
1673
1683
|
export { name_109 as name };
|
|
1674
1684
|
const labelKey_106: string;
|
|
@@ -1677,85 +1687,155 @@ export namespace MACHINE_NODE_OS {
|
|
|
1677
1687
|
export { value_108 as value };
|
|
1678
1688
|
const sort_99: string[];
|
|
1679
1689
|
export { sort_99 as sort };
|
|
1680
|
-
const
|
|
1681
|
-
export {
|
|
1682
|
-
const
|
|
1683
|
-
export {
|
|
1690
|
+
const formatter_58: string;
|
|
1691
|
+
export { formatter_58 as formatter };
|
|
1692
|
+
const width_31: number;
|
|
1693
|
+
export { width_31 as width };
|
|
1694
|
+
const align_18: string;
|
|
1695
|
+
export { align_18 as align };
|
|
1684
1696
|
}
|
|
1685
|
-
export namespace
|
|
1697
|
+
export namespace ROLE {
|
|
1686
1698
|
const name_110: string;
|
|
1687
1699
|
export { name_110 as name };
|
|
1688
|
-
const labelKey_107: string;
|
|
1689
|
-
export { labelKey_107 as labelKey };
|
|
1690
1700
|
const value_109: string;
|
|
1691
1701
|
export { value_109 as value };
|
|
1692
|
-
const
|
|
1693
|
-
export {
|
|
1694
|
-
const formatter_58: string;
|
|
1695
|
-
export { formatter_58 as formatter };
|
|
1696
|
-
const dashIfEmpty_8: boolean;
|
|
1697
|
-
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1702
|
+
const labelKey_107: string;
|
|
1703
|
+
export { labelKey_107 as labelKey };
|
|
1698
1704
|
}
|
|
1699
|
-
export namespace
|
|
1705
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1700
1706
|
const name_111: string;
|
|
1701
1707
|
export { name_111 as name };
|
|
1702
1708
|
const labelKey_108: string;
|
|
1703
1709
|
export { labelKey_108 as labelKey };
|
|
1704
1710
|
const value_110: string;
|
|
1705
1711
|
export { value_110 as value };
|
|
1712
|
+
const align_19: string;
|
|
1713
|
+
export { align_19 as align };
|
|
1714
|
+
const sort_100: string[];
|
|
1715
|
+
export { sort_100 as sort };
|
|
1706
1716
|
const formatter_59: string;
|
|
1707
1717
|
export { formatter_59 as formatter };
|
|
1708
|
-
export namespace
|
|
1709
|
-
const
|
|
1710
|
-
export { addSuffix_1 as addSuffix };
|
|
1718
|
+
export namespace formatterOpts_13 {
|
|
1719
|
+
const prefix: string;
|
|
1711
1720
|
}
|
|
1712
|
-
export {
|
|
1713
|
-
const sort_101: string[];
|
|
1714
|
-
export { sort_101 as sort };
|
|
1721
|
+
export { formatterOpts_13 as formatterOpts };
|
|
1715
1722
|
}
|
|
1716
|
-
export namespace
|
|
1723
|
+
export namespace STATE_NORMAN {
|
|
1717
1724
|
const name_112: string;
|
|
1718
1725
|
export { name_112 as name };
|
|
1719
1726
|
const labelKey_109: string;
|
|
1720
1727
|
export { labelKey_109 as labelKey };
|
|
1728
|
+
const sort_101: string[];
|
|
1729
|
+
export { sort_101 as sort };
|
|
1721
1730
|
const value_111: string;
|
|
1722
1731
|
export { value_111 as value };
|
|
1723
|
-
const sort_102: string[];
|
|
1724
|
-
export { sort_102 as sort };
|
|
1725
1732
|
const width_32: number;
|
|
1726
1733
|
export { width_32 as width };
|
|
1734
|
+
const _default_3: string;
|
|
1735
|
+
export { _default_3 as default };
|
|
1736
|
+
const formatter_60: string;
|
|
1737
|
+
export { formatter_60 as formatter };
|
|
1727
1738
|
}
|
|
1728
|
-
export namespace
|
|
1739
|
+
export namespace KUBE_NODE_OS {
|
|
1729
1740
|
const name_113: string;
|
|
1730
1741
|
export { name_113 as name };
|
|
1731
1742
|
const labelKey_110: string;
|
|
1732
1743
|
export { labelKey_110 as labelKey };
|
|
1733
1744
|
const value_112: string;
|
|
1734
1745
|
export { value_112 as value };
|
|
1735
|
-
const
|
|
1736
|
-
export {
|
|
1737
|
-
const
|
|
1738
|
-
export {
|
|
1746
|
+
const sort_102: string[];
|
|
1747
|
+
export { sort_102 as sort };
|
|
1748
|
+
const formatter_61: string;
|
|
1749
|
+
export { formatter_61 as formatter };
|
|
1739
1750
|
}
|
|
1740
|
-
export namespace
|
|
1751
|
+
export namespace MACHINE_NODE_OS {
|
|
1741
1752
|
const name_114: string;
|
|
1742
1753
|
export { name_114 as name };
|
|
1743
1754
|
const labelKey_111: string;
|
|
1744
1755
|
export { labelKey_111 as labelKey };
|
|
1745
1756
|
const value_113: string;
|
|
1746
1757
|
export { value_113 as value };
|
|
1747
|
-
const
|
|
1748
|
-
export {
|
|
1758
|
+
const sort_103: string[];
|
|
1759
|
+
export { sort_103 as sort };
|
|
1760
|
+
const formatter_62: string;
|
|
1761
|
+
export { formatter_62 as formatter };
|
|
1762
|
+
const dashIfEmpty_7: boolean;
|
|
1763
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1749
1764
|
}
|
|
1750
|
-
export namespace
|
|
1765
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1751
1766
|
const name_115: string;
|
|
1752
1767
|
export { name_115 as name };
|
|
1753
1768
|
const labelKey_112: string;
|
|
1754
1769
|
export { labelKey_112 as labelKey };
|
|
1755
1770
|
const value_114: string;
|
|
1756
1771
|
export { value_114 as value };
|
|
1757
|
-
const
|
|
1772
|
+
const sort_104: string[];
|
|
1773
|
+
export { sort_104 as sort };
|
|
1774
|
+
const formatter_63: string;
|
|
1775
|
+
export { formatter_63 as formatter };
|
|
1776
|
+
const dashIfEmpty_8: boolean;
|
|
1777
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1778
|
+
}
|
|
1779
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1780
|
+
const name_116: string;
|
|
1781
|
+
export { name_116 as name };
|
|
1782
|
+
const labelKey_113: string;
|
|
1783
|
+
export { labelKey_113 as labelKey };
|
|
1784
|
+
const value_115: string;
|
|
1785
|
+
export { value_115 as value };
|
|
1786
|
+
const formatter_64: string;
|
|
1787
|
+
export { formatter_64 as formatter };
|
|
1788
|
+
export namespace formatterOpts_14 {
|
|
1789
|
+
const addSuffix_2: boolean;
|
|
1790
|
+
export { addSuffix_2 as addSuffix };
|
|
1791
|
+
}
|
|
1792
|
+
export { formatterOpts_14 as formatterOpts };
|
|
1793
|
+
const sort_105: string[];
|
|
1758
1794
|
export { sort_105 as sort };
|
|
1795
|
+
}
|
|
1796
|
+
export namespace FLEET_BUNDLE_TYPE {
|
|
1797
|
+
const name_117: string;
|
|
1798
|
+
export { name_117 as name };
|
|
1799
|
+
const labelKey_114: string;
|
|
1800
|
+
export { labelKey_114 as labelKey };
|
|
1801
|
+
const value_116: string;
|
|
1802
|
+
export { value_116 as value };
|
|
1803
|
+
const sort_106: string[];
|
|
1804
|
+
export { sort_106 as sort };
|
|
1805
|
+
const width_33: number;
|
|
1806
|
+
export { width_33 as width };
|
|
1807
|
+
}
|
|
1808
|
+
export namespace FLEET_REPO_CLUSTERS_READY {
|
|
1809
|
+
const name_118: string;
|
|
1810
|
+
export { name_118 as name };
|
|
1811
|
+
const labelKey_115: string;
|
|
1812
|
+
export { labelKey_115 as labelKey };
|
|
1813
|
+
const value_117: string;
|
|
1814
|
+
export { value_117 as value };
|
|
1815
|
+
const sort_107: string;
|
|
1816
|
+
export { sort_107 as sort };
|
|
1817
|
+
const search_13: boolean;
|
|
1818
|
+
export { search_13 as search };
|
|
1819
|
+
}
|
|
1820
|
+
export namespace FLEET_REPO_TARGET {
|
|
1821
|
+
const name_119: string;
|
|
1822
|
+
export { name_119 as name };
|
|
1823
|
+
const labelKey_116: string;
|
|
1824
|
+
export { labelKey_116 as labelKey };
|
|
1825
|
+
const value_118: string;
|
|
1826
|
+
export { value_118 as value };
|
|
1827
|
+
const sort_108: string[];
|
|
1828
|
+
export { sort_108 as sort };
|
|
1829
|
+
}
|
|
1830
|
+
export namespace FLEET_REPO {
|
|
1831
|
+
const name_120: string;
|
|
1832
|
+
export { name_120 as name };
|
|
1833
|
+
const labelKey_117: string;
|
|
1834
|
+
export { labelKey_117 as labelKey };
|
|
1835
|
+
const value_119: string;
|
|
1836
|
+
export { value_119 as value };
|
|
1837
|
+
const sort_109: string;
|
|
1838
|
+
export { sort_109 as sort };
|
|
1759
1839
|
const search_14: string[];
|
|
1760
1840
|
export { search_14 as search };
|
|
1761
1841
|
}
|
|
@@ -1796,6 +1876,7 @@ export const UI_PLUGIN_CATALOG: ({
|
|
|
1796
1876
|
declare module '@shell/config/types' {
|
|
1797
1877
|
export namespace STEVE {
|
|
1798
1878
|
const PREFERENCE: string;
|
|
1879
|
+
const SCHEMA_DEFINITION: string;
|
|
1799
1880
|
}
|
|
1800
1881
|
export namespace NORMAN {
|
|
1801
1882
|
const APP: string;
|
|
@@ -1813,12 +1894,15 @@ export namespace NORMAN {
|
|
|
1813
1894
|
const PRINCIPAL: string;
|
|
1814
1895
|
const PROJECT: string;
|
|
1815
1896
|
const PROJECT_ROLE_TEMPLATE_BINDING: string;
|
|
1897
|
+
const SETTING: string;
|
|
1816
1898
|
namespace SPOOFED {
|
|
1817
1899
|
const GROUP_PRINCIPAL: string;
|
|
1818
1900
|
}
|
|
1819
1901
|
const ROLE_TEMPLATE: string;
|
|
1820
1902
|
const TOKEN: string;
|
|
1821
1903
|
const USER: string;
|
|
1904
|
+
const KONTAINER_DRIVER: string;
|
|
1905
|
+
const NODE_DRIVER: string;
|
|
1822
1906
|
}
|
|
1823
1907
|
export namespace PUBLIC {
|
|
1824
1908
|
const AUTH_PROVIDER: string;
|
|
@@ -1908,8 +1992,6 @@ export namespace MONITORING {
|
|
|
1908
1992
|
const RESPONDER: string;
|
|
1909
1993
|
const ROUTE: string;
|
|
1910
1994
|
const ROUTE_SPEC: string;
|
|
1911
|
-
const ALERTMANAGERCONFIG_RECEIVER_SPEC: string;
|
|
1912
|
-
const ALERTMANAGERCONFIG_ROUTE_SPEC: string;
|
|
1913
1995
|
}
|
|
1914
1996
|
export { SPOOFED_1 as SPOOFED };
|
|
1915
1997
|
}
|
|
@@ -1932,11 +2014,13 @@ export namespace MANAGEMENT {
|
|
|
1932
2014
|
const CLUSTER_ROLE_TEMPLATE_BINDING_1: string;
|
|
1933
2015
|
export { CLUSTER_ROLE_TEMPLATE_BINDING_1 as CLUSTER_ROLE_TEMPLATE_BINDING };
|
|
1934
2016
|
export const FEATURE: string;
|
|
1935
|
-
|
|
2017
|
+
const KONTAINER_DRIVER_1: string;
|
|
2018
|
+
export { KONTAINER_DRIVER_1 as KONTAINER_DRIVER };
|
|
1936
2019
|
export const MULTI_CLUSTER_APP: string;
|
|
1937
2020
|
const NODE_2: string;
|
|
1938
2021
|
export { NODE_2 as NODE };
|
|
1939
|
-
|
|
2022
|
+
const NODE_DRIVER_1: string;
|
|
2023
|
+
export { NODE_DRIVER_1 as NODE_DRIVER };
|
|
1940
2024
|
const NODE_POOL_1: string;
|
|
1941
2025
|
export { NODE_POOL_1 as NODE_POOL };
|
|
1942
2026
|
export const NODE_TEMPLATE: string;
|
|
@@ -1946,7 +2030,8 @@ export namespace MANAGEMENT {
|
|
|
1946
2030
|
export { PROJECT_ROLE_TEMPLATE_BINDING_1 as PROJECT_ROLE_TEMPLATE_BINDING };
|
|
1947
2031
|
const ROLE_TEMPLATE_1: string;
|
|
1948
2032
|
export { ROLE_TEMPLATE_1 as ROLE_TEMPLATE };
|
|
1949
|
-
|
|
2033
|
+
const SETTING_1: string;
|
|
2034
|
+
export { SETTING_1 as SETTING };
|
|
1950
2035
|
const USER_1: string;
|
|
1951
2036
|
export { USER_1 as USER };
|
|
1952
2037
|
const TOKEN_1: string;
|
|
@@ -1961,6 +2046,7 @@ export namespace MANAGEMENT {
|
|
|
1961
2046
|
export const GLOBAL_DNS_PROVIDER: string;
|
|
1962
2047
|
export const RKE_TEMPLATE: string;
|
|
1963
2048
|
export const RKE_TEMPLATE_REVISION: string;
|
|
2049
|
+
export const CLUSTER_PROXY_CONFIG: string;
|
|
1964
2050
|
}
|
|
1965
2051
|
export namespace CAPI {
|
|
1966
2052
|
const CAPI_CLUSTER: string;
|
|
@@ -2048,6 +2134,7 @@ export namespace VIRTUAL_TYPES {
|
|
|
2048
2134
|
const CLUSTER_MEMBERS: string;
|
|
2049
2135
|
const PROJECT_NAMESPACES: string;
|
|
2050
2136
|
const NAMESPACES: string;
|
|
2137
|
+
const JWT_AUTHENTICATION: string;
|
|
2051
2138
|
}
|
|
2052
2139
|
export namespace HCI {
|
|
2053
2140
|
const CLUSTER_3: string;
|
|
@@ -2055,8 +2142,9 @@ export namespace HCI {
|
|
|
2055
2142
|
const DASHBOARD_1: string;
|
|
2056
2143
|
export { DASHBOARD_1 as DASHBOARD };
|
|
2057
2144
|
export const IMAGE: string;
|
|
2058
|
-
const
|
|
2059
|
-
|
|
2145
|
+
export const VGPU_DEVICE: string;
|
|
2146
|
+
const SETTING_2: string;
|
|
2147
|
+
export { SETTING_2 as SETTING };
|
|
2060
2148
|
export const HARVESTER_CONFIG: string;
|
|
2061
2149
|
}
|
|
2062
2150
|
export const VIRTUAL_HARVESTER_PROVIDER: "harvester";
|
|
@@ -2073,6 +2161,16 @@ export namespace AUTH_TYPE {
|
|
|
2073
2161
|
const _S3: string;
|
|
2074
2162
|
}
|
|
2075
2163
|
export const LOCAL_CLUSTER: "local";
|
|
2164
|
+
export namespace CLUSTER_REPO_TYPES {
|
|
2165
|
+
export const HELM_URL: string;
|
|
2166
|
+
const GIT_REPO_1: string;
|
|
2167
|
+
export { GIT_REPO_1 as GIT_REPO };
|
|
2168
|
+
export const OCI_URL: string;
|
|
2169
|
+
}
|
|
2170
|
+
export const ZERO_TIME: "0001-01-01T00:00:00Z";
|
|
2171
|
+
export const DEFAULT_GRAFANA_STORAGE_SIZE: "10Gi";
|
|
2172
|
+
export const DEPRECATED: "Deprecated";
|
|
2173
|
+
export const EXPERIMENTAL: "Experimental";
|
|
2076
2174
|
}
|
|
2077
2175
|
|
|
2078
2176
|
// @shell/mixins/create-edit-view/impl
|
|
@@ -2134,35 +2232,97 @@ export default _default;
|
|
|
2134
2232
|
// @shell/mixins/create-edit-view
|
|
2135
2233
|
|
|
2136
2234
|
declare module '@shell/mixins/create-edit-view' {
|
|
2137
|
-
declare var _default: import("vue
|
|
2235
|
+
declare var _default: import("vue").DefineComponent<{
|
|
2236
|
+
mode: {
|
|
2237
|
+
type: StringConstructor;
|
|
2238
|
+
default: any;
|
|
2239
|
+
};
|
|
2240
|
+
realMode: {
|
|
2241
|
+
type: StringConstructor;
|
|
2242
|
+
default: any;
|
|
2243
|
+
};
|
|
2244
|
+
as: {
|
|
2245
|
+
type: StringConstructor;
|
|
2246
|
+
default: any;
|
|
2247
|
+
};
|
|
2248
|
+
value: {
|
|
2249
|
+
type: ObjectConstructor;
|
|
2250
|
+
required: true;
|
|
2251
|
+
};
|
|
2252
|
+
initialValue: {
|
|
2253
|
+
type: ObjectConstructor;
|
|
2254
|
+
default: any;
|
|
2255
|
+
};
|
|
2256
|
+
liveValue: {
|
|
2257
|
+
type: ObjectConstructor;
|
|
2258
|
+
default: any;
|
|
2259
|
+
};
|
|
2260
|
+
doneEvent: {
|
|
2261
|
+
type: BooleanConstructor;
|
|
2262
|
+
default: boolean;
|
|
2263
|
+
};
|
|
2264
|
+
}, {}, {
|
|
2138
2265
|
errors: any[];
|
|
2266
|
+
}, {
|
|
2267
|
+
isCreate(): boolean;
|
|
2268
|
+
isEdit(): boolean;
|
|
2269
|
+
isView(): boolean;
|
|
2270
|
+
schema(): any;
|
|
2271
|
+
isNamespaced(): any;
|
|
2272
|
+
labels: {
|
|
2273
|
+
get(): any;
|
|
2274
|
+
set(neu: any): void;
|
|
2275
|
+
};
|
|
2276
|
+
annotations: {
|
|
2277
|
+
get(): any;
|
|
2278
|
+
set(neu: any): void;
|
|
2279
|
+
};
|
|
2280
|
+
doneRoute(): any;
|
|
2281
|
+
doneParams(): any;
|
|
2139
2282
|
}, {
|
|
2140
2283
|
done(): any;
|
|
2141
2284
|
conflict(): Promise<any>;
|
|
2142
2285
|
save(buttonDone: any, url: any, depth?: number): any;
|
|
2143
2286
|
actuallySave(url: any): Promise<void>;
|
|
2144
2287
|
setErrors(errors: any): void;
|
|
2145
|
-
}, {
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2288
|
+
}, any, import("vue").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
2289
|
+
mode: {
|
|
2290
|
+
type: StringConstructor;
|
|
2291
|
+
default: any;
|
|
2292
|
+
};
|
|
2293
|
+
realMode: {
|
|
2294
|
+
type: StringConstructor;
|
|
2295
|
+
default: any;
|
|
2296
|
+
};
|
|
2297
|
+
as: {
|
|
2298
|
+
type: StringConstructor;
|
|
2299
|
+
default: any;
|
|
2300
|
+
};
|
|
2301
|
+
value: {
|
|
2302
|
+
type: ObjectConstructor;
|
|
2303
|
+
required: true;
|
|
2304
|
+
};
|
|
2305
|
+
initialValue: {
|
|
2306
|
+
type: ObjectConstructor;
|
|
2307
|
+
default: any;
|
|
2308
|
+
};
|
|
2309
|
+
liveValue: {
|
|
2310
|
+
type: ObjectConstructor;
|
|
2311
|
+
default: any;
|
|
2312
|
+
};
|
|
2313
|
+
doneEvent: {
|
|
2314
|
+
type: BooleanConstructor;
|
|
2315
|
+
default: boolean;
|
|
2316
|
+
};
|
|
2317
|
+
}>>, {
|
|
2318
|
+
as: string;
|
|
2319
|
+
mode: string;
|
|
2162
2320
|
doneEvent: boolean;
|
|
2163
|
-
|
|
2321
|
+
initialValue: Record<string, any>;
|
|
2322
|
+
liveValue: Record<string, any>;
|
|
2323
|
+
realMode: string;
|
|
2324
|
+
}>;
|
|
2164
2325
|
export default _default;
|
|
2165
|
-
import Vue from "vue";
|
|
2166
2326
|
}
|
|
2167
2327
|
|
|
2168
2328
|
// @shell/models/namespace
|
|
@@ -2285,7 +2445,6 @@ export function loadSchemas(ctx: any, watch?: boolean): Promise<any>;
|
|
|
2285
2445
|
export const _ALL: "all";
|
|
2286
2446
|
export const _MERGE: "merge";
|
|
2287
2447
|
export const _MULTI: "multi";
|
|
2288
|
-
export const _ALL_IF_AUTHED: "allIfAuthed";
|
|
2289
2448
|
export const _NONE: "none";
|
|
2290
2449
|
declare namespace _default {
|
|
2291
2450
|
export function request(): never;
|
|
@@ -2299,13 +2458,41 @@ declare namespace _default {
|
|
|
2299
2458
|
type: any;
|
|
2300
2459
|
opt: any;
|
|
2301
2460
|
}): Promise<never>;
|
|
2461
|
+
/**
|
|
2462
|
+
*
|
|
2463
|
+
* @param {*} ctx
|
|
2464
|
+
* @param { {type: string, opt: ActionFindPageArgs} } opt
|
|
2465
|
+
*/
|
|
2302
2466
|
export function findAll(ctx: any, { type, opt }: {
|
|
2303
|
-
type:
|
|
2304
|
-
opt:
|
|
2467
|
+
type: string;
|
|
2468
|
+
opt: ActionFindPageArgs;
|
|
2305
2469
|
}): Promise<any>;
|
|
2470
|
+
/**
|
|
2471
|
+
*
|
|
2472
|
+
* @param {*} ctx
|
|
2473
|
+
* @param { {type: string, opt: ActionFindPageArgs} } opt
|
|
2474
|
+
*/
|
|
2306
2475
|
export function findAll(ctx: any, { type, opt }: {
|
|
2307
|
-
type:
|
|
2308
|
-
opt:
|
|
2476
|
+
type: string;
|
|
2477
|
+
opt: ActionFindPageArgs;
|
|
2478
|
+
}): Promise<any>;
|
|
2479
|
+
/**
|
|
2480
|
+
*
|
|
2481
|
+
* @param {*} ctx
|
|
2482
|
+
* @param { {type: string, opt: FindPageOpt} } opt
|
|
2483
|
+
*/
|
|
2484
|
+
export function findPage(ctx: any, { type, opt }: {
|
|
2485
|
+
type: string;
|
|
2486
|
+
opt: FindPageOpt;
|
|
2487
|
+
}): Promise<any>;
|
|
2488
|
+
/**
|
|
2489
|
+
*
|
|
2490
|
+
* @param {*} ctx
|
|
2491
|
+
* @param { {type: string, opt: FindPageOpt} } opt
|
|
2492
|
+
*/
|
|
2493
|
+
export function findPage(ctx: any, { type, opt }: {
|
|
2494
|
+
type: string;
|
|
2495
|
+
opt: FindPageOpt;
|
|
2309
2496
|
}): Promise<any>;
|
|
2310
2497
|
export function findMatching(ctx: any, { type, selector, opt, namespace }: {
|
|
2311
2498
|
type: any;
|
|
@@ -2353,8 +2540,8 @@ declare namespace _default {
|
|
|
2353
2540
|
export function create(ctx: any, data: any): any;
|
|
2354
2541
|
export function createMany(ctx: any, data: any): any;
|
|
2355
2542
|
export function createMany(ctx: any, data: any): any;
|
|
2356
|
-
export function createPopulated(ctx: any, userData: any): any
|
|
2357
|
-
export function createPopulated(ctx: any, userData: any): any
|
|
2543
|
+
export function createPopulated(ctx: any, userData: any): Promise<any>;
|
|
2544
|
+
export function createPopulated(ctx: any, userData: any): Promise<any>;
|
|
2358
2545
|
export function clone(ctx: any, { resource }?: {
|
|
2359
2546
|
resource: any;
|
|
2360
2547
|
}): any;
|
|
@@ -2514,6 +2701,7 @@ export function stateDisplay(state: any): any;
|
|
|
2514
2701
|
export function primaryDisplayStatusFromCount(status: any): string;
|
|
2515
2702
|
export function stateSort(color: any, display: any): string;
|
|
2516
2703
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
2704
|
+
export const DNS_LIKE_TYPES: string[];
|
|
2517
2705
|
export namespace STATES_ENUM {
|
|
2518
2706
|
const IN_USE: string;
|
|
2519
2707
|
const IN_PROGRESS: string;
|
|
@@ -2824,7 +3012,13 @@ export default class Resource {
|
|
|
2824
3012
|
rules: any[];
|
|
2825
3013
|
}[];
|
|
2826
3014
|
customValidationErrors(data: any, ignorePaths?: any[]): any[];
|
|
2827
|
-
|
|
3015
|
+
/**
|
|
3016
|
+
* Check this instance is valid against
|
|
3017
|
+
* - any custom dashboard validation
|
|
3018
|
+
*
|
|
3019
|
+
* Models can override this and call super.validationErrors
|
|
3020
|
+
*/
|
|
3021
|
+
validationErrors(data?: Resource, opts?: {}): any[];
|
|
2828
3022
|
get ownersByType(): {};
|
|
2829
3023
|
get owners(): any[];
|
|
2830
3024
|
get details(): ({
|
|
@@ -2890,7 +3084,7 @@ export default class Resource {
|
|
|
2890
3084
|
// @shell/store/features
|
|
2891
3085
|
|
|
2892
3086
|
declare module '@shell/store/features' {
|
|
2893
|
-
export function create(name: any,
|
|
3087
|
+
export function create(name: any, defaultValue: any): any;
|
|
2894
3088
|
export function mapFeature(name: any): {
|
|
2895
3089
|
get(): any;
|
|
2896
3090
|
set(value: any): never;
|
|
@@ -2904,6 +3098,8 @@ export const FLEET: any;
|
|
|
2904
3098
|
export const HARVESTER: any;
|
|
2905
3099
|
export const HARVESTER_CONTAINER: any;
|
|
2906
3100
|
export const FLEET_WORKSPACE_BACK: any;
|
|
3101
|
+
export const STEVE_CACHE: any;
|
|
3102
|
+
export const UIEXTENSION: any;
|
|
2907
3103
|
export namespace getters {
|
|
2908
3104
|
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
2909
3105
|
}
|
|
@@ -2911,11 +3107,11 @@ export namespace actions {
|
|
|
2911
3107
|
function loadServer({ rootGetters, dispatch }: {
|
|
2912
3108
|
rootGetters: any;
|
|
2913
3109
|
dispatch: any;
|
|
2914
|
-
}): any
|
|
3110
|
+
}): Promise<any>;
|
|
2915
3111
|
function loadServer({ rootGetters, dispatch }: {
|
|
2916
3112
|
rootGetters: any;
|
|
2917
3113
|
dispatch: any;
|
|
2918
|
-
}): any
|
|
3114
|
+
}): Promise<any>;
|
|
2919
3115
|
}
|
|
2920
3116
|
}
|
|
2921
3117
|
|
|
@@ -3102,6 +3298,10 @@ export function getAllRoutes(dispatch: any): Promise<any[]>;
|
|
|
3102
3298
|
export function createDefaultRouteName(index: any): string;
|
|
3103
3299
|
export function areRoutesSupportedFormat(secret: any): boolean;
|
|
3104
3300
|
export function canCreate(rootGetters: any): any;
|
|
3301
|
+
export function fetchAlertManagerConfigSpecs($store: any): Promise<{
|
|
3302
|
+
receiverSchema: any;
|
|
3303
|
+
routeSchema: any;
|
|
3304
|
+
}>;
|
|
3105
3305
|
export const FILENAME: "alertmanager.yaml";
|
|
3106
3306
|
}
|
|
3107
3307
|
|
|
@@ -3110,6 +3310,40 @@ export const FILENAME: "alertmanager.yaml";
|
|
|
3110
3310
|
declare module '@shell/utils/auth' {
|
|
3111
3311
|
export function openAuthPopup(url: any, provider: any): any;
|
|
3112
3312
|
export function returnTo(opt: any, vm: any): string;
|
|
3313
|
+
/**
|
|
3314
|
+
* Attempt to set the product in our datastore if the route matches a known product. Otherwise show an error page instead.
|
|
3315
|
+
*/
|
|
3316
|
+
export function setProduct(store: any, to: any): void;
|
|
3317
|
+
/**
|
|
3318
|
+
* Check that the resource is valid, if not redirect to fail whale
|
|
3319
|
+
*
|
|
3320
|
+
* This requires that
|
|
3321
|
+
* - product is set
|
|
3322
|
+
* - product's store is set and setup (so we can check schema's within it)
|
|
3323
|
+
* - product's store has the schemaFor getter (extension stores might not have it)
|
|
3324
|
+
* - there's a resource associated with route (meta or param)
|
|
3325
|
+
*/
|
|
3326
|
+
export function validateResource(store: any, to: any): boolean;
|
|
3327
|
+
/**
|
|
3328
|
+
* Attempt to load the current user's principal
|
|
3329
|
+
*/
|
|
3330
|
+
export function findMe(store: any): Promise<any>;
|
|
3331
|
+
/**
|
|
3332
|
+
* Attempt to login with default credentials. Note: I think that this may actually be outdated since we don't use these default credentials anymore on setup.
|
|
3333
|
+
*/
|
|
3334
|
+
export function tryInitialSetup(store: any, password?: string): Promise<boolean>;
|
|
3335
|
+
/**
|
|
3336
|
+
* Record in our state management that we're indeed logged in
|
|
3337
|
+
*/
|
|
3338
|
+
export function isLoggedIn(store: any, me: any): void;
|
|
3339
|
+
/**
|
|
3340
|
+
* Record in our state management that we're not logged in and then redirect to the login page
|
|
3341
|
+
*/
|
|
3342
|
+
export function notLoggedIn(store: any, redirect: any, route: any): any;
|
|
3343
|
+
/**
|
|
3344
|
+
* Record in our state management that we don't have any auth providers
|
|
3345
|
+
*/
|
|
3346
|
+
export function noAuth(store: any): void;
|
|
3113
3347
|
export function authProvidersInfo(store: any): Promise<{
|
|
3114
3348
|
nonLocal: any;
|
|
3115
3349
|
enabledLocation: {
|
|
@@ -3146,6 +3380,26 @@ declare module '@shell/utils/azure' {
|
|
|
3146
3380
|
export function parseAzureError(err: any): any;
|
|
3147
3381
|
}
|
|
3148
3382
|
|
|
3383
|
+
// @shell/utils/banners
|
|
3384
|
+
|
|
3385
|
+
declare module '@shell/utils/banners' {
|
|
3386
|
+
/**
|
|
3387
|
+
* Get the individual banner settings
|
|
3388
|
+
*/
|
|
3389
|
+
export function getIndividualBanners(store: any): {};
|
|
3390
|
+
/**
|
|
3391
|
+
* Overlay settings from the individual banner settings onto the single banner setting
|
|
3392
|
+
*/
|
|
3393
|
+
export function overlayIndividualBanners(parsedBanner: any, banners: any): void;
|
|
3394
|
+
/**
|
|
3395
|
+
* Get banner font sizes - used to add margins when header and footer banners are present
|
|
3396
|
+
**/
|
|
3397
|
+
export function getGlobalBannerFontSizes(store: any): {
|
|
3398
|
+
headerFont: string;
|
|
3399
|
+
footerFont: string;
|
|
3400
|
+
};
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3149
3403
|
// @shell/utils/clipboard
|
|
3150
3404
|
|
|
3151
3405
|
declare module '@shell/utils/clipboard' {
|
|
@@ -3224,6 +3478,13 @@ export function keyValueStrings(path: any, delimiter?: any): {
|
|
|
3224
3478
|
};
|
|
3225
3479
|
}
|
|
3226
3480
|
|
|
3481
|
+
// @shell/utils/config
|
|
3482
|
+
|
|
3483
|
+
declare module '@shell/utils/config' {
|
|
3484
|
+
declare function _default(context: any, inject: any): void;
|
|
3485
|
+
export default _default;
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3227
3488
|
// @shell/utils/cookie-universal-nuxt
|
|
3228
3489
|
|
|
3229
3490
|
declare module '@shell/utils/cookie-universal-nuxt' {
|
|
@@ -3243,7 +3504,15 @@ export function getBlockDescriptor(value: any, key: any): {
|
|
|
3243
3504
|
header: string;
|
|
3244
3505
|
indentation: string;
|
|
3245
3506
|
};
|
|
3246
|
-
|
|
3507
|
+
/**
|
|
3508
|
+
* Check for a specific type and if valid return it's sub type or self
|
|
3509
|
+
* @param {string} type required type
|
|
3510
|
+
* @param {string} str actual type
|
|
3511
|
+
* @param {ResourceField} field resourceField entry to the actual type
|
|
3512
|
+
*
|
|
3513
|
+
* @returns the sub type, or if not found the type
|
|
3514
|
+
*/
|
|
3515
|
+
export function typeRef(type: string, str: string, field?: ResourceField): any;
|
|
3247
3516
|
export function typeMunge(type: any): any;
|
|
3248
3517
|
export function saferDump(obj: any): any;
|
|
3249
3518
|
/**
|
|
@@ -3510,6 +3779,7 @@ export class ApiError extends Error {
|
|
|
3510
3779
|
url: any;
|
|
3511
3780
|
};
|
|
3512
3781
|
}
|
|
3782
|
+
export function normalizeError(err: any): any;
|
|
3513
3783
|
}
|
|
3514
3784
|
|
|
3515
3785
|
// @shell/utils/favicon
|
|
@@ -3538,19 +3808,6 @@ export function leaderChanges(monitoringVersion: any, dispatch: any, clusterId:
|
|
|
3538
3808
|
export function failedProposals(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
|
|
3539
3809
|
}
|
|
3540
3810
|
|
|
3541
|
-
// @shell/utils/group
|
|
3542
|
-
|
|
3543
|
-
declare module '@shell/utils/group' {
|
|
3544
|
-
export function groupAndFilterOptions(ary: any, filter: any, { defaultFilterKey, groupBy, groupPrefix, itemLabelKey, itemValueKey, itemSortKey, }?: {
|
|
3545
|
-
defaultFilterKey?: string;
|
|
3546
|
-
groupBy?: string;
|
|
3547
|
-
groupPrefix?: string;
|
|
3548
|
-
itemLabelKey?: string;
|
|
3549
|
-
itemValueKey?: string;
|
|
3550
|
-
itemSortKey?: string;
|
|
3551
|
-
}): any;
|
|
3552
|
-
}
|
|
3553
|
-
|
|
3554
3811
|
// @shell/utils/install-redirect
|
|
3555
3812
|
|
|
3556
3813
|
declare module '@shell/utils/install-redirect' {
|
|
@@ -3571,13 +3828,10 @@ export function normalizeName(str: any): any;
|
|
|
3571
3828
|
declare module '@shell/utils/monitoring' {
|
|
3572
3829
|
export function monitoringStatus(): {
|
|
3573
3830
|
monitoringStatus(): {
|
|
3574
|
-
v1: boolean;
|
|
3575
3831
|
v2: boolean;
|
|
3576
3832
|
};
|
|
3577
3833
|
};
|
|
3578
3834
|
export function haveV2Monitoring(getters: any): boolean;
|
|
3579
|
-
export function haveV1Monitoring(getters: any): boolean;
|
|
3580
|
-
export function haveV1MonitoringWorkloads(store: any): Promise<boolean>;
|
|
3581
3835
|
export function canViewGrafanaLink(store: any): Promise<boolean>;
|
|
3582
3836
|
export function canViewAlertManagerLink(store: any): Promise<boolean>;
|
|
3583
3837
|
export function canViewPrometheusLink(store: any): Promise<boolean>;
|
|
@@ -3613,47 +3867,6 @@ export function splitNamespaceFilterKey(key: any): {
|
|
|
3613
3867
|
};
|
|
3614
3868
|
}
|
|
3615
3869
|
|
|
3616
|
-
// @shell/utils/nuxt
|
|
3617
|
-
|
|
3618
|
-
declare module '@shell/utils/nuxt' {
|
|
3619
|
-
export function createGetCounter(counterObject: any, defaultKey?: string): (id?: string) => number;
|
|
3620
|
-
export function empty(): void;
|
|
3621
|
-
export function globalHandleError(error: any): void;
|
|
3622
|
-
export function interopDefault(promise: any): any;
|
|
3623
|
-
export function hasFetch(vm: any): boolean;
|
|
3624
|
-
export function purifyData(data: any): any;
|
|
3625
|
-
export function getChildrenComponentInstancesUsingFetch(vm: any, instances?: any[]): any[];
|
|
3626
|
-
export function applyAsyncData(Component: any, asyncData: any): void;
|
|
3627
|
-
export function sanitizeComponent(Component: any): any;
|
|
3628
|
-
export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
|
|
3629
|
-
export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
|
|
3630
|
-
export function flatMapComponents(route: any, fn: any): any;
|
|
3631
|
-
export function resolveRouteComponents(route: any, fn: any): Promise<any[]>;
|
|
3632
|
-
export function getRouteData(route: any): Promise<any>;
|
|
3633
|
-
export function setContext(app: any, context: any): Promise<void>;
|
|
3634
|
-
export function middlewareSeries(promises: any, appContext: any): any;
|
|
3635
|
-
export function promisify(fn: any, context: any): Promise<any>;
|
|
3636
|
-
export function getLocation(base: any, mode: any): string;
|
|
3637
|
-
/**
|
|
3638
|
-
* Compile a string to a template function for the path.
|
|
3639
|
-
*
|
|
3640
|
-
* @param {string} str
|
|
3641
|
-
* @param {Object=} options
|
|
3642
|
-
* @return {!function(Object=, Object=)}
|
|
3643
|
-
*/
|
|
3644
|
-
export function compile(str: string, options?: any | undefined): (arg0: any | undefined, arg1: any | undefined) => any;
|
|
3645
|
-
export function getQueryDiff(toQuery: any, fromQuery: any): {};
|
|
3646
|
-
export function normalizeError(err: any): any;
|
|
3647
|
-
export function addLifecycleHook(vm: any, hook: any, fn: any): void;
|
|
3648
|
-
export function setScrollRestoration(newVal: any): void;
|
|
3649
|
-
export const urlJoin: typeof joinURL;
|
|
3650
|
-
export const stripTrailingSlash: typeof withoutTrailingSlash;
|
|
3651
|
-
export const isSamePath: typeof _isSamePath;
|
|
3652
|
-
import { joinURL } from "ufo";
|
|
3653
|
-
import { withoutTrailingSlash } from "ufo";
|
|
3654
|
-
import { isSamePath as _isSamePath } from "ufo";
|
|
3655
|
-
}
|
|
3656
|
-
|
|
3657
3870
|
// @shell/utils/object
|
|
3658
3871
|
|
|
3659
3872
|
declare module '@shell/utils/object' {
|
|
@@ -3858,12 +4071,12 @@ export function setPromiseResult(promise: any, obj: any, key: any, label: any):
|
|
|
3858
4071
|
|
|
3859
4072
|
declare module '@shell/utils/router' {
|
|
3860
4073
|
export function queryParamsFor(current: any, qp: any, defaults?: {}): any;
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
export
|
|
4074
|
+
export function getClusterFromRoute(to: any): any;
|
|
4075
|
+
export function getProductFromRoute(to: any): any;
|
|
4076
|
+
export function getPackageFromRoute(route: any): any;
|
|
4077
|
+
export function getResourceFromRoute(to: any): any;
|
|
4078
|
+
export function routeMatched(to: any, fn: any): boolean;
|
|
4079
|
+
export function routeRequiresAuthentication(to: any): boolean;
|
|
3867
4080
|
}
|
|
3868
4081
|
|
|
3869
4082
|
// @shell/utils/select
|
|
@@ -3902,6 +4115,7 @@ export const EVENT_CONNECT_ERROR: "connect_error";
|
|
|
3902
4115
|
export const EVENT_DISCONNECT_ERROR: "disconnect_error";
|
|
3903
4116
|
export const NO_WATCH: "NO_WATCH";
|
|
3904
4117
|
export const NO_SCHEMA: "NO_SCHEMA";
|
|
4118
|
+
export const NO_PERMS: "NO_PERMS";
|
|
3905
4119
|
export const REVISION_TOO_OLD: "TOO_OLD";
|
|
3906
4120
|
declare const Socket_base: import("event-target-shim").EventTargetConstructor<{}, {}, "loose"> & {
|
|
3907
4121
|
<TEvents extends EventTarget.EventDefinition = {}, TEventAttributes extends EventTarget.EventDefinition = {}, TMode extends EventTarget.Mode = "loose">(events: string[]): import("event-target-shim").EventTargetConstructor<TEvents, TEventAttributes, TMode>;
|