@rancher/shell 1.2.3 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/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 +1 -0
- package/assets/styles/global/_layout.scss +99 -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 +315 -64
- package/assets/translations/zh-hans.yaml +7 -31
- package/babel.config.js +8 -2
- package/chart/__tests__/S3.test.ts +9 -2
- package/chart/gatekeeper.vue +2 -11
- package/chart/istio.vue +1 -10
- package/chart/logging/index.vue +2 -11
- package/chart/monitoring/alerting/index.vue +7 -21
- package/chart/monitoring/grafana/index.vue +61 -2
- package/chart/monitoring/index.vue +52 -26
- package/chart/monitoring/prometheus/index.vue +39 -45
- package/chart/rancher-backup/S3.vue +11 -9
- package/chart/rancher-backup/index.vue +18 -15
- package/cloud-credential/__tests__/harvester.test.ts +18 -0
- package/cloud-credential/azure.vue +4 -17
- package/cloud-credential/generic.vue +18 -9
- package/cloud-credential/harvester.vue +11 -3
- package/components/AlertTable.vue +17 -7
- package/components/AppModal.vue +167 -0
- package/components/AssignTo.vue +7 -4
- package/components/AsyncButton.vue +27 -5
- package/components/BackLink.vue +4 -4
- package/components/BannerGraphic.vue +1 -0
- package/components/BrandImage.vue +47 -1
- package/components/Carousel.vue +15 -8
- package/components/Certificates.vue +161 -0
- package/components/ClusterBadge.vue +12 -3
- package/components/ClusterIconMenu.vue +55 -12
- package/components/ClusterProviderIcon.vue +14 -3
- package/components/CodeMirror.vue +111 -17
- package/components/CommunityLinks.vue +12 -8
- package/components/CopyCode.vue +6 -2
- package/components/CopyToClipboard.vue +2 -1
- package/components/CopyToClipboardText.vue +14 -9
- package/components/CreateDriver.vue +81 -0
- package/components/CruResource.vue +52 -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/EtcdInfoBanner.vue +5 -5
- package/components/ExplorerMembers.vue +3 -3
- package/components/ExplorerProjectsNamespaces.vue +31 -7
- package/components/FixedBanner.vue +48 -36
- package/components/GlobalRoleBindings.vue +26 -0
- package/components/GrafanaDashboard.vue +6 -4
- package/components/IconOrSvg.vue +1 -1
- package/components/Import.vue +10 -6
- package/components/Inactivity.vue +1 -5
- package/components/KeyValueView.vue +14 -10
- package/components/Markdown.vue +16 -12
- 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 +12 -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 +19 -3
- package/components/ResourceCancelModal.vue +34 -29
- package/components/ResourceDetail/Masthead.vue +48 -16
- package/components/ResourceDetail/index.vue +6 -4
- package/components/ResourceList/Masthead.vue +10 -9
- package/components/ResourceList/index.vue +65 -14
- package/components/ResourceTable.vue +87 -21
- package/components/ResourceYaml.vue +35 -5
- package/components/SelectIconGrid.vue +3 -3
- package/components/SideNav.vue +50 -94
- package/components/SingleClusterInfo.vue +4 -4
- package/components/SortableTable/THead.vue +33 -21
- package/components/SortableTable/filtering.js +9 -1
- package/components/SortableTable/grouping.js +8 -1
- package/components/SortableTable/index.vue +143 -44
- package/components/SortableTable/paging.js +36 -7
- package/components/SortableTable/selection.js +2 -1
- package/components/SortableTable/sorting.js +24 -7
- package/components/StatusTable.vue +5 -1
- package/components/Tabbed/index.vue +18 -1
- package/components/TableDataUserIcon.vue +47 -0
- package/components/TypeDescription.vue +1 -0
- package/components/Wizard.vue +1 -0
- package/components/YamlEditor.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.test.ts +87 -0
- package/components/__tests__/CopyCode.test.ts +5 -4
- 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/FleetBundles.vue +5 -11
- 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 +63 -27
- package/components/fleet/FleetResources.vue +6 -1
- package/components/fleet/FleetStatus.vue +3 -3
- package/components/fleet/FleetSummary.vue +35 -30
- package/components/fleet/ForceDirectedTreeChart/index.vue +9 -3
- package/components/fleet/__tests__/FleetSummary.test.ts +316 -0
- package/components/form/ArrayList.vue +22 -18
- package/components/form/ArrayListSelect.vue +5 -0
- package/components/form/BannerSettings.vue +3 -0
- package/components/form/ClusterAppearance.vue +132 -0
- package/components/form/ColorInput.vue +1 -0
- package/components/form/Error.vue +3 -3
- package/components/form/FileSelector.vue +1 -0
- package/components/form/Footer.vue +2 -2
- package/components/form/GitPicker.vue +83 -38
- package/components/form/KeyValue.vue +70 -48
- package/components/form/LabeledSelect.vue +145 -41
- package/components/form/Labels.vue +3 -1
- package/components/form/NameNsDescription.vue +26 -9
- package/components/form/Password.vue +3 -1
- 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/SelectOrCreateAuthSecret.vue +132 -59
- package/components/form/SimpleSecretSelector.vue +88 -28
- package/components/form/Taints.vue +13 -7
- package/components/form/__tests__/BannerSettings.test.ts +53 -0
- package/components/form/__tests__/KeyValue.test.ts +120 -11
- package/components/form/__tests__/LabeledSelect.test.ts +0 -18
- package/components/form/__tests__/{NameNsDescription.ts → NameNsDescription.test.ts} +25 -15
- package/components/form/__tests__/Taints.test.ts +70 -0
- 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/Checked.vue +11 -3
- package/components/formatter/CloudCredPublicData.vue +30 -0
- package/components/formatter/ClusterLink.vue +2 -2
- package/components/formatter/ClusterProvider.vue +1 -18
- package/components/formatter/FleetClusterSummaryGraph.vue +27 -0
- package/components/formatter/FleetSummaryGraph.vue +25 -12
- 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/LiveDuration.vue +1 -1
- package/components/formatter/PercentageBar.vue +1 -1
- package/components/formatter/PrincipalGroupBindings.vue +2 -2
- package/components/formatter/SecretType.vue +2 -2
- package/components/formatter/VirtualServiceGateways.vue +2 -2
- package/components/formatter/WorkloadDetailEndpoints.vue +12 -22
- package/components/formatter/__tests__/Checked.test.ts +19 -0
- package/components/formatter/__tests__/LinkDetail.test.ts +5 -5
- package/components/formatter/__tests__/WorkloadDetailEndpoints.test.ts +81 -0
- package/components/nav/Group.vue +9 -7
- package/components/nav/Header.vue +85 -46
- package/components/nav/Jump.vue +19 -9
- package/components/nav/NamespaceFilter.vue +8 -1
- package/components/nav/TopLevelMenu.vue +392 -136
- package/components/nav/Type.vue +71 -106
- package/components/nav/WindowManager/ContainerLogs.vue +120 -19
- package/components/nav/WindowManager/ContainerShell.vue +6 -1
- package/components/nav/WindowManager/__tests__/ContainerLogs.test.ts +186 -0
- package/components/nav/WindowManager/index.vue +11 -10
- package/components/nav/__tests__/TopLevelMenu.test.ts +400 -6
- package/components/nav/__tests__/Type.test.ts +322 -97
- package/components/nuxt/nuxt-child.js +9 -78
- package/components/nuxt/nuxt-error.vue +1 -1
- package/components/nuxt/nuxt-link.client.js +13 -95
- package/{layouts → components/templates}/blank.vue +1 -1
- package/{layouts → components/templates}/default.vue +11 -101
- package/{layouts → components/templates}/error.vue +13 -26
- package/{layouts → components/templates}/home.vue +4 -1
- package/{layouts → components/templates}/plain.vue +4 -1
- package/{layouts → components/templates}/standalone.vue +1 -5
- package/{layouts → components/templates}/unauthenticated.vue +2 -3
- package/composables/useCompactInput.test.ts +36 -0
- package/composables/useCompactInput.ts +20 -0
- package/composables/useLabeledFormElement.test.ts +135 -0
- package/composables/useLabeledFormElement.ts +138 -0
- package/config/harvester-manager-types.js +2 -0
- package/config/home-links.js +2 -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 +21 -1
- package/config/product/auth.js +1 -0
- package/config/product/explorer.js +166 -45
- package/config/product/fleet.js +6 -1
- package/config/product/legacy.js +2 -11
- package/config/product/manager.js +51 -25
- package/config/query-params.js +2 -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/i18n.js +13 -0
- package/config/router/navigation-guards/index.js +16 -0
- package/config/router/navigation-guards/load-initial-settings.js +15 -0
- package/config/router/routes.js +487 -0
- package/config/settings.ts +31 -2
- package/config/store.js +8 -4
- package/config/system-namespaces.js +3 -0
- package/config/table-headers.js +66 -1
- package/config/types.js +35 -20
- package/config/uiplugins.js +10 -5
- package/core/plugin-helpers.js +4 -6
- package/core/plugin-routes.ts +56 -114
- package/core/plugin.ts +18 -11
- package/core/plugins-loader.js +7 -9
- package/core/plugins.js +289 -285
- package/core/types-provisioning.ts +7 -0
- package/creators/app/app.package.json +2 -1
- package/creators/app/files/.eslintignore +0 -2
- package/creators/app/files/.gitlab-ci.yml +14 -0
- package/creators/app/files/.vscode/settings.json +0 -1
- package/creators/app/init +19 -0
- 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__/provisioning.cattle.io.cluster.test.ts +119 -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.bundle.vue +1 -1
- package/detail/fleet.cattle.io.cluster.vue +11 -1
- 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 +22 -3
- package/detail/provisioning.cattle.io.cluster.vue +31 -13
- package/detail/service.vue +1 -1
- package/detail/workload/index.vue +1 -0
- package/dialog/AddCustomBadgeDialog.vue +318 -161
- package/dialog/DeactivateDriverDialog.vue +137 -0
- package/dialog/RollbackWorkloadDialog.vue +2 -2
- package/dialog/RotateCertificatesDialog.vue +0 -21
- package/dialog/ScaleMachineDownDialog.vue +34 -17
- 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 +85 -0
- 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 +6 -23
- 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 +177 -9
- package/edit/cis.cattle.io.clusterscan.vue +5 -2
- package/edit/cis.cattle.io.clusterscanbenchmark.vue +41 -9
- package/edit/cloudcredential.vue +28 -4
- package/edit/configmap.vue +10 -4
- package/edit/fleet.cattle.io.gitrepo.vue +3 -1
- 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 +3 -53
- package/edit/management.cattle.io.setting.vue +52 -2
- 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/opsgenie.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +2 -2
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +1 -1
- package/edit/monitoring.coreos.com.prometheusrule/AlertingRule.vue +15 -3
- package/edit/monitoring.coreos.com.prometheusrule/GroupRules.vue +4 -1
- 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} +46 -7
- package/edit/networking.k8s.io.networkpolicy/__tests__/utils/{selectors.ts → 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 +33 -16
- package/edit/provisioning.cattle.io.cluster/__tests__/Advanced.test.ts +276 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.test.ts +473 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/{CustomCommand.tests.ts → CustomCommand.test.ts} +3 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +228 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/DrainOptions.test.ts +1 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/index.test.ts +73 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +77 -13
- package/edit/provisioning.cattle.io.cluster/__tests__/utils/cluster.ts +391 -0
- package/edit/provisioning.cattle.io.cluster/import.vue +4 -4
- package/edit/provisioning.cattle.io.cluster/index.vue +126 -51
- package/edit/provisioning.cattle.io.cluster/rke2.vue +325 -791
- package/edit/provisioning.cattle.io.cluster/tabs/AddOnConfig.vue +137 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Advanced.vue +217 -0
- package/edit/provisioning.cattle.io.cluster/{Basics.vue → tabs/Basics.vue} +123 -129
- package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +132 -0
- package/edit/provisioning.cattle.io.cluster/{MachinePool.vue → tabs/MachinePool.vue} +1 -0
- package/edit/provisioning.cattle.io.cluster/{S3Config.vue → tabs/etcd/S3Config.vue} +1 -0
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +135 -0
- package/edit/provisioning.cattle.io.cluster/tabs/networking/index.vue +190 -0
- package/edit/provisioning.cattle.io.cluster/{RegistryConfigs.vue → tabs/registries/RegistryConfigs.vue} +3 -0
- package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +148 -0
- package/edit/provisioning.cattle.io.cluster/tabs/upgrade/index.vue +76 -0
- package/edit/resources.cattle.io.backup.vue +139 -124
- package/edit/resources.cattle.io.restore.vue +146 -126
- package/edit/service.vue +13 -0
- package/edit/serviceaccount.vue +46 -4
- package/edit/token.vue +3 -1
- package/edit/workload/Upgrading.vue +3 -2
- package/edit/workload/__tests__/Job.test.ts +1 -3
- package/edit/workload/__tests__/Upgrading.test.ts +2 -2
- package/edit/workload/index.vue +2 -1
- package/edit/workload/mixins/workload.js +35 -2
- 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 +546 -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/catalog.cattle.io.app.vue +1 -0
- package/list/cis.cattle.io.clusterscan.vue +16 -10
- package/list/group.principal.vue +2 -2
- package/list/management.cattle.io.feature.vue +16 -16
- package/list/management.cattle.io.setting.vue +1 -0
- package/list/management.cattle.io.user.vue +13 -4
- package/list/networking.k8s.io.ingress.vue +36 -0
- package/list/node.vue +212 -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 +1 -3
- package/machine-config/amazonec2.vue +1 -1
- package/machine-config/azure.vue +2 -1
- package/machine-config/generic.vue +11 -15
- package/machine-config/vmwarevsphere-pool-config-merge.ts +25 -0
- package/machine-config/vmwarevsphere.vue +31 -27
- package/middleware/authenticated.js +23 -399
- package/mixins/__tests__/chart.test.ts +48 -6
- package/mixins/__tests__/create-edit-view.test.ts +2 -3
- package/mixins/auth-config.js +5 -9
- package/mixins/brand.js +102 -96
- 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 +27 -2
- 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__/management.cattle.io.cluster.test.ts +23 -0
- package/models/__tests__/management.cattle.io.node.ts +85 -0
- package/models/__tests__/management.cattle.io.nodepool.ts +83 -0
- package/models/__tests__/namespace.test.ts +49 -9
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +241 -0
- package/models/__tests__/schema.tests.ts +24 -0
- package/models/__tests__/secret.test.ts +37 -0
- package/models/__tests__/steve-schema.test.ts +73 -0
- package/models/__tests__/storage.k8s.io.storageclass.test.ts +22 -0
- package/models/__tests__/workload.test.ts +91 -0
- 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 +8 -4
- package/models/cluster/schema.js +6 -0
- package/models/cluster.js +33 -0
- package/models/cluster.x-k8s.io.machine.js +1 -1
- package/models/cluster.x-k8s.io.machinedeployment.js +14 -0
- package/models/driver.js +63 -0
- package/models/fleet.cattle.io.cluster.js +27 -11
- package/models/fleet.cattle.io.gitrepo.js +66 -13
- package/models/helm.cattle.io.projecthelmchart.js +1 -1
- package/models/kontainerdriver.js +85 -0
- package/models/management/schema.js +6 -0
- package/models/management.cattle.io.authconfig.js +3 -2
- package/models/management.cattle.io.cluster.js +16 -7
- package/models/management.cattle.io.globalrole.js +2 -0
- package/models/management.cattle.io.kontainerdriver.js +1 -0
- package/models/management.cattle.io.node.js +18 -14
- package/models/management.cattle.io.nodepool.js +17 -0
- package/models/management.cattle.io.project.js +0 -36
- package/models/management.cattle.io.setting.js +11 -7
- package/models/management.cattle.io.user.js +2 -2
- package/models/monitoring.coreos.com.receiver.js +3 -1
- package/models/monitoring.coreos.com.route.js +1 -1
- package/models/namespace.js +1 -1
- package/models/networking.k8s.io.ingress.js +2 -1
- package/models/nodedriver.js +85 -0
- package/models/pod.js +20 -0
- package/models/provisioning.cattle.io.cluster.js +125 -10
- package/models/schema.js +28 -7
- package/models/secret.js +126 -18
- package/models/service.js +2 -0
- package/models/steve-schema.ts +254 -0
- package/models/storage.k8s.io.storageclass.js +1 -1
- package/models/workload.js +17 -0
- package/models/workload.service.js +18 -0
- package/package.json +18 -14
- package/pages/about.vue +12 -6
- package/pages/account/create-key.vue +0 -1
- package/pages/account/index.vue +7 -3
- package/pages/auth/login.vue +106 -103
- package/pages/auth/logout.vue +2 -4
- package/pages/auth/setup.vue +92 -66
- package/pages/auth/verify.vue +30 -24
- package/pages/c/_cluster/apps/charts/__tests__/install.helper.test.ts +2 -17
- package/pages/c/_cluster/apps/charts/chart.vue +54 -9
- package/pages/c/_cluster/apps/charts/index.vue +99 -69
- package/pages/c/_cluster/apps/charts/install.helpers.js +2 -13
- package/pages/c/_cluster/apps/charts/install.vue +12 -11
- 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/ecm/index.vue +0 -2
- 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 +253 -91
- package/pages/c/_cluster/explorer/tools/__tests__/index.test.ts +69 -0
- package/pages/c/_cluster/explorer/tools/index.vue +10 -6
- package/pages/c/_cluster/fleet/index.vue +89 -94
- 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 +91 -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 +60 -0
- package/pages/c/_cluster/manager/jwt.authentication/index.vue +235 -0
- package/pages/c/_cluster/manager/pages/_page.vue +4 -5
- package/pages/c/_cluster/monitoring/alertmanagerconfig/_alertmanagerconfigid/receiver.vue +4 -0
- 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 -10
- package/pages/c/_cluster/settings/brand.vue +261 -38
- package/pages/c/_cluster/settings/index.vue +4 -6
- package/pages/c/_cluster/settings/links.vue +3 -2
- package/pages/c/_cluster/settings/performance.vue +71 -3
- package/pages/c/_cluster/uiplugins/AddExtensionRepos.vue +5 -2
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogLoadDialog.vue +12 -8
- package/pages/c/_cluster/uiplugins/CatalogList/CatalogUninstallDialog.vue +9 -6
- package/pages/c/_cluster/uiplugins/CatalogList/index.vue +10 -46
- package/pages/c/_cluster/uiplugins/DeveloperInstallDialog.vue +11 -5
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +55 -19
- 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 -54
- package/pages/diagnostic.vue +2 -2
- package/pages/fail-whale.vue +103 -42
- package/pages/home.vue +81 -24
- package/pages/prefs.vue +8 -4
- package/pages/support/index.vue +14 -10
- package/pkg/auto-import.js +1 -1
- package/plugins/axios.js +0 -36
- package/plugins/back-button.js +3 -5
- package/plugins/clean-html-directive.js +5 -30
- package/plugins/clean-html.js +53 -0
- package/plugins/clean-tooltip-directive.js +6 -31
- package/plugins/codemirror-loader.js +1 -1
- package/plugins/codemirror.js +41 -9
- package/plugins/dashboard-store/__tests__/mutations.test.ts +389 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +49 -0
- package/plugins/dashboard-store/__tests__/utils/store-mocks.ts +7 -0
- package/plugins/dashboard-store/actions.js +132 -25
- package/plugins/dashboard-store/classify.js +1 -18
- package/plugins/dashboard-store/getters.js +154 -44
- package/plugins/dashboard-store/index.js +0 -111
- package/plugins/dashboard-store/mutations.js +150 -52
- package/plugins/dashboard-store/resource-class.js +77 -127
- package/plugins/directives.js +6 -39
- package/plugins/ember-cookie.js +13 -0
- package/plugins/global-formatters.js +26 -5
- package/plugins/i18n.js +89 -55
- 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} +81 -10
- package/plugins/steve/__tests__/mutations.test.ts +49 -0
- package/plugins/steve/__tests__/resource-utils.test.ts +159 -0
- package/plugins/steve/__tests__/steve-class.test.ts +59 -0
- package/plugins/steve/__tests__/subscribe.spec.ts +4 -1
- package/plugins/steve/__tests__/utils/mutation.test.helpers.ts +105 -0
- package/plugins/steve/__tests__/utils/steve-mocks.ts +31 -0
- package/plugins/steve/accept-or-reject-socket-message.ts +103 -0
- package/plugins/steve/actions.js +3 -38
- package/plugins/steve/getters.js +164 -61
- package/plugins/steve/hybrid-class.js +5 -1
- package/plugins/steve/mutations.js +24 -3
- package/plugins/steve/norman-class.js +142 -2
- package/{utils → plugins/steve}/projectAndNamespaceFiltering.utils.ts +28 -10
- package/plugins/steve/resource-utils.ts +38 -0
- package/plugins/steve/schema.d.ts +22 -0
- package/plugins/steve/steve-class.js +22 -0
- package/plugins/steve/steve-pagination-utils.ts +368 -0
- package/plugins/steve/subscribe.js +17 -76
- package/plugins/trim-whitespace.js +6 -34
- package/plugins/vue-js-modal.js +1 -1
- package/promptRemove/pod.vue +15 -7
- package/public/index.html +1 -0
- package/rancher-components/Accordion/Accordion.test.ts +45 -0
- package/rancher-components/Accordion/Accordion.vue +86 -0
- package/rancher-components/Accordion/index.ts +1 -0
- package/rancher-components/BadgeState/BadgeState.vue +3 -3
- package/rancher-components/Banner/Banner.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 +18 -1
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +57 -24
- 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 +6 -4
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +7 -4
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +9 -4
- package/rancher-components/StringList/StringList.test.ts +270 -0
- package/rancher-components/StringList/StringList.vue +65 -26
- package/scripts/.gitlab/workflows/build-extension-catalog.gitlab-ci.yml +69 -0
- package/scripts/clean +1 -1
- package/scripts/extension/bundle +19 -7
- 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/package +11 -3
- package/scripts/extension/helm/scripts/patch +27 -0
- package/scripts/extension/parse-tag-name +4 -4
- package/scripts/extension/publish +25 -14
- package/scripts/publish-shell.sh +11 -1
- package/scripts/serve-pkgs +0 -2
- package/scripts/test-plugins-build.sh +87 -11
- package/scripts/vue-migrate.js +683 -0
- package/server/har-file.js +183 -0
- package/store/__tests__/catalog.test.ts +224 -0
- package/store/__tests__/type-map.test.ts +1122 -0
- package/store/auth.js +23 -4
- package/store/aws.js +53 -6
- package/store/catalog.js +22 -6
- package/store/cru-resource.ts +26 -0
- package/store/customisation.js +35 -0
- package/store/features.js +7 -4
- package/store/i18n.js +11 -0
- package/store/index.js +140 -49
- package/store/plugins.js +8 -4
- package/store/prefs.js +33 -38
- package/store/type-map.js +288 -213
- package/store/type-map.utils.ts +226 -0
- package/tsconfig.json +34 -9
- package/tsconfig.paths.json +21 -0
- 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 +1045 -770
- 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 +180 -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 -21
- package/utils/azure.js +24 -0
- package/utils/banners.js +103 -0
- package/utils/clipboard.js +5 -0
- package/utils/cluster.js +1 -1
- package/utils/config.js +4 -0
- package/utils/create-yaml.js +59 -28
- package/utils/custom-validators.js +0 -2
- package/utils/error.js +41 -1
- package/utils/formatter.js +5 -3
- package/utils/git.ts +1 -1
- package/utils/install-redirect.js +1 -1
- package/utils/kontainer.ts +190 -0
- package/utils/object.js +24 -0
- 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/time.js +2 -1
- package/utils/unit-tests/ChildRenderingRouterLinkStub.ts +36 -0
- package/utils/url.ts +1 -1
- package/utils/validators/formRules/__tests__/index.test.ts +70 -4
- package/utils/validators/formRules/index.ts +15 -9
- package/utils/validators/index.js +1 -0
- package/utils/validators/setting.js +6 -10
- package/utils/version.js +2 -1
- package/vue.config.js +377 -401
- package/.DS_Store +0 -0
- package/assets/images/providers/aks-black.svg +0 -28
- package/assets/images/providers/aks.svg +0 -31
- package/assets/styles/vendor/vue-js-modal.scss +0 -16
- package/components/ChartPsp.vue +0 -76
- package/components/EventsTable.vue +0 -67
- package/components/TabbedLinks/index.vue +0 -94
- package/components/__tests__/ChartPsp.test.ts +0 -75
- package/components/formatter/__tests__/ClusterProvider.test.ts +0 -28
- package/components/nuxt/nuxt-link.server.js +0 -16
- package/components/nuxt/nuxt.js +0 -101
- package/config/router.js +0 -408
- package/edit/provisioning.cattle.io.cluster/__tests__/Basics.tests.ts +0 -237
- package/initialize/App.js +0 -198
- package/initialize/client.js +0 -875
- package/initialize/index.js +0 -364
- package/initialize/layouts.ts +0 -26
- package/middleware/i18n.js +0 -10
- package/middleware/unauthenticated.js +0 -22
- package/mixins/fetch.server.js +0 -73
- package/pages/c/_cluster/apps/index.vue +0 -17
- package/pages/c/_cluster/auth/index.vue +0 -19
- package/pages/c/_cluster/index.vue +0 -17
- 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/pages/c/index.vue +0 -9
- package/pages/rio/mesh.vue +0 -508
- package/plugins/dashboard-store/__tests__/mutations.spec.ts +0 -406
- package/plugins/dashboard-store/rehydrate-all.js +0 -44
- 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/transitions.js +0 -4
- package/plugins/v-select.js +0 -4
- package/plugins/vue-clipboard2.js +0 -4
- package/tsconfig.default.json +0 -46
- package/utils/group.js +0 -70
- package/utils/nuxt.js +0 -659
- package/utils/router.scrollBehavior.js +0 -80
- /package/components/__tests__/{Collapse.spec.ts → Collapse.test.ts} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{AgentConfiguration.vue → tabs/AgentConfiguration.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{MemberRoles.vue → tabs/MemberRoles.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{ACE.vue → tabs/networking/ACE.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{RegistryMirrors.vue → tabs/registries/RegistryMirrors.vue} +0 -0
- /package/edit/provisioning.cattle.io.cluster/{DrainOptions.vue → tabs/upgrade/DrainOptions.vue} +0 -0
- /package/models/__tests__/{node.ts → node.test.ts} +0 -0
- /package/plugins/dashboard-store/__tests__/{actions.spec.ts → actions.test.ts} +0 -0
- /package/plugins/dashboard-store/__tests__/{getters.spec.ts → getters.test.ts} +0 -0
- /package/plugins/steve/__tests__/{header-warnings.spec.ts → header-warnings.test.ts} +0 -0
- /package/rancher-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";
|
|
@@ -200,6 +202,7 @@ export const DIFF: "diff";
|
|
|
200
202
|
export const _UNIFIED: "unified";
|
|
201
203
|
export const _SPLIT: "split";
|
|
202
204
|
export const SUB_TYPE: "type";
|
|
205
|
+
export const RKE_TYPE: "rkeType";
|
|
203
206
|
export const REPO_TYPE: "repo-type";
|
|
204
207
|
export const REPO: "repo";
|
|
205
208
|
export const CHART: "chart";
|
|
@@ -234,56 +237,62 @@ export namespace STATE {
|
|
|
234
237
|
export { _default as default };
|
|
235
238
|
export const formatter: string;
|
|
236
239
|
}
|
|
237
|
-
export namespace
|
|
240
|
+
export namespace USER_STATE {
|
|
238
241
|
const name_1: string;
|
|
239
242
|
export { name_1 as name };
|
|
240
243
|
const labelKey_1: string;
|
|
241
244
|
export { labelKey_1 as labelKey };
|
|
245
|
+
const sort_1: string[];
|
|
246
|
+
export { sort_1 as sort };
|
|
242
247
|
const value_1: string;
|
|
243
248
|
export { value_1 as value };
|
|
244
|
-
export
|
|
245
|
-
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 };
|
|
246
257
|
}
|
|
247
|
-
export namespace
|
|
258
|
+
export namespace DOWNLOAD {
|
|
248
259
|
const name_2: string;
|
|
249
260
|
export { name_2 as name };
|
|
250
261
|
const labelKey_2: string;
|
|
251
262
|
export { labelKey_2 as labelKey };
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
export
|
|
255
|
-
const
|
|
256
|
-
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;
|
|
257
267
|
}
|
|
258
|
-
export namespace
|
|
268
|
+
export namespace INTERNAL_EXTERNAL_IP {
|
|
259
269
|
const name_3: string;
|
|
260
270
|
export { name_3 as name };
|
|
261
271
|
const labelKey_3: string;
|
|
262
272
|
export { labelKey_3 as labelKey };
|
|
263
|
-
const
|
|
264
|
-
export { value_2 as value };
|
|
265
|
-
export function getValue_1(row: any): any;
|
|
266
|
-
export { getValue_1 as getValue };
|
|
273
|
+
export const search: string[];
|
|
267
274
|
const sort_2: string[];
|
|
268
275
|
export { sort_2 as sort };
|
|
269
276
|
const formatter_2: string;
|
|
270
277
|
export { formatter_2 as formatter };
|
|
271
|
-
const canBeVariable_1: boolean;
|
|
272
|
-
export { canBeVariable_1 as canBeVariable };
|
|
273
278
|
}
|
|
274
|
-
export namespace
|
|
279
|
+
export namespace NAME {
|
|
275
280
|
const name_4: string;
|
|
276
281
|
export { name_4 as name };
|
|
277
282
|
const labelKey_4: string;
|
|
278
283
|
export { labelKey_4 as labelKey };
|
|
279
284
|
const value_3: string;
|
|
280
285
|
export { value_3 as value };
|
|
286
|
+
export function getValue_2(row: any): any;
|
|
287
|
+
export { getValue_2 as getValue };
|
|
281
288
|
const sort_3: string[];
|
|
282
289
|
export { sort_3 as sort };
|
|
283
290
|
const formatter_3: string;
|
|
284
291
|
export { formatter_3 as formatter };
|
|
292
|
+
const canBeVariable_1: boolean;
|
|
293
|
+
export { canBeVariable_1 as canBeVariable };
|
|
285
294
|
}
|
|
286
|
-
export namespace
|
|
295
|
+
export namespace LOGGING_OUTPUT_PROVIDERS {
|
|
287
296
|
const name_5: string;
|
|
288
297
|
export { name_5 as name };
|
|
289
298
|
const labelKey_5: string;
|
|
@@ -292,12 +301,10 @@ export namespace SIMPLE_NAME {
|
|
|
292
301
|
export { value_4 as value };
|
|
293
302
|
const sort_4: string[];
|
|
294
303
|
export { sort_4 as sort };
|
|
295
|
-
const
|
|
296
|
-
export {
|
|
297
|
-
const canBeVariable_2: boolean;
|
|
298
|
-
export { canBeVariable_2 as canBeVariable };
|
|
304
|
+
const formatter_4: string;
|
|
305
|
+
export { formatter_4 as formatter };
|
|
299
306
|
}
|
|
300
|
-
export namespace
|
|
307
|
+
export namespace SIMPLE_NAME {
|
|
301
308
|
const name_6: string;
|
|
302
309
|
export { name_6 as name };
|
|
303
310
|
const labelKey_6: string;
|
|
@@ -306,8 +313,12 @@ export namespace EFFECT {
|
|
|
306
313
|
export { value_5 as value };
|
|
307
314
|
const sort_5: string[];
|
|
308
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 };
|
|
309
320
|
}
|
|
310
|
-
export namespace
|
|
321
|
+
export namespace EFFECT {
|
|
311
322
|
const name_7: string;
|
|
312
323
|
export { name_7 as name };
|
|
313
324
|
const labelKey_7: string;
|
|
@@ -317,7 +328,7 @@ export namespace STORAGE_CLASS_PROVISIONER {
|
|
|
317
328
|
const sort_6: string[];
|
|
318
329
|
export { sort_6 as sort };
|
|
319
330
|
}
|
|
320
|
-
export namespace
|
|
331
|
+
export namespace STORAGE_CLASS_PROVISIONER {
|
|
321
332
|
const name_8: string;
|
|
322
333
|
export { name_8 as name };
|
|
323
334
|
const labelKey_8: string;
|
|
@@ -326,10 +337,8 @@ export namespace STORAGE_CLASS_DEFAULT {
|
|
|
326
337
|
export { value_7 as value };
|
|
327
338
|
const sort_7: string[];
|
|
328
339
|
export { sort_7 as sort };
|
|
329
|
-
const formatter_4: string;
|
|
330
|
-
export { formatter_4 as formatter };
|
|
331
340
|
}
|
|
332
|
-
export namespace
|
|
341
|
+
export namespace STORAGE_CLASS_DEFAULT {
|
|
333
342
|
const name_9: string;
|
|
334
343
|
export { name_9 as name };
|
|
335
344
|
const labelKey_9: string;
|
|
@@ -338,75 +347,75 @@ export namespace PERSISTENT_VOLUME_SOURCE {
|
|
|
338
347
|
export { value_8 as value };
|
|
339
348
|
const sort_8: string[];
|
|
340
349
|
export { sort_8 as sort };
|
|
350
|
+
const formatter_5: string;
|
|
351
|
+
export { formatter_5 as formatter };
|
|
341
352
|
}
|
|
342
|
-
export namespace
|
|
353
|
+
export namespace PERSISTENT_VOLUME_SOURCE {
|
|
343
354
|
const name_10: string;
|
|
344
355
|
export { name_10 as name };
|
|
345
356
|
const labelKey_10: string;
|
|
346
357
|
export { labelKey_10 as labelKey };
|
|
347
|
-
const sort_9: string[];
|
|
348
|
-
export { sort_9 as sort };
|
|
349
358
|
const value_9: string;
|
|
350
359
|
export { value_9 as value };
|
|
351
|
-
const
|
|
352
|
-
export {
|
|
353
|
-
export namespace formatterOpts {
|
|
354
|
-
const reference: string;
|
|
355
|
-
}
|
|
360
|
+
const sort_9: string[];
|
|
361
|
+
export { sort_9 as sort };
|
|
356
362
|
}
|
|
357
|
-
export namespace
|
|
363
|
+
export namespace PERSISTENT_VOLUME_CLAIM {
|
|
358
364
|
const name_11: string;
|
|
359
365
|
export { name_11 as name };
|
|
360
366
|
const labelKey_11: string;
|
|
361
367
|
export { labelKey_11 as labelKey };
|
|
362
|
-
const value_10: string;
|
|
363
|
-
export { value_10 as value };
|
|
364
368
|
const sort_10: string[];
|
|
365
369
|
export { sort_10 as sort };
|
|
370
|
+
const value_10: string;
|
|
371
|
+
export { value_10 as value };
|
|
366
372
|
const formatter_6: string;
|
|
367
373
|
export { formatter_6 as formatter };
|
|
368
|
-
export namespace
|
|
369
|
-
|
|
370
|
-
const internal: boolean;
|
|
371
|
-
}
|
|
374
|
+
export namespace formatterOpts {
|
|
375
|
+
const reference: string;
|
|
372
376
|
}
|
|
373
|
-
export { formatterOpts_1 as formatterOpts };
|
|
374
377
|
}
|
|
375
|
-
export namespace
|
|
378
|
+
export namespace OUTPUT {
|
|
376
379
|
const name_12: string;
|
|
377
380
|
export { name_12 as name };
|
|
378
381
|
const labelKey_12: string;
|
|
379
382
|
export { labelKey_12 as labelKey };
|
|
380
383
|
const value_11: string;
|
|
381
384
|
export { value_11 as value };
|
|
382
|
-
const sort_11: string;
|
|
385
|
+
const sort_11: string[];
|
|
383
386
|
export { sort_11 as sort };
|
|
384
387
|
const formatter_7: string;
|
|
385
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 };
|
|
386
395
|
}
|
|
387
|
-
export namespace
|
|
396
|
+
export namespace CONFIGURED_PROVIDERS {
|
|
388
397
|
const name_13: string;
|
|
389
398
|
export { name_13 as name };
|
|
399
|
+
const labelKey_13: string;
|
|
400
|
+
export { labelKey_13 as labelKey };
|
|
390
401
|
const value_12: string;
|
|
391
402
|
export { value_12 as value };
|
|
392
|
-
const sort_12: string
|
|
403
|
+
const sort_12: string;
|
|
393
404
|
export { sort_12 as sort };
|
|
394
|
-
const
|
|
395
|
-
export {
|
|
405
|
+
const formatter_8: string;
|
|
406
|
+
export { formatter_8 as formatter };
|
|
396
407
|
}
|
|
397
|
-
export namespace
|
|
408
|
+
export namespace CLUSTER_OUTPUT {
|
|
398
409
|
const name_14: string;
|
|
399
410
|
export { name_14 as name };
|
|
400
|
-
const labelKey_14: string;
|
|
401
|
-
export { labelKey_14 as labelKey };
|
|
402
411
|
const value_13: string;
|
|
403
412
|
export { value_13 as value };
|
|
404
413
|
const sort_13: string[];
|
|
405
414
|
export { sort_13 as sort };
|
|
406
|
-
const
|
|
407
|
-
export {
|
|
415
|
+
const labelKey_14: string;
|
|
416
|
+
export { labelKey_14 as labelKey };
|
|
408
417
|
}
|
|
409
|
-
export namespace
|
|
418
|
+
export namespace ID_UNLINKED {
|
|
410
419
|
const name_15: string;
|
|
411
420
|
export { name_15 as name };
|
|
412
421
|
const labelKey_15: string;
|
|
@@ -415,23 +424,22 @@ export namespace NAME_UNLINKED {
|
|
|
415
424
|
export { value_14 as value };
|
|
416
425
|
const sort_14: string[];
|
|
417
426
|
export { sort_14 as sort };
|
|
418
|
-
const
|
|
419
|
-
export {
|
|
427
|
+
const canBeVariable_3: boolean;
|
|
428
|
+
export { canBeVariable_3 as canBeVariable };
|
|
420
429
|
}
|
|
421
|
-
export namespace
|
|
430
|
+
export namespace NAME_UNLINKED {
|
|
422
431
|
const name_16: string;
|
|
423
432
|
export { name_16 as name };
|
|
424
433
|
const labelKey_16: string;
|
|
425
434
|
export { labelKey_16 as labelKey };
|
|
426
435
|
const value_15: string;
|
|
427
436
|
export { value_15 as value };
|
|
428
|
-
|
|
429
|
-
export { getValue_2 as getValue };
|
|
430
|
-
const sort_15: string;
|
|
437
|
+
const sort_15: string[];
|
|
431
438
|
export { sort_15 as sort };
|
|
432
|
-
|
|
439
|
+
const canBeVariable_4: boolean;
|
|
440
|
+
export { canBeVariable_4 as canBeVariable };
|
|
433
441
|
}
|
|
434
|
-
export namespace
|
|
442
|
+
export namespace NAMESPACE {
|
|
435
443
|
const name_17: string;
|
|
436
444
|
export { name_17 as name };
|
|
437
445
|
const labelKey_17: string;
|
|
@@ -442,28 +450,27 @@ export namespace NODE {
|
|
|
442
450
|
export { getValue_3 as getValue };
|
|
443
451
|
const sort_16: string;
|
|
444
452
|
export { sort_16 as sort };
|
|
445
|
-
const
|
|
446
|
-
export { formatter_8 as formatter };
|
|
447
|
-
export namespace formatterOpts_2 {
|
|
448
|
-
export { NODE_TYPE as type };
|
|
449
|
-
}
|
|
450
|
-
export { formatterOpts_2 as formatterOpts };
|
|
453
|
+
export const dashIfEmpty: boolean;
|
|
451
454
|
}
|
|
452
|
-
export namespace
|
|
455
|
+
export namespace NODE {
|
|
453
456
|
const name_18: string;
|
|
454
457
|
export { name_18 as name };
|
|
455
458
|
const labelKey_18: string;
|
|
456
459
|
export { labelKey_18 as labelKey };
|
|
457
|
-
const sort_17: string;
|
|
458
|
-
export { sort_17 as sort };
|
|
459
460
|
const value_17: string;
|
|
460
461
|
export { value_17 as value };
|
|
461
462
|
export function getValue_4(row: any): any;
|
|
462
463
|
export { getValue_4 as getValue };
|
|
464
|
+
const sort_17: string;
|
|
465
|
+
export { sort_17 as sort };
|
|
463
466
|
const formatter_9: string;
|
|
464
467
|
export { formatter_9 as formatter };
|
|
468
|
+
export namespace formatterOpts_2 {
|
|
469
|
+
export { NODE_TYPE as type };
|
|
470
|
+
}
|
|
471
|
+
export { formatterOpts_2 as formatterOpts };
|
|
465
472
|
}
|
|
466
|
-
export namespace
|
|
473
|
+
export namespace NODE_NAME {
|
|
467
474
|
const name_19: string;
|
|
468
475
|
export { name_19 as name };
|
|
469
476
|
const labelKey_19: string;
|
|
@@ -472,8 +479,12 @@ export namespace ROLES {
|
|
|
472
479
|
export { sort_18 as sort };
|
|
473
480
|
const value_18: string;
|
|
474
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 };
|
|
475
486
|
}
|
|
476
|
-
export namespace
|
|
487
|
+
export namespace ROLES {
|
|
477
488
|
const name_20: string;
|
|
478
489
|
export { name_20 as name };
|
|
479
490
|
const labelKey_20: string;
|
|
@@ -482,34 +493,28 @@ export namespace VERSION {
|
|
|
482
493
|
export { sort_19 as sort };
|
|
483
494
|
const value_19: string;
|
|
484
495
|
export { value_19 as value };
|
|
485
|
-
export function getValue_5(row: any): any;
|
|
486
|
-
export { getValue_5 as getValue };
|
|
487
496
|
}
|
|
488
|
-
export namespace
|
|
497
|
+
export namespace VERSION {
|
|
489
498
|
const name_21: string;
|
|
490
499
|
export { name_21 as name };
|
|
491
500
|
const labelKey_21: string;
|
|
492
501
|
export { labelKey_21 as labelKey };
|
|
493
502
|
const sort_20: string;
|
|
494
503
|
export { sort_20 as sort };
|
|
495
|
-
const search_1: boolean;
|
|
496
|
-
export { search_1 as search };
|
|
497
504
|
const value_20: string;
|
|
498
505
|
export { value_20 as value };
|
|
499
|
-
|
|
500
|
-
export {
|
|
501
|
-
const width_2: number;
|
|
502
|
-
export { width_2 as width };
|
|
506
|
+
export function getValue_6(row: any): any;
|
|
507
|
+
export { getValue_6 as getValue };
|
|
503
508
|
}
|
|
504
|
-
export namespace
|
|
509
|
+
export namespace CPU {
|
|
505
510
|
const name_22: string;
|
|
506
511
|
export { name_22 as name };
|
|
507
512
|
const labelKey_22: string;
|
|
508
513
|
export { labelKey_22 as labelKey };
|
|
509
514
|
const sort_21: string;
|
|
510
515
|
export { sort_21 as sort };
|
|
511
|
-
const
|
|
512
|
-
export {
|
|
516
|
+
const search_1: boolean;
|
|
517
|
+
export { search_1 as search };
|
|
513
518
|
const value_21: string;
|
|
514
519
|
export { value_21 as value };
|
|
515
520
|
const formatter_11: string;
|
|
@@ -517,171 +522,171 @@ export namespace RAM {
|
|
|
517
522
|
const width_3: number;
|
|
518
523
|
export { width_3 as width };
|
|
519
524
|
}
|
|
520
|
-
export namespace
|
|
525
|
+
export namespace RAM {
|
|
521
526
|
const name_23: string;
|
|
522
527
|
export { name_23 as name };
|
|
523
528
|
const labelKey_23: string;
|
|
524
529
|
export { labelKey_23 as labelKey };
|
|
525
530
|
const sort_22: string;
|
|
526
531
|
export { sort_22 as sort };
|
|
532
|
+
const search_2: boolean;
|
|
533
|
+
export { search_2 as search };
|
|
527
534
|
const value_22: string;
|
|
528
535
|
export { value_22 as value };
|
|
529
536
|
const formatter_12: string;
|
|
530
537
|
export { formatter_12 as formatter };
|
|
538
|
+
const width_4: number;
|
|
539
|
+
export { width_4 as width };
|
|
531
540
|
}
|
|
532
|
-
export namespace
|
|
541
|
+
export namespace PRINCIPAL {
|
|
533
542
|
const name_24: string;
|
|
534
543
|
export { name_24 as name };
|
|
535
544
|
const labelKey_24: string;
|
|
536
545
|
export { labelKey_24 as labelKey };
|
|
537
546
|
const sort_23: string;
|
|
538
547
|
export { sort_23 as sort };
|
|
539
|
-
const
|
|
540
|
-
export { search_3 as search };
|
|
541
|
-
export function value_23(row: any): any;
|
|
548
|
+
const value_23: string;
|
|
542
549
|
export { value_23 as value };
|
|
543
550
|
const formatter_13: string;
|
|
544
551
|
export { formatter_13 as formatter };
|
|
545
|
-
const width_4: number;
|
|
546
|
-
export { width_4 as width };
|
|
547
552
|
}
|
|
548
|
-
export namespace
|
|
553
|
+
export namespace PODS {
|
|
549
554
|
const name_25: string;
|
|
550
555
|
export { name_25 as name };
|
|
551
556
|
const labelKey_25: string;
|
|
552
557
|
export { labelKey_25 as labelKey };
|
|
553
|
-
const value_24: string;
|
|
554
|
-
export { value_24 as value };
|
|
555
|
-
export function getValue_6(row: any): any;
|
|
556
|
-
export { getValue_6 as getValue };
|
|
557
558
|
const sort_24: string;
|
|
558
559
|
export { sort_24 as sort };
|
|
559
|
-
const
|
|
560
|
-
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 };
|
|
561
564
|
const formatter_14: string;
|
|
562
565
|
export { formatter_14 as formatter };
|
|
563
566
|
const width_5: number;
|
|
564
567
|
export { width_5 as width };
|
|
565
|
-
const align_1: string;
|
|
566
|
-
export { align_1 as align };
|
|
567
568
|
}
|
|
568
|
-
export namespace
|
|
569
|
-
|
|
570
|
-
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 };
|
|
571
574
|
const value_25: string;
|
|
572
575
|
export { value_25 as value };
|
|
576
|
+
export function getValue_7(row: any): any;
|
|
577
|
+
export { getValue_7 as getValue };
|
|
573
578
|
const sort_25: string;
|
|
574
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 };
|
|
575
588
|
}
|
|
576
|
-
export namespace
|
|
577
|
-
|
|
578
|
-
export {
|
|
579
|
-
const labelKey_26: string;
|
|
580
|
-
export { labelKey_26 as labelKey };
|
|
589
|
+
export namespace AGE_NORMAN {
|
|
590
|
+
export function getValue_8(row: any): any;
|
|
591
|
+
export { getValue_8 as getValue };
|
|
581
592
|
const value_26: string;
|
|
582
593
|
export { value_26 as value };
|
|
583
|
-
const sort_26: string
|
|
594
|
+
const sort_26: string;
|
|
584
595
|
export { sort_26 as sort };
|
|
585
|
-
const formatter_15: string;
|
|
586
|
-
export { formatter_15 as formatter };
|
|
587
596
|
}
|
|
588
|
-
export namespace
|
|
597
|
+
export namespace CREATION_DATE {
|
|
589
598
|
const name_27: string;
|
|
590
599
|
export { name_27 as name };
|
|
591
600
|
const labelKey_27: string;
|
|
592
601
|
export { labelKey_27 as labelKey };
|
|
593
|
-
const
|
|
594
|
-
export {
|
|
602
|
+
const value_27: string;
|
|
603
|
+
export { value_27 as value };
|
|
595
604
|
const sort_27: string[];
|
|
596
605
|
export { sort_27 as sort };
|
|
597
|
-
const
|
|
598
|
-
export {
|
|
606
|
+
const formatter_16: string;
|
|
607
|
+
export { formatter_16 as formatter };
|
|
599
608
|
}
|
|
600
|
-
export namespace
|
|
609
|
+
export namespace DESCRIPTION {
|
|
601
610
|
const name_28: string;
|
|
602
611
|
export { name_28 as name };
|
|
603
612
|
const labelKey_28: string;
|
|
604
613
|
export { labelKey_28 as labelKey };
|
|
605
|
-
const
|
|
606
|
-
export {
|
|
607
|
-
const sort_28: string;
|
|
614
|
+
const align_2: string;
|
|
615
|
+
export { align_2 as align };
|
|
616
|
+
const sort_28: string[];
|
|
608
617
|
export { sort_28 as sort };
|
|
609
|
-
const
|
|
610
|
-
export {
|
|
618
|
+
const width_7: number;
|
|
619
|
+
export { width_7 as width };
|
|
611
620
|
}
|
|
612
|
-
export namespace
|
|
621
|
+
export namespace DURATION {
|
|
613
622
|
const name_29: string;
|
|
614
623
|
export { name_29 as name };
|
|
615
624
|
const labelKey_29: string;
|
|
616
625
|
export { labelKey_29 as labelKey };
|
|
617
626
|
const value_28: string;
|
|
618
627
|
export { value_28 as value };
|
|
619
|
-
const sort_29: string
|
|
628
|
+
const sort_29: string;
|
|
620
629
|
export { sort_29 as sort };
|
|
621
630
|
const formatter_17: string;
|
|
622
631
|
export { formatter_17 as formatter };
|
|
623
632
|
}
|
|
624
|
-
export namespace
|
|
633
|
+
export namespace IMAGE_NAME {
|
|
625
634
|
const name_30: string;
|
|
626
635
|
export { name_30 as name };
|
|
627
636
|
const labelKey_30: string;
|
|
628
637
|
export { labelKey_30 as labelKey };
|
|
629
638
|
const value_29: string;
|
|
630
639
|
export { value_29 as value };
|
|
631
|
-
|
|
632
|
-
export { getValue_8 as getValue };
|
|
633
|
-
const sort_30: string;
|
|
640
|
+
const sort_30: string[];
|
|
634
641
|
export { sort_30 as sort };
|
|
635
642
|
const formatter_18: string;
|
|
636
643
|
export { formatter_18 as formatter };
|
|
637
644
|
}
|
|
638
|
-
export namespace
|
|
645
|
+
export namespace POD_IMAGES {
|
|
639
646
|
const name_31: string;
|
|
640
647
|
export { name_31 as name };
|
|
641
648
|
const labelKey_31: string;
|
|
642
649
|
export { labelKey_31 as labelKey };
|
|
643
|
-
const formatter_19: string;
|
|
644
|
-
export { formatter_19 as formatter };
|
|
645
|
-
export const delayLoading: boolean;
|
|
646
650
|
const value_30: string;
|
|
647
651
|
export { value_30 as value };
|
|
648
652
|
export function getValue_9(row: any): any;
|
|
649
653
|
export { getValue_9 as getValue };
|
|
650
|
-
const
|
|
651
|
-
export {
|
|
652
|
-
|
|
653
|
-
}
|
|
654
|
-
|
|
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 {
|
|
655
660
|
const name_32: string;
|
|
656
661
|
export { name_32 as name };
|
|
657
662
|
const labelKey_32: string;
|
|
658
663
|
export { labelKey_32 as labelKey };
|
|
659
|
-
const value_31: string;
|
|
660
|
-
export { value_31 as value };
|
|
661
664
|
const formatter_20: string;
|
|
662
665
|
export { formatter_20 as formatter };
|
|
663
|
-
const
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
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;
|
|
667
674
|
}
|
|
668
|
-
export namespace
|
|
675
|
+
export namespace ENDPOINTS {
|
|
669
676
|
const name_33: string;
|
|
670
677
|
export { name_33 as name };
|
|
671
678
|
const labelKey_33: string;
|
|
672
679
|
export { labelKey_33 as labelKey };
|
|
673
680
|
const value_32: string;
|
|
674
681
|
export { value_32 as value };
|
|
675
|
-
const sort_31: string[];
|
|
676
|
-
export { sort_31 as sort };
|
|
677
682
|
const formatter_21: string;
|
|
678
683
|
export { formatter_21 as formatter };
|
|
679
684
|
const width_8: number;
|
|
680
685
|
export { width_8 as width };
|
|
681
|
-
const
|
|
682
|
-
export {
|
|
686
|
+
const align_3: string;
|
|
687
|
+
export { align_3 as align };
|
|
683
688
|
}
|
|
684
|
-
export namespace
|
|
689
|
+
export namespace SCALE {
|
|
685
690
|
const name_34: string;
|
|
686
691
|
export { name_34 as name };
|
|
687
692
|
const labelKey_34: string;
|
|
@@ -690,36 +695,40 @@ export namespace SIMPLE_SCALE {
|
|
|
690
695
|
export { value_33 as value };
|
|
691
696
|
const sort_32: string[];
|
|
692
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 };
|
|
693
704
|
}
|
|
694
|
-
export namespace
|
|
705
|
+
export namespace SIMPLE_SCALE {
|
|
695
706
|
const name_35: string;
|
|
696
707
|
export { name_35 as name };
|
|
697
708
|
const labelKey_35: string;
|
|
698
709
|
export { labelKey_35 as labelKey };
|
|
699
710
|
const value_34: string;
|
|
700
711
|
export { value_34 as value };
|
|
701
|
-
const sort_33: string;
|
|
712
|
+
const sort_33: string[];
|
|
702
713
|
export { sort_33 as sort };
|
|
703
|
-
const formatter_22: string;
|
|
704
|
-
export { formatter_22 as formatter };
|
|
705
|
-
const width_9: number;
|
|
706
|
-
export { width_9 as width };
|
|
707
|
-
const align_5: string;
|
|
708
|
-
export { align_5 as align };
|
|
709
714
|
}
|
|
710
|
-
export namespace
|
|
715
|
+
export namespace WEIGHT {
|
|
711
716
|
const name_36: string;
|
|
712
717
|
export { name_36 as name };
|
|
713
718
|
const labelKey_36: string;
|
|
714
719
|
export { labelKey_36 as labelKey };
|
|
715
720
|
const value_35: string;
|
|
716
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 };
|
|
717
726
|
const width_10: number;
|
|
718
727
|
export { width_10 as width };
|
|
719
|
-
const
|
|
720
|
-
export {
|
|
728
|
+
const align_5: string;
|
|
729
|
+
export { align_5 as align };
|
|
721
730
|
}
|
|
722
|
-
export namespace
|
|
731
|
+
export namespace SUCCESS {
|
|
723
732
|
const name_37: string;
|
|
724
733
|
export { name_37 as name };
|
|
725
734
|
const labelKey_37: string;
|
|
@@ -728,10 +737,10 @@ export namespace REQ_RATE {
|
|
|
728
737
|
export { value_36 as value };
|
|
729
738
|
const width_11: number;
|
|
730
739
|
export { width_11 as width };
|
|
731
|
-
const
|
|
732
|
-
export {
|
|
740
|
+
const align_6: string;
|
|
741
|
+
export { align_6 as align };
|
|
733
742
|
}
|
|
734
|
-
export namespace
|
|
743
|
+
export namespace REQ_RATE {
|
|
735
744
|
const name_38: string;
|
|
736
745
|
export { name_38 as name };
|
|
737
746
|
const labelKey_38: string;
|
|
@@ -740,106 +749,96 @@ export namespace P95 {
|
|
|
740
749
|
export { value_37 as value };
|
|
741
750
|
const width_12: number;
|
|
742
751
|
export { width_12 as width };
|
|
743
|
-
const
|
|
744
|
-
export {
|
|
752
|
+
const align_7: string;
|
|
753
|
+
export { align_7 as align };
|
|
745
754
|
}
|
|
746
|
-
export namespace
|
|
755
|
+
export namespace P95 {
|
|
747
756
|
const name_39: string;
|
|
748
757
|
export { name_39 as name };
|
|
749
758
|
const labelKey_39: string;
|
|
750
759
|
export { labelKey_39 as labelKey };
|
|
751
|
-
const sort_34: boolean;
|
|
752
|
-
export { sort_34 as sort };
|
|
753
760
|
const value_38: string;
|
|
754
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 };
|
|
755
766
|
}
|
|
756
|
-
export namespace
|
|
767
|
+
export namespace KEYS {
|
|
757
768
|
const name_40: string;
|
|
758
769
|
export { name_40 as name };
|
|
759
770
|
const labelKey_40: string;
|
|
760
771
|
export { labelKey_40 as labelKey };
|
|
772
|
+
const sort_35: boolean;
|
|
773
|
+
export { sort_35 as sort };
|
|
761
774
|
const value_39: string;
|
|
762
775
|
export { value_39 as value };
|
|
763
|
-
const width_13: number;
|
|
764
|
-
export { width_13 as width };
|
|
765
776
|
}
|
|
766
|
-
export namespace
|
|
777
|
+
export namespace SECRET_DATA {
|
|
767
778
|
const name_41: string;
|
|
768
779
|
export { name_41 as name };
|
|
769
780
|
const labelKey_41: string;
|
|
770
781
|
export { labelKey_41 as labelKey };
|
|
771
782
|
const value_40: string;
|
|
772
783
|
export { value_40 as value };
|
|
784
|
+
const formatter_24: string;
|
|
785
|
+
export { formatter_24 as formatter };
|
|
773
786
|
}
|
|
774
|
-
export namespace
|
|
787
|
+
export namespace TARGET_KIND {
|
|
775
788
|
const name_42: string;
|
|
776
789
|
export { name_42 as name };
|
|
777
790
|
const labelKey_42: string;
|
|
778
791
|
export { labelKey_42 as labelKey };
|
|
779
792
|
const value_41: string;
|
|
780
793
|
export { value_41 as value };
|
|
781
|
-
const
|
|
782
|
-
export {
|
|
783
|
-
const sort_35: string;
|
|
784
|
-
export { sort_35 as sort };
|
|
794
|
+
const width_14: number;
|
|
795
|
+
export { width_14 as width };
|
|
785
796
|
}
|
|
786
|
-
export namespace
|
|
797
|
+
export namespace TARGET {
|
|
787
798
|
const name_43: string;
|
|
788
799
|
export { name_43 as name };
|
|
789
800
|
const labelKey_43: string;
|
|
790
801
|
export { labelKey_43 as labelKey };
|
|
791
802
|
const value_42: string;
|
|
792
803
|
export { value_42 as value };
|
|
793
|
-
const sort_36: string[];
|
|
794
|
-
export { sort_36 as sort };
|
|
795
|
-
const dashIfEmpty_2: boolean;
|
|
796
|
-
export { dashIfEmpty_2 as dashIfEmpty };
|
|
797
804
|
}
|
|
798
|
-
export namespace
|
|
805
|
+
export namespace USERNAME {
|
|
799
806
|
const name_44: string;
|
|
800
807
|
export { name_44 as name };
|
|
801
808
|
const labelKey_44: string;
|
|
802
809
|
export { labelKey_44 as labelKey };
|
|
803
810
|
const value_43: string;
|
|
804
811
|
export { value_43 as value };
|
|
805
|
-
const
|
|
806
|
-
export {
|
|
807
|
-
const
|
|
808
|
-
export {
|
|
812
|
+
const dashIfEmpty_1: boolean;
|
|
813
|
+
export { dashIfEmpty_1 as dashIfEmpty };
|
|
814
|
+
const sort_36: string;
|
|
815
|
+
export { sort_36 as sort };
|
|
809
816
|
}
|
|
810
|
-
export namespace
|
|
817
|
+
export namespace USER_DISPLAY_NAME {
|
|
811
818
|
const name_45: string;
|
|
812
819
|
export { name_45 as name };
|
|
813
820
|
const labelKey_45: string;
|
|
814
821
|
export { labelKey_45 as labelKey };
|
|
815
822
|
const value_44: string;
|
|
816
823
|
export { value_44 as value };
|
|
817
|
-
const
|
|
818
|
-
export {
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
}
|
|
822
|
-
export { formatterOpts_3 as formatterOpts };
|
|
823
|
-
const sort_38: string;
|
|
824
|
-
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 };
|
|
825
828
|
}
|
|
826
|
-
export namespace
|
|
829
|
+
export namespace USER_PROVIDER {
|
|
827
830
|
const name_46: string;
|
|
828
831
|
export { name_46 as name };
|
|
829
832
|
const labelKey_46: string;
|
|
830
833
|
export { labelKey_46 as labelKey };
|
|
831
834
|
const value_45: string;
|
|
832
835
|
export { value_45 as value };
|
|
833
|
-
const
|
|
834
|
-
export {
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
}
|
|
838
|
-
export { formatterOpts_4 as formatterOpts };
|
|
839
|
-
const sort_39: string;
|
|
840
|
-
export { sort_39 as sort };
|
|
836
|
+
const dashIfEmpty_3: boolean;
|
|
837
|
+
export { dashIfEmpty_3 as dashIfEmpty };
|
|
838
|
+
const sort_38: string;
|
|
839
|
+
export { sort_38 as sort };
|
|
841
840
|
}
|
|
842
|
-
export namespace
|
|
841
|
+
export namespace USER_LAST_LOGIN {
|
|
843
842
|
const name_47: string;
|
|
844
843
|
export { name_47 as name };
|
|
845
844
|
const labelKey_47: string;
|
|
@@ -848,15 +847,14 @@ export namespace USER_DELETED_IN {
|
|
|
848
847
|
export { value_46 as value };
|
|
849
848
|
const formatter_25: string;
|
|
850
849
|
export { formatter_25 as formatter };
|
|
851
|
-
export namespace
|
|
852
|
-
const
|
|
853
|
-
export { isCountdown_1 as isCountdown };
|
|
850
|
+
export namespace formatterOpts_3 {
|
|
851
|
+
const addSuffix: boolean;
|
|
854
852
|
}
|
|
855
|
-
export {
|
|
856
|
-
const
|
|
857
|
-
export {
|
|
853
|
+
export { formatterOpts_3 as formatterOpts };
|
|
854
|
+
const sort_39: string;
|
|
855
|
+
export { sort_39 as sort };
|
|
858
856
|
}
|
|
859
|
-
export namespace
|
|
857
|
+
export namespace USER_DISABLED_IN {
|
|
860
858
|
const name_48: string;
|
|
861
859
|
export { name_48 as name };
|
|
862
860
|
const labelKey_48: string;
|
|
@@ -865,424 +863,457 @@ export namespace USER_ID {
|
|
|
865
863
|
export { value_47 as value };
|
|
866
864
|
const formatter_26: string;
|
|
867
865
|
export { formatter_26 as formatter };
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
export {
|
|
866
|
+
export namespace formatterOpts_4 {
|
|
867
|
+
const isCountdown: boolean;
|
|
868
|
+
}
|
|
869
|
+
export { formatterOpts_4 as formatterOpts };
|
|
870
|
+
const sort_40: string;
|
|
871
|
+
export { sort_40 as sort };
|
|
872
872
|
}
|
|
873
|
-
export namespace
|
|
873
|
+
export namespace USER_DELETED_IN {
|
|
874
874
|
const name_49: string;
|
|
875
875
|
export { name_49 as name };
|
|
876
876
|
const labelKey_49: string;
|
|
877
877
|
export { labelKey_49 as labelKey };
|
|
878
878
|
const value_48: string;
|
|
879
879
|
export { value_48 as value };
|
|
880
|
-
const
|
|
881
|
-
export {
|
|
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 };
|
|
882
889
|
}
|
|
883
|
-
export namespace
|
|
890
|
+
export namespace USER_ID {
|
|
884
891
|
const name_50: string;
|
|
885
892
|
export { name_50 as name };
|
|
886
893
|
const labelKey_50: string;
|
|
887
894
|
export { labelKey_50 as labelKey };
|
|
888
895
|
const value_49: string;
|
|
889
896
|
export { value_49 as value };
|
|
890
|
-
const
|
|
891
|
-
export {
|
|
892
|
-
const
|
|
893
|
-
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 };
|
|
894
903
|
}
|
|
895
|
-
export namespace
|
|
904
|
+
export namespace ADDRESS {
|
|
896
905
|
const name_51: string;
|
|
897
906
|
export { name_51 as name };
|
|
898
907
|
const labelKey_51: string;
|
|
899
908
|
export { labelKey_51 as labelKey };
|
|
900
909
|
const value_50: string;
|
|
901
910
|
export { value_50 as value };
|
|
902
|
-
const
|
|
903
|
-
export {
|
|
904
|
-
const formatter_27: string;
|
|
905
|
-
export { formatter_27 as formatter };
|
|
911
|
+
const sort_43: string[];
|
|
912
|
+
export { sort_43 as sort };
|
|
906
913
|
}
|
|
907
|
-
export namespace
|
|
914
|
+
export namespace SIMPLE_TYPE {
|
|
908
915
|
const name_52: string;
|
|
909
916
|
export { name_52 as name };
|
|
910
917
|
const labelKey_52: string;
|
|
911
918
|
export { labelKey_52 as labelKey };
|
|
912
919
|
const value_51: string;
|
|
913
920
|
export { value_51 as value };
|
|
914
|
-
|
|
915
|
-
export {
|
|
916
|
-
const sort_45: string[];
|
|
917
|
-
export { sort_45 as sort };
|
|
921
|
+
const sort_44: string[];
|
|
922
|
+
export { sort_44 as sort };
|
|
918
923
|
const width_15: number;
|
|
919
924
|
export { width_15 as width };
|
|
920
925
|
}
|
|
921
|
-
export namespace
|
|
926
|
+
export namespace IMAGE_SIZE {
|
|
922
927
|
const name_53: string;
|
|
923
928
|
export { name_53 as name };
|
|
924
929
|
const labelKey_53: string;
|
|
925
930
|
export { labelKey_53 as labelKey };
|
|
926
931
|
const value_52: string;
|
|
927
932
|
export { value_52 as value };
|
|
928
|
-
const
|
|
929
|
-
export {
|
|
930
|
-
const
|
|
931
|
-
export {
|
|
933
|
+
const sort_45: string[];
|
|
934
|
+
export { sort_45 as sort };
|
|
935
|
+
const formatter_29: string;
|
|
936
|
+
export { formatter_29 as formatter };
|
|
932
937
|
}
|
|
933
|
-
export namespace
|
|
938
|
+
export namespace TYPE {
|
|
934
939
|
const name_54: string;
|
|
935
940
|
export { name_54 as name };
|
|
936
941
|
const labelKey_54: string;
|
|
937
942
|
export { labelKey_54 as labelKey };
|
|
938
943
|
const value_53: string;
|
|
939
944
|
export { value_53 as value };
|
|
940
|
-
|
|
941
|
-
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 };
|
|
942
951
|
}
|
|
943
|
-
export namespace
|
|
952
|
+
export namespace SUB_TYPE {
|
|
944
953
|
const name_55: string;
|
|
945
954
|
export { name_55 as name };
|
|
946
955
|
const labelKey_55: string;
|
|
947
956
|
export { labelKey_55 as labelKey };
|
|
948
957
|
const value_54: string;
|
|
949
958
|
export { value_54 as value };
|
|
950
|
-
const
|
|
951
|
-
export {
|
|
959
|
+
const sort_47: string[];
|
|
960
|
+
export { sort_47 as sort };
|
|
952
961
|
const width_17: number;
|
|
953
962
|
export { width_17 as width };
|
|
954
963
|
}
|
|
955
|
-
export namespace
|
|
964
|
+
export namespace EVENT_TYPE {
|
|
956
965
|
const name_56: string;
|
|
957
966
|
export { name_56 as name };
|
|
958
967
|
const labelKey_56: string;
|
|
959
968
|
export { labelKey_56 as labelKey };
|
|
960
969
|
const value_55: string;
|
|
961
970
|
export { value_55 as value };
|
|
962
|
-
const
|
|
963
|
-
export {
|
|
964
|
-
export const tooltip: string;
|
|
971
|
+
const sort_48: string;
|
|
972
|
+
export { sort_48 as sort };
|
|
965
973
|
}
|
|
966
|
-
export namespace
|
|
974
|
+
export namespace STATUS {
|
|
967
975
|
const name_57: string;
|
|
968
976
|
export { name_57 as name };
|
|
969
977
|
const labelKey_57: string;
|
|
970
978
|
export { labelKey_57 as labelKey };
|
|
971
979
|
const value_56: string;
|
|
972
980
|
export { value_56 as value };
|
|
973
|
-
const
|
|
974
|
-
export {
|
|
975
|
-
const formatter_28: string;
|
|
976
|
-
export { formatter_28 as formatter };
|
|
981
|
+
const sort_49: string[];
|
|
982
|
+
export { sort_49 as sort };
|
|
977
983
|
const width_18: number;
|
|
978
984
|
export { width_18 as width };
|
|
979
985
|
}
|
|
980
|
-
export namespace
|
|
986
|
+
export namespace LAST_SEEN_TIME {
|
|
981
987
|
const name_58: string;
|
|
982
988
|
export { name_58 as name };
|
|
983
989
|
const labelKey_58: string;
|
|
984
990
|
export { labelKey_58 as labelKey };
|
|
985
991
|
const value_57: string;
|
|
986
992
|
export { value_57 as value };
|
|
987
|
-
const
|
|
988
|
-
export {
|
|
993
|
+
const sort_50: string;
|
|
994
|
+
export { sort_50 as sort };
|
|
995
|
+
export const tooltip: string;
|
|
989
996
|
}
|
|
990
|
-
export namespace
|
|
997
|
+
export namespace LAST_HEARTBEAT_TIME {
|
|
991
998
|
const name_59: string;
|
|
992
999
|
export { name_59 as name };
|
|
993
1000
|
const labelKey_59: string;
|
|
994
1001
|
export { labelKey_59 as labelKey };
|
|
995
1002
|
const value_58: string;
|
|
996
1003
|
export { value_58 as value };
|
|
997
|
-
const
|
|
998
|
-
export {
|
|
999
|
-
const
|
|
1000
|
-
export {
|
|
1001
|
-
const
|
|
1002
|
-
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 };
|
|
1003
1010
|
}
|
|
1004
|
-
export namespace
|
|
1011
|
+
export namespace REASON {
|
|
1005
1012
|
const name_60: string;
|
|
1006
1013
|
export { name_60 as name };
|
|
1007
1014
|
const labelKey_60: string;
|
|
1008
1015
|
export { labelKey_60 as labelKey };
|
|
1009
1016
|
const value_59: string;
|
|
1010
1017
|
export { value_59 as value };
|
|
1011
|
-
const
|
|
1012
|
-
export {
|
|
1018
|
+
const sort_52: string[];
|
|
1019
|
+
export { sort_52 as sort };
|
|
1013
1020
|
}
|
|
1014
|
-
export namespace
|
|
1021
|
+
export namespace OBJECT {
|
|
1015
1022
|
const name_61: string;
|
|
1016
1023
|
export { name_61 as name };
|
|
1017
1024
|
const labelKey_61: string;
|
|
1018
1025
|
export { labelKey_61 as labelKey };
|
|
1019
1026
|
const value_60: string;
|
|
1020
1027
|
export { value_60 as value };
|
|
1021
|
-
const
|
|
1022
|
-
export {
|
|
1023
|
-
|
|
1024
|
-
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 };
|
|
1034
|
+
}
|
|
1035
|
+
export namespace RECLAIM_POLICY {
|
|
1025
1036
|
const name_62: string;
|
|
1026
1037
|
export { name_62 as name };
|
|
1027
1038
|
const labelKey_62: string;
|
|
1028
1039
|
export { labelKey_62 as labelKey };
|
|
1029
1040
|
const value_61: string;
|
|
1030
1041
|
export { value_61 as value };
|
|
1031
|
-
const
|
|
1032
|
-
export {
|
|
1042
|
+
const sort_54: string[];
|
|
1043
|
+
export { sort_54 as sort };
|
|
1033
1044
|
}
|
|
1034
|
-
export namespace
|
|
1045
|
+
export namespace PV_REASON {
|
|
1035
1046
|
const name_63: string;
|
|
1036
1047
|
export { name_63 as name };
|
|
1037
1048
|
const labelKey_63: string;
|
|
1038
1049
|
export { labelKey_63 as labelKey };
|
|
1039
1050
|
const value_62: string;
|
|
1040
1051
|
export { value_62 as value };
|
|
1041
|
-
const
|
|
1042
|
-
export {
|
|
1052
|
+
const sort_55: string[];
|
|
1053
|
+
export { sort_55 as sort };
|
|
1043
1054
|
}
|
|
1044
|
-
export namespace
|
|
1055
|
+
export namespace MESSAGE {
|
|
1045
1056
|
const name_64: string;
|
|
1046
1057
|
export { name_64 as name };
|
|
1047
1058
|
const labelKey_64: string;
|
|
1048
1059
|
export { labelKey_64 as labelKey };
|
|
1049
1060
|
const value_63: string;
|
|
1050
1061
|
export { value_63 as value };
|
|
1051
|
-
const
|
|
1052
|
-
export {
|
|
1062
|
+
const sort_56: string[];
|
|
1063
|
+
export { sort_56 as sort };
|
|
1053
1064
|
}
|
|
1054
|
-
export namespace
|
|
1065
|
+
export namespace KEY {
|
|
1055
1066
|
const name_65: string;
|
|
1056
1067
|
export { name_65 as name };
|
|
1057
1068
|
const labelKey_65: string;
|
|
1058
1069
|
export { labelKey_65 as labelKey };
|
|
1059
1070
|
const value_64: string;
|
|
1060
1071
|
export { value_64 as value };
|
|
1061
|
-
const
|
|
1062
|
-
export {
|
|
1063
|
-
const align_9: string;
|
|
1064
|
-
export { align_9 as align };
|
|
1065
|
-
const formatter_30: string;
|
|
1066
|
-
export { formatter_30 as formatter };
|
|
1072
|
+
const sort_57: string[];
|
|
1073
|
+
export { sort_57 as sort };
|
|
1067
1074
|
}
|
|
1068
|
-
export namespace
|
|
1075
|
+
export namespace VALUE {
|
|
1069
1076
|
const name_66: string;
|
|
1070
1077
|
export { name_66 as name };
|
|
1071
1078
|
const labelKey_66: string;
|
|
1072
1079
|
export { labelKey_66 as labelKey };
|
|
1073
1080
|
const value_65: string;
|
|
1074
1081
|
export { value_65 as value };
|
|
1075
|
-
const
|
|
1076
|
-
export {
|
|
1077
|
-
const align_10: string;
|
|
1078
|
-
export { align_10 as align };
|
|
1079
|
-
const formatter_31: string;
|
|
1080
|
-
export { formatter_31 as formatter };
|
|
1082
|
+
const sort_58: string[];
|
|
1083
|
+
export { sort_58 as sort };
|
|
1081
1084
|
}
|
|
1082
|
-
export namespace
|
|
1085
|
+
export namespace BUILT_IN {
|
|
1083
1086
|
const name_67: string;
|
|
1084
1087
|
export { name_67 as name };
|
|
1085
1088
|
const labelKey_67: string;
|
|
1086
1089
|
export { labelKey_67 as labelKey };
|
|
1087
1090
|
const value_66: string;
|
|
1088
1091
|
export { value_66 as value };
|
|
1092
|
+
const sort_59: string[];
|
|
1093
|
+
export { sort_59 as sort };
|
|
1094
|
+
const align_9: string;
|
|
1095
|
+
export { align_9 as align };
|
|
1089
1096
|
const formatter_32: string;
|
|
1090
1097
|
export { formatter_32 as formatter };
|
|
1091
|
-
const sort_60: string[];
|
|
1092
|
-
export { sort_60 as sort };
|
|
1093
1098
|
}
|
|
1094
|
-
export namespace
|
|
1099
|
+
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
1095
1100
|
const name_68: string;
|
|
1096
1101
|
export { name_68 as name };
|
|
1097
1102
|
const labelKey_68: string;
|
|
1098
1103
|
export { labelKey_68 as labelKey };
|
|
1099
1104
|
const value_67: string;
|
|
1100
1105
|
export { value_67 as value };
|
|
1106
|
+
const sort_60: string[];
|
|
1107
|
+
export { sort_60 as sort };
|
|
1108
|
+
const align_10: string;
|
|
1109
|
+
export { align_10 as align };
|
|
1101
1110
|
const formatter_33: string;
|
|
1102
1111
|
export { formatter_33 as formatter };
|
|
1103
|
-
const sort_61: string[];
|
|
1104
|
-
export { sort_61 as sort };
|
|
1105
1112
|
}
|
|
1106
|
-
export namespace
|
|
1113
|
+
export namespace RBAC_DEFAULT {
|
|
1107
1114
|
const name_69: string;
|
|
1108
1115
|
export { name_69 as name };
|
|
1109
1116
|
const labelKey_69: string;
|
|
1110
1117
|
export { labelKey_69 as labelKey };
|
|
1111
1118
|
const value_68: string;
|
|
1112
1119
|
export { value_68 as value };
|
|
1113
|
-
const
|
|
1114
|
-
export {
|
|
1120
|
+
const formatter_34: string;
|
|
1121
|
+
export { formatter_34 as formatter };
|
|
1122
|
+
const sort_61: string[];
|
|
1123
|
+
export { sort_61 as sort };
|
|
1115
1124
|
}
|
|
1116
|
-
export namespace
|
|
1125
|
+
export namespace RBAC_BUILTIN {
|
|
1117
1126
|
const name_70: string;
|
|
1118
1127
|
export { name_70 as name };
|
|
1119
1128
|
const labelKey_70: string;
|
|
1120
1129
|
export { labelKey_70 as labelKey };
|
|
1121
1130
|
const value_69: string;
|
|
1122
1131
|
export { value_69 as value };
|
|
1123
|
-
const
|
|
1124
|
-
export {
|
|
1132
|
+
const formatter_35: string;
|
|
1133
|
+
export { formatter_35 as formatter };
|
|
1134
|
+
const sort_62: string[];
|
|
1135
|
+
export { sort_62 as sort };
|
|
1125
1136
|
}
|
|
1126
|
-
export namespace
|
|
1137
|
+
export namespace RESOURCE {
|
|
1127
1138
|
const name_71: string;
|
|
1128
1139
|
export { name_71 as name };
|
|
1129
1140
|
const labelKey_71: string;
|
|
1130
1141
|
export { labelKey_71 as labelKey };
|
|
1131
1142
|
const value_70: string;
|
|
1132
1143
|
export { value_70 as value };
|
|
1133
|
-
const
|
|
1134
|
-
export {
|
|
1144
|
+
const sort_63: string[];
|
|
1145
|
+
export { sort_63 as sort };
|
|
1135
1146
|
}
|
|
1136
|
-
export namespace
|
|
1147
|
+
export namespace API_GROUP {
|
|
1137
1148
|
const name_72: string;
|
|
1138
1149
|
export { name_72 as name };
|
|
1139
1150
|
const labelKey_72: string;
|
|
1140
1151
|
export { labelKey_72 as labelKey };
|
|
1141
1152
|
const value_71: string;
|
|
1142
1153
|
export { value_71 as value };
|
|
1143
|
-
const
|
|
1144
|
-
export {
|
|
1145
|
-
const formatter_34: string;
|
|
1146
|
-
export { formatter_34 as formatter };
|
|
1147
|
-
const width_19: number;
|
|
1148
|
-
export { width_19 as width };
|
|
1149
|
-
const align_11: string;
|
|
1150
|
-
export { align_11 as align };
|
|
1154
|
+
const sort_64: string[];
|
|
1155
|
+
export { sort_64 as sort };
|
|
1151
1156
|
}
|
|
1152
|
-
export namespace
|
|
1157
|
+
export namespace INGRESS_CLASS {
|
|
1153
1158
|
const name_73: string;
|
|
1154
1159
|
export { name_73 as name };
|
|
1155
1160
|
const labelKey_73: string;
|
|
1156
1161
|
export { labelKey_73 as labelKey };
|
|
1157
1162
|
const value_72: string;
|
|
1158
1163
|
export { value_72 as value };
|
|
1159
|
-
const
|
|
1160
|
-
export {
|
|
1161
|
-
const sort_66: string;
|
|
1162
|
-
export { sort_66 as sort };
|
|
1164
|
+
const sort_65: string;
|
|
1165
|
+
export { sort_65 as sort };
|
|
1163
1166
|
}
|
|
1164
|
-
export namespace
|
|
1167
|
+
export namespace INGRESS_DEFAULT_BACKEND {
|
|
1165
1168
|
const name_74: string;
|
|
1166
1169
|
export { name_74 as name };
|
|
1167
1170
|
const labelKey_74: string;
|
|
1168
1171
|
export { labelKey_74 as labelKey };
|
|
1169
1172
|
const value_73: string;
|
|
1170
1173
|
export { value_73 as value };
|
|
1171
|
-
const
|
|
1172
|
-
export {
|
|
1174
|
+
const sort_66: string[];
|
|
1175
|
+
export { sort_66 as sort };
|
|
1173
1176
|
const formatter_36: string;
|
|
1174
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 };
|
|
1175
1182
|
}
|
|
1176
|
-
export namespace
|
|
1177
|
-
const formatter_37: string;
|
|
1178
|
-
export { formatter_37 as formatter };
|
|
1179
|
-
const labelKey_75: string;
|
|
1180
|
-
export { labelKey_75 as labelKey };
|
|
1183
|
+
export namespace INGRESS_TARGET {
|
|
1181
1184
|
const name_75: string;
|
|
1182
1185
|
export { name_75 as name };
|
|
1183
|
-
const
|
|
1184
|
-
export {
|
|
1186
|
+
const labelKey_75: string;
|
|
1187
|
+
export { labelKey_75 as labelKey };
|
|
1185
1188
|
const value_74: string;
|
|
1186
1189
|
export { value_74 as value };
|
|
1190
|
+
const formatter_37: string;
|
|
1191
|
+
export { formatter_37 as formatter };
|
|
1192
|
+
const sort_67: string;
|
|
1193
|
+
export { sort_67 as sort };
|
|
1187
1194
|
}
|
|
1188
|
-
export namespace
|
|
1189
|
-
const formatter_38: string;
|
|
1190
|
-
export { formatter_38 as formatter };
|
|
1195
|
+
export namespace SPEC_TYPE {
|
|
1191
1196
|
const name_76: string;
|
|
1192
1197
|
export { name_76 as name };
|
|
1193
1198
|
const labelKey_76: string;
|
|
1194
1199
|
export { labelKey_76 as labelKey };
|
|
1195
1200
|
const value_75: string;
|
|
1196
1201
|
export { value_75 as value };
|
|
1197
|
-
const
|
|
1198
|
-
export {
|
|
1202
|
+
const sort_68: string;
|
|
1203
|
+
export { sort_68 as sort };
|
|
1204
|
+
const formatter_38: string;
|
|
1205
|
+
export { formatter_38 as formatter };
|
|
1199
1206
|
}
|
|
1200
|
-
export namespace
|
|
1201
|
-
const
|
|
1202
|
-
export {
|
|
1207
|
+
export namespace TARGET_PORT {
|
|
1208
|
+
const formatter_39: string;
|
|
1209
|
+
export { formatter_39 as formatter };
|
|
1203
1210
|
const labelKey_77: string;
|
|
1204
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 };
|
|
1205
1216
|
const value_76: string;
|
|
1206
1217
|
export { value_76 as value };
|
|
1207
|
-
const sort_70: string[];
|
|
1208
|
-
export { sort_70 as sort };
|
|
1209
1218
|
}
|
|
1210
|
-
export namespace
|
|
1219
|
+
export namespace SELECTOR {
|
|
1220
|
+
const formatter_40: string;
|
|
1221
|
+
export { formatter_40 as formatter };
|
|
1211
1222
|
const name_78: string;
|
|
1212
1223
|
export { name_78 as name };
|
|
1213
1224
|
const labelKey_78: string;
|
|
1214
1225
|
export { labelKey_78 as labelKey };
|
|
1215
1226
|
const value_77: string;
|
|
1216
1227
|
export { value_77 as value };
|
|
1217
|
-
const
|
|
1218
|
-
export {
|
|
1219
|
-
const dashIfEmpty_4: boolean;
|
|
1220
|
-
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1228
|
+
const sort_70: string;
|
|
1229
|
+
export { sort_70 as sort };
|
|
1221
1230
|
}
|
|
1222
|
-
export namespace
|
|
1231
|
+
export namespace CHART {
|
|
1223
1232
|
const name_79: string;
|
|
1224
1233
|
export { name_79 as name };
|
|
1225
1234
|
const labelKey_79: string;
|
|
1226
1235
|
export { labelKey_79 as labelKey };
|
|
1227
1236
|
const value_78: string;
|
|
1228
1237
|
export { value_78 as value };
|
|
1229
|
-
const
|
|
1230
|
-
export {
|
|
1231
|
-
const width_20: number;
|
|
1232
|
-
export { width_20 as width };
|
|
1238
|
+
const sort_71: string[];
|
|
1239
|
+
export { sort_71 as sort };
|
|
1233
1240
|
}
|
|
1234
|
-
export namespace
|
|
1241
|
+
export namespace CHART_UPGRADE {
|
|
1235
1242
|
const name_80: string;
|
|
1236
1243
|
export { name_80 as name };
|
|
1237
1244
|
const labelKey_80: string;
|
|
1238
1245
|
export { labelKey_80 as labelKey };
|
|
1239
1246
|
const value_79: string;
|
|
1240
1247
|
export { value_79 as value };
|
|
1241
|
-
const
|
|
1242
|
-
export {
|
|
1248
|
+
const sort_72: string;
|
|
1249
|
+
export { sort_72 as sort };
|
|
1250
|
+
const dashIfEmpty_4: boolean;
|
|
1251
|
+
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1243
1252
|
}
|
|
1244
|
-
export namespace
|
|
1253
|
+
export namespace RESOURCES {
|
|
1245
1254
|
const name_81: string;
|
|
1246
1255
|
export { name_81 as name };
|
|
1247
1256
|
const labelKey_81: string;
|
|
1248
1257
|
export { labelKey_81 as labelKey };
|
|
1249
1258
|
const value_80: string;
|
|
1250
1259
|
export { value_80 as value };
|
|
1251
|
-
const
|
|
1252
|
-
export {
|
|
1260
|
+
const sort_73: string;
|
|
1261
|
+
export { sort_73 as sort };
|
|
1262
|
+
const width_21: number;
|
|
1263
|
+
export { width_21 as width };
|
|
1264
|
+
}
|
|
1265
|
+
export namespace URL {
|
|
1266
|
+
const name_82: string;
|
|
1267
|
+
export { name_82 as name };
|
|
1268
|
+
const labelKey_82: string;
|
|
1269
|
+
export { labelKey_82 as labelKey };
|
|
1270
|
+
const value_81: string;
|
|
1271
|
+
export { value_81 as value };
|
|
1272
|
+
const sort_74: string;
|
|
1273
|
+
export { sort_74 as sort };
|
|
1274
|
+
}
|
|
1275
|
+
export namespace LAST_UPDATED {
|
|
1276
|
+
const name_83: string;
|
|
1277
|
+
export { name_83 as name };
|
|
1278
|
+
const labelKey_83: string;
|
|
1279
|
+
export { labelKey_83 as labelKey };
|
|
1280
|
+
const value_82: string;
|
|
1281
|
+
export { value_82 as value };
|
|
1282
|
+
const formatter_41: string;
|
|
1283
|
+
export { formatter_41 as formatter };
|
|
1253
1284
|
export namespace formatterOpts_6 {
|
|
1254
1285
|
const addSuffix_1: boolean;
|
|
1255
1286
|
export { addSuffix_1 as addSuffix };
|
|
1256
1287
|
}
|
|
1257
1288
|
export { formatterOpts_6 as formatterOpts };
|
|
1258
|
-
const
|
|
1259
|
-
export {
|
|
1289
|
+
const sort_75: string[];
|
|
1290
|
+
export { sort_75 as sort };
|
|
1260
1291
|
}
|
|
1261
1292
|
export namespace WORKSPACE {
|
|
1262
|
-
const
|
|
1263
|
-
export {
|
|
1293
|
+
const name_84: string;
|
|
1294
|
+
export { name_84 as name };
|
|
1264
1295
|
export const label: string;
|
|
1265
|
-
const
|
|
1266
|
-
export {
|
|
1267
|
-
const
|
|
1268
|
-
export {
|
|
1296
|
+
const value_83: string;
|
|
1297
|
+
export { value_83 as value };
|
|
1298
|
+
const sort_76: string[];
|
|
1299
|
+
export { sort_76 as sort };
|
|
1269
1300
|
}
|
|
1270
1301
|
export namespace WORKLOAD_IMAGES {
|
|
1271
|
-
const
|
|
1272
|
-
export {
|
|
1302
|
+
const value_84: string;
|
|
1303
|
+
export { value_84 as value };
|
|
1273
1304
|
export const breakpoint: any;
|
|
1274
1305
|
}
|
|
1275
1306
|
export namespace WORKLOAD_ENDPOINTS {
|
|
1276
|
-
const
|
|
1277
|
-
export {
|
|
1278
|
-
const
|
|
1279
|
-
export {
|
|
1280
|
-
const
|
|
1281
|
-
export {
|
|
1282
|
-
export function
|
|
1283
|
-
export {
|
|
1284
|
-
const
|
|
1285
|
-
export {
|
|
1307
|
+
const name_85: string;
|
|
1308
|
+
export { name_85 as name };
|
|
1309
|
+
const labelKey_84: string;
|
|
1310
|
+
export { labelKey_84 as labelKey };
|
|
1311
|
+
const value_85: string;
|
|
1312
|
+
export { value_85 as value };
|
|
1313
|
+
export function getValue_12(row: any): any;
|
|
1314
|
+
export { getValue_12 as getValue };
|
|
1315
|
+
const formatter_42: string;
|
|
1316
|
+
export { formatter_42 as formatter };
|
|
1286
1317
|
const dashIfEmpty_5: boolean;
|
|
1287
1318
|
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1288
1319
|
const breakpoint_1: any;
|
|
@@ -1290,16 +1321,16 @@ export namespace WORKLOAD_ENDPOINTS {
|
|
|
1290
1321
|
export const maxPageSize: number;
|
|
1291
1322
|
}
|
|
1292
1323
|
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1293
|
-
const
|
|
1294
|
-
export {
|
|
1295
|
-
const
|
|
1296
|
-
export {
|
|
1297
|
-
const
|
|
1298
|
-
export {
|
|
1299
|
-
export function
|
|
1300
|
-
export {
|
|
1301
|
-
const
|
|
1302
|
-
export {
|
|
1324
|
+
const name_86: string;
|
|
1325
|
+
export { name_86 as name };
|
|
1326
|
+
const labelKey_85: string;
|
|
1327
|
+
export { labelKey_85 as labelKey };
|
|
1328
|
+
const formatter_43: string;
|
|
1329
|
+
export { formatter_43 as formatter };
|
|
1330
|
+
export function getValue_13(): any;
|
|
1331
|
+
export { getValue_13 as getValue };
|
|
1332
|
+
const width_22: number;
|
|
1333
|
+
export { width_22 as width };
|
|
1303
1334
|
export const skipSelect: boolean;
|
|
1304
1335
|
const delayLoading_1: boolean;
|
|
1305
1336
|
export { delayLoading_1 as delayLoading };
|
|
@@ -1309,432 +1340,504 @@ export namespace WORKLOAD_HEALTH_SCALE {
|
|
|
1309
1340
|
export { liveUpdates_1 as liveUpdates };
|
|
1310
1341
|
}
|
|
1311
1342
|
export namespace FLEET_SUMMARY {
|
|
1312
|
-
const name_85: string;
|
|
1313
|
-
export { name_85 as name };
|
|
1314
|
-
const labelKey_84: string;
|
|
1315
|
-
export { labelKey_84 as labelKey };
|
|
1316
|
-
const value_84: string;
|
|
1317
|
-
export { value_84 as value };
|
|
1318
|
-
const sort_76: boolean;
|
|
1319
|
-
export { sort_76 as sort };
|
|
1320
|
-
const search_7: boolean;
|
|
1321
|
-
export { search_7 as search };
|
|
1322
|
-
const formatter_42: string;
|
|
1323
|
-
export { formatter_42 as formatter };
|
|
1324
|
-
const align_12: string;
|
|
1325
|
-
export { align_12 as align };
|
|
1326
|
-
const width_22: number;
|
|
1327
|
-
export { width_22 as width };
|
|
1328
|
-
}
|
|
1329
|
-
export namespace APP_SUMMARY {
|
|
1330
|
-
const name_86: string;
|
|
1331
|
-
export { name_86 as name };
|
|
1332
|
-
const labelKey_85: string;
|
|
1333
|
-
export { labelKey_85 as labelKey };
|
|
1334
|
-
const value_85: string;
|
|
1335
|
-
export { value_85 as value };
|
|
1336
|
-
const sort_77: boolean;
|
|
1337
|
-
export { sort_77 as sort };
|
|
1338
|
-
const search_8: boolean;
|
|
1339
|
-
export { search_8 as search };
|
|
1340
|
-
const formatter_43: string;
|
|
1341
|
-
export { formatter_43 as formatter };
|
|
1342
|
-
const align_13: string;
|
|
1343
|
-
export { align_13 as align };
|
|
1344
|
-
const width_23: number;
|
|
1345
|
-
export { width_23 as width };
|
|
1346
|
-
}
|
|
1347
|
-
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1348
1343
|
const name_87: string;
|
|
1349
1344
|
export { name_87 as name };
|
|
1350
1345
|
const labelKey_86: string;
|
|
1351
1346
|
export { labelKey_86 as labelKey };
|
|
1352
1347
|
const value_86: string;
|
|
1353
1348
|
export { value_86 as value };
|
|
1354
|
-
const
|
|
1355
|
-
export {
|
|
1349
|
+
const sort_77: boolean;
|
|
1350
|
+
export { sort_77 as sort };
|
|
1351
|
+
const search_7: boolean;
|
|
1352
|
+
export { search_7 as search };
|
|
1356
1353
|
const formatter_44: string;
|
|
1357
1354
|
export { formatter_44 as formatter };
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
}
|
|
1363
|
-
export { options_1 as options };
|
|
1364
|
-
}
|
|
1365
|
-
export { formatterOpts_7 as formatterOpts };
|
|
1355
|
+
const align_12: string;
|
|
1356
|
+
export { align_12 as align };
|
|
1357
|
+
const width_23: number;
|
|
1358
|
+
export { width_23 as width };
|
|
1366
1359
|
}
|
|
1367
|
-
export namespace
|
|
1360
|
+
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1368
1361
|
const name_88: string;
|
|
1369
1362
|
export { name_88 as name };
|
|
1370
1363
|
const labelKey_87: string;
|
|
1371
1364
|
export { labelKey_87 as labelKey };
|
|
1372
1365
|
const value_87: string;
|
|
1373
1366
|
export { value_87 as value };
|
|
1374
|
-
const
|
|
1375
|
-
export {
|
|
1376
|
-
const
|
|
1377
|
-
export {
|
|
1367
|
+
const sort_78: boolean;
|
|
1368
|
+
export { sort_78 as sort };
|
|
1369
|
+
const search_8: boolean;
|
|
1370
|
+
export { search_8 as search };
|
|
1378
1371
|
const formatter_45: string;
|
|
1379
1372
|
export { formatter_45 as formatter };
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
}
|
|
1385
|
-
export { options_2 as options };
|
|
1386
|
-
}
|
|
1387
|
-
export { formatterOpts_8 as formatterOpts };
|
|
1373
|
+
const align_13: string;
|
|
1374
|
+
export { align_13 as align };
|
|
1375
|
+
const width_24: number;
|
|
1376
|
+
export { width_24 as width };
|
|
1388
1377
|
}
|
|
1389
|
-
export namespace
|
|
1378
|
+
export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
1390
1379
|
const name_89: string;
|
|
1391
1380
|
export { name_89 as name };
|
|
1392
1381
|
const labelKey_88: string;
|
|
1393
1382
|
export { labelKey_88 as labelKey };
|
|
1394
|
-
const
|
|
1395
|
-
export {
|
|
1396
|
-
const
|
|
1397
|
-
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 };
|
|
1398
1397
|
}
|
|
1399
|
-
export namespace
|
|
1398
|
+
export namespace APP_SUMMARY {
|
|
1400
1399
|
const name_90: string;
|
|
1401
1400
|
export { name_90 as name };
|
|
1402
1401
|
const labelKey_89: string;
|
|
1403
1402
|
export { labelKey_89 as labelKey };
|
|
1404
|
-
const
|
|
1405
|
-
export {
|
|
1406
|
-
const
|
|
1407
|
-
export {
|
|
1408
|
-
const
|
|
1409
|
-
export {
|
|
1403
|
+
const value_88: string;
|
|
1404
|
+
export { value_88 as value };
|
|
1405
|
+
const sort_80: boolean;
|
|
1406
|
+
export { sort_80 as sort };
|
|
1407
|
+
const search_9: boolean;
|
|
1408
|
+
export { search_9 as search };
|
|
1409
|
+
const formatter_47: string;
|
|
1410
|
+
export { formatter_47 as formatter };
|
|
1411
|
+
const align_14: string;
|
|
1412
|
+
export { align_14 as align };
|
|
1413
|
+
const width_26: number;
|
|
1414
|
+
export { width_26 as width };
|
|
1410
1415
|
}
|
|
1411
|
-
export namespace
|
|
1416
|
+
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1412
1417
|
const name_91: string;
|
|
1413
1418
|
export { name_91 as name };
|
|
1414
1419
|
const labelKey_90: string;
|
|
1415
1420
|
export { labelKey_90 as labelKey };
|
|
1416
|
-
const
|
|
1417
|
-
export {
|
|
1418
|
-
const
|
|
1419
|
-
export {
|
|
1421
|
+
const value_89: string;
|
|
1422
|
+
export { value_89 as value };
|
|
1423
|
+
const sort_81: string;
|
|
1424
|
+
export { sort_81 as sort };
|
|
1425
|
+
const formatter_48: string;
|
|
1426
|
+
export { formatter_48 as formatter };
|
|
1427
|
+
export namespace formatterOpts_8 {
|
|
1428
|
+
export namespace options_1 {
|
|
1429
|
+
const internal_1: boolean;
|
|
1430
|
+
export { internal_1 as internal };
|
|
1431
|
+
}
|
|
1432
|
+
export { options_1 as options };
|
|
1433
|
+
}
|
|
1434
|
+
export { formatterOpts_8 as formatterOpts };
|
|
1420
1435
|
}
|
|
1421
|
-
export namespace
|
|
1436
|
+
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1422
1437
|
const name_92: string;
|
|
1423
1438
|
export { name_92 as name };
|
|
1424
1439
|
const labelKey_91: string;
|
|
1425
1440
|
export { labelKey_91 as labelKey };
|
|
1426
|
-
const
|
|
1427
|
-
export {
|
|
1428
|
-
const
|
|
1429
|
-
export {
|
|
1430
|
-
const
|
|
1431
|
-
export {
|
|
1441
|
+
const value_90: string;
|
|
1442
|
+
export { value_90 as value };
|
|
1443
|
+
const sort_82: string;
|
|
1444
|
+
export { sort_82 as sort };
|
|
1445
|
+
const search_10: string;
|
|
1446
|
+
export { search_10 as search };
|
|
1447
|
+
const formatter_49: string;
|
|
1448
|
+
export { formatter_49 as formatter };
|
|
1432
1449
|
export namespace formatterOpts_9 {
|
|
1433
|
-
export namespace
|
|
1434
|
-
const
|
|
1435
|
-
export {
|
|
1450
|
+
export namespace options_2 {
|
|
1451
|
+
const internal_2: boolean;
|
|
1452
|
+
export { internal_2 as internal };
|
|
1436
1453
|
}
|
|
1437
|
-
export {
|
|
1454
|
+
export { options_2 as options };
|
|
1438
1455
|
}
|
|
1439
1456
|
export { formatterOpts_9 as formatterOpts };
|
|
1440
1457
|
}
|
|
1441
|
-
export namespace
|
|
1458
|
+
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1442
1459
|
const name_93: string;
|
|
1443
1460
|
export { name_93 as name };
|
|
1444
1461
|
const labelKey_92: string;
|
|
1445
1462
|
export { labelKey_92 as labelKey };
|
|
1463
|
+
const value_91: string;
|
|
1464
|
+
export { value_91 as value };
|
|
1465
|
+
const sort_83: string;
|
|
1466
|
+
export { sort_83 as sort };
|
|
1467
|
+
}
|
|
1468
|
+
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1469
|
+
const name_94: string;
|
|
1470
|
+
export { name_94 as name };
|
|
1471
|
+
const labelKey_93: string;
|
|
1472
|
+
export { labelKey_93 as labelKey };
|
|
1446
1473
|
const value_92: string;
|
|
1447
1474
|
export { value_92 as value };
|
|
1448
1475
|
const sort_84: string;
|
|
1449
1476
|
export { sort_84 as sort };
|
|
1450
|
-
const
|
|
1451
|
-
export {
|
|
1452
|
-
export namespace formatterOpts_10 {
|
|
1453
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1454
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1455
|
-
}
|
|
1456
|
-
export { formatterOpts_10 as formatterOpts };
|
|
1477
|
+
const search_11: string;
|
|
1478
|
+
export { search_11 as search };
|
|
1457
1479
|
}
|
|
1458
|
-
export namespace
|
|
1459
|
-
const
|
|
1460
|
-
export {
|
|
1461
|
-
const
|
|
1462
|
-
export {
|
|
1480
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1481
|
+
const name_95: string;
|
|
1482
|
+
export { name_95 as name };
|
|
1483
|
+
const labelKey_94: string;
|
|
1484
|
+
export { labelKey_94 as labelKey };
|
|
1463
1485
|
const value_93: string;
|
|
1464
1486
|
export { value_93 as value };
|
|
1465
1487
|
const sort_85: string;
|
|
1466
1488
|
export { sort_85 as sort };
|
|
1467
|
-
const formatter_48: string;
|
|
1468
|
-
export { formatter_48 as formatter };
|
|
1469
1489
|
}
|
|
1470
|
-
export namespace
|
|
1471
|
-
const
|
|
1472
|
-
export {
|
|
1473
|
-
const
|
|
1474
|
-
export {
|
|
1490
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1491
|
+
const name_96: string;
|
|
1492
|
+
export { name_96 as name };
|
|
1493
|
+
const labelKey_95: string;
|
|
1494
|
+
export { labelKey_95 as labelKey };
|
|
1475
1495
|
const value_94: string;
|
|
1476
1496
|
export { value_94 as value };
|
|
1477
1497
|
const sort_86: string;
|
|
1478
1498
|
export { sort_86 as sort };
|
|
1479
|
-
const
|
|
1480
|
-
export {
|
|
1481
|
-
export namespace
|
|
1482
|
-
export namespace
|
|
1483
|
-
const
|
|
1484
|
-
export {
|
|
1499
|
+
const formatter_50: string;
|
|
1500
|
+
export { formatter_50 as formatter };
|
|
1501
|
+
export namespace formatterOpts_10 {
|
|
1502
|
+
export namespace options_3 {
|
|
1503
|
+
const internal_3: boolean;
|
|
1504
|
+
export { internal_3 as internal };
|
|
1485
1505
|
}
|
|
1486
|
-
export {
|
|
1506
|
+
export { options_3 as options };
|
|
1487
1507
|
}
|
|
1488
|
-
export {
|
|
1508
|
+
export { formatterOpts_10 as formatterOpts };
|
|
1489
1509
|
}
|
|
1490
|
-
export namespace
|
|
1491
|
-
const
|
|
1492
|
-
export {
|
|
1493
|
-
const
|
|
1494
|
-
export {
|
|
1510
|
+
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1511
|
+
const name_97: string;
|
|
1512
|
+
export { name_97 as name };
|
|
1513
|
+
const labelKey_96: string;
|
|
1514
|
+
export { labelKey_96 as labelKey };
|
|
1495
1515
|
const value_95: string;
|
|
1496
1516
|
export { value_95 as value };
|
|
1497
|
-
const sort_87: string
|
|
1517
|
+
const sort_87: string;
|
|
1498
1518
|
export { sort_87 as sort };
|
|
1499
|
-
const search_11: string[];
|
|
1500
|
-
export { search_11 as search };
|
|
1501
|
-
const formatter_50: string;
|
|
1502
|
-
export { formatter_50 as formatter };
|
|
1503
|
-
const width_24: number;
|
|
1504
|
-
export { width_24 as width };
|
|
1505
|
-
}
|
|
1506
|
-
export namespace GROUP_ROLE_NAME {
|
|
1507
|
-
const name_97: string;
|
|
1508
|
-
export { name_97 as name };
|
|
1509
|
-
const labelKey_94: string;
|
|
1510
|
-
export { labelKey_94 as labelKey };
|
|
1511
|
-
const value_96: string;
|
|
1512
|
-
export { value_96 as value };
|
|
1513
1519
|
const formatter_51: string;
|
|
1514
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 };
|
|
1515
1526
|
}
|
|
1516
|
-
export namespace
|
|
1527
|
+
export namespace RECEIVER_PROVIDERS {
|
|
1517
1528
|
const name_98: string;
|
|
1518
1529
|
export { name_98 as name };
|
|
1519
|
-
const
|
|
1520
|
-
export {
|
|
1521
|
-
const
|
|
1522
|
-
export {
|
|
1530
|
+
const label_1: string;
|
|
1531
|
+
export { label_1 as label };
|
|
1532
|
+
const value_96: string;
|
|
1533
|
+
export { value_96 as value };
|
|
1523
1534
|
const sort_88: string;
|
|
1524
1535
|
export { sort_88 as sort };
|
|
1536
|
+
const formatter_52: string;
|
|
1537
|
+
export { formatter_52 as formatter };
|
|
1525
1538
|
}
|
|
1526
|
-
export namespace
|
|
1539
|
+
export namespace CONFIGURED_RECEIVER {
|
|
1527
1540
|
const name_99: string;
|
|
1528
1541
|
export { name_99 as name };
|
|
1529
|
-
const
|
|
1530
|
-
export {
|
|
1531
|
-
const
|
|
1532
|
-
export {
|
|
1542
|
+
const label_2: string;
|
|
1543
|
+
export { label_2 as label };
|
|
1544
|
+
const value_97: string;
|
|
1545
|
+
export { value_97 as value };
|
|
1533
1546
|
const sort_89: string;
|
|
1534
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 };
|
|
1535
1558
|
}
|
|
1536
|
-
export namespace
|
|
1559
|
+
export namespace GROUP_NAME {
|
|
1537
1560
|
const name_100: string;
|
|
1538
1561
|
export { name_100 as name };
|
|
1539
1562
|
const labelKey_97: string;
|
|
1540
1563
|
export { labelKey_97 as labelKey };
|
|
1541
|
-
const
|
|
1542
|
-
export {
|
|
1543
|
-
const sort_90: string;
|
|
1564
|
+
const value_98: string;
|
|
1565
|
+
export { value_98 as value };
|
|
1566
|
+
const sort_90: string[];
|
|
1544
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 };
|
|
1545
1574
|
}
|
|
1546
|
-
export namespace
|
|
1575
|
+
export namespace GROUP_ROLE_NAME {
|
|
1547
1576
|
const name_101: string;
|
|
1548
1577
|
export { name_101 as name };
|
|
1549
1578
|
const labelKey_98: string;
|
|
1550
1579
|
export { labelKey_98 as labelKey };
|
|
1551
|
-
const
|
|
1552
|
-
export {
|
|
1553
|
-
const
|
|
1554
|
-
export {
|
|
1555
|
-
}
|
|
1556
|
-
export namespace EXPIRY_STATE {
|
|
1557
|
-
const value_101: string;
|
|
1558
|
-
export { value_101 as value };
|
|
1559
|
-
const formatter_52: string;
|
|
1560
|
-
export { formatter_52 as formatter };
|
|
1580
|
+
const value_99: string;
|
|
1581
|
+
export { value_99 as value };
|
|
1582
|
+
const formatter_55: string;
|
|
1583
|
+
export { formatter_55 as formatter };
|
|
1561
1584
|
}
|
|
1562
|
-
export namespace
|
|
1585
|
+
export namespace HPA_REFERENCE {
|
|
1563
1586
|
const name_102: string;
|
|
1564
1587
|
export { name_102 as name };
|
|
1565
1588
|
const labelKey_99: string;
|
|
1566
1589
|
export { labelKey_99 as labelKey };
|
|
1567
|
-
const
|
|
1568
|
-
export {
|
|
1569
|
-
const
|
|
1570
|
-
export {
|
|
1571
|
-
const width_25: number;
|
|
1572
|
-
export { width_25 as width };
|
|
1590
|
+
const value_100: string;
|
|
1591
|
+
export { value_100 as value };
|
|
1592
|
+
const sort_91: string;
|
|
1593
|
+
export { sort_91 as sort };
|
|
1573
1594
|
}
|
|
1574
|
-
export namespace
|
|
1595
|
+
export namespace MIN_REPLICA {
|
|
1575
1596
|
const name_103: string;
|
|
1576
1597
|
export { name_103 as name };
|
|
1577
|
-
const value_102: string;
|
|
1578
|
-
export { value_102 as value };
|
|
1579
1598
|
const labelKey_100: string;
|
|
1580
1599
|
export { labelKey_100 as labelKey };
|
|
1581
|
-
const
|
|
1582
|
-
export {
|
|
1583
|
-
const
|
|
1584
|
-
export {
|
|
1585
|
-
const sort_93: string[];
|
|
1586
|
-
export { sort_93 as sort };
|
|
1587
|
-
const width_26: number;
|
|
1588
|
-
export { width_26 as width };
|
|
1589
|
-
}
|
|
1590
|
-
export namespace SCOPE_NORMAN {
|
|
1591
|
-
const value_103: string;
|
|
1592
|
-
export { value_103 as value };
|
|
1593
|
-
const sort_94: string[];
|
|
1594
|
-
export { sort_94 as sort };
|
|
1600
|
+
const value_101: string;
|
|
1601
|
+
export { value_101 as value };
|
|
1602
|
+
const sort_92: string;
|
|
1603
|
+
export { sort_92 as sort };
|
|
1595
1604
|
}
|
|
1596
|
-
export namespace
|
|
1605
|
+
export namespace MAX_REPLICA {
|
|
1597
1606
|
const name_104: string;
|
|
1598
1607
|
export { name_104 as name };
|
|
1599
|
-
const value_104: string;
|
|
1600
|
-
export { value_104 as value };
|
|
1601
1608
|
const labelKey_101: string;
|
|
1602
1609
|
export { labelKey_101 as labelKey };
|
|
1603
|
-
const
|
|
1604
|
-
export {
|
|
1605
|
-
const
|
|
1606
|
-
export {
|
|
1607
|
-
const width_27: number;
|
|
1608
|
-
export { width_27 as width };
|
|
1609
|
-
const formatter_53: string;
|
|
1610
|
-
export { formatter_53 as formatter };
|
|
1610
|
+
const value_102: string;
|
|
1611
|
+
export { value_102 as value };
|
|
1612
|
+
const sort_93: string;
|
|
1613
|
+
export { sort_93 as sort };
|
|
1611
1614
|
}
|
|
1612
|
-
export namespace
|
|
1615
|
+
export namespace CURRENT_REPLICA {
|
|
1613
1616
|
const name_105: string;
|
|
1614
1617
|
export { name_105 as name };
|
|
1615
1618
|
const labelKey_102: string;
|
|
1616
1619
|
export { labelKey_102 as labelKey };
|
|
1617
|
-
const
|
|
1618
|
-
export {
|
|
1619
|
-
const
|
|
1620
|
-
export {
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
const
|
|
1624
|
-
export {
|
|
1625
|
-
const
|
|
1626
|
-
export {
|
|
1620
|
+
const value_103: string;
|
|
1621
|
+
export { value_103 as value };
|
|
1622
|
+
const sort_94: string;
|
|
1623
|
+
export { sort_94 as sort };
|
|
1624
|
+
}
|
|
1625
|
+
export namespace EXPIRY_STATE {
|
|
1626
|
+
const value_104: string;
|
|
1627
|
+
export { value_104 as value };
|
|
1628
|
+
const formatter_56: string;
|
|
1629
|
+
export { formatter_56 as formatter };
|
|
1627
1630
|
}
|
|
1628
|
-
export namespace
|
|
1631
|
+
export namespace ACCESS_KEY {
|
|
1629
1632
|
const name_106: string;
|
|
1630
1633
|
export { name_106 as name };
|
|
1631
|
-
const value_106: string;
|
|
1632
|
-
export { value_106 as value };
|
|
1633
1634
|
const labelKey_103: string;
|
|
1634
1635
|
export { labelKey_103 as labelKey };
|
|
1636
|
+
const align_15: string;
|
|
1637
|
+
export { align_15 as align };
|
|
1638
|
+
const sort_95: string[];
|
|
1639
|
+
export { sort_95 as sort };
|
|
1640
|
+
const width_28: number;
|
|
1641
|
+
export { width_28 as width };
|
|
1635
1642
|
}
|
|
1636
|
-
export namespace
|
|
1643
|
+
export namespace SCOPE {
|
|
1637
1644
|
const name_107: string;
|
|
1638
1645
|
export { name_107 as name };
|
|
1646
|
+
const value_105: string;
|
|
1647
|
+
export { value_105 as value };
|
|
1639
1648
|
const labelKey_104: string;
|
|
1640
1649
|
export { labelKey_104 as labelKey };
|
|
1641
|
-
const
|
|
1642
|
-
export {
|
|
1643
|
-
const
|
|
1644
|
-
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 {
|
|
1660
|
+
const value_106: string;
|
|
1661
|
+
export { value_106 as value };
|
|
1645
1662
|
const sort_97: string[];
|
|
1646
1663
|
export { sort_97 as sort };
|
|
1647
|
-
const formatter_55: string;
|
|
1648
|
-
export { formatter_55 as formatter };
|
|
1649
|
-
export namespace formatterOpts_12 {
|
|
1650
|
-
const prefix: string;
|
|
1651
|
-
}
|
|
1652
|
-
export { formatterOpts_12 as formatterOpts };
|
|
1653
1664
|
}
|
|
1654
|
-
export namespace
|
|
1665
|
+
export namespace EXPIRES {
|
|
1655
1666
|
const name_108: string;
|
|
1656
1667
|
export { name_108 as name };
|
|
1668
|
+
const value_107: string;
|
|
1669
|
+
export { value_107 as value };
|
|
1657
1670
|
const labelKey_105: string;
|
|
1658
1671
|
export { labelKey_105 as labelKey };
|
|
1672
|
+
const align_17: string;
|
|
1673
|
+
export { align_17 as align };
|
|
1659
1674
|
const sort_98: string[];
|
|
1660
1675
|
export { sort_98 as sort };
|
|
1661
|
-
const
|
|
1662
|
-
export {
|
|
1663
|
-
const
|
|
1664
|
-
export {
|
|
1665
|
-
const _default_1: string;
|
|
1666
|
-
export { _default_1 as default };
|
|
1667
|
-
const formatter_56: string;
|
|
1668
|
-
export { formatter_56 as formatter };
|
|
1676
|
+
const width_30: number;
|
|
1677
|
+
export { width_30 as width };
|
|
1678
|
+
const formatter_57: string;
|
|
1679
|
+
export { formatter_57 as formatter };
|
|
1669
1680
|
}
|
|
1670
|
-
export namespace
|
|
1681
|
+
export namespace RESTART {
|
|
1671
1682
|
const name_109: string;
|
|
1672
1683
|
export { name_109 as name };
|
|
1673
1684
|
const labelKey_106: string;
|
|
1674
1685
|
export { labelKey_106 as labelKey };
|
|
1675
|
-
const
|
|
1676
|
-
export {
|
|
1686
|
+
const value_108: string;
|
|
1687
|
+
export { value_108 as value };
|
|
1677
1688
|
const sort_99: string[];
|
|
1678
1689
|
export { sort_99 as sort };
|
|
1679
|
-
const
|
|
1680
|
-
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 };
|
|
1681
1696
|
}
|
|
1682
|
-
export namespace
|
|
1697
|
+
export namespace ROLE {
|
|
1683
1698
|
const name_110: string;
|
|
1684
1699
|
export { name_110 as name };
|
|
1700
|
+
const value_109: string;
|
|
1701
|
+
export { value_109 as value };
|
|
1685
1702
|
const labelKey_107: string;
|
|
1686
1703
|
export { labelKey_107 as labelKey };
|
|
1687
|
-
const value_110: string;
|
|
1688
|
-
export { value_110 as value };
|
|
1689
|
-
const sort_100: string[];
|
|
1690
|
-
export { sort_100 as sort };
|
|
1691
|
-
const formatter_58: string;
|
|
1692
|
-
export { formatter_58 as formatter };
|
|
1693
|
-
const dashIfEmpty_7: boolean;
|
|
1694
|
-
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1695
1704
|
}
|
|
1696
|
-
export namespace
|
|
1705
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1697
1706
|
const name_111: string;
|
|
1698
1707
|
export { name_111 as name };
|
|
1699
1708
|
const labelKey_108: string;
|
|
1700
1709
|
export { labelKey_108 as labelKey };
|
|
1701
|
-
const
|
|
1702
|
-
export {
|
|
1703
|
-
const
|
|
1704
|
-
export {
|
|
1710
|
+
const value_110: string;
|
|
1711
|
+
export { value_110 as value };
|
|
1712
|
+
const align_19: string;
|
|
1713
|
+
export { align_19 as align };
|
|
1714
|
+
const sort_100: string[];
|
|
1715
|
+
export { sort_100 as sort };
|
|
1705
1716
|
const formatter_59: string;
|
|
1706
1717
|
export { formatter_59 as formatter };
|
|
1707
|
-
|
|
1708
|
-
|
|
1718
|
+
export namespace formatterOpts_13 {
|
|
1719
|
+
const prefix: string;
|
|
1720
|
+
}
|
|
1721
|
+
export { formatterOpts_13 as formatterOpts };
|
|
1709
1722
|
}
|
|
1710
|
-
export namespace
|
|
1723
|
+
export namespace STATE_NORMAN {
|
|
1711
1724
|
const name_112: string;
|
|
1712
1725
|
export { name_112 as name };
|
|
1713
1726
|
const labelKey_109: string;
|
|
1714
1727
|
export { labelKey_109 as labelKey };
|
|
1715
|
-
const
|
|
1716
|
-
export {
|
|
1728
|
+
const sort_101: string[];
|
|
1729
|
+
export { sort_101 as sort };
|
|
1730
|
+
const value_111: string;
|
|
1731
|
+
export { value_111 as value };
|
|
1732
|
+
const width_32: number;
|
|
1733
|
+
export { width_32 as width };
|
|
1734
|
+
const _default_3: string;
|
|
1735
|
+
export { _default_3 as default };
|
|
1717
1736
|
const formatter_60: string;
|
|
1718
1737
|
export { formatter_60 as formatter };
|
|
1719
|
-
export namespace formatterOpts_13 {
|
|
1720
|
-
const addSuffix_2: boolean;
|
|
1721
|
-
export { addSuffix_2 as addSuffix };
|
|
1722
|
-
}
|
|
1723
|
-
export { formatterOpts_13 as formatterOpts };
|
|
1724
|
-
const sort_102: string[];
|
|
1725
|
-
export { sort_102 as sort };
|
|
1726
1738
|
}
|
|
1727
|
-
export namespace
|
|
1739
|
+
export namespace KUBE_NODE_OS {
|
|
1728
1740
|
const name_113: string;
|
|
1729
1741
|
export { name_113 as name };
|
|
1730
1742
|
const labelKey_110: string;
|
|
1731
1743
|
export { labelKey_110 as labelKey };
|
|
1744
|
+
const value_112: string;
|
|
1745
|
+
export { value_112 as value };
|
|
1746
|
+
const sort_102: string[];
|
|
1747
|
+
export { sort_102 as sort };
|
|
1748
|
+
const formatter_61: string;
|
|
1749
|
+
export { formatter_61 as formatter };
|
|
1750
|
+
}
|
|
1751
|
+
export namespace MACHINE_NODE_OS {
|
|
1752
|
+
const name_114: string;
|
|
1753
|
+
export { name_114 as name };
|
|
1754
|
+
const labelKey_111: string;
|
|
1755
|
+
export { labelKey_111 as labelKey };
|
|
1732
1756
|
const value_113: string;
|
|
1733
1757
|
export { value_113 as value };
|
|
1734
1758
|
const sort_103: string[];
|
|
1735
1759
|
export { sort_103 as sort };
|
|
1736
|
-
const
|
|
1737
|
-
export {
|
|
1760
|
+
const formatter_62: string;
|
|
1761
|
+
export { formatter_62 as formatter };
|
|
1762
|
+
const dashIfEmpty_7: boolean;
|
|
1763
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1764
|
+
}
|
|
1765
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1766
|
+
const name_115: string;
|
|
1767
|
+
export { name_115 as name };
|
|
1768
|
+
const labelKey_112: string;
|
|
1769
|
+
export { labelKey_112 as labelKey };
|
|
1770
|
+
const value_114: string;
|
|
1771
|
+
export { value_114 as value };
|
|
1772
|
+
const sort_104: string[];
|
|
1773
|
+
export { sort_104 as sort };
|
|
1774
|
+
const formatter_63: string;
|
|
1775
|
+
export { formatter_63 as formatter };
|
|
1776
|
+
const dashIfEmpty_8: boolean;
|
|
1777
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1778
|
+
}
|
|
1779
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1780
|
+
const name_116: string;
|
|
1781
|
+
export { name_116 as name };
|
|
1782
|
+
const labelKey_113: string;
|
|
1783
|
+
export { labelKey_113 as labelKey };
|
|
1784
|
+
const value_115: string;
|
|
1785
|
+
export { value_115 as value };
|
|
1786
|
+
const formatter_64: string;
|
|
1787
|
+
export { formatter_64 as formatter };
|
|
1788
|
+
export namespace formatterOpts_14 {
|
|
1789
|
+
const addSuffix_2: boolean;
|
|
1790
|
+
export { addSuffix_2 as addSuffix };
|
|
1791
|
+
}
|
|
1792
|
+
export { formatterOpts_14 as formatterOpts };
|
|
1793
|
+
const sort_105: string[];
|
|
1794
|
+
export { sort_105 as sort };
|
|
1795
|
+
}
|
|
1796
|
+
export namespace FLEET_BUNDLE_TYPE {
|
|
1797
|
+
const name_117: string;
|
|
1798
|
+
export { name_117 as name };
|
|
1799
|
+
const labelKey_114: string;
|
|
1800
|
+
export { labelKey_114 as labelKey };
|
|
1801
|
+
const value_116: string;
|
|
1802
|
+
export { value_116 as value };
|
|
1803
|
+
const sort_106: string[];
|
|
1804
|
+
export { sort_106 as sort };
|
|
1805
|
+
const width_33: number;
|
|
1806
|
+
export { width_33 as width };
|
|
1807
|
+
}
|
|
1808
|
+
export namespace FLEET_REPO_CLUSTERS_READY {
|
|
1809
|
+
const name_118: string;
|
|
1810
|
+
export { name_118 as name };
|
|
1811
|
+
const labelKey_115: string;
|
|
1812
|
+
export { labelKey_115 as labelKey };
|
|
1813
|
+
const value_117: string;
|
|
1814
|
+
export { value_117 as value };
|
|
1815
|
+
const sort_107: string;
|
|
1816
|
+
export { sort_107 as sort };
|
|
1817
|
+
const search_13: boolean;
|
|
1818
|
+
export { search_13 as search };
|
|
1819
|
+
}
|
|
1820
|
+
export namespace FLEET_REPO_TARGET {
|
|
1821
|
+
const name_119: string;
|
|
1822
|
+
export { name_119 as name };
|
|
1823
|
+
const labelKey_116: string;
|
|
1824
|
+
export { labelKey_116 as labelKey };
|
|
1825
|
+
const value_118: string;
|
|
1826
|
+
export { value_118 as value };
|
|
1827
|
+
const sort_108: string[];
|
|
1828
|
+
export { sort_108 as sort };
|
|
1829
|
+
}
|
|
1830
|
+
export namespace FLEET_REPO {
|
|
1831
|
+
const name_120: string;
|
|
1832
|
+
export { name_120 as name };
|
|
1833
|
+
const labelKey_117: string;
|
|
1834
|
+
export { labelKey_117 as labelKey };
|
|
1835
|
+
const value_119: string;
|
|
1836
|
+
export { value_119 as value };
|
|
1837
|
+
const sort_109: string;
|
|
1838
|
+
export { sort_109 as sort };
|
|
1839
|
+
const search_14: string[];
|
|
1840
|
+
export { search_14 as search };
|
|
1738
1841
|
}
|
|
1739
1842
|
export const UI_PLUGIN_CATALOG: ({
|
|
1740
1843
|
name: string;
|
|
@@ -1773,6 +1876,7 @@ export const UI_PLUGIN_CATALOG: ({
|
|
|
1773
1876
|
declare module '@shell/config/types' {
|
|
1774
1877
|
export namespace STEVE {
|
|
1775
1878
|
const PREFERENCE: string;
|
|
1879
|
+
const SCHEMA_DEFINITION: string;
|
|
1776
1880
|
}
|
|
1777
1881
|
export namespace NORMAN {
|
|
1778
1882
|
const APP: string;
|
|
@@ -1790,12 +1894,15 @@ export namespace NORMAN {
|
|
|
1790
1894
|
const PRINCIPAL: string;
|
|
1791
1895
|
const PROJECT: string;
|
|
1792
1896
|
const PROJECT_ROLE_TEMPLATE_BINDING: string;
|
|
1897
|
+
const SETTING: string;
|
|
1793
1898
|
namespace SPOOFED {
|
|
1794
1899
|
const GROUP_PRINCIPAL: string;
|
|
1795
1900
|
}
|
|
1796
1901
|
const ROLE_TEMPLATE: string;
|
|
1797
1902
|
const TOKEN: string;
|
|
1798
1903
|
const USER: string;
|
|
1904
|
+
const KONTAINER_DRIVER: string;
|
|
1905
|
+
const NODE_DRIVER: string;
|
|
1799
1906
|
}
|
|
1800
1907
|
export namespace PUBLIC {
|
|
1801
1908
|
const AUTH_PROVIDER: string;
|
|
@@ -1815,8 +1922,6 @@ export const NODE: "node";
|
|
|
1815
1922
|
export const NETWORK_POLICY: "networking.k8s.io.networkpolicy";
|
|
1816
1923
|
export const POD: "pod";
|
|
1817
1924
|
export const POD_DISRUPTION_BUDGET: "policy.poddisruptionbudget";
|
|
1818
|
-
export const PSP: "policy.podsecuritypolicy";
|
|
1819
|
-
export const PSPS: "policy.podsecuritypolicies";
|
|
1820
1925
|
export const PV: "persistentvolume";
|
|
1821
1926
|
export const PVC: "persistentvolumeclaim";
|
|
1822
1927
|
export const RESOURCE_QUOTA: "resourcequota";
|
|
@@ -1887,8 +1992,6 @@ export namespace MONITORING {
|
|
|
1887
1992
|
const RESPONDER: string;
|
|
1888
1993
|
const ROUTE: string;
|
|
1889
1994
|
const ROUTE_SPEC: string;
|
|
1890
|
-
const ALERTMANAGERCONFIG_RECEIVER_SPEC: string;
|
|
1891
|
-
const ALERTMANAGERCONFIG_ROUTE_SPEC: string;
|
|
1892
1995
|
}
|
|
1893
1996
|
export { SPOOFED_1 as SPOOFED };
|
|
1894
1997
|
}
|
|
@@ -1911,11 +2014,13 @@ export namespace MANAGEMENT {
|
|
|
1911
2014
|
const CLUSTER_ROLE_TEMPLATE_BINDING_1: string;
|
|
1912
2015
|
export { CLUSTER_ROLE_TEMPLATE_BINDING_1 as CLUSTER_ROLE_TEMPLATE_BINDING };
|
|
1913
2016
|
export const FEATURE: string;
|
|
1914
|
-
|
|
2017
|
+
const KONTAINER_DRIVER_1: string;
|
|
2018
|
+
export { KONTAINER_DRIVER_1 as KONTAINER_DRIVER };
|
|
1915
2019
|
export const MULTI_CLUSTER_APP: string;
|
|
1916
2020
|
const NODE_2: string;
|
|
1917
2021
|
export { NODE_2 as NODE };
|
|
1918
|
-
|
|
2022
|
+
const NODE_DRIVER_1: string;
|
|
2023
|
+
export { NODE_DRIVER_1 as NODE_DRIVER };
|
|
1919
2024
|
const NODE_POOL_1: string;
|
|
1920
2025
|
export { NODE_POOL_1 as NODE_POOL };
|
|
1921
2026
|
export const NODE_TEMPLATE: string;
|
|
@@ -1925,7 +2030,8 @@ export namespace MANAGEMENT {
|
|
|
1925
2030
|
export { PROJECT_ROLE_TEMPLATE_BINDING_1 as PROJECT_ROLE_TEMPLATE_BINDING };
|
|
1926
2031
|
const ROLE_TEMPLATE_1: string;
|
|
1927
2032
|
export { ROLE_TEMPLATE_1 as ROLE_TEMPLATE };
|
|
1928
|
-
|
|
2033
|
+
const SETTING_1: string;
|
|
2034
|
+
export { SETTING_1 as SETTING };
|
|
1929
2035
|
const USER_1: string;
|
|
1930
2036
|
export { USER_1 as USER };
|
|
1931
2037
|
const TOKEN_1: string;
|
|
@@ -1934,14 +2040,13 @@ export namespace MANAGEMENT {
|
|
|
1934
2040
|
export { GLOBAL_ROLE_1 as GLOBAL_ROLE };
|
|
1935
2041
|
const GLOBAL_ROLE_BINDING_1: string;
|
|
1936
2042
|
export { GLOBAL_ROLE_BINDING_1 as GLOBAL_ROLE_BINDING };
|
|
1937
|
-
export const POD_SECURITY_POLICY_TEMPLATE: string;
|
|
1938
|
-
export const PSP_TEMPLATE_BINDING: string;
|
|
1939
2043
|
export const PSA: string;
|
|
1940
2044
|
export const MANAGED_CHART: string;
|
|
1941
2045
|
export const USER_NOTIFICATION: string;
|
|
1942
2046
|
export const GLOBAL_DNS_PROVIDER: string;
|
|
1943
2047
|
export const RKE_TEMPLATE: string;
|
|
1944
2048
|
export const RKE_TEMPLATE_REVISION: string;
|
|
2049
|
+
export const CLUSTER_PROXY_CONFIG: string;
|
|
1945
2050
|
}
|
|
1946
2051
|
export namespace CAPI {
|
|
1947
2052
|
const CAPI_CLUSTER: string;
|
|
@@ -2029,6 +2134,7 @@ export namespace VIRTUAL_TYPES {
|
|
|
2029
2134
|
const CLUSTER_MEMBERS: string;
|
|
2030
2135
|
const PROJECT_NAMESPACES: string;
|
|
2031
2136
|
const NAMESPACES: string;
|
|
2137
|
+
const JWT_AUTHENTICATION: string;
|
|
2032
2138
|
}
|
|
2033
2139
|
export namespace HCI {
|
|
2034
2140
|
const CLUSTER_3: string;
|
|
@@ -2037,8 +2143,8 @@ export namespace HCI {
|
|
|
2037
2143
|
export { DASHBOARD_1 as DASHBOARD };
|
|
2038
2144
|
export const IMAGE: string;
|
|
2039
2145
|
export const VGPU_DEVICE: string;
|
|
2040
|
-
const
|
|
2041
|
-
export {
|
|
2146
|
+
const SETTING_2: string;
|
|
2147
|
+
export { SETTING_2 as SETTING };
|
|
2042
2148
|
export const HARVESTER_CONFIG: string;
|
|
2043
2149
|
}
|
|
2044
2150
|
export const VIRTUAL_HARVESTER_PROVIDER: "harvester";
|
|
@@ -2055,6 +2161,16 @@ export namespace AUTH_TYPE {
|
|
|
2055
2161
|
const _S3: string;
|
|
2056
2162
|
}
|
|
2057
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";
|
|
2058
2174
|
}
|
|
2059
2175
|
|
|
2060
2176
|
// @shell/mixins/create-edit-view/impl
|
|
@@ -2116,35 +2232,97 @@ export default _default;
|
|
|
2116
2232
|
// @shell/mixins/create-edit-view
|
|
2117
2233
|
|
|
2118
2234
|
declare module '@shell/mixins/create-edit-view' {
|
|
2119
|
-
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
|
+
}, {}, {
|
|
2120
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;
|
|
2121
2282
|
}, {
|
|
2122
2283
|
done(): any;
|
|
2123
2284
|
conflict(): Promise<any>;
|
|
2124
2285
|
save(buttonDone: any, url: any, depth?: number): any;
|
|
2125
2286
|
actuallySave(url: any): Promise<void>;
|
|
2126
2287
|
setErrors(errors: any): void;
|
|
2127
|
-
}, {
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
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;
|
|
2144
2320
|
doneEvent: boolean;
|
|
2145
|
-
|
|
2321
|
+
initialValue: Record<string, any>;
|
|
2322
|
+
liveValue: Record<string, any>;
|
|
2323
|
+
realMode: string;
|
|
2324
|
+
}>;
|
|
2146
2325
|
export default _default;
|
|
2147
|
-
import Vue from "vue";
|
|
2148
2326
|
}
|
|
2149
2327
|
|
|
2150
2328
|
// @shell/models/namespace
|
|
@@ -2267,7 +2445,6 @@ export function loadSchemas(ctx: any, watch?: boolean): Promise<any>;
|
|
|
2267
2445
|
export const _ALL: "all";
|
|
2268
2446
|
export const _MERGE: "merge";
|
|
2269
2447
|
export const _MULTI: "multi";
|
|
2270
|
-
export const _ALL_IF_AUTHED: "allIfAuthed";
|
|
2271
2448
|
export const _NONE: "none";
|
|
2272
2449
|
declare namespace _default {
|
|
2273
2450
|
export function request(): never;
|
|
@@ -2281,13 +2458,41 @@ declare namespace _default {
|
|
|
2281
2458
|
type: any;
|
|
2282
2459
|
opt: any;
|
|
2283
2460
|
}): Promise<never>;
|
|
2461
|
+
/**
|
|
2462
|
+
*
|
|
2463
|
+
* @param {*} ctx
|
|
2464
|
+
* @param { {type: string, opt: ActionFindPageArgs} } opt
|
|
2465
|
+
*/
|
|
2284
2466
|
export function findAll(ctx: any, { type, opt }: {
|
|
2285
|
-
type:
|
|
2286
|
-
opt:
|
|
2467
|
+
type: string;
|
|
2468
|
+
opt: ActionFindPageArgs;
|
|
2287
2469
|
}): Promise<any>;
|
|
2470
|
+
/**
|
|
2471
|
+
*
|
|
2472
|
+
* @param {*} ctx
|
|
2473
|
+
* @param { {type: string, opt: ActionFindPageArgs} } opt
|
|
2474
|
+
*/
|
|
2288
2475
|
export function findAll(ctx: any, { type, opt }: {
|
|
2289
|
-
type:
|
|
2290
|
-
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;
|
|
2291
2496
|
}): Promise<any>;
|
|
2292
2497
|
export function findMatching(ctx: any, { type, selector, opt, namespace }: {
|
|
2293
2498
|
type: any;
|
|
@@ -2335,8 +2540,8 @@ declare namespace _default {
|
|
|
2335
2540
|
export function create(ctx: any, data: any): any;
|
|
2336
2541
|
export function createMany(ctx: any, data: any): any;
|
|
2337
2542
|
export function createMany(ctx: any, data: any): any;
|
|
2338
|
-
export function createPopulated(ctx: any, userData: any): any
|
|
2339
|
-
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>;
|
|
2340
2545
|
export function clone(ctx: any, { resource }?: {
|
|
2341
2546
|
resource: any;
|
|
2342
2547
|
}): any;
|
|
@@ -2482,6 +2687,7 @@ export const KEY_FIELD_FOR: {
|
|
|
2482
2687
|
// @shell/plugins/dashboard-store/resource-class
|
|
2483
2688
|
|
|
2484
2689
|
declare module '@shell/plugins/dashboard-store/resource-class' {
|
|
2690
|
+
export function mapStateToEnum(statusString: any): string;
|
|
2485
2691
|
export function getStatesByType(type?: string): {
|
|
2486
2692
|
info: any[];
|
|
2487
2693
|
error: any[];
|
|
@@ -2492,8 +2698,10 @@ export function getStatesByType(type?: string): {
|
|
|
2492
2698
|
export function getStateLabel(state: any): string;
|
|
2493
2699
|
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
2494
2700
|
export function stateDisplay(state: any): any;
|
|
2701
|
+
export function primaryDisplayStatusFromCount(status: any): string;
|
|
2495
2702
|
export function stateSort(color: any, display: any): string;
|
|
2496
2703
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
2704
|
+
export const DNS_LIKE_TYPES: string[];
|
|
2497
2705
|
export namespace STATES_ENUM {
|
|
2498
2706
|
const IN_USE: string;
|
|
2499
2707
|
const IN_PROGRESS: string;
|
|
@@ -2525,6 +2733,7 @@ export namespace STATES_ENUM {
|
|
|
2525
2733
|
const ERRORING: string;
|
|
2526
2734
|
const ERRORS: string;
|
|
2527
2735
|
const EXPIRED: string;
|
|
2736
|
+
const EXPIRING: string;
|
|
2528
2737
|
const FAIL: string;
|
|
2529
2738
|
const FAILED: string;
|
|
2530
2739
|
const HEALTHY: string;
|
|
@@ -2735,6 +2944,10 @@ export default class Resource {
|
|
|
2735
2944
|
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<void>;
|
|
2736
2945
|
patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
|
|
2737
2946
|
save(...args: any[]): Promise<Resource>;
|
|
2947
|
+
/**
|
|
2948
|
+
* Remove any unwanted properties from the object that will be saved
|
|
2949
|
+
*/
|
|
2950
|
+
cleanForSave(data: any, forNew: any): any;
|
|
2738
2951
|
/**
|
|
2739
2952
|
* Allow to handle the response of the save request
|
|
2740
2953
|
* @param {*} res Full request response
|
|
@@ -2790,6 +3003,7 @@ export default class Resource {
|
|
|
2790
3003
|
cleanYaml(yaml: any, mode?: string): any;
|
|
2791
3004
|
cleanForNew(): void;
|
|
2792
3005
|
cleanForDiff(): void;
|
|
3006
|
+
cleanForDownload(yaml: any): Promise<any>;
|
|
2793
3007
|
yamlForSave(yaml: any): any;
|
|
2794
3008
|
saveYaml(yaml: any): Promise<void>;
|
|
2795
3009
|
_saveYaml(yaml: any): Promise<void>;
|
|
@@ -2798,7 +3012,13 @@ export default class Resource {
|
|
|
2798
3012
|
rules: any[];
|
|
2799
3013
|
}[];
|
|
2800
3014
|
customValidationErrors(data: any, ignorePaths?: any[]): any[];
|
|
2801
|
-
|
|
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[];
|
|
2802
3022
|
get ownersByType(): {};
|
|
2803
3023
|
get owners(): any[];
|
|
2804
3024
|
get details(): ({
|
|
@@ -2854,13 +3074,17 @@ export default class Resource {
|
|
|
2854
3074
|
*/
|
|
2855
3075
|
toSave(): any;
|
|
2856
3076
|
get creationTimestamp(): any;
|
|
3077
|
+
/**
|
|
3078
|
+
* Allows model to specify JSON Paths that should be folded in the YAML editor by default
|
|
3079
|
+
*/
|
|
3080
|
+
get yamlFolding(): any[];
|
|
2857
3081
|
}
|
|
2858
3082
|
}
|
|
2859
3083
|
|
|
2860
3084
|
// @shell/store/features
|
|
2861
3085
|
|
|
2862
3086
|
declare module '@shell/store/features' {
|
|
2863
|
-
export function create(name: any,
|
|
3087
|
+
export function create(name: any, defaultValue: any): any;
|
|
2864
3088
|
export function mapFeature(name: any): {
|
|
2865
3089
|
get(): any;
|
|
2866
3090
|
set(value: any): never;
|
|
@@ -2868,11 +3092,14 @@ export function mapFeature(name: any): {
|
|
|
2868
3092
|
export const MULTI_CLUSTER: any;
|
|
2869
3093
|
export const LEGACY: any;
|
|
2870
3094
|
export const RKE2: any;
|
|
3095
|
+
export const RKE1_UI: any;
|
|
2871
3096
|
export const UNSUPPORTED_STORAGE_DRIVERS: any;
|
|
2872
3097
|
export const FLEET: any;
|
|
2873
3098
|
export const HARVESTER: any;
|
|
2874
3099
|
export const HARVESTER_CONTAINER: any;
|
|
2875
3100
|
export const FLEET_WORKSPACE_BACK: any;
|
|
3101
|
+
export const STEVE_CACHE: any;
|
|
3102
|
+
export const UIEXTENSION: any;
|
|
2876
3103
|
export namespace getters {
|
|
2877
3104
|
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
2878
3105
|
}
|
|
@@ -2880,11 +3107,11 @@ export namespace actions {
|
|
|
2880
3107
|
function loadServer({ rootGetters, dispatch }: {
|
|
2881
3108
|
rootGetters: any;
|
|
2882
3109
|
dispatch: any;
|
|
2883
|
-
}): any
|
|
3110
|
+
}): Promise<any>;
|
|
2884
3111
|
function loadServer({ rootGetters, dispatch }: {
|
|
2885
3112
|
rootGetters: any;
|
|
2886
3113
|
dispatch: any;
|
|
2887
|
-
}): any
|
|
3114
|
+
}): Promise<any>;
|
|
2888
3115
|
}
|
|
2889
3116
|
}
|
|
2890
3117
|
|
|
@@ -2934,7 +3161,6 @@ export const PLUGIN_DEVELOPER: any;
|
|
|
2934
3161
|
export const _RKE1: "rke1";
|
|
2935
3162
|
export const _RKE2: "rke2";
|
|
2936
3163
|
export const PROVISIONER: any;
|
|
2937
|
-
export const PSP_DEPRECATION_BANNER: any;
|
|
2938
3164
|
export const MENU_MAX_CLUSTERS: 10;
|
|
2939
3165
|
export const SCALE_POOL_PROMPT: any;
|
|
2940
3166
|
export function state(): {
|
|
@@ -3004,12 +3230,10 @@ export namespace actions {
|
|
|
3004
3230
|
state: any;
|
|
3005
3231
|
commit: any;
|
|
3006
3232
|
}): void;
|
|
3007
|
-
function loadTheme({
|
|
3008
|
-
state: any;
|
|
3233
|
+
function loadTheme({ dispatch }: {
|
|
3009
3234
|
dispatch: any;
|
|
3010
3235
|
}): void;
|
|
3011
|
-
function loadTheme({
|
|
3012
|
-
state: any;
|
|
3236
|
+
function loadTheme({ dispatch }: {
|
|
3013
3237
|
dispatch: any;
|
|
3014
3238
|
}): void;
|
|
3015
3239
|
function loadServer({ state, dispatch, commit, rootState, rootGetters }: {
|
|
@@ -3069,11 +3293,15 @@ export function loadConfig(dispatch: any): Promise<{
|
|
|
3069
3293
|
secret: any;
|
|
3070
3294
|
}>;
|
|
3071
3295
|
export function updateConfig(dispatch: any, path: any, type: any, updateFn: any): Promise<void>;
|
|
3072
|
-
export function getAllReceivers(dispatch: any): Promise<any[]
|
|
3073
|
-
export function getAllRoutes(dispatch: any): Promise<any[]
|
|
3296
|
+
export function getAllReceivers(dispatch: any): Promise<any[]>;
|
|
3297
|
+
export function getAllRoutes(dispatch: any): Promise<any[]>;
|
|
3074
3298
|
export function createDefaultRouteName(index: any): string;
|
|
3075
3299
|
export function areRoutesSupportedFormat(secret: any): boolean;
|
|
3076
3300
|
export function canCreate(rootGetters: any): any;
|
|
3301
|
+
export function fetchAlertManagerConfigSpecs($store: any): Promise<{
|
|
3302
|
+
receiverSchema: any;
|
|
3303
|
+
routeSchema: any;
|
|
3304
|
+
}>;
|
|
3077
3305
|
export const FILENAME: "alertmanager.yaml";
|
|
3078
3306
|
}
|
|
3079
3307
|
|
|
@@ -3082,6 +3310,40 @@ export const FILENAME: "alertmanager.yaml";
|
|
|
3082
3310
|
declare module '@shell/utils/auth' {
|
|
3083
3311
|
export function openAuthPopup(url: any, provider: any): any;
|
|
3084
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;
|
|
3085
3347
|
export function authProvidersInfo(store: any): Promise<{
|
|
3086
3348
|
nonLocal: any;
|
|
3087
3349
|
enabledLocation: {
|
|
@@ -3112,6 +3374,38 @@ declare function _default(ctx: any, inject: any): void;
|
|
|
3112
3374
|
export default _default;
|
|
3113
3375
|
}
|
|
3114
3376
|
|
|
3377
|
+
// @shell/utils/azure
|
|
3378
|
+
|
|
3379
|
+
declare module '@shell/utils/azure' {
|
|
3380
|
+
export function parseAzureError(err: any): any;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
// @shell/utils/banners
|
|
3384
|
+
|
|
3385
|
+
declare module '@shell/utils/banners' {
|
|
3386
|
+
/**
|
|
3387
|
+
* Get the individual banner settings
|
|
3388
|
+
*/
|
|
3389
|
+
export function getIndividualBanners(store: any): {};
|
|
3390
|
+
/**
|
|
3391
|
+
* Overlay settings from the individual banner settings onto the single banner setting
|
|
3392
|
+
*/
|
|
3393
|
+
export function overlayIndividualBanners(parsedBanner: any, banners: any): void;
|
|
3394
|
+
/**
|
|
3395
|
+
* Get banner font sizes - used to add margins when header and footer banners are present
|
|
3396
|
+
**/
|
|
3397
|
+
export function getGlobalBannerFontSizes(store: any): {
|
|
3398
|
+
headerFont: string;
|
|
3399
|
+
footerFont: string;
|
|
3400
|
+
};
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
// @shell/utils/clipboard
|
|
3404
|
+
|
|
3405
|
+
declare module '@shell/utils/clipboard' {
|
|
3406
|
+
export function copyTextToClipboard(text: any): Promise<void>;
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3115
3409
|
// @shell/utils/cluster
|
|
3116
3410
|
|
|
3117
3411
|
declare module '@shell/utils/cluster' {
|
|
@@ -3184,6 +3478,13 @@ export function keyValueStrings(path: any, delimiter?: any): {
|
|
|
3184
3478
|
};
|
|
3185
3479
|
}
|
|
3186
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
|
+
|
|
3187
3488
|
// @shell/utils/cookie-universal-nuxt
|
|
3188
3489
|
|
|
3189
3490
|
declare module '@shell/utils/cookie-universal-nuxt' {
|
|
@@ -3203,7 +3504,15 @@ export function getBlockDescriptor(value: any, key: any): {
|
|
|
3203
3504
|
header: string;
|
|
3204
3505
|
indentation: string;
|
|
3205
3506
|
};
|
|
3206
|
-
|
|
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;
|
|
3207
3516
|
export function typeMunge(type: any): any;
|
|
3208
3517
|
export function saferDump(obj: any): any;
|
|
3209
3518
|
/**
|
|
@@ -3226,7 +3535,7 @@ export function saferDump(obj: any): any;
|
|
|
3226
3535
|
*/
|
|
3227
3536
|
export function dumpBlock(data: any, options?: {
|
|
3228
3537
|
lineWidth: number;
|
|
3229
|
-
dynamicProperties
|
|
3538
|
+
dynamicProperties?: DumpBlockOptions;
|
|
3230
3539
|
}): any;
|
|
3231
3540
|
export const SIMPLE_TYPES: string[];
|
|
3232
3541
|
export const NEVER_ADD: string[];
|
|
@@ -3386,7 +3695,6 @@ declare namespace _default {
|
|
|
3386
3695
|
export { cronSchedule };
|
|
3387
3696
|
export { podAffinity };
|
|
3388
3697
|
export { roleTemplateRules };
|
|
3389
|
-
export { isHttps };
|
|
3390
3698
|
}
|
|
3391
3699
|
export default _default;
|
|
3392
3700
|
}
|
|
@@ -3446,8 +3754,17 @@ declare module '@shell/utils/error' {
|
|
|
3446
3754
|
export function stringify(err: any): any;
|
|
3447
3755
|
export function exceptionToErrorsArray(err: any): any;
|
|
3448
3756
|
export class ClusterNotFoundError extends Error {
|
|
3757
|
+
static name: string;
|
|
3449
3758
|
constructor(message: any);
|
|
3450
3759
|
}
|
|
3760
|
+
/**
|
|
3761
|
+
* An error occurred and the user should be redirected to a certain location (where this is handled)
|
|
3762
|
+
*/
|
|
3763
|
+
export class RedirectToError extends Error {
|
|
3764
|
+
static name: string;
|
|
3765
|
+
constructor(message: any, url: any);
|
|
3766
|
+
url: any;
|
|
3767
|
+
}
|
|
3451
3768
|
export class ApiError extends Error {
|
|
3452
3769
|
constructor(res: any);
|
|
3453
3770
|
status: any;
|
|
@@ -3462,6 +3779,7 @@ export class ApiError extends Error {
|
|
|
3462
3779
|
url: any;
|
|
3463
3780
|
};
|
|
3464
3781
|
}
|
|
3782
|
+
export function normalizeError(err: any): any;
|
|
3465
3783
|
}
|
|
3466
3784
|
|
|
3467
3785
|
// @shell/utils/favicon
|
|
@@ -3490,19 +3808,6 @@ export function leaderChanges(monitoringVersion: any, dispatch: any, clusterId:
|
|
|
3490
3808
|
export function failedProposals(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
|
|
3491
3809
|
}
|
|
3492
3810
|
|
|
3493
|
-
// @shell/utils/group
|
|
3494
|
-
|
|
3495
|
-
declare module '@shell/utils/group' {
|
|
3496
|
-
export function groupAndFilterOptions(ary: any, filter: any, { defaultFilterKey, groupBy, groupPrefix, itemLabelKey, itemValueKey, itemSortKey, }?: {
|
|
3497
|
-
defaultFilterKey?: string;
|
|
3498
|
-
groupBy?: string;
|
|
3499
|
-
groupPrefix?: string;
|
|
3500
|
-
itemLabelKey?: string;
|
|
3501
|
-
itemValueKey?: string;
|
|
3502
|
-
itemSortKey?: string;
|
|
3503
|
-
}): any;
|
|
3504
|
-
}
|
|
3505
|
-
|
|
3506
3811
|
// @shell/utils/install-redirect
|
|
3507
3812
|
|
|
3508
3813
|
declare module '@shell/utils/install-redirect' {
|
|
@@ -3562,47 +3867,6 @@ export function splitNamespaceFilterKey(key: any): {
|
|
|
3562
3867
|
};
|
|
3563
3868
|
}
|
|
3564
3869
|
|
|
3565
|
-
// @shell/utils/nuxt
|
|
3566
|
-
|
|
3567
|
-
declare module '@shell/utils/nuxt' {
|
|
3568
|
-
export function createGetCounter(counterObject: any, defaultKey?: string): (id?: string) => number;
|
|
3569
|
-
export function empty(): void;
|
|
3570
|
-
export function globalHandleError(error: any): void;
|
|
3571
|
-
export function interopDefault(promise: any): any;
|
|
3572
|
-
export function hasFetch(vm: any): boolean;
|
|
3573
|
-
export function purifyData(data: any): any;
|
|
3574
|
-
export function getChildrenComponentInstancesUsingFetch(vm: any, instances?: any[]): any[];
|
|
3575
|
-
export function applyAsyncData(Component: any, asyncData: any): void;
|
|
3576
|
-
export function sanitizeComponent(Component: any): any;
|
|
3577
|
-
export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
|
|
3578
|
-
export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
|
|
3579
|
-
export function flatMapComponents(route: any, fn: any): any;
|
|
3580
|
-
export function resolveRouteComponents(route: any, fn: any): Promise<[any, any, any, any, any, any, any, any, any, any]>;
|
|
3581
|
-
export function getRouteData(route: any): Promise<any>;
|
|
3582
|
-
export function setContext(app: any, context: any): Promise<void>;
|
|
3583
|
-
export function middlewareSeries(promises: any, appContext: any): any;
|
|
3584
|
-
export function promisify(fn: any, context: any): Promise<any>;
|
|
3585
|
-
export function getLocation(base: any, mode: any): string;
|
|
3586
|
-
/**
|
|
3587
|
-
* Compile a string to a template function for the path.
|
|
3588
|
-
*
|
|
3589
|
-
* @param {string} str
|
|
3590
|
-
* @param {Object=} options
|
|
3591
|
-
* @return {!function(Object=, Object=)}
|
|
3592
|
-
*/
|
|
3593
|
-
export function compile(str: string, options?: any | undefined): (arg0: any | undefined, arg1: any | undefined) => any;
|
|
3594
|
-
export function getQueryDiff(toQuery: any, fromQuery: any): {};
|
|
3595
|
-
export function normalizeError(err: any): any;
|
|
3596
|
-
export function addLifecycleHook(vm: any, hook: any, fn: any): void;
|
|
3597
|
-
export function setScrollRestoration(newVal: any): void;
|
|
3598
|
-
export const urlJoin: typeof joinURL;
|
|
3599
|
-
export const stripTrailingSlash: typeof withoutTrailingSlash;
|
|
3600
|
-
export const isSamePath: typeof _isSamePath;
|
|
3601
|
-
import { joinURL } from "ufo";
|
|
3602
|
-
import { withoutTrailingSlash } from "ufo";
|
|
3603
|
-
import { isSamePath as _isSamePath } from "ufo";
|
|
3604
|
-
}
|
|
3605
|
-
|
|
3606
3870
|
// @shell/utils/object
|
|
3607
3871
|
|
|
3608
3872
|
declare module '@shell/utils/object' {
|
|
@@ -3610,6 +3874,13 @@ export function set(obj: any, path: any, value: any): any;
|
|
|
3610
3874
|
export function getAllValues(obj: any, path: any): any[];
|
|
3611
3875
|
export function get(obj: any, path: any): any;
|
|
3612
3876
|
export function remove(obj: any, path: any): any;
|
|
3877
|
+
/**
|
|
3878
|
+
* `delete` a property at the given path.
|
|
3879
|
+
*
|
|
3880
|
+
* This is similar to `remove` but doesn't need any fancy kube obj path splitting
|
|
3881
|
+
* and doesn't use `Vue.set` (avoids reactivity)
|
|
3882
|
+
*/
|
|
3883
|
+
export function deleteProperty(obj: any, path: any): void;
|
|
3613
3884
|
export function getter(path: any): (obj: any) => any;
|
|
3614
3885
|
export function clone(obj: any): any;
|
|
3615
3886
|
export function isEmpty(obj: any): boolean;
|
|
@@ -3629,6 +3900,7 @@ export function applyChangeset(obj: any, changeset: any): any;
|
|
|
3629
3900
|
* Creates an object composed of the `object` properties `predicate` returns
|
|
3630
3901
|
*/
|
|
3631
3902
|
export function pickBy(obj?: {}, predicate?: (value: any, key: any) => boolean): {};
|
|
3903
|
+
export function dropKeys(obj: any, keys: any): void;
|
|
3632
3904
|
export { isEqualBasic as isEqual };
|
|
3633
3905
|
export function toDictionary(array: any, callback: any): any;
|
|
3634
3906
|
/**
|
|
@@ -3799,12 +4071,12 @@ export function setPromiseResult(promise: any, obj: any, key: any, label: any):
|
|
|
3799
4071
|
|
|
3800
4072
|
declare module '@shell/utils/router' {
|
|
3801
4073
|
export function queryParamsFor(current: any, qp: any, defaults?: {}): any;
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
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;
|
|
3808
4080
|
}
|
|
3809
4081
|
|
|
3810
4082
|
// @shell/utils/select
|
|
@@ -4257,7 +4529,10 @@ export function externalName(spec: any, getters: any, errors: any, validatorArgs
|
|
|
4257
4529
|
// @shell/utils/validators/setting
|
|
4258
4530
|
|
|
4259
4531
|
declare module '@shell/utils/validators/setting' {
|
|
4260
|
-
export function
|
|
4532
|
+
export function isServerUrl(value: any): boolean;
|
|
4533
|
+
export function isHttps(value: any): any;
|
|
4534
|
+
export function isLocalhost(value: any): boolean;
|
|
4535
|
+
export function hasTrailingForwardSlash(value: any): any;
|
|
4261
4536
|
}
|
|
4262
4537
|
|
|
4263
4538
|
// @shell/utils/version
|