@rancher/shell 0.3.4 → 0.3.5
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/styles/app.scss +1 -1
- package/assets/styles/fonts/_fontstack.scss +11 -11
- package/assets/styles/vendor/vue-js-modal.scss +3 -3
- package/assets/translations/en-us.yaml +92 -22
- package/assets/translations/zh-hans.yaml +84 -15
- package/babel.config.js +13 -0
- package/chart/gatekeeper.vue +77 -0
- package/chart/istio.vue +108 -111
- package/chart/logging/index.vue +13 -4
- package/chart/monitoring/index.vue +15 -5
- package/chart/monitoring/steps/uninstall-v1.vue +2 -2
- package/chart/rancher-backup/index.vue +10 -3
- package/cloud-credential/aws.vue +1 -1
- package/cloud-credential/digitalocean.vue +1 -1
- package/cloud-credential/gcp.vue +1 -1
- package/cloud-credential/generic.vue +2 -2
- package/cloud-credential/linode.vue +1 -1
- package/cloud-credential/pnap.vue +1 -1
- package/components/ActionMenu.vue +3 -4
- package/components/AssignTo.vue +1 -1
- package/components/AsyncButton.vue +1 -1
- package/components/BannerGraphic.vue +1 -1
- package/components/ButtonDropdown.vue +2 -3
- package/components/ChartPsp.vue +76 -0
- package/components/CruResource.vue +6 -2
- package/components/DashboardMetrics.vue +12 -10
- package/components/DetailText.vue +1 -1
- package/components/DisableAuthProviderModal.vue +1 -1
- package/components/EmberPage.vue +1 -1
- package/components/EtcdInfoBanner.vue +5 -4
- package/components/ExplorerMembers.vue +1 -1
- package/components/ExplorerProjectsNamespaces.vue +14 -1
- package/components/FileDiff.vue +6 -7
- package/components/GrafanaDashboard.vue +18 -21
- package/components/LazyImage.vue +10 -12
- package/components/LogItem.vue +1 -1
- package/components/Markdown.vue +1 -1
- package/components/PromptRemove.vue +2 -2
- package/components/PromptRestore.vue +1 -1
- package/components/ResourceDetail/Masthead.vue +16 -0
- package/components/ResourceDetail/index.vue +21 -4
- package/components/ResourceList/index.vue +1 -1
- package/components/ResourceTable.vue +4 -1
- package/components/SingleClusterInfo.vue +2 -2
- package/components/SortableTable/THead.vue +1 -1
- package/components/SortableTable/index.vue +5 -2
- package/components/__tests__/AsyncButton.test.ts +3 -1
- package/components/__tests__/ChartPsp.test.ts +75 -0
- package/components/__tests__/CruResource.test.ts +3 -1
- package/components/auth/Principal.vue +1 -1
- package/components/fleet/FleetBundles.vue +3 -1
- package/components/fleet/FleetClusters.vue +1 -2
- package/components/fleet/FleetIntro.vue +9 -1
- package/components/fleet/FleetNoWorkspaces.vue +62 -0
- package/components/fleet/FleetSummary.vue +7 -1
- package/components/form/LabeledSelect.vue +14 -11
- package/components/form/MatchExpressions.vue +17 -2
- package/components/form/NameNsDescription.vue +31 -45
- package/components/form/ResourceSelector.vue +1 -1
- package/components/form/SecretSelector.vue +5 -1
- package/components/form/ServiceNameSelect.vue +1 -1
- package/components/form/SimpleSecretSelector.vue +9 -9
- package/components/form/__tests__/LabeledSelect.test.ts +138 -0
- package/components/form/__tests__/NameNsDescription.ts +32 -0
- package/components/formatter/InternalExternalIP.vue +6 -0
- package/components/formatter/InvolvedObjectLink.vue +54 -0
- package/components/formatter/Link.vue +20 -4
- package/components/formatter/LinkName.vue +6 -1
- package/components/formatter/ServiceTargets.vue +1 -1
- package/components/nav/Group.vue +2 -2
- package/components/nav/NamespaceFilter.vue +15 -11
- package/components/nav/TopLevelMenu.vue +2 -4
- package/components/nav/Type.vue +1 -1
- package/components/nav/WorkspaceSwitcher.vue +46 -5
- package/config/labels-annotations.js +17 -0
- package/config/product/auth.js +3 -2
- package/config/product/explorer.js +11 -4
- package/config/product/fleet.js +2 -0
- package/config/router.js +414 -0
- package/config/table-headers.js +10 -2
- package/config/types.js +11 -8
- package/config/uiplugins.js +30 -0
- package/content/docs/en-us/whats-new.md +10 -0
- package/content/docs/zh-hans/whats-new.md +11 -1
- package/core/plugin-routes.ts +23 -0
- package/creators/app/app.package.json +2 -1
- package/creators/app/files/.eslintrc.js +1 -1
- package/creators/app/files/babel.config.js +1 -18
- package/creators/app/files/vue.config.js +7 -0
- package/creators/app/init +5 -5
- package/creators/pkg/files/.github/workflows/build-extension.yml +111 -0
- package/creators/pkg/init +35 -4
- package/creators/update/init +1 -1
- package/detail/constraints.gatekeeper.sh.constraint.vue +20 -10
- package/detail/fleet.cattle.io.gitrepo.vue +19 -11
- package/detail/harvesterhci.io.management.cluster.vue +3 -3
- package/detail/provisioning.cattle.io.cluster.vue +54 -12
- package/detail/workload/index.vue +3 -3
- package/dialog/AddClusterMemberDialog.vue +1 -1
- package/dialog/AddProjectMemberDialog.vue +2 -2
- package/dialog/AddonConfigConfirmationDialog.vue +27 -15
- package/dialog/DiagnosticTimingsDialog.vue +1 -1
- package/dialog/ForceMachineRemoveDialog.vue +1 -1
- package/dialog/GenericPrompt.vue +18 -6
- package/dialog/RotateEncryptionKeyDialog.vue +1 -1
- package/dialog/SaveAsRKETemplateDialog.vue +1 -1
- package/dialog/ScaleMachineDownDialog.vue +1 -1
- package/edit/auth/github.vue +8 -8
- package/edit/auth/googleoauth.vue +5 -5
- package/edit/auth/ldap/index.vue +1 -1
- package/edit/auth/oidc.vue +1 -1
- package/edit/auth/saml.vue +1 -1
- package/edit/cis.cattle.io.clusterscan.vue +1 -1
- package/edit/fleet.cattle.io.clustergroup.vue +6 -4
- package/edit/fleet.cattle.io.gitrepo.vue +16 -3
- package/edit/helm.cattle.io.projecthelmchart.vue +5 -1
- package/edit/management.cattle.io.fleetworkspace.vue +141 -6
- package/edit/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +4 -1
- package/edit/management.cattle.io.setting.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +2 -2
- package/edit/monitoring.coreos.com.receiver/tls.vue +18 -18
- package/edit/monitoring.coreos.com.receiver/types/webhook.banner.vue +4 -4
- package/edit/monitoring.coreos.com.receiver/types/webhook.vue +1 -1
- package/edit/namespace.vue +2 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +126 -45
- package/edit/networking.k8s.io.networkpolicy/index.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/MachinePool.vue +10 -0
- package/edit/provisioning.cattle.io.cluster/RegistryConfigs.vue +1 -0
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +202 -2
- package/edit/provisioning.cattle.io.cluster/rke2.vue +248 -84
- package/edit/resources.cattle.io.backup.vue +1 -1
- package/edit/service.vue +1 -1
- package/edit/storage.k8s.io.storageclass/provisioners/driver.harvesterhci.io.vue +2 -2
- package/edit/workload/__tests__/Job.test.ts +3 -1
- package/edit/workload/index.vue +8 -3
- package/edit/workload/mixins/workload.js +16 -0
- package/layouts/default.vue +7 -3
- package/list/fleet.cattle.io.bundle.vue +6 -3
- package/list/fleet.cattle.io.clusterregistrationtoken.vue +3 -1
- package/list/fleet.cattle.io.gitrepo.vue +44 -5
- package/list/management.cattle.io.fleetworkspace.vue +45 -0
- package/list/node.vue +69 -16
- package/list/provisioning.cattle.io.cluster.vue +30 -1
- package/machine-config/azure.vue +97 -38
- package/middleware/authenticated.js +34 -0
- package/mixins/chart.js +73 -2
- package/mixins/resource-fetch.js +2 -2
- package/models/apps.statefulset.js +28 -0
- package/models/cluster/node.js +23 -2
- package/models/cluster.x-k8s.io.machine.js +4 -2
- package/models/clusterroletemplatebinding.js +7 -0
- package/models/constraints.gatekeeper.sh.constraint.js +9 -0
- package/models/fleet.cattle.io.cluster.js +19 -10
- package/models/fleet.cattle.io.gitrepo.js +7 -2
- package/models/management.cattle.io.cluster.js +1 -1
- package/models/management.cattle.io.fleetworkspace.js +12 -0
- package/models/management.cattle.io.gitreporestriction.js +5 -0
- package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.js +3 -0
- package/models/provisioning.cattle.io.cluster.js +7 -5
- package/nuxt/App.js +210 -0
- package/nuxt/axios.js +186 -0
- package/nuxt/client.js +817 -0
- package/nuxt/components/nuxt-build-indicator.vue +143 -0
- package/nuxt/components/nuxt-child.js +122 -0
- package/nuxt/components/nuxt-error.vue +98 -0
- package/nuxt/components/nuxt-link.client.js +98 -0
- package/nuxt/components/nuxt-link.server.js +16 -0
- package/nuxt/components/nuxt-loading.vue +154 -0
- package/nuxt/components/nuxt.js +101 -0
- package/nuxt/cookie-universal-nuxt.js +9 -0
- package/nuxt/empty.js +1 -0
- package/nuxt/index.js +365 -0
- package/nuxt/jsonp.js +82 -0
- package/nuxt/loading.html +39 -0
- package/nuxt/middleware.js +12 -0
- package/nuxt/mixins/fetch.client.js +90 -0
- package/nuxt/mixins/fetch.server.js +69 -0
- package/nuxt/portal-vue.js +4 -0
- package/nuxt/server.js +312 -0
- package/nuxt/store.js +178 -0
- package/nuxt/utils.js +630 -0
- package/nuxt/views/app.template.html +9 -0
- package/nuxt/views/error.html +23 -0
- package/package.json +5 -9
- package/pages/auth/setup.vue +2 -2
- package/pages/c/_cluster/apps/charts/__tests__/install.helper.test.ts +33 -0
- package/pages/c/_cluster/apps/charts/chart.vue +4 -4
- package/pages/c/_cluster/apps/charts/install.helpers.js +26 -0
- package/pages/c/_cluster/apps/charts/install.vue +40 -66
- package/pages/c/_cluster/explorer/EventsTable.vue +5 -19
- package/pages/c/_cluster/explorer/index.vue +29 -25
- package/pages/c/_cluster/explorer/tools/index.vue +8 -8
- package/pages/c/_cluster/fleet/index.vue +95 -34
- package/pages/c/_cluster/gatekeeper/index.vue +1 -1
- package/pages/c/_cluster/istio/index.vue +5 -5
- package/pages/c/_cluster/manager/cloudCredential/index.vue +1 -1
- package/pages/c/_cluster/monitoring/index.vue +7 -0
- package/pages/c/_cluster/uiplugins/InstallDialog.vue +8 -8
- package/pages/c/_cluster/uiplugins/PluginInfoPanel.vue +20 -7
- package/pages/c/_cluster/uiplugins/index.vue +49 -17
- package/pages/home.vue +9 -4
- package/pages/index.vue +10 -1
- package/plugins/clean-html-directive.js +31 -0
- package/plugins/dashboard-store/actions.js +32 -9
- package/plugins/dashboard-store/mutations.js +5 -2
- package/plugins/dashboard-store/resource-class.js +8 -1
- package/plugins/steve/mutations.js +3 -2
- package/plugins/steve/steve-description-class.js +5 -1
- package/plugins/steve/subscribe.js +63 -54
- package/plugins/steve-create-worker.js +14 -0
- package/promptRemove/management.cattle.io.globalrole.vue +2 -2
- package/promptRemove/management.cattle.io.project.vue +2 -2
- package/promptRemove/management.cattle.io.roletemplate.vue +2 -2
- package/promptRemove/pod.vue +1 -1
- package/public/index.html +65 -0
- package/rancher-components/components/Banner/Banner.test.ts +9 -1
- package/rancher-components/components/Banner/Banner.vue +1 -1
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +2 -0
- package/rancher-components/components/Form/Radio/RadioButton.vue +1 -1
- package/scripts/build-pkg.sh +1 -0
- package/scripts/clean +6 -0
- package/scripts/extension/bundle +58 -0
- package/scripts/extension/helmpatch +89 -0
- package/scripts/extension/publish +314 -0
- package/scripts/test-plugins-build.sh +4 -0
- package/store/__tests__/index.test.ts +110 -0
- package/store/index.js +145 -58
- package/store/type-map.js +5 -1
- package/tsconfig.default.json +36 -0
- package/tsconfig.json +24 -0
- package/types/shell/index.d.ts +420 -343
- package/utils/__tests__/string.test.ts +12 -0
- package/utils/auth.js +65 -0
- package/utils/monitoring.js +2 -1
- package/utils/position.js +5 -8
- package/utils/router.scrollBehavior.js +80 -0
- package/utils/select.js +1 -3
- package/utils/socket.js +1 -0
- package/utils/string.js +13 -0
- package/utils/time.js +9 -0
- package/vue.config.js +679 -0
- package/chart/rancher-alerting-drivers.vue +0 -53
- package/chart/rancher-gatekeeper.vue +0 -37
- package/creators/app/files/nuxt.config.js +0 -6
- package/models/management.cattle.io.podsecurityadmissionconfigurationtemplate.ts +0 -4
- package/nuxt.config.js +0 -798
package/types/shell/index.d.ts
CHANGED
|
@@ -797,7 +797,7 @@ export namespace REASON {
|
|
|
797
797
|
const sort_48: string[];
|
|
798
798
|
export { sort_48 as sort };
|
|
799
799
|
}
|
|
800
|
-
export namespace
|
|
800
|
+
export namespace OBJECT {
|
|
801
801
|
const name_56: string;
|
|
802
802
|
export { name_56 as name };
|
|
803
803
|
const labelKey_56: string;
|
|
@@ -806,8 +806,12 @@ export namespace RECLAIM_POLICY {
|
|
|
806
806
|
export { value_55 as value };
|
|
807
807
|
const sort_49: string[];
|
|
808
808
|
export { sort_49 as sort };
|
|
809
|
+
const canBeVariable_6: boolean;
|
|
810
|
+
export { canBeVariable_6 as canBeVariable };
|
|
811
|
+
const formatter_25: string;
|
|
812
|
+
export { formatter_25 as formatter };
|
|
809
813
|
}
|
|
810
|
-
export namespace
|
|
814
|
+
export namespace RECLAIM_POLICY {
|
|
811
815
|
const name_57: string;
|
|
812
816
|
export { name_57 as name };
|
|
813
817
|
const labelKey_57: string;
|
|
@@ -817,7 +821,7 @@ export namespace PV_REASON {
|
|
|
817
821
|
const sort_50: string[];
|
|
818
822
|
export { sort_50 as sort };
|
|
819
823
|
}
|
|
820
|
-
export namespace
|
|
824
|
+
export namespace PV_REASON {
|
|
821
825
|
const name_58: string;
|
|
822
826
|
export { name_58 as name };
|
|
823
827
|
const labelKey_58: string;
|
|
@@ -827,7 +831,7 @@ export namespace MESSAGE {
|
|
|
827
831
|
const sort_51: string[];
|
|
828
832
|
export { sort_51 as sort };
|
|
829
833
|
}
|
|
830
|
-
export namespace
|
|
834
|
+
export namespace MESSAGE {
|
|
831
835
|
const name_59: string;
|
|
832
836
|
export { name_59 as name };
|
|
833
837
|
const labelKey_59: string;
|
|
@@ -837,7 +841,7 @@ export namespace KEY {
|
|
|
837
841
|
const sort_52: string[];
|
|
838
842
|
export { sort_52 as sort };
|
|
839
843
|
}
|
|
840
|
-
export namespace
|
|
844
|
+
export namespace KEY {
|
|
841
845
|
const name_60: string;
|
|
842
846
|
export { name_60 as name };
|
|
843
847
|
const labelKey_60: string;
|
|
@@ -847,7 +851,7 @@ export namespace VALUE {
|
|
|
847
851
|
const sort_53: string[];
|
|
848
852
|
export { sort_53 as sort };
|
|
849
853
|
}
|
|
850
|
-
export namespace
|
|
854
|
+
export namespace VALUE {
|
|
851
855
|
const name_61: string;
|
|
852
856
|
export { name_61 as name };
|
|
853
857
|
const labelKey_61: string;
|
|
@@ -856,12 +860,8 @@ export namespace BUILT_IN {
|
|
|
856
860
|
export { value_60 as value };
|
|
857
861
|
const sort_54: string[];
|
|
858
862
|
export { sort_54 as sort };
|
|
859
|
-
const align_9: string;
|
|
860
|
-
export { align_9 as align };
|
|
861
|
-
const formatter_25: string;
|
|
862
|
-
export { formatter_25 as formatter };
|
|
863
863
|
}
|
|
864
|
-
export namespace
|
|
864
|
+
export namespace BUILT_IN {
|
|
865
865
|
const name_62: string;
|
|
866
866
|
export { name_62 as name };
|
|
867
867
|
const labelKey_62: string;
|
|
@@ -870,24 +870,26 @@ export namespace CLUSTER_CREATOR_DEFAULT {
|
|
|
870
870
|
export { value_61 as value };
|
|
871
871
|
const sort_55: string[];
|
|
872
872
|
export { sort_55 as sort };
|
|
873
|
-
const
|
|
874
|
-
export {
|
|
873
|
+
const align_9: string;
|
|
874
|
+
export { align_9 as align };
|
|
875
875
|
const formatter_26: string;
|
|
876
876
|
export { formatter_26 as formatter };
|
|
877
877
|
}
|
|
878
|
-
export namespace
|
|
878
|
+
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
879
879
|
const name_63: string;
|
|
880
880
|
export { name_63 as name };
|
|
881
881
|
const labelKey_63: string;
|
|
882
882
|
export { labelKey_63 as labelKey };
|
|
883
883
|
const value_62: string;
|
|
884
884
|
export { value_62 as value };
|
|
885
|
-
const formatter_27: string;
|
|
886
|
-
export { formatter_27 as formatter };
|
|
887
885
|
const sort_56: string[];
|
|
888
886
|
export { sort_56 as sort };
|
|
887
|
+
const align_10: string;
|
|
888
|
+
export { align_10 as align };
|
|
889
|
+
const formatter_27: string;
|
|
890
|
+
export { formatter_27 as formatter };
|
|
889
891
|
}
|
|
890
|
-
export namespace
|
|
892
|
+
export namespace RBAC_DEFAULT {
|
|
891
893
|
const name_64: string;
|
|
892
894
|
export { name_64 as name };
|
|
893
895
|
const labelKey_64: string;
|
|
@@ -899,17 +901,19 @@ export namespace RBAC_BUILTIN {
|
|
|
899
901
|
const sort_57: string[];
|
|
900
902
|
export { sort_57 as sort };
|
|
901
903
|
}
|
|
902
|
-
export namespace
|
|
904
|
+
export namespace RBAC_BUILTIN {
|
|
903
905
|
const name_65: string;
|
|
904
906
|
export { name_65 as name };
|
|
905
907
|
const labelKey_65: string;
|
|
906
908
|
export { labelKey_65 as labelKey };
|
|
907
909
|
const value_64: string;
|
|
908
910
|
export { value_64 as value };
|
|
911
|
+
const formatter_29: string;
|
|
912
|
+
export { formatter_29 as formatter };
|
|
909
913
|
const sort_58: string[];
|
|
910
914
|
export { sort_58 as sort };
|
|
911
915
|
}
|
|
912
|
-
export namespace
|
|
916
|
+
export namespace RESOURCE {
|
|
913
917
|
const name_66: string;
|
|
914
918
|
export { name_66 as name };
|
|
915
919
|
const labelKey_66: string;
|
|
@@ -919,103 +923,101 @@ export namespace API_GROUP {
|
|
|
919
923
|
const sort_59: string[];
|
|
920
924
|
export { sort_59 as sort };
|
|
921
925
|
}
|
|
922
|
-
export namespace
|
|
926
|
+
export namespace API_GROUP {
|
|
923
927
|
const name_67: string;
|
|
924
928
|
export { name_67 as name };
|
|
925
929
|
const labelKey_67: string;
|
|
926
930
|
export { labelKey_67 as labelKey };
|
|
927
931
|
const value_66: string;
|
|
928
932
|
export { value_66 as value };
|
|
929
|
-
const sort_60: string;
|
|
933
|
+
const sort_60: string[];
|
|
930
934
|
export { sort_60 as sort };
|
|
931
935
|
}
|
|
932
|
-
export namespace
|
|
936
|
+
export namespace INGRESS_CLASS {
|
|
933
937
|
const name_68: string;
|
|
934
938
|
export { name_68 as name };
|
|
935
939
|
const labelKey_68: string;
|
|
936
940
|
export { labelKey_68 as labelKey };
|
|
937
941
|
const value_67: string;
|
|
938
942
|
export { value_67 as value };
|
|
939
|
-
const sort_61: string
|
|
943
|
+
const sort_61: string;
|
|
940
944
|
export { sort_61 as sort };
|
|
941
|
-
const formatter_29: string;
|
|
942
|
-
export { formatter_29 as formatter };
|
|
943
|
-
const width_19: number;
|
|
944
|
-
export { width_19 as width };
|
|
945
|
-
const align_11: string;
|
|
946
|
-
export { align_11 as align };
|
|
947
945
|
}
|
|
948
|
-
export namespace
|
|
946
|
+
export namespace INGRESS_DEFAULT_BACKEND {
|
|
949
947
|
const name_69: string;
|
|
950
948
|
export { name_69 as name };
|
|
951
949
|
const labelKey_69: string;
|
|
952
950
|
export { labelKey_69 as labelKey };
|
|
953
951
|
const value_68: string;
|
|
954
952
|
export { value_68 as value };
|
|
953
|
+
const sort_62: string[];
|
|
954
|
+
export { sort_62 as sort };
|
|
955
955
|
const formatter_30: string;
|
|
956
956
|
export { formatter_30 as formatter };
|
|
957
|
-
const
|
|
958
|
-
export {
|
|
957
|
+
const width_19: number;
|
|
958
|
+
export { width_19 as width };
|
|
959
|
+
const align_11: string;
|
|
960
|
+
export { align_11 as align };
|
|
959
961
|
}
|
|
960
|
-
export namespace
|
|
962
|
+
export namespace INGRESS_TARGET {
|
|
961
963
|
const name_70: string;
|
|
962
964
|
export { name_70 as name };
|
|
963
965
|
const labelKey_70: string;
|
|
964
966
|
export { labelKey_70 as labelKey };
|
|
965
967
|
const value_69: string;
|
|
966
968
|
export { value_69 as value };
|
|
967
|
-
const sort_63: string;
|
|
968
|
-
export { sort_63 as sort };
|
|
969
969
|
const formatter_31: string;
|
|
970
970
|
export { formatter_31 as formatter };
|
|
971
|
+
const sort_63: string;
|
|
972
|
+
export { sort_63 as sort };
|
|
971
973
|
}
|
|
972
|
-
export namespace
|
|
973
|
-
const formatter_32: string;
|
|
974
|
-
export { formatter_32 as formatter };
|
|
975
|
-
const labelKey_71: string;
|
|
976
|
-
export { labelKey_71 as labelKey };
|
|
974
|
+
export namespace SPEC_TYPE {
|
|
977
975
|
const name_71: string;
|
|
978
976
|
export { name_71 as name };
|
|
979
|
-
const
|
|
980
|
-
export {
|
|
977
|
+
const labelKey_71: string;
|
|
978
|
+
export { labelKey_71 as labelKey };
|
|
981
979
|
const value_70: string;
|
|
982
980
|
export { value_70 as value };
|
|
981
|
+
const sort_64: string;
|
|
982
|
+
export { sort_64 as sort };
|
|
983
|
+
const formatter_32: string;
|
|
984
|
+
export { formatter_32 as formatter };
|
|
983
985
|
}
|
|
984
|
-
export namespace
|
|
986
|
+
export namespace TARGET_PORT {
|
|
985
987
|
const formatter_33: string;
|
|
986
988
|
export { formatter_33 as formatter };
|
|
987
|
-
const name_72: string;
|
|
988
|
-
export { name_72 as name };
|
|
989
989
|
const labelKey_72: string;
|
|
990
990
|
export { labelKey_72 as labelKey };
|
|
991
|
-
const
|
|
992
|
-
export {
|
|
991
|
+
const name_72: string;
|
|
992
|
+
export { name_72 as name };
|
|
993
993
|
const sort_65: string;
|
|
994
994
|
export { sort_65 as sort };
|
|
995
|
+
const value_71: string;
|
|
996
|
+
export { value_71 as value };
|
|
995
997
|
}
|
|
996
|
-
export namespace
|
|
998
|
+
export namespace SELECTOR {
|
|
999
|
+
const formatter_34: string;
|
|
1000
|
+
export { formatter_34 as formatter };
|
|
997
1001
|
const name_73: string;
|
|
998
1002
|
export { name_73 as name };
|
|
999
1003
|
const labelKey_73: string;
|
|
1000
1004
|
export { labelKey_73 as labelKey };
|
|
1001
1005
|
const value_72: string;
|
|
1002
1006
|
export { value_72 as value };
|
|
1003
|
-
const sort_66: string
|
|
1007
|
+
const sort_66: string;
|
|
1004
1008
|
export { sort_66 as sort };
|
|
1005
1009
|
}
|
|
1006
|
-
export namespace
|
|
1010
|
+
export namespace CHART {
|
|
1007
1011
|
const name_74: string;
|
|
1008
1012
|
export { name_74 as name };
|
|
1009
1013
|
const labelKey_74: string;
|
|
1010
1014
|
export { labelKey_74 as labelKey };
|
|
1011
1015
|
const value_73: string;
|
|
1012
1016
|
export { value_73 as value };
|
|
1013
|
-
const sort_67: string;
|
|
1017
|
+
const sort_67: string[];
|
|
1014
1018
|
export { sort_67 as sort };
|
|
1015
|
-
const dashIfEmpty_4: boolean;
|
|
1016
|
-
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1017
1019
|
}
|
|
1018
|
-
export namespace
|
|
1020
|
+
export namespace CHART_UPGRADE {
|
|
1019
1021
|
const name_75: string;
|
|
1020
1022
|
export { name_75 as name };
|
|
1021
1023
|
const labelKey_75: string;
|
|
@@ -1024,10 +1026,10 @@ export namespace RESOURCES {
|
|
|
1024
1026
|
export { value_74 as value };
|
|
1025
1027
|
const sort_68: string;
|
|
1026
1028
|
export { sort_68 as sort };
|
|
1027
|
-
const
|
|
1028
|
-
export {
|
|
1029
|
+
const dashIfEmpty_4: boolean;
|
|
1030
|
+
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1029
1031
|
}
|
|
1030
|
-
export namespace
|
|
1032
|
+
export namespace RESOURCES {
|
|
1031
1033
|
const name_76: string;
|
|
1032
1034
|
export { name_76 as name };
|
|
1033
1035
|
const labelKey_76: string;
|
|
@@ -1036,48 +1038,60 @@ export namespace URL {
|
|
|
1036
1038
|
export { value_75 as value };
|
|
1037
1039
|
const sort_69: string;
|
|
1038
1040
|
export { sort_69 as sort };
|
|
1041
|
+
const width_20: number;
|
|
1042
|
+
export { width_20 as width };
|
|
1039
1043
|
}
|
|
1040
|
-
export namespace
|
|
1044
|
+
export namespace URL {
|
|
1041
1045
|
const name_77: string;
|
|
1042
1046
|
export { name_77 as name };
|
|
1043
1047
|
const labelKey_77: string;
|
|
1044
1048
|
export { labelKey_77 as labelKey };
|
|
1045
1049
|
const value_76: string;
|
|
1046
1050
|
export { value_76 as value };
|
|
1047
|
-
const
|
|
1048
|
-
export { formatter_34 as formatter };
|
|
1049
|
-
export namespace formatterOpts_3 {
|
|
1050
|
-
const addSuffix: boolean;
|
|
1051
|
-
}
|
|
1052
|
-
export { formatterOpts_3 as formatterOpts };
|
|
1053
|
-
const sort_70: string[];
|
|
1051
|
+
const sort_70: string;
|
|
1054
1052
|
export { sort_70 as sort };
|
|
1055
1053
|
}
|
|
1056
|
-
export namespace
|
|
1054
|
+
export namespace LAST_UPDATED {
|
|
1057
1055
|
const name_78: string;
|
|
1058
1056
|
export { name_78 as name };
|
|
1059
|
-
|
|
1057
|
+
const labelKey_78: string;
|
|
1058
|
+
export { labelKey_78 as labelKey };
|
|
1060
1059
|
const value_77: string;
|
|
1061
1060
|
export { value_77 as value };
|
|
1061
|
+
const formatter_35: string;
|
|
1062
|
+
export { formatter_35 as formatter };
|
|
1063
|
+
export namespace formatterOpts_3 {
|
|
1064
|
+
const addSuffix: boolean;
|
|
1065
|
+
}
|
|
1066
|
+
export { formatterOpts_3 as formatterOpts };
|
|
1062
1067
|
const sort_71: string[];
|
|
1063
1068
|
export { sort_71 as sort };
|
|
1064
1069
|
}
|
|
1065
|
-
export namespace
|
|
1070
|
+
export namespace WORKSPACE {
|
|
1071
|
+
const name_79: string;
|
|
1072
|
+
export { name_79 as name };
|
|
1073
|
+
export const label: string;
|
|
1066
1074
|
const value_78: string;
|
|
1067
1075
|
export { value_78 as value };
|
|
1068
|
-
|
|
1076
|
+
const sort_72: string[];
|
|
1077
|
+
export { sort_72 as sort };
|
|
1069
1078
|
}
|
|
1070
|
-
export namespace
|
|
1071
|
-
const name_79: string;
|
|
1072
|
-
export { name_79 as name };
|
|
1073
|
-
const labelKey_78: string;
|
|
1074
|
-
export { labelKey_78 as labelKey };
|
|
1079
|
+
export namespace WORKLOAD_IMAGES {
|
|
1075
1080
|
const value_79: string;
|
|
1076
1081
|
export { value_79 as value };
|
|
1082
|
+
export const breakpoint: any;
|
|
1083
|
+
}
|
|
1084
|
+
export namespace WORKLOAD_ENDPOINTS {
|
|
1085
|
+
const name_80: string;
|
|
1086
|
+
export { name_80 as name };
|
|
1087
|
+
const labelKey_79: string;
|
|
1088
|
+
export { labelKey_79 as labelKey };
|
|
1089
|
+
const value_80: string;
|
|
1090
|
+
export { value_80 as value };
|
|
1077
1091
|
export function getValue_11(row: any): any;
|
|
1078
1092
|
export { getValue_11 as getValue };
|
|
1079
|
-
const
|
|
1080
|
-
export {
|
|
1093
|
+
const formatter_36: string;
|
|
1094
|
+
export { formatter_36 as formatter };
|
|
1081
1095
|
const dashIfEmpty_5: boolean;
|
|
1082
1096
|
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1083
1097
|
const breakpoint_1: any;
|
|
@@ -1085,12 +1099,12 @@ export namespace WORKLOAD_ENDPOINTS {
|
|
|
1085
1099
|
export const maxPageSize: number;
|
|
1086
1100
|
}
|
|
1087
1101
|
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1088
|
-
const
|
|
1089
|
-
export {
|
|
1090
|
-
const
|
|
1091
|
-
export {
|
|
1092
|
-
const
|
|
1093
|
-
export {
|
|
1102
|
+
const name_81: string;
|
|
1103
|
+
export { name_81 as name };
|
|
1104
|
+
const labelKey_80: string;
|
|
1105
|
+
export { labelKey_80 as labelKey };
|
|
1106
|
+
const formatter_37: string;
|
|
1107
|
+
export { formatter_37 as formatter };
|
|
1094
1108
|
export function getValue_12(): any;
|
|
1095
1109
|
export { getValue_12 as getValue };
|
|
1096
1110
|
const width_21: number;
|
|
@@ -1104,24 +1118,6 @@ export namespace WORKLOAD_HEALTH_SCALE {
|
|
|
1104
1118
|
export { liveUpdates_1 as liveUpdates };
|
|
1105
1119
|
}
|
|
1106
1120
|
export namespace FLEET_SUMMARY {
|
|
1107
|
-
const name_81: string;
|
|
1108
|
-
export { name_81 as name };
|
|
1109
|
-
const labelKey_80: string;
|
|
1110
|
-
export { labelKey_80 as labelKey };
|
|
1111
|
-
const value_80: string;
|
|
1112
|
-
export { value_80 as value };
|
|
1113
|
-
const sort_72: boolean;
|
|
1114
|
-
export { sort_72 as sort };
|
|
1115
|
-
const search_7: boolean;
|
|
1116
|
-
export { search_7 as search };
|
|
1117
|
-
const formatter_37: string;
|
|
1118
|
-
export { formatter_37 as formatter };
|
|
1119
|
-
const align_12: string;
|
|
1120
|
-
export { align_12 as align };
|
|
1121
|
-
const width_22: number;
|
|
1122
|
-
export { width_22 as width };
|
|
1123
|
-
}
|
|
1124
|
-
export namespace APP_SUMMARY {
|
|
1125
1121
|
const name_82: string;
|
|
1126
1122
|
export { name_82 as name };
|
|
1127
1123
|
const labelKey_81: string;
|
|
@@ -1130,26 +1126,44 @@ export namespace APP_SUMMARY {
|
|
|
1130
1126
|
export { value_81 as value };
|
|
1131
1127
|
const sort_73: boolean;
|
|
1132
1128
|
export { sort_73 as sort };
|
|
1133
|
-
const
|
|
1134
|
-
export {
|
|
1129
|
+
const search_7: boolean;
|
|
1130
|
+
export { search_7 as search };
|
|
1135
1131
|
const formatter_38: string;
|
|
1136
1132
|
export { formatter_38 as formatter };
|
|
1137
|
-
const
|
|
1138
|
-
export {
|
|
1139
|
-
const
|
|
1140
|
-
export {
|
|
1133
|
+
const align_12: string;
|
|
1134
|
+
export { align_12 as align };
|
|
1135
|
+
const width_22: number;
|
|
1136
|
+
export { width_22 as width };
|
|
1141
1137
|
}
|
|
1142
|
-
export namespace
|
|
1138
|
+
export namespace APP_SUMMARY {
|
|
1143
1139
|
const name_83: string;
|
|
1144
1140
|
export { name_83 as name };
|
|
1145
|
-
const
|
|
1146
|
-
export {
|
|
1141
|
+
const labelKey_82: string;
|
|
1142
|
+
export { labelKey_82 as labelKey };
|
|
1147
1143
|
const value_82: string;
|
|
1148
1144
|
export { value_82 as value };
|
|
1149
|
-
const sort_74:
|
|
1145
|
+
const sort_74: boolean;
|
|
1150
1146
|
export { sort_74 as sort };
|
|
1147
|
+
const search_8: boolean;
|
|
1148
|
+
export { search_8 as search };
|
|
1151
1149
|
const formatter_39: string;
|
|
1152
1150
|
export { formatter_39 as formatter };
|
|
1151
|
+
const align_13: string;
|
|
1152
|
+
export { align_13 as align };
|
|
1153
|
+
const width_23: number;
|
|
1154
|
+
export { width_23 as width };
|
|
1155
|
+
}
|
|
1156
|
+
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1157
|
+
const name_84: string;
|
|
1158
|
+
export { name_84 as name };
|
|
1159
|
+
const label_1: string;
|
|
1160
|
+
export { label_1 as label };
|
|
1161
|
+
const value_83: string;
|
|
1162
|
+
export { value_83 as value };
|
|
1163
|
+
const sort_75: string;
|
|
1164
|
+
export { sort_75 as sort };
|
|
1165
|
+
const formatter_40: string;
|
|
1166
|
+
export { formatter_40 as formatter };
|
|
1153
1167
|
export namespace formatterOpts_4 {
|
|
1154
1168
|
export namespace options_1 {
|
|
1155
1169
|
const internal_1: boolean;
|
|
@@ -1160,16 +1174,16 @@ export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
|
1160
1174
|
export { formatterOpts_4 as formatterOpts };
|
|
1161
1175
|
}
|
|
1162
1176
|
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1163
|
-
const
|
|
1164
|
-
export {
|
|
1177
|
+
const name_85: string;
|
|
1178
|
+
export { name_85 as name };
|
|
1165
1179
|
const label_2: string;
|
|
1166
1180
|
export { label_2 as label };
|
|
1167
|
-
const
|
|
1168
|
-
export {
|
|
1169
|
-
const
|
|
1170
|
-
export {
|
|
1171
|
-
const
|
|
1172
|
-
export {
|
|
1181
|
+
const value_84: string;
|
|
1182
|
+
export { value_84 as value };
|
|
1183
|
+
const sort_76: string;
|
|
1184
|
+
export { sort_76 as sort };
|
|
1185
|
+
const formatter_41: string;
|
|
1186
|
+
export { formatter_41 as formatter };
|
|
1173
1187
|
export namespace formatterOpts_5 {
|
|
1174
1188
|
export namespace options_2 {
|
|
1175
1189
|
const internal_2: boolean;
|
|
@@ -1180,85 +1194,85 @@ export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
|
1180
1194
|
export { formatterOpts_5 as formatterOpts };
|
|
1181
1195
|
}
|
|
1182
1196
|
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1183
|
-
const name_85: string;
|
|
1184
|
-
export { name_85 as name };
|
|
1185
|
-
const label_3: string;
|
|
1186
|
-
export { label_3 as label };
|
|
1187
|
-
const value_84: string;
|
|
1188
|
-
export { value_84 as value };
|
|
1189
|
-
const sort_76: string;
|
|
1190
|
-
export { sort_76 as sort };
|
|
1191
|
-
}
|
|
1192
|
-
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1193
1197
|
const name_86: string;
|
|
1194
1198
|
export { name_86 as name };
|
|
1195
|
-
const
|
|
1196
|
-
export {
|
|
1199
|
+
const label_3: string;
|
|
1200
|
+
export { label_3 as label };
|
|
1197
1201
|
const value_85: string;
|
|
1198
1202
|
export { value_85 as value };
|
|
1199
1203
|
const sort_77: string;
|
|
1200
1204
|
export { sort_77 as sort };
|
|
1201
1205
|
}
|
|
1202
|
-
export namespace
|
|
1206
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1203
1207
|
const name_87: string;
|
|
1204
1208
|
export { name_87 as name };
|
|
1205
|
-
const
|
|
1206
|
-
export {
|
|
1209
|
+
const label_4: string;
|
|
1210
|
+
export { label_4 as label };
|
|
1207
1211
|
const value_86: string;
|
|
1208
|
-
export { value_86 as value };
|
|
1209
|
-
const sort_78: string;
|
|
1210
|
-
export { sort_78 as sort };
|
|
1211
|
-
const formatter_41: string;
|
|
1212
|
-
export { formatter_41 as formatter };
|
|
1213
|
-
export namespace formatterOpts_6 {
|
|
1214
|
-
export namespace options_3 {
|
|
1215
|
-
const internal_3: boolean;
|
|
1216
|
-
export { internal_3 as internal };
|
|
1217
|
-
}
|
|
1218
|
-
export { options_3 as options };
|
|
1219
|
-
}
|
|
1220
|
-
export { formatterOpts_6 as formatterOpts };
|
|
1212
|
+
export { value_86 as value };
|
|
1213
|
+
const sort_78: string;
|
|
1214
|
+
export { sort_78 as sort };
|
|
1221
1215
|
}
|
|
1222
|
-
export namespace
|
|
1216
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1223
1217
|
const name_88: string;
|
|
1224
1218
|
export { name_88 as name };
|
|
1225
|
-
const
|
|
1226
|
-
export {
|
|
1219
|
+
const label_5: string;
|
|
1220
|
+
export { label_5 as label };
|
|
1227
1221
|
const value_87: string;
|
|
1228
1222
|
export { value_87 as value };
|
|
1229
1223
|
const sort_79: string;
|
|
1230
1224
|
export { sort_79 as sort };
|
|
1231
1225
|
const formatter_42: string;
|
|
1232
1226
|
export { formatter_42 as formatter };
|
|
1233
|
-
export namespace
|
|
1234
|
-
|
|
1235
|
-
|
|
1227
|
+
export namespace formatterOpts_6 {
|
|
1228
|
+
export namespace options_3 {
|
|
1229
|
+
const internal_3: boolean;
|
|
1230
|
+
export { internal_3 as internal };
|
|
1231
|
+
}
|
|
1232
|
+
export { options_3 as options };
|
|
1236
1233
|
}
|
|
1237
|
-
export {
|
|
1234
|
+
export { formatterOpts_6 as formatterOpts };
|
|
1238
1235
|
}
|
|
1239
|
-
export namespace
|
|
1236
|
+
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1240
1237
|
const name_89: string;
|
|
1241
1238
|
export { name_89 as name };
|
|
1242
|
-
const
|
|
1243
|
-
export {
|
|
1239
|
+
const label_6: string;
|
|
1240
|
+
export { label_6 as label };
|
|
1244
1241
|
const value_88: string;
|
|
1245
1242
|
export { value_88 as value };
|
|
1246
1243
|
const sort_80: string;
|
|
1247
1244
|
export { sort_80 as sort };
|
|
1248
1245
|
const formatter_43: string;
|
|
1249
1246
|
export { formatter_43 as formatter };
|
|
1247
|
+
export namespace formatterOpts_7 {
|
|
1248
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1249
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1250
|
+
}
|
|
1251
|
+
export { formatterOpts_7 as formatterOpts };
|
|
1250
1252
|
}
|
|
1251
|
-
export namespace
|
|
1253
|
+
export namespace RECEIVER_PROVIDERS {
|
|
1252
1254
|
const name_90: string;
|
|
1253
1255
|
export { name_90 as name };
|
|
1254
|
-
const
|
|
1255
|
-
export {
|
|
1256
|
+
const label_7: string;
|
|
1257
|
+
export { label_7 as label };
|
|
1256
1258
|
const value_89: string;
|
|
1257
1259
|
export { value_89 as value };
|
|
1258
1260
|
const sort_81: string;
|
|
1259
1261
|
export { sort_81 as sort };
|
|
1260
1262
|
const formatter_44: string;
|
|
1261
1263
|
export { formatter_44 as formatter };
|
|
1264
|
+
}
|
|
1265
|
+
export namespace CONFIGURED_RECEIVER {
|
|
1266
|
+
const name_91: string;
|
|
1267
|
+
export { name_91 as name };
|
|
1268
|
+
const label_8: string;
|
|
1269
|
+
export { label_8 as label };
|
|
1270
|
+
const value_90: string;
|
|
1271
|
+
export { value_90 as value };
|
|
1272
|
+
const sort_82: string;
|
|
1273
|
+
export { sort_82 as sort };
|
|
1274
|
+
const formatter_45: string;
|
|
1275
|
+
export { formatter_45 as formatter };
|
|
1262
1276
|
export namespace formatterOpts_8 {
|
|
1263
1277
|
export namespace options_4 {
|
|
1264
1278
|
const internal_4: boolean;
|
|
@@ -1269,42 +1283,32 @@ export namespace CONFIGURED_RECEIVER {
|
|
|
1269
1283
|
export { formatterOpts_8 as formatterOpts };
|
|
1270
1284
|
}
|
|
1271
1285
|
export namespace GROUP_NAME {
|
|
1272
|
-
const name_91: string;
|
|
1273
|
-
export { name_91 as name };
|
|
1274
|
-
const labelKey_82: string;
|
|
1275
|
-
export { labelKey_82 as labelKey };
|
|
1276
|
-
const value_90: string;
|
|
1277
|
-
export { value_90 as value };
|
|
1278
|
-
const sort_82: string[];
|
|
1279
|
-
export { sort_82 as sort };
|
|
1280
|
-
const search_9: string[];
|
|
1281
|
-
export { search_9 as search };
|
|
1282
|
-
const formatter_45: string;
|
|
1283
|
-
export { formatter_45 as formatter };
|
|
1284
|
-
const width_24: number;
|
|
1285
|
-
export { width_24 as width };
|
|
1286
|
-
}
|
|
1287
|
-
export namespace GROUP_ROLE_NAME {
|
|
1288
1286
|
const name_92: string;
|
|
1289
1287
|
export { name_92 as name };
|
|
1290
1288
|
const labelKey_83: string;
|
|
1291
1289
|
export { labelKey_83 as labelKey };
|
|
1292
1290
|
const value_91: string;
|
|
1293
1291
|
export { value_91 as value };
|
|
1292
|
+
const sort_83: string[];
|
|
1293
|
+
export { sort_83 as sort };
|
|
1294
|
+
const search_9: string[];
|
|
1295
|
+
export { search_9 as search };
|
|
1294
1296
|
const formatter_46: string;
|
|
1295
1297
|
export { formatter_46 as formatter };
|
|
1298
|
+
const width_24: number;
|
|
1299
|
+
export { width_24 as width };
|
|
1296
1300
|
}
|
|
1297
|
-
export namespace
|
|
1301
|
+
export namespace GROUP_ROLE_NAME {
|
|
1298
1302
|
const name_93: string;
|
|
1299
1303
|
export { name_93 as name };
|
|
1300
1304
|
const labelKey_84: string;
|
|
1301
1305
|
export { labelKey_84 as labelKey };
|
|
1302
1306
|
const value_92: string;
|
|
1303
1307
|
export { value_92 as value };
|
|
1304
|
-
const
|
|
1305
|
-
export {
|
|
1308
|
+
const formatter_47: string;
|
|
1309
|
+
export { formatter_47 as formatter };
|
|
1306
1310
|
}
|
|
1307
|
-
export namespace
|
|
1311
|
+
export namespace HPA_REFERENCE {
|
|
1308
1312
|
const name_94: string;
|
|
1309
1313
|
export { name_94 as name };
|
|
1310
1314
|
const labelKey_85: string;
|
|
@@ -1314,7 +1318,7 @@ export namespace MIN_REPLICA {
|
|
|
1314
1318
|
const sort_84: string;
|
|
1315
1319
|
export { sort_84 as sort };
|
|
1316
1320
|
}
|
|
1317
|
-
export namespace
|
|
1321
|
+
export namespace MIN_REPLICA {
|
|
1318
1322
|
const name_95: string;
|
|
1319
1323
|
export { name_95 as name };
|
|
1320
1324
|
const labelKey_86: string;
|
|
@@ -1324,7 +1328,7 @@ export namespace MAX_REPLICA {
|
|
|
1324
1328
|
const sort_85: string;
|
|
1325
1329
|
export { sort_85 as sort };
|
|
1326
1330
|
}
|
|
1327
|
-
export namespace
|
|
1331
|
+
export namespace MAX_REPLICA {
|
|
1328
1332
|
const name_96: string;
|
|
1329
1333
|
export { name_96 as name };
|
|
1330
1334
|
const labelKey_87: string;
|
|
@@ -1334,133 +1338,131 @@ export namespace CURRENT_REPLICA {
|
|
|
1334
1338
|
const sort_86: string;
|
|
1335
1339
|
export { sort_86 as sort };
|
|
1336
1340
|
}
|
|
1337
|
-
export namespace
|
|
1338
|
-
const value_96: string;
|
|
1339
|
-
export { value_96 as value };
|
|
1340
|
-
const formatter_47: string;
|
|
1341
|
-
export { formatter_47 as formatter };
|
|
1342
|
-
}
|
|
1343
|
-
export namespace ACCESS_KEY {
|
|
1341
|
+
export namespace CURRENT_REPLICA {
|
|
1344
1342
|
const name_97: string;
|
|
1345
1343
|
export { name_97 as name };
|
|
1346
1344
|
const labelKey_88: string;
|
|
1347
1345
|
export { labelKey_88 as labelKey };
|
|
1348
|
-
const
|
|
1349
|
-
export {
|
|
1350
|
-
const sort_87: string
|
|
1346
|
+
const value_96: string;
|
|
1347
|
+
export { value_96 as value };
|
|
1348
|
+
const sort_87: string;
|
|
1351
1349
|
export { sort_87 as sort };
|
|
1352
|
-
const width_25: number;
|
|
1353
|
-
export { width_25 as width };
|
|
1354
1350
|
}
|
|
1355
|
-
export namespace
|
|
1356
|
-
const name_98: string;
|
|
1357
|
-
export { name_98 as name };
|
|
1351
|
+
export namespace EXPIRY_STATE {
|
|
1358
1352
|
const value_97: string;
|
|
1359
1353
|
export { value_97 as value };
|
|
1354
|
+
const formatter_48: string;
|
|
1355
|
+
export { formatter_48 as formatter };
|
|
1356
|
+
}
|
|
1357
|
+
export namespace ACCESS_KEY {
|
|
1358
|
+
const name_98: string;
|
|
1359
|
+
export { name_98 as name };
|
|
1360
1360
|
const labelKey_89: string;
|
|
1361
1361
|
export { labelKey_89 as labelKey };
|
|
1362
|
-
const
|
|
1363
|
-
export {
|
|
1364
|
-
const align_15: string;
|
|
1365
|
-
export { align_15 as align };
|
|
1362
|
+
const align_14: string;
|
|
1363
|
+
export { align_14 as align };
|
|
1366
1364
|
const sort_88: string[];
|
|
1367
1365
|
export { sort_88 as sort };
|
|
1368
|
-
const
|
|
1369
|
-
export {
|
|
1366
|
+
const width_25: number;
|
|
1367
|
+
export { width_25 as width };
|
|
1370
1368
|
}
|
|
1371
|
-
export namespace
|
|
1369
|
+
export namespace SCOPE {
|
|
1370
|
+
const name_99: string;
|
|
1371
|
+
export { name_99 as name };
|
|
1372
1372
|
const value_98: string;
|
|
1373
1373
|
export { value_98 as value };
|
|
1374
|
+
const labelKey_90: string;
|
|
1375
|
+
export { labelKey_90 as labelKey };
|
|
1376
|
+
const dashIfEmpty_6: boolean;
|
|
1377
|
+
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1378
|
+
const align_15: string;
|
|
1379
|
+
export { align_15 as align };
|
|
1374
1380
|
const sort_89: string[];
|
|
1375
1381
|
export { sort_89 as sort };
|
|
1382
|
+
const width_26: number;
|
|
1383
|
+
export { width_26 as width };
|
|
1376
1384
|
}
|
|
1377
|
-
export namespace
|
|
1378
|
-
const name_99: string;
|
|
1379
|
-
export { name_99 as name };
|
|
1385
|
+
export namespace SCOPE_NORMAN {
|
|
1380
1386
|
const value_99: string;
|
|
1381
1387
|
export { value_99 as value };
|
|
1382
|
-
const labelKey_90: string;
|
|
1383
|
-
export { labelKey_90 as labelKey };
|
|
1384
|
-
const align_16: string;
|
|
1385
|
-
export { align_16 as align };
|
|
1386
1388
|
const sort_90: string[];
|
|
1387
1389
|
export { sort_90 as sort };
|
|
1388
|
-
const width_27: number;
|
|
1389
|
-
export { width_27 as width };
|
|
1390
|
-
const formatter_48: string;
|
|
1391
|
-
export { formatter_48 as formatter };
|
|
1392
1390
|
}
|
|
1393
|
-
export namespace
|
|
1391
|
+
export namespace EXPIRES {
|
|
1394
1392
|
const name_100: string;
|
|
1395
1393
|
export { name_100 as name };
|
|
1396
|
-
const labelKey_91: string;
|
|
1397
|
-
export { labelKey_91 as labelKey };
|
|
1398
1394
|
const value_100: string;
|
|
1399
1395
|
export { value_100 as value };
|
|
1396
|
+
const labelKey_91: string;
|
|
1397
|
+
export { labelKey_91 as labelKey };
|
|
1398
|
+
const align_16: string;
|
|
1399
|
+
export { align_16 as align };
|
|
1400
1400
|
const sort_91: string[];
|
|
1401
1401
|
export { sort_91 as sort };
|
|
1402
|
+
const width_27: number;
|
|
1403
|
+
export { width_27 as width };
|
|
1402
1404
|
const formatter_49: string;
|
|
1403
1405
|
export { formatter_49 as formatter };
|
|
1404
|
-
const width_28: number;
|
|
1405
|
-
export { width_28 as width };
|
|
1406
|
-
const align_17: string;
|
|
1407
|
-
export { align_17 as align };
|
|
1408
1406
|
}
|
|
1409
|
-
export namespace
|
|
1407
|
+
export namespace RESTART {
|
|
1410
1408
|
const name_101: string;
|
|
1411
1409
|
export { name_101 as name };
|
|
1412
|
-
const value_101: string;
|
|
1413
|
-
export { value_101 as value };
|
|
1414
1410
|
const labelKey_92: string;
|
|
1415
1411
|
export { labelKey_92 as labelKey };
|
|
1412
|
+
const value_101: string;
|
|
1413
|
+
export { value_101 as value };
|
|
1414
|
+
const sort_92: string[];
|
|
1415
|
+
export { sort_92 as sort };
|
|
1416
|
+
const formatter_50: string;
|
|
1417
|
+
export { formatter_50 as formatter };
|
|
1418
|
+
const width_28: number;
|
|
1419
|
+
export { width_28 as width };
|
|
1420
|
+
const align_17: string;
|
|
1421
|
+
export { align_17 as align };
|
|
1416
1422
|
}
|
|
1417
|
-
export namespace
|
|
1423
|
+
export namespace ROLE {
|
|
1418
1424
|
const name_102: string;
|
|
1419
1425
|
export { name_102 as name };
|
|
1420
|
-
const labelKey_93: string;
|
|
1421
|
-
export { labelKey_93 as labelKey };
|
|
1422
1426
|
const value_102: string;
|
|
1423
1427
|
export { value_102 as value };
|
|
1424
|
-
const
|
|
1425
|
-
export {
|
|
1426
|
-
const sort_92: string[];
|
|
1427
|
-
export { sort_92 as sort };
|
|
1428
|
-
const formatter_50: string;
|
|
1429
|
-
export { formatter_50 as formatter };
|
|
1430
|
-
export namespace formatterOpts_9 {
|
|
1431
|
-
const prefix: string;
|
|
1432
|
-
}
|
|
1433
|
-
export { formatterOpts_9 as formatterOpts };
|
|
1428
|
+
const labelKey_93: string;
|
|
1429
|
+
export { labelKey_93 as labelKey };
|
|
1434
1430
|
}
|
|
1435
|
-
export namespace
|
|
1431
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1436
1432
|
const name_103: string;
|
|
1437
1433
|
export { name_103 as name };
|
|
1438
1434
|
const labelKey_94: string;
|
|
1439
1435
|
export { labelKey_94 as labelKey };
|
|
1440
|
-
const sort_93: string[];
|
|
1441
|
-
export { sort_93 as sort };
|
|
1442
1436
|
const value_103: string;
|
|
1443
1437
|
export { value_103 as value };
|
|
1444
|
-
const
|
|
1445
|
-
export {
|
|
1446
|
-
const
|
|
1447
|
-
export {
|
|
1438
|
+
const align_18: string;
|
|
1439
|
+
export { align_18 as align };
|
|
1440
|
+
const sort_93: string[];
|
|
1441
|
+
export { sort_93 as sort };
|
|
1448
1442
|
const formatter_51: string;
|
|
1449
1443
|
export { formatter_51 as formatter };
|
|
1444
|
+
export namespace formatterOpts_9 {
|
|
1445
|
+
const prefix: string;
|
|
1446
|
+
}
|
|
1447
|
+
export { formatterOpts_9 as formatterOpts };
|
|
1450
1448
|
}
|
|
1451
|
-
export namespace
|
|
1449
|
+
export namespace STATE_NORMAN {
|
|
1452
1450
|
const name_104: string;
|
|
1453
1451
|
export { name_104 as name };
|
|
1454
1452
|
const labelKey_95: string;
|
|
1455
1453
|
export { labelKey_95 as labelKey };
|
|
1456
|
-
const value_104: string;
|
|
1457
|
-
export { value_104 as value };
|
|
1458
1454
|
const sort_94: string[];
|
|
1459
1455
|
export { sort_94 as sort };
|
|
1456
|
+
const value_104: string;
|
|
1457
|
+
export { value_104 as value };
|
|
1458
|
+
const width_29: number;
|
|
1459
|
+
export { width_29 as width };
|
|
1460
|
+
const _default_1: string;
|
|
1461
|
+
export { _default_1 as default };
|
|
1460
1462
|
const formatter_52: string;
|
|
1461
1463
|
export { formatter_52 as formatter };
|
|
1462
1464
|
}
|
|
1463
|
-
export namespace
|
|
1465
|
+
export namespace KUBE_NODE_OS {
|
|
1464
1466
|
const name_105: string;
|
|
1465
1467
|
export { name_105 as name };
|
|
1466
1468
|
const labelKey_96: string;
|
|
@@ -1471,10 +1473,8 @@ export namespace MACHINE_NODE_OS {
|
|
|
1471
1473
|
export { sort_95 as sort };
|
|
1472
1474
|
const formatter_53: string;
|
|
1473
1475
|
export { formatter_53 as formatter };
|
|
1474
|
-
const dashIfEmpty_7: boolean;
|
|
1475
|
-
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1476
1476
|
}
|
|
1477
|
-
export namespace
|
|
1477
|
+
export namespace MACHINE_NODE_OS {
|
|
1478
1478
|
const name_106: string;
|
|
1479
1479
|
export { name_106 as name };
|
|
1480
1480
|
const labelKey_97: string;
|
|
@@ -1485,35 +1485,49 @@ export namespace MANAGEMENT_NODE_OS {
|
|
|
1485
1485
|
export { sort_96 as sort };
|
|
1486
1486
|
const formatter_54: string;
|
|
1487
1487
|
export { formatter_54 as formatter };
|
|
1488
|
-
const
|
|
1489
|
-
export {
|
|
1488
|
+
const dashIfEmpty_7: boolean;
|
|
1489
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1490
1490
|
}
|
|
1491
|
-
export namespace
|
|
1491
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1492
1492
|
const name_107: string;
|
|
1493
1493
|
export { name_107 as name };
|
|
1494
1494
|
const labelKey_98: string;
|
|
1495
1495
|
export { labelKey_98 as labelKey };
|
|
1496
1496
|
const value_107: string;
|
|
1497
1497
|
export { value_107 as value };
|
|
1498
|
-
const formatter_55: string;
|
|
1499
|
-
export { formatter_55 as formatter };
|
|
1500
|
-
export namespace formatterOpts_10 {
|
|
1501
|
-
const addSuffix_1: boolean;
|
|
1502
|
-
export { addSuffix_1 as addSuffix };
|
|
1503
|
-
}
|
|
1504
|
-
export { formatterOpts_10 as formatterOpts };
|
|
1505
1498
|
const sort_97: string[];
|
|
1506
1499
|
export { sort_97 as sort };
|
|
1500
|
+
const formatter_55: string;
|
|
1501
|
+
export { formatter_55 as formatter };
|
|
1502
|
+
const dashIfEmpty_8: boolean;
|
|
1503
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1507
1504
|
}
|
|
1508
|
-
export namespace
|
|
1505
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1509
1506
|
const name_108: string;
|
|
1510
1507
|
export { name_108 as name };
|
|
1511
1508
|
const labelKey_99: string;
|
|
1512
1509
|
export { labelKey_99 as labelKey };
|
|
1513
1510
|
const value_108: string;
|
|
1514
1511
|
export { value_108 as value };
|
|
1512
|
+
const formatter_56: string;
|
|
1513
|
+
export { formatter_56 as formatter };
|
|
1514
|
+
export namespace formatterOpts_10 {
|
|
1515
|
+
const addSuffix_1: boolean;
|
|
1516
|
+
export { addSuffix_1 as addSuffix };
|
|
1517
|
+
}
|
|
1518
|
+
export { formatterOpts_10 as formatterOpts };
|
|
1515
1519
|
const sort_98: string[];
|
|
1516
1520
|
export { sort_98 as sort };
|
|
1521
|
+
}
|
|
1522
|
+
export namespace FLEET_BUNDLE_TYPE {
|
|
1523
|
+
const name_109: string;
|
|
1524
|
+
export { name_109 as name };
|
|
1525
|
+
const labelKey_100: string;
|
|
1526
|
+
export { labelKey_100 as labelKey };
|
|
1527
|
+
const value_109: string;
|
|
1528
|
+
export { value_109 as value };
|
|
1529
|
+
const sort_99: string[];
|
|
1530
|
+
export { sort_99 as sort };
|
|
1517
1531
|
const width_30: number;
|
|
1518
1532
|
export { width_30 as width };
|
|
1519
1533
|
}
|
|
@@ -1567,6 +1581,7 @@ export const NETWORK_POLICY: "networking.k8s.io.networkpolicy";
|
|
|
1567
1581
|
export const POD: "pod";
|
|
1568
1582
|
export const POD_DISRUPTION_BUDGET: "policy.poddisruptionbudget";
|
|
1569
1583
|
export const PSP: "policy.podsecuritypolicy";
|
|
1584
|
+
export const PSPS: "policy.podsecuritypolicies";
|
|
1570
1585
|
export const PV: "persistentvolume";
|
|
1571
1586
|
export const PVC: "persistentvolumeclaim";
|
|
1572
1587
|
export const RESOURCE_QUOTA: "resourcequota";
|
|
@@ -1704,6 +1719,8 @@ export namespace FLEET {
|
|
|
1704
1719
|
export const WORKSPACE: string;
|
|
1705
1720
|
const TOKEN_2: string;
|
|
1706
1721
|
export { TOKEN_2 as TOKEN };
|
|
1722
|
+
export const BUNDLE_NAMESPACE_MAPPING: string;
|
|
1723
|
+
export const GIT_REPO_RESTRICTION: string;
|
|
1707
1724
|
}
|
|
1708
1725
|
export namespace GATEKEEPER {
|
|
1709
1726
|
export const CONSTRAINT_TEMPLATE: string;
|
|
@@ -2264,6 +2281,10 @@ export default class Resource {
|
|
|
2264
2281
|
_findRelationship(rel: any, direction: any): Promise<any[]>;
|
|
2265
2282
|
get shortId(): any;
|
|
2266
2283
|
toJSON(): {};
|
|
2284
|
+
/**
|
|
2285
|
+
* Allow models to override the object that is sent when saving this resource
|
|
2286
|
+
*/
|
|
2287
|
+
toSave(): any;
|
|
2267
2288
|
get creationTimestamp(): any;
|
|
2268
2289
|
}
|
|
2269
2290
|
}
|
|
@@ -2297,9 +2318,50 @@ export namespace actions {
|
|
|
2297
2318
|
}
|
|
2298
2319
|
}
|
|
2299
2320
|
|
|
2300
|
-
// @shell/utils/
|
|
2301
|
-
|
|
2302
|
-
declare module '@shell/utils/
|
|
2321
|
+
// @shell/utils/nuxt/utils
|
|
2322
|
+
|
|
2323
|
+
declare module '@shell/utils/nuxt/utils' {
|
|
2324
|
+
export function createGetCounter(counterObject: any, defaultKey?: string): (id?: string) => number;
|
|
2325
|
+
export function empty(): void;
|
|
2326
|
+
export function globalHandleError(error: any): void;
|
|
2327
|
+
export function interopDefault(promise: any): any;
|
|
2328
|
+
export function hasFetch(vm: any): boolean;
|
|
2329
|
+
export function purifyData(data: any): any;
|
|
2330
|
+
export function getChildrenComponentInstancesUsingFetch(vm: any, instances?: any[]): any[];
|
|
2331
|
+
export function applyAsyncData(Component: any, asyncData: any): void;
|
|
2332
|
+
export function sanitizeComponent(Component: any): any;
|
|
2333
|
+
export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
|
|
2334
|
+
export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
|
|
2335
|
+
export function flatMapComponents(route: any, fn: any): any;
|
|
2336
|
+
export function resolveRouteComponents(route: any, fn: any): Promise<[any, any, any, any, any, any, any, any, any, any]>;
|
|
2337
|
+
export function getRouteData(route: any): Promise<any>;
|
|
2338
|
+
export function setContext(app: any, context: any): Promise<void>;
|
|
2339
|
+
export function middlewareSeries(promises: any, appContext: any): any;
|
|
2340
|
+
export function promisify(fn: any, context: any): Promise<any>;
|
|
2341
|
+
export function getLocation(base: any, mode: any): string;
|
|
2342
|
+
/**
|
|
2343
|
+
* Compile a string to a template function for the path.
|
|
2344
|
+
*
|
|
2345
|
+
* @param {string} str
|
|
2346
|
+
* @param {Object=} options
|
|
2347
|
+
* @return {!function(Object=, Object=)}
|
|
2348
|
+
*/
|
|
2349
|
+
export function compile(str: string, options?: any | undefined): (arg0: any | undefined, arg1: any | undefined) => any;
|
|
2350
|
+
export function getQueryDiff(toQuery: any, fromQuery: any): {};
|
|
2351
|
+
export function normalizeError(err: any): any;
|
|
2352
|
+
export function addLifecycleHook(vm: any, hook: any, fn: any): void;
|
|
2353
|
+
export function setScrollRestoration(newVal: any): void;
|
|
2354
|
+
export const urlJoin: typeof joinURL;
|
|
2355
|
+
export const stripTrailingSlash: typeof withoutTrailingSlash;
|
|
2356
|
+
export const isSamePath: typeof _isSamePath;
|
|
2357
|
+
import { joinURL } from "ufo";
|
|
2358
|
+
import { withoutTrailingSlash } from "ufo";
|
|
2359
|
+
import { isSamePath as _isSamePath } from "ufo";
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
// @shell/utils/utils/alertmanagerconfig
|
|
2363
|
+
|
|
2364
|
+
declare module '@shell/utils/utils/alertmanagerconfig' {
|
|
2303
2365
|
export function getSecretId(dispatch: any): Promise<string>;
|
|
2304
2366
|
export function getSecret(dispatch: any): Promise<any>;
|
|
2305
2367
|
export function loadConfig(dispatch: any): Promise<{
|
|
@@ -2315,9 +2377,9 @@ export function canCreate(rootGetters: any): any;
|
|
|
2315
2377
|
export const FILENAME: "alertmanager.yaml";
|
|
2316
2378
|
}
|
|
2317
2379
|
|
|
2318
|
-
// @shell/utils/auth
|
|
2380
|
+
// @shell/utils/utils/auth
|
|
2319
2381
|
|
|
2320
|
-
declare module '@shell/utils/auth' {
|
|
2382
|
+
declare module '@shell/utils/utils/auth' {
|
|
2321
2383
|
export function openAuthPopup(url: any, provider: any): any;
|
|
2322
2384
|
export function returnTo(opt: any, vm: any): string;
|
|
2323
2385
|
export function authProvidersInfo(store: any): Promise<{
|
|
@@ -2333,25 +2395,27 @@ export function authProvidersInfo(store: any): Promise<{
|
|
|
2333
2395
|
};
|
|
2334
2396
|
enabled: any;
|
|
2335
2397
|
}>;
|
|
2398
|
+
export function checkSchemasForFindAllHash(types: any, store: any): any;
|
|
2399
|
+
export function checkPermissions(types: any, getters: any): any;
|
|
2336
2400
|
}
|
|
2337
2401
|
|
|
2338
|
-
// @shell/utils/aws
|
|
2402
|
+
// @shell/utils/utils/aws
|
|
2339
2403
|
|
|
2340
|
-
declare module '@shell/utils/aws' {
|
|
2404
|
+
declare module '@shell/utils/utils/aws' {
|
|
2341
2405
|
}
|
|
2342
2406
|
|
|
2343
|
-
// @shell/utils/cluster
|
|
2407
|
+
// @shell/utils/utils/cluster
|
|
2344
2408
|
|
|
2345
|
-
declare module '@shell/utils/cluster' {
|
|
2409
|
+
declare module '@shell/utils/utils/cluster' {
|
|
2346
2410
|
export function filterOnlyKubernetesClusters(mgmtClusters: any): any;
|
|
2347
2411
|
export function isHarvesterCluster(mgmtCluster: any): boolean;
|
|
2348
2412
|
export function isHarvesterSatisfiesVersion(version?: string): any;
|
|
2349
2413
|
export function filterHiddenLocalCluster(mgmtClusters: any, store: any): any;
|
|
2350
2414
|
}
|
|
2351
2415
|
|
|
2352
|
-
// @shell/utils/color
|
|
2416
|
+
// @shell/utils/utils/color
|
|
2353
2417
|
|
|
2354
|
-
declare module '@shell/utils/color' {
|
|
2418
|
+
declare module '@shell/utils/utils/color' {
|
|
2355
2419
|
export function createCssVars(color: any, theme?: string, name?: string): {
|
|
2356
2420
|
[x: string]: any;
|
|
2357
2421
|
};
|
|
@@ -2379,9 +2443,9 @@ export function colorToRgb(color: any): {
|
|
|
2379
2443
|
};
|
|
2380
2444
|
}
|
|
2381
2445
|
|
|
2382
|
-
// @shell/utils/computed
|
|
2446
|
+
// @shell/utils/utils/computed
|
|
2383
2447
|
|
|
2384
|
-
declare module '@shell/utils/computed' {
|
|
2448
|
+
declare module '@shell/utils/utils/computed' {
|
|
2385
2449
|
/**
|
|
2386
2450
|
* Creates a computed property that handles converting strings to numbers and numbers to strings. Particularly when dealing with UnitInput.
|
|
2387
2451
|
* @param {*} path The path of the real value
|
|
@@ -2403,9 +2467,9 @@ export function keyValueStrings(path: any, delimiter?: any): {
|
|
|
2403
2467
|
};
|
|
2404
2468
|
}
|
|
2405
2469
|
|
|
2406
|
-
// @shell/utils/create-yaml
|
|
2470
|
+
// @shell/utils/utils/create-yaml
|
|
2407
2471
|
|
|
2408
|
-
declare module '@shell/utils/create-yaml' {
|
|
2472
|
+
declare module '@shell/utils/utils/create-yaml' {
|
|
2409
2473
|
export function createYaml(schemas: any, type: any, data: any, processAlwaysAdd?: boolean, depth?: number, path?: string, rootType?: any): string;
|
|
2410
2474
|
export function typeRef(type: any, str: any): any;
|
|
2411
2475
|
export function typeMunge(type: any): any;
|
|
@@ -2415,9 +2479,9 @@ export const NEVER_ADD: string[];
|
|
|
2415
2479
|
export const ACTIVELY_REMOVE: string[];
|
|
2416
2480
|
}
|
|
2417
2481
|
|
|
2418
|
-
// @shell/utils/custom-validators
|
|
2482
|
+
// @shell/utils/utils/custom-validators
|
|
2419
2483
|
|
|
2420
|
-
declare module '@shell/utils/custom-validators' {
|
|
2484
|
+
declare module '@shell/utils/utils/custom-validators' {
|
|
2421
2485
|
declare namespace _default {
|
|
2422
2486
|
export { clusterName };
|
|
2423
2487
|
export { clusterIp };
|
|
@@ -2438,17 +2502,17 @@ declare namespace _default {
|
|
|
2438
2502
|
export default _default;
|
|
2439
2503
|
}
|
|
2440
2504
|
|
|
2441
|
-
// @shell/utils/download
|
|
2505
|
+
// @shell/utils/utils/download
|
|
2442
2506
|
|
|
2443
|
-
declare module '@shell/utils/download' {
|
|
2507
|
+
declare module '@shell/utils/utils/download' {
|
|
2444
2508
|
export function downloadFile(fileName: any, content: any, contentType?: string): Promise<any>;
|
|
2445
2509
|
export function generateZip(files: any): any;
|
|
2446
2510
|
export function downloadUrl(url: any, id?: string): void;
|
|
2447
2511
|
}
|
|
2448
2512
|
|
|
2449
|
-
// @shell/utils/dynamic-importer
|
|
2513
|
+
// @shell/utils/utils/dynamic-importer
|
|
2450
2514
|
|
|
2451
|
-
declare module '@shell/utils/dynamic-importer' {
|
|
2515
|
+
declare module '@shell/utils/utils/dynamic-importer' {
|
|
2452
2516
|
export function importCloudCredential(name: any): () => Promise<any>;
|
|
2453
2517
|
export function importMachineConfig(name: any): () => Promise<any>;
|
|
2454
2518
|
export function importLogin(name: any): () => Promise<any>;
|
|
@@ -2471,9 +2535,9 @@ export function resolveMachineConfigComponent(key: any): string;
|
|
|
2471
2535
|
export function resolveCloudCredentialComponent(key: any): string;
|
|
2472
2536
|
}
|
|
2473
2537
|
|
|
2474
|
-
// @shell/utils/ember-page
|
|
2538
|
+
// @shell/utils/utils/ember-page
|
|
2475
2539
|
|
|
2476
|
-
declare module '@shell/utils/ember-page' {
|
|
2540
|
+
declare module '@shell/utils/utils/ember-page' {
|
|
2477
2541
|
export function findEmberPage(): HTMLElement;
|
|
2478
2542
|
export function clearEmberInactiveTimer(): void;
|
|
2479
2543
|
export function startEmberInactiveTimer(): void;
|
|
@@ -2481,9 +2545,9 @@ export function removeEmberPage(): void;
|
|
|
2481
2545
|
export const EMBER_FRAME: "ember-iframe";
|
|
2482
2546
|
}
|
|
2483
2547
|
|
|
2484
|
-
// @shell/utils/error
|
|
2548
|
+
// @shell/utils/utils/error
|
|
2485
2549
|
|
|
2486
|
-
declare module '@shell/utils/error' {
|
|
2550
|
+
declare module '@shell/utils/utils/error' {
|
|
2487
2551
|
export function stringify(err: any): any;
|
|
2488
2552
|
export function exceptionToErrorsArray(err: any): any;
|
|
2489
2553
|
export class ClusterNotFoundError extends Error {
|
|
@@ -2505,16 +2569,16 @@ export class ApiError extends Error {
|
|
|
2505
2569
|
}
|
|
2506
2570
|
}
|
|
2507
2571
|
|
|
2508
|
-
// @shell/utils/favicon
|
|
2572
|
+
// @shell/utils/utils/favicon
|
|
2509
2573
|
|
|
2510
|
-
declare module '@shell/utils/favicon' {
|
|
2574
|
+
declare module '@shell/utils/utils/favicon' {
|
|
2511
2575
|
export function haveSetFavIcon(): boolean;
|
|
2512
2576
|
export function setFavIcon(store: any): void;
|
|
2513
2577
|
}
|
|
2514
2578
|
|
|
2515
|
-
// @shell/utils/grafana
|
|
2579
|
+
// @shell/utils/utils/grafana
|
|
2516
2580
|
|
|
2517
|
-
declare module '@shell/utils/grafana' {
|
|
2581
|
+
declare module '@shell/utils/utils/grafana' {
|
|
2518
2582
|
export function computeDashboardUrl(embedUrl: any, clusterId: any, params: any): string;
|
|
2519
2583
|
export function dashboardExists(store: any, clusterId: any, embedUrl: any, storeName?: string): Promise<boolean>;
|
|
2520
2584
|
export function allDashboardsExist(store: any, clusterId: any, embeddedUrls: any, storeName?: string): Promise<boolean>;
|
|
@@ -2524,9 +2588,9 @@ export function leaderChanges(dispatch: any, clusterId: any): Promise<any>;
|
|
|
2524
2588
|
export function failedProposals(dispatch: any, clusterId: any): Promise<any>;
|
|
2525
2589
|
}
|
|
2526
2590
|
|
|
2527
|
-
// @shell/utils/group
|
|
2591
|
+
// @shell/utils/utils/group
|
|
2528
2592
|
|
|
2529
|
-
declare module '@shell/utils/group' {
|
|
2593
|
+
declare module '@shell/utils/utils/group' {
|
|
2530
2594
|
export function groupAndFilterOptions(ary: any, filter: any, { defaultFilterKey, groupBy, groupPrefix, itemLabelKey, itemValueKey, itemSortKey, }?: {
|
|
2531
2595
|
defaultFilterKey?: string;
|
|
2532
2596
|
groupBy?: string;
|
|
@@ -2537,18 +2601,18 @@ export function groupAndFilterOptions(ary: any, filter: any, { defaultFilterKey,
|
|
|
2537
2601
|
}): any;
|
|
2538
2602
|
}
|
|
2539
2603
|
|
|
2540
|
-
// @shell/utils/install-redirect
|
|
2604
|
+
// @shell/utils/utils/install-redirect
|
|
2541
2605
|
|
|
2542
|
-
declare module '@shell/utils/install-redirect' {
|
|
2606
|
+
declare module '@shell/utils/utils/install-redirect' {
|
|
2543
2607
|
export default function _default(product: any, chartName: any, defaultResourceOrRoute: any, install?: boolean): ({ redirect, store }: {
|
|
2544
2608
|
redirect: any;
|
|
2545
2609
|
store: any;
|
|
2546
2610
|
}) => Promise<any>;
|
|
2547
2611
|
}
|
|
2548
2612
|
|
|
2549
|
-
// @shell/utils/monitoring
|
|
2613
|
+
// @shell/utils/utils/monitoring
|
|
2550
2614
|
|
|
2551
|
-
declare module '@shell/utils/monitoring' {
|
|
2615
|
+
declare module '@shell/utils/utils/monitoring' {
|
|
2552
2616
|
export function monitoringStatus(): {
|
|
2553
2617
|
monitoringStatus(): {
|
|
2554
2618
|
v1: boolean;
|
|
@@ -2560,9 +2624,9 @@ export function haveV1Monitoring(getters: any): boolean;
|
|
|
2560
2624
|
export function haveV1MonitoringWorkloads(store: any): Promise<boolean>;
|
|
2561
2625
|
}
|
|
2562
2626
|
|
|
2563
|
-
// @shell/utils/namespace-filter
|
|
2627
|
+
// @shell/utils/utils/namespace-filter
|
|
2564
2628
|
|
|
2565
|
-
declare module '@shell/utils/namespace-filter' {
|
|
2629
|
+
declare module '@shell/utils/utils/namespace-filter' {
|
|
2566
2630
|
export const NAMESPACE_FILTER_SPECIAL: "special";
|
|
2567
2631
|
export const NAMESPACE_FILTER_ALL: "all";
|
|
2568
2632
|
export const NAMESPACE_FILTER_ALL_SYSTEM: "all://system";
|
|
@@ -2579,9 +2643,9 @@ export function splitNamespaceFilterKey(key: any): {
|
|
|
2579
2643
|
};
|
|
2580
2644
|
}
|
|
2581
2645
|
|
|
2582
|
-
// @shell/utils/object
|
|
2646
|
+
// @shell/utils/utils/object
|
|
2583
2647
|
|
|
2584
|
-
declare module '@shell/utils/object' {
|
|
2648
|
+
declare module '@shell/utils/utils/object' {
|
|
2585
2649
|
export function set(obj: any, path: any, value: any): any;
|
|
2586
2650
|
export function getAllValues(obj: any, path: any): any[];
|
|
2587
2651
|
export function get(obj: any, path: any): any;
|
|
@@ -2608,9 +2672,9 @@ export function pickBy(obj?: {}, predicate?: (value: any, key: any) => boolean):
|
|
|
2608
2672
|
export function toDictionary(array: any, callback: any): any;
|
|
2609
2673
|
}
|
|
2610
2674
|
|
|
2611
|
-
// @shell/utils/parse-externalid
|
|
2675
|
+
// @shell/utils/utils/parse-externalid
|
|
2612
2676
|
|
|
2613
|
-
declare module '@shell/utils/parse-externalid' {
|
|
2677
|
+
declare module '@shell/utils/utils/parse-externalid' {
|
|
2614
2678
|
export function parseExternalId(externalId: any): {
|
|
2615
2679
|
kind: any;
|
|
2616
2680
|
group: any;
|
|
@@ -2629,9 +2693,9 @@ export function parseHelmExternalId(externalId: any): {
|
|
|
2629
2693
|
};
|
|
2630
2694
|
}
|
|
2631
2695
|
|
|
2632
|
-
// @shell/utils/platform
|
|
2696
|
+
// @shell/utils/utils/platform
|
|
2633
2697
|
|
|
2634
|
-
declare module '@shell/utils/platform' {
|
|
2698
|
+
declare module '@shell/utils/utils/platform' {
|
|
2635
2699
|
export function isAlternate(event: any): boolean;
|
|
2636
2700
|
export function isMore(event: any): boolean;
|
|
2637
2701
|
export function isRange(event: any): boolean;
|
|
@@ -2670,9 +2734,9 @@ export namespace KEY {
|
|
|
2670
2734
|
}
|
|
2671
2735
|
}
|
|
2672
2736
|
|
|
2673
|
-
// @shell/utils/poller-sequential
|
|
2737
|
+
// @shell/utils/utils/poller-sequential
|
|
2674
2738
|
|
|
2675
|
-
declare module '@shell/utils/poller-sequential' {
|
|
2739
|
+
declare module '@shell/utils/utils/poller-sequential' {
|
|
2676
2740
|
export default class PollerSequential {
|
|
2677
2741
|
constructor(fn: any, pollRateMs: any, maxRetries?: number);
|
|
2678
2742
|
fn: any;
|
|
@@ -2687,9 +2751,9 @@ export default class PollerSequential {
|
|
|
2687
2751
|
}
|
|
2688
2752
|
}
|
|
2689
2753
|
|
|
2690
|
-
// @shell/utils/poller
|
|
2754
|
+
// @shell/utils/utils/poller
|
|
2691
2755
|
|
|
2692
|
-
declare module '@shell/utils/poller' {
|
|
2756
|
+
declare module '@shell/utils/utils/poller' {
|
|
2693
2757
|
export default class Poller {
|
|
2694
2758
|
constructor(fn: any, pollRateMs: any, maxRetries?: number);
|
|
2695
2759
|
fn: any;
|
|
@@ -2703,9 +2767,9 @@ export default class Poller {
|
|
|
2703
2767
|
}
|
|
2704
2768
|
}
|
|
2705
2769
|
|
|
2706
|
-
// @shell/utils/position
|
|
2770
|
+
// @shell/utils/utils/position
|
|
2707
2771
|
|
|
2708
|
-
declare module '@shell/utils/position' {
|
|
2772
|
+
declare module '@shell/utils/utils/position' {
|
|
2709
2773
|
export function boundingRect(elem: any): {
|
|
2710
2774
|
top: any;
|
|
2711
2775
|
right: any;
|
|
@@ -2724,11 +2788,11 @@ export function fakeRectFor(event: any): {
|
|
|
2724
2788
|
};
|
|
2725
2789
|
export function screenRect(): {
|
|
2726
2790
|
top: number;
|
|
2727
|
-
right:
|
|
2728
|
-
bottom:
|
|
2791
|
+
right: number;
|
|
2792
|
+
bottom: number;
|
|
2729
2793
|
left: number;
|
|
2730
|
-
width:
|
|
2731
|
-
height:
|
|
2794
|
+
width: number;
|
|
2795
|
+
height: number;
|
|
2732
2796
|
};
|
|
2733
2797
|
export function fitOnScreen(contentElem: any, triggerElemOrEvent: any, opt: any, useDefaults: any): {
|
|
2734
2798
|
position: string;
|
|
@@ -2742,9 +2806,9 @@ export const BOTTOM: "bottom";
|
|
|
2742
2806
|
export const AUTO: "auto";
|
|
2743
2807
|
}
|
|
2744
2808
|
|
|
2745
|
-
// @shell/utils/promise
|
|
2809
|
+
// @shell/utils/utils/promise
|
|
2746
2810
|
|
|
2747
|
-
declare module '@shell/utils/promise' {
|
|
2811
|
+
declare module '@shell/utils/utils/promise' {
|
|
2748
2812
|
export function allHash(hash: any): Promise<{}>;
|
|
2749
2813
|
export function allHashSettled(hash: any): Promise<{}>;
|
|
2750
2814
|
export function eachLimit(items: any, limit: any, iterator: any, debug?: boolean): Promise<any>;
|
|
@@ -2764,22 +2828,28 @@ export function deferred(name: any): {
|
|
|
2764
2828
|
export function setPromiseResult(promise: any, obj: any, key: any, label: any): void;
|
|
2765
2829
|
}
|
|
2766
2830
|
|
|
2767
|
-
// @shell/utils/router
|
|
2831
|
+
// @shell/utils/utils/router
|
|
2768
2832
|
|
|
2769
|
-
declare module '@shell/utils/router' {
|
|
2833
|
+
declare module '@shell/utils/utils/router' {
|
|
2770
2834
|
export function queryParamsFor(current: any, qp: any, defaults?: {}): any;
|
|
2771
2835
|
}
|
|
2772
2836
|
|
|
2773
|
-
// @shell/utils/
|
|
2837
|
+
// @shell/utils/utils/router.scrollBehavior
|
|
2838
|
+
|
|
2839
|
+
declare module '@shell/utils/utils/router.scrollBehavior' {
|
|
2840
|
+
export default function _default(to: any, from: any, savedPosition: any): Promise<any>;
|
|
2841
|
+
}
|
|
2842
|
+
|
|
2843
|
+
// @shell/utils/utils/select
|
|
2774
2844
|
|
|
2775
|
-
declare module '@shell/utils/select' {
|
|
2845
|
+
declare module '@shell/utils/utils/select' {
|
|
2776
2846
|
export function onClickOption(option: any, e: any): void;
|
|
2777
2847
|
export function calculatePosition(dropdownList: any, component: any, width: any, placement: any): void;
|
|
2778
2848
|
}
|
|
2779
2849
|
|
|
2780
|
-
// @shell/utils/selector
|
|
2850
|
+
// @shell/utils/utils/selector
|
|
2781
2851
|
|
|
2782
|
-
declare module '@shell/utils/selector' {
|
|
2852
|
+
declare module '@shell/utils/utils/selector' {
|
|
2783
2853
|
export function parse(labelSelector: any): any;
|
|
2784
2854
|
export function convertSelectorObj(obj: any): any;
|
|
2785
2855
|
export function convert(matchLabelsObj: any, matchExpressions: any): any;
|
|
@@ -2791,9 +2861,9 @@ export function matches(obj: any, selector: any): boolean;
|
|
|
2791
2861
|
export function matching(ary: any, selector: any): any;
|
|
2792
2862
|
}
|
|
2793
2863
|
|
|
2794
|
-
// @shell/utils/socket
|
|
2864
|
+
// @shell/utils/utils/socket
|
|
2795
2865
|
|
|
2796
|
-
declare module '@shell/utils/socket' {
|
|
2866
|
+
declare module '@shell/utils/utils/socket' {
|
|
2797
2867
|
export const STATE_CONNECTING: "connecting";
|
|
2798
2868
|
export const STATE_CONNECTED: "connected";
|
|
2799
2869
|
export const EVENT_CONNECTING: "connecting";
|
|
@@ -2805,6 +2875,7 @@ export const EVENT_CONNECT_ERROR: "connect_error";
|
|
|
2805
2875
|
export const EVENT_DISCONNECT_ERROR: "disconnect_error";
|
|
2806
2876
|
export const NO_WATCH: "NO_WATCH";
|
|
2807
2877
|
export const NO_SCHEMA: "NO_SCHEMA";
|
|
2878
|
+
export const REVISION_TOO_OLD: "TOO_OLD";
|
|
2808
2879
|
declare const Socket_base: import("event-target-shim").EventTargetConstructor<{}, {}, "loose"> & {
|
|
2809
2880
|
<TEvents extends EventTarget.EventDefinition = {}, TEventAttributes extends EventTarget.EventDefinition = {}, TMode extends EventTarget.Mode = "loose">(events: string[]): import("event-target-shim").EventTargetConstructor<TEvents, TEventAttributes, TMode>;
|
|
2810
2881
|
<TEvents_1 extends EventTarget.EventDefinition = {}, TEventAttributes_1 extends EventTarget.EventDefinition = {}, TMode_1 extends EventTarget.Mode = "loose">(event0: string, ...events: string[]): import("event-target-shim").EventTargetConstructor<TEvents_1, TEventAttributes_1, TMode_1>;
|
|
@@ -2860,9 +2931,9 @@ import { EventTarget } from "event-target-shim";
|
|
|
2860
2931
|
export {};
|
|
2861
2932
|
}
|
|
2862
2933
|
|
|
2863
|
-
// @shell/utils/sort
|
|
2934
|
+
// @shell/utils/utils/sort
|
|
2864
2935
|
|
|
2865
|
-
declare module '@shell/utils/sort' {
|
|
2936
|
+
declare module '@shell/utils/utils/sort' {
|
|
2866
2937
|
/**
|
|
2867
2938
|
Returns a consistent type for the passed object.
|
|
2868
2939
|
|
|
@@ -2920,22 +2991,28 @@ export function sortableNumericSuffix(str: any): any;
|
|
|
2920
2991
|
export function isNumeric(num: any): boolean;
|
|
2921
2992
|
}
|
|
2922
2993
|
|
|
2923
|
-
// @shell/utils/stream
|
|
2994
|
+
// @shell/utils/utils/stream
|
|
2924
2995
|
|
|
2925
|
-
declare module '@shell/utils/stream' {
|
|
2996
|
+
declare module '@shell/utils/utils/stream' {
|
|
2926
2997
|
export function streamJson(url: any, opt: any, onData: any): Promise<any>;
|
|
2927
2998
|
export function streamingSupported(): boolean;
|
|
2928
2999
|
}
|
|
2929
3000
|
|
|
2930
|
-
// @shell/utils/string
|
|
3001
|
+
// @shell/utils/utils/string
|
|
2931
3002
|
|
|
2932
|
-
declare module '@shell/utils/string' {
|
|
3003
|
+
declare module '@shell/utils/utils/string' {
|
|
2933
3004
|
export function camelToTitle(str: any): any;
|
|
2934
3005
|
export function ucFirst(str: any): any;
|
|
2935
3006
|
export function lcFirst(str: any): any;
|
|
2936
3007
|
export function strPad(str: any, toLength: any, padChars?: string, right?: boolean): any;
|
|
2937
3008
|
export function sortableNumericSuffix(str: any): any;
|
|
2938
3009
|
export function escapeHtml(html: any): string;
|
|
3010
|
+
/**
|
|
3011
|
+
* Return HTML markup from escaped HTML string, allowing specific tags
|
|
3012
|
+
* @param text string
|
|
3013
|
+
* @returns string
|
|
3014
|
+
*/
|
|
3015
|
+
export function decodeHtml(text: any): string;
|
|
2939
3016
|
export function escapeRegex(string: any): any;
|
|
2940
3017
|
export function random32(count: any): number | number[];
|
|
2941
3018
|
export function randomStr(length?: number, chars?: string): any;
|
|
@@ -2969,9 +3046,9 @@ declare const alpha: "abcdefghijklmnopqrstuvwxyz";
|
|
|
2969
3046
|
export {};
|
|
2970
3047
|
}
|
|
2971
3048
|
|
|
2972
|
-
// @shell/utils/svg-filter
|
|
3049
|
+
// @shell/utils/utils/svg-filter
|
|
2973
3050
|
|
|
2974
|
-
declare module '@shell/utils/svg-filter' {
|
|
3051
|
+
declare module '@shell/utils/utils/svg-filter' {
|
|
2975
3052
|
export class Solver {
|
|
2976
3053
|
constructor(rgb: any);
|
|
2977
3054
|
target: Color;
|
|
@@ -3026,9 +3103,9 @@ declare class Color {
|
|
|
3026
3103
|
export {};
|
|
3027
3104
|
}
|
|
3028
3105
|
|
|
3029
|
-
// @shell/utils/time
|
|
3106
|
+
// @shell/utils/utils/time
|
|
3030
3107
|
|
|
3031
|
-
declare module '@shell/utils/time' {
|
|
3108
|
+
declare module '@shell/utils/utils/time' {
|
|
3032
3109
|
export function diffFrom(value: any, from: any, t: any): {
|
|
3033
3110
|
diff: any;
|
|
3034
3111
|
absDiff: number;
|
|
@@ -3054,9 +3131,9 @@ export function elapsedTime(seconds: any): {
|
|
|
3054
3131
|
};
|
|
3055
3132
|
}
|
|
3056
3133
|
|
|
3057
|
-
// @shell/utils/units
|
|
3134
|
+
// @shell/utils/utils/units
|
|
3058
3135
|
|
|
3059
|
-
declare module '@shell/utils/units' {
|
|
3136
|
+
declare module '@shell/utils/utils/units' {
|
|
3060
3137
|
export function formatSi(inValue: any, { increment, addSuffix, addSuffixSpace, suffix, firstSuffix, startingExponent, minExponent, maxExponent, maxPrecision, canRoundToZero, }?: {
|
|
3061
3138
|
increment?: number;
|
|
3062
3139
|
addSuffix?: boolean;
|
|
@@ -3110,9 +3187,9 @@ declare namespace _default {
|
|
|
3110
3187
|
export default _default;
|
|
3111
3188
|
}
|
|
3112
3189
|
|
|
3113
|
-
// @shell/utils/version
|
|
3190
|
+
// @shell/utils/utils/version
|
|
3114
3191
|
|
|
3115
|
-
declare module '@shell/utils/version' {
|
|
3192
|
+
declare module '@shell/utils/utils/version' {
|
|
3116
3193
|
export function parse(str: any): any;
|
|
3117
3194
|
export function sortable(str: any): any;
|
|
3118
3195
|
export function compare(in1: any, in2: any): any;
|
|
@@ -3128,9 +3205,9 @@ export function readReleaseNotes(store: any): boolean;
|
|
|
3128
3205
|
export function markReadReleaseNotes(store: any): Promise<void>;
|
|
3129
3206
|
}
|
|
3130
3207
|
|
|
3131
|
-
// @shell/utils/width
|
|
3208
|
+
// @shell/utils/utils/width
|
|
3132
3209
|
|
|
3133
|
-
declare module '@shell/utils/width' {
|
|
3210
|
+
declare module '@shell/utils/utils/width' {
|
|
3134
3211
|
/**
|
|
3135
3212
|
* Sets the width of a DOM element. Adapted from [youmightnotneedjquery.com](https://youmightnotneedjquery.com/#set_width)
|
|
3136
3213
|
* @param {Element} el - The target DOM element
|
|
@@ -3145,9 +3222,9 @@ export function setWidth(el: Element, val: Function | string | number): void;
|
|
|
3145
3222
|
export function getWidth(el: Element): number;
|
|
3146
3223
|
}
|
|
3147
3224
|
|
|
3148
|
-
// @shell/utils/window
|
|
3225
|
+
// @shell/utils/utils/window
|
|
3149
3226
|
|
|
3150
|
-
declare module '@shell/utils/window' {
|
|
3227
|
+
declare module '@shell/utils/utils/window' {
|
|
3151
3228
|
export function popupWindowOptions(width: any, height: any): string;
|
|
3152
3229
|
export function open(url: any, name?: string, opt?: string): Window;
|
|
3153
3230
|
export class Popup {
|