@rancher/shell 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/images/providers/outscale.svg +19 -0
- package/assets/styles/app.scss +1 -1
- package/assets/styles/base/_basic.scss +18 -0
- package/assets/styles/base/_mixins.scss +0 -11
- package/assets/styles/base/_variables.scss +2 -4
- package/assets/styles/fonts/_fontstack.scss +11 -11
- package/assets/styles/global/_button.scss +12 -2
- package/assets/styles/vendor/vue-js-modal.scss +3 -3
- package/assets/translations/en-us.yaml +113 -22
- package/assets/translations/zh-hans.yaml +113 -24
- package/babel.config.js +13 -0
- package/chart/gatekeeper.vue +78 -0
- package/chart/istio.vue +135 -112
- 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/BrandImage.vue +1 -4
- package/components/ButtonDropdown.vue +2 -3
- package/components/Carousel.vue +85 -37
- 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 +12 -7
- package/components/ExplorerMembers.vue +101 -6
- package/components/ExplorerProjectsNamespaces.vue +46 -3
- package/components/FileDiff.vue +6 -7
- package/components/GrafanaDashboard.vue +27 -23
- 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 +28 -13
- package/components/SortableTable/selection.js +58 -50
- package/components/Wizard.vue +4 -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/auth/RoleDetailEdit.vue +2 -2
- 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/HookOption.vue +14 -10
- package/components/form/LabeledSelect.vue +14 -11
- package/components/form/Labels.vue +32 -27
- package/components/form/MatchExpressions.vue +19 -4
- package/components/form/Members/ClusterPermissionsEditor.vue +32 -7
- package/components/form/NameNsDescription.vue +32 -46
- package/components/form/ProjectMemberEditor.vue +46 -21
- 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/Tolerations.vue +4 -1
- package/components/form/ValueFromResource.vue +14 -9
- package/components/form/WorkloadPorts.vue +2 -2
- package/components/form/__tests__/LabeledSelect.test.ts +138 -0
- package/components/form/__tests__/NameNsDescription.ts +59 -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/formatter/WorkloadHealthScale.vue +8 -2
- package/components/nav/Group.vue +2 -2
- package/components/nav/NamespaceFilter.vue +23 -11
- package/components/nav/TopLevelMenu.vue +2 -4
- package/components/nav/Type.vue +1 -1
- package/components/nav/WorkspaceSwitcher.vue +46 -5
- package/components/nuxt/nuxt-build-indicator.vue +143 -0
- package/components/nuxt/nuxt-child.js +122 -0
- package/components/nuxt/nuxt-error.vue +98 -0
- package/components/nuxt/nuxt-link.client.js +98 -0
- package/components/nuxt/nuxt-link.server.js +16 -0
- package/components/nuxt/nuxt-loading.vue +154 -0
- package/components/nuxt/nuxt.js +101 -0
- package/config/labels-annotations.js +17 -0
- package/config/middleware.js +12 -0
- package/config/product/auth.js +3 -2
- package/config/product/explorer.js +34 -6
- package/config/product/fleet.js +2 -0
- package/config/query-params.js +1 -0
- package/config/router.js +414 -0
- package/config/store.js +181 -0
- package/config/table-headers.js +54 -12
- package/config/types.js +18 -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/core/plugin.ts +4 -2
- package/core/types.ts +258 -1
- 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/tsconfig.json +0 -1
- package/creators/app/files/vue.config.js +6 -0
- package/creators/app/init +5 -5
- package/creators/pkg/files/.github/workflows/build-extension.yml +110 -0
- package/creators/pkg/files/tsconfig.json +0 -1
- package/creators/pkg/init +35 -4
- package/creators/pkg/pkg.package.json +3 -3
- package/creators/update/init +1 -1
- package/detail/constraints.gatekeeper.sh.constraint.vue +34 -17
- package/detail/fleet.cattle.io.clustergroup.vue +7 -1
- 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 +32 -4
- package/edit/helm.cattle.io.projecthelmchart.vue +5 -1
- package/edit/logging.banzaicloud.io.output/index.vue +18 -5
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +1 -0
- 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 +14 -10
- 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 +21 -4
- 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/import.vue +23 -25
- package/edit/provisioning.cattle.io.cluster/rke2.vue +344 -102
- 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 +22 -7
- package/edit/workload/storage/Mount.vue +3 -3
- package/initialize/App.js +206 -0
- package/initialize/client.js +863 -0
- package/initialize/index.js +364 -0
- package/layouts/default.vue +7 -3
- package/layouts/standalone.vue +13 -0
- package/list/catalog.cattle.io.clusterrepo.vue +1 -0
- 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/list/rbac.authorization.k8s.io.clusterrolebinding.vue +48 -0
- package/list/workload.vue +6 -4
- package/machine-config/azure.vue +97 -38
- package/middleware/authenticated.js +34 -0
- package/mixins/chart.js +101 -2
- package/mixins/fetch.client.js +95 -0
- package/mixins/fetch.server.js +73 -0
- package/mixins/labeled-form-element.ts +2 -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 +46 -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/pod.js +4 -0
- package/models/provisioning.cattle.io.cluster.js +7 -5
- package/models/rbac.authorization.k8s.io.clusterrolebinding.js +16 -0
- package/models/rbac.authorization.k8s.io.rolebinding.js +16 -0
- package/package.json +13 -21
- 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 +98 -102
- 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/diagnostic.vue +32 -25
- package/pages/home.vue +9 -4
- package/pages/index.vue +10 -1
- package/pages/rio/mesh.vue +1 -2
- package/pkg/tsconfig.json +0 -1
- package/plugins/clean-html-directive.js +34 -0
- package/plugins/dashboard-store/actions.js +32 -9
- package/plugins/dashboard-store/index.js +1 -1
- package/plugins/dashboard-store/mutations.js +5 -2
- package/plugins/dashboard-store/resource-class.js +8 -1
- package/plugins/plugin.js +0 -14
- package/plugins/portal-vue.js +4 -0
- 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 +7 -1
- package/rancher-components/components/Banner/Banner.vue +2 -1
- package/rancher-components/components/Form/Checkbox/Checkbox.vue +2 -0
- package/rancher-components/components/Form/Radio/RadioButton.test.ts +31 -0
- package/rancher-components/components/Form/Radio/RadioButton.vue +14 -3
- 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 +333 -0
- package/scripts/serve-pkgs +6 -2
- 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 +6 -2
- package/tsconfig.default.json +36 -0
- package/tsconfig.json +23 -0
- package/types/rancher/index.d.ts +2 -0
- package/types/shell/index.d.ts +466 -320
- package/utils/__tests__/grafana.test.ts +44 -0
- package/utils/__tests__/string.test.ts +12 -0
- package/utils/auth.js +65 -0
- package/utils/axios.js +190 -0
- package/utils/cookie-universal-nuxt.js +10 -0
- package/utils/dom.js +15 -0
- package/utils/grafana.js +35 -16
- package/utils/monitoring.js +2 -1
- package/utils/nuxt.js +659 -0
- 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 +690 -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/plugins/dashboard-store/extensions.js +0 -22
package/types/shell/index.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export const HIDE_SIDE_NAV: "hide-side-nav";
|
|
|
79
79
|
export const PROVIDER: "provider";
|
|
80
80
|
export const CLOUD_CREDENTIAL: "cloud";
|
|
81
81
|
export const PROJECT_ID: "projectId";
|
|
82
|
+
export const FLAT_VIEW: "flatView";
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
// @shell/config/table-headers
|
|
@@ -797,7 +798,7 @@ export namespace REASON {
|
|
|
797
798
|
const sort_48: string[];
|
|
798
799
|
export { sort_48 as sort };
|
|
799
800
|
}
|
|
800
|
-
export namespace
|
|
801
|
+
export namespace OBJECT {
|
|
801
802
|
const name_56: string;
|
|
802
803
|
export { name_56 as name };
|
|
803
804
|
const labelKey_56: string;
|
|
@@ -806,8 +807,12 @@ export namespace RECLAIM_POLICY {
|
|
|
806
807
|
export { value_55 as value };
|
|
807
808
|
const sort_49: string[];
|
|
808
809
|
export { sort_49 as sort };
|
|
810
|
+
const canBeVariable_6: boolean;
|
|
811
|
+
export { canBeVariable_6 as canBeVariable };
|
|
812
|
+
const formatter_25: string;
|
|
813
|
+
export { formatter_25 as formatter };
|
|
809
814
|
}
|
|
810
|
-
export namespace
|
|
815
|
+
export namespace RECLAIM_POLICY {
|
|
811
816
|
const name_57: string;
|
|
812
817
|
export { name_57 as name };
|
|
813
818
|
const labelKey_57: string;
|
|
@@ -817,7 +822,7 @@ export namespace PV_REASON {
|
|
|
817
822
|
const sort_50: string[];
|
|
818
823
|
export { sort_50 as sort };
|
|
819
824
|
}
|
|
820
|
-
export namespace
|
|
825
|
+
export namespace PV_REASON {
|
|
821
826
|
const name_58: string;
|
|
822
827
|
export { name_58 as name };
|
|
823
828
|
const labelKey_58: string;
|
|
@@ -827,7 +832,7 @@ export namespace MESSAGE {
|
|
|
827
832
|
const sort_51: string[];
|
|
828
833
|
export { sort_51 as sort };
|
|
829
834
|
}
|
|
830
|
-
export namespace
|
|
835
|
+
export namespace MESSAGE {
|
|
831
836
|
const name_59: string;
|
|
832
837
|
export { name_59 as name };
|
|
833
838
|
const labelKey_59: string;
|
|
@@ -837,7 +842,7 @@ export namespace KEY {
|
|
|
837
842
|
const sort_52: string[];
|
|
838
843
|
export { sort_52 as sort };
|
|
839
844
|
}
|
|
840
|
-
export namespace
|
|
845
|
+
export namespace KEY {
|
|
841
846
|
const name_60: string;
|
|
842
847
|
export { name_60 as name };
|
|
843
848
|
const labelKey_60: string;
|
|
@@ -847,7 +852,7 @@ export namespace VALUE {
|
|
|
847
852
|
const sort_53: string[];
|
|
848
853
|
export { sort_53 as sort };
|
|
849
854
|
}
|
|
850
|
-
export namespace
|
|
855
|
+
export namespace VALUE {
|
|
851
856
|
const name_61: string;
|
|
852
857
|
export { name_61 as name };
|
|
853
858
|
const labelKey_61: string;
|
|
@@ -856,12 +861,8 @@ export namespace BUILT_IN {
|
|
|
856
861
|
export { value_60 as value };
|
|
857
862
|
const sort_54: string[];
|
|
858
863
|
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
864
|
}
|
|
864
|
-
export namespace
|
|
865
|
+
export namespace BUILT_IN {
|
|
865
866
|
const name_62: string;
|
|
866
867
|
export { name_62 as name };
|
|
867
868
|
const labelKey_62: string;
|
|
@@ -870,24 +871,26 @@ export namespace CLUSTER_CREATOR_DEFAULT {
|
|
|
870
871
|
export { value_61 as value };
|
|
871
872
|
const sort_55: string[];
|
|
872
873
|
export { sort_55 as sort };
|
|
873
|
-
const
|
|
874
|
-
export {
|
|
874
|
+
const align_9: string;
|
|
875
|
+
export { align_9 as align };
|
|
875
876
|
const formatter_26: string;
|
|
876
877
|
export { formatter_26 as formatter };
|
|
877
878
|
}
|
|
878
|
-
export namespace
|
|
879
|
+
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
879
880
|
const name_63: string;
|
|
880
881
|
export { name_63 as name };
|
|
881
882
|
const labelKey_63: string;
|
|
882
883
|
export { labelKey_63 as labelKey };
|
|
883
884
|
const value_62: string;
|
|
884
885
|
export { value_62 as value };
|
|
885
|
-
const formatter_27: string;
|
|
886
|
-
export { formatter_27 as formatter };
|
|
887
886
|
const sort_56: string[];
|
|
888
887
|
export { sort_56 as sort };
|
|
888
|
+
const align_10: string;
|
|
889
|
+
export { align_10 as align };
|
|
890
|
+
const formatter_27: string;
|
|
891
|
+
export { formatter_27 as formatter };
|
|
889
892
|
}
|
|
890
|
-
export namespace
|
|
893
|
+
export namespace RBAC_DEFAULT {
|
|
891
894
|
const name_64: string;
|
|
892
895
|
export { name_64 as name };
|
|
893
896
|
const labelKey_64: string;
|
|
@@ -899,17 +902,19 @@ export namespace RBAC_BUILTIN {
|
|
|
899
902
|
const sort_57: string[];
|
|
900
903
|
export { sort_57 as sort };
|
|
901
904
|
}
|
|
902
|
-
export namespace
|
|
905
|
+
export namespace RBAC_BUILTIN {
|
|
903
906
|
const name_65: string;
|
|
904
907
|
export { name_65 as name };
|
|
905
908
|
const labelKey_65: string;
|
|
906
909
|
export { labelKey_65 as labelKey };
|
|
907
910
|
const value_64: string;
|
|
908
911
|
export { value_64 as value };
|
|
912
|
+
const formatter_29: string;
|
|
913
|
+
export { formatter_29 as formatter };
|
|
909
914
|
const sort_58: string[];
|
|
910
915
|
export { sort_58 as sort };
|
|
911
916
|
}
|
|
912
|
-
export namespace
|
|
917
|
+
export namespace RESOURCE {
|
|
913
918
|
const name_66: string;
|
|
914
919
|
export { name_66 as name };
|
|
915
920
|
const labelKey_66: string;
|
|
@@ -919,103 +924,101 @@ export namespace API_GROUP {
|
|
|
919
924
|
const sort_59: string[];
|
|
920
925
|
export { sort_59 as sort };
|
|
921
926
|
}
|
|
922
|
-
export namespace
|
|
927
|
+
export namespace API_GROUP {
|
|
923
928
|
const name_67: string;
|
|
924
929
|
export { name_67 as name };
|
|
925
930
|
const labelKey_67: string;
|
|
926
931
|
export { labelKey_67 as labelKey };
|
|
927
932
|
const value_66: string;
|
|
928
933
|
export { value_66 as value };
|
|
929
|
-
const sort_60: string;
|
|
934
|
+
const sort_60: string[];
|
|
930
935
|
export { sort_60 as sort };
|
|
931
936
|
}
|
|
932
|
-
export namespace
|
|
937
|
+
export namespace INGRESS_CLASS {
|
|
933
938
|
const name_68: string;
|
|
934
939
|
export { name_68 as name };
|
|
935
940
|
const labelKey_68: string;
|
|
936
941
|
export { labelKey_68 as labelKey };
|
|
937
942
|
const value_67: string;
|
|
938
943
|
export { value_67 as value };
|
|
939
|
-
const sort_61: string
|
|
944
|
+
const sort_61: string;
|
|
940
945
|
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
946
|
}
|
|
948
|
-
export namespace
|
|
947
|
+
export namespace INGRESS_DEFAULT_BACKEND {
|
|
949
948
|
const name_69: string;
|
|
950
949
|
export { name_69 as name };
|
|
951
950
|
const labelKey_69: string;
|
|
952
951
|
export { labelKey_69 as labelKey };
|
|
953
952
|
const value_68: string;
|
|
954
953
|
export { value_68 as value };
|
|
954
|
+
const sort_62: string[];
|
|
955
|
+
export { sort_62 as sort };
|
|
955
956
|
const formatter_30: string;
|
|
956
957
|
export { formatter_30 as formatter };
|
|
957
|
-
const
|
|
958
|
-
export {
|
|
958
|
+
const width_19: number;
|
|
959
|
+
export { width_19 as width };
|
|
960
|
+
const align_11: string;
|
|
961
|
+
export { align_11 as align };
|
|
959
962
|
}
|
|
960
|
-
export namespace
|
|
963
|
+
export namespace INGRESS_TARGET {
|
|
961
964
|
const name_70: string;
|
|
962
965
|
export { name_70 as name };
|
|
963
966
|
const labelKey_70: string;
|
|
964
967
|
export { labelKey_70 as labelKey };
|
|
965
968
|
const value_69: string;
|
|
966
969
|
export { value_69 as value };
|
|
967
|
-
const sort_63: string;
|
|
968
|
-
export { sort_63 as sort };
|
|
969
970
|
const formatter_31: string;
|
|
970
971
|
export { formatter_31 as formatter };
|
|
972
|
+
const sort_63: string;
|
|
973
|
+
export { sort_63 as sort };
|
|
971
974
|
}
|
|
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 };
|
|
975
|
+
export namespace SPEC_TYPE {
|
|
977
976
|
const name_71: string;
|
|
978
977
|
export { name_71 as name };
|
|
979
|
-
const
|
|
980
|
-
export {
|
|
978
|
+
const labelKey_71: string;
|
|
979
|
+
export { labelKey_71 as labelKey };
|
|
981
980
|
const value_70: string;
|
|
982
981
|
export { value_70 as value };
|
|
982
|
+
const sort_64: string;
|
|
983
|
+
export { sort_64 as sort };
|
|
984
|
+
const formatter_32: string;
|
|
985
|
+
export { formatter_32 as formatter };
|
|
983
986
|
}
|
|
984
|
-
export namespace
|
|
987
|
+
export namespace TARGET_PORT {
|
|
985
988
|
const formatter_33: string;
|
|
986
989
|
export { formatter_33 as formatter };
|
|
987
|
-
const name_72: string;
|
|
988
|
-
export { name_72 as name };
|
|
989
990
|
const labelKey_72: string;
|
|
990
991
|
export { labelKey_72 as labelKey };
|
|
991
|
-
const
|
|
992
|
-
export {
|
|
992
|
+
const name_72: string;
|
|
993
|
+
export { name_72 as name };
|
|
993
994
|
const sort_65: string;
|
|
994
995
|
export { sort_65 as sort };
|
|
996
|
+
const value_71: string;
|
|
997
|
+
export { value_71 as value };
|
|
995
998
|
}
|
|
996
|
-
export namespace
|
|
999
|
+
export namespace SELECTOR {
|
|
1000
|
+
const formatter_34: string;
|
|
1001
|
+
export { formatter_34 as formatter };
|
|
997
1002
|
const name_73: string;
|
|
998
1003
|
export { name_73 as name };
|
|
999
1004
|
const labelKey_73: string;
|
|
1000
1005
|
export { labelKey_73 as labelKey };
|
|
1001
1006
|
const value_72: string;
|
|
1002
1007
|
export { value_72 as value };
|
|
1003
|
-
const sort_66: string
|
|
1008
|
+
const sort_66: string;
|
|
1004
1009
|
export { sort_66 as sort };
|
|
1005
1010
|
}
|
|
1006
|
-
export namespace
|
|
1011
|
+
export namespace CHART {
|
|
1007
1012
|
const name_74: string;
|
|
1008
1013
|
export { name_74 as name };
|
|
1009
1014
|
const labelKey_74: string;
|
|
1010
1015
|
export { labelKey_74 as labelKey };
|
|
1011
1016
|
const value_73: string;
|
|
1012
1017
|
export { value_73 as value };
|
|
1013
|
-
const sort_67: string;
|
|
1018
|
+
const sort_67: string[];
|
|
1014
1019
|
export { sort_67 as sort };
|
|
1015
|
-
const dashIfEmpty_4: boolean;
|
|
1016
|
-
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1017
1020
|
}
|
|
1018
|
-
export namespace
|
|
1021
|
+
export namespace CHART_UPGRADE {
|
|
1019
1022
|
const name_75: string;
|
|
1020
1023
|
export { name_75 as name };
|
|
1021
1024
|
const labelKey_75: string;
|
|
@@ -1024,10 +1027,10 @@ export namespace RESOURCES {
|
|
|
1024
1027
|
export { value_74 as value };
|
|
1025
1028
|
const sort_68: string;
|
|
1026
1029
|
export { sort_68 as sort };
|
|
1027
|
-
const
|
|
1028
|
-
export {
|
|
1030
|
+
const dashIfEmpty_4: boolean;
|
|
1031
|
+
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1029
1032
|
}
|
|
1030
|
-
export namespace
|
|
1033
|
+
export namespace RESOURCES {
|
|
1031
1034
|
const name_76: string;
|
|
1032
1035
|
export { name_76 as name };
|
|
1033
1036
|
const labelKey_76: string;
|
|
@@ -1036,48 +1039,60 @@ export namespace URL {
|
|
|
1036
1039
|
export { value_75 as value };
|
|
1037
1040
|
const sort_69: string;
|
|
1038
1041
|
export { sort_69 as sort };
|
|
1042
|
+
const width_20: number;
|
|
1043
|
+
export { width_20 as width };
|
|
1039
1044
|
}
|
|
1040
|
-
export namespace
|
|
1045
|
+
export namespace URL {
|
|
1041
1046
|
const name_77: string;
|
|
1042
1047
|
export { name_77 as name };
|
|
1043
1048
|
const labelKey_77: string;
|
|
1044
1049
|
export { labelKey_77 as labelKey };
|
|
1045
1050
|
const value_76: string;
|
|
1046
1051
|
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[];
|
|
1052
|
+
const sort_70: string;
|
|
1054
1053
|
export { sort_70 as sort };
|
|
1055
1054
|
}
|
|
1056
|
-
export namespace
|
|
1055
|
+
export namespace LAST_UPDATED {
|
|
1057
1056
|
const name_78: string;
|
|
1058
1057
|
export { name_78 as name };
|
|
1059
|
-
|
|
1058
|
+
const labelKey_78: string;
|
|
1059
|
+
export { labelKey_78 as labelKey };
|
|
1060
1060
|
const value_77: string;
|
|
1061
1061
|
export { value_77 as value };
|
|
1062
|
+
const formatter_35: string;
|
|
1063
|
+
export { formatter_35 as formatter };
|
|
1064
|
+
export namespace formatterOpts_3 {
|
|
1065
|
+
const addSuffix: boolean;
|
|
1066
|
+
}
|
|
1067
|
+
export { formatterOpts_3 as formatterOpts };
|
|
1062
1068
|
const sort_71: string[];
|
|
1063
1069
|
export { sort_71 as sort };
|
|
1064
1070
|
}
|
|
1065
|
-
export namespace
|
|
1071
|
+
export namespace WORKSPACE {
|
|
1072
|
+
const name_79: string;
|
|
1073
|
+
export { name_79 as name };
|
|
1074
|
+
export const label: string;
|
|
1066
1075
|
const value_78: string;
|
|
1067
1076
|
export { value_78 as value };
|
|
1068
|
-
|
|
1077
|
+
const sort_72: string[];
|
|
1078
|
+
export { sort_72 as sort };
|
|
1069
1079
|
}
|
|
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 };
|
|
1080
|
+
export namespace WORKLOAD_IMAGES {
|
|
1075
1081
|
const value_79: string;
|
|
1076
1082
|
export { value_79 as value };
|
|
1083
|
+
export const breakpoint: any;
|
|
1084
|
+
}
|
|
1085
|
+
export namespace WORKLOAD_ENDPOINTS {
|
|
1086
|
+
const name_80: string;
|
|
1087
|
+
export { name_80 as name };
|
|
1088
|
+
const labelKey_79: string;
|
|
1089
|
+
export { labelKey_79 as labelKey };
|
|
1090
|
+
const value_80: string;
|
|
1091
|
+
export { value_80 as value };
|
|
1077
1092
|
export function getValue_11(row: any): any;
|
|
1078
1093
|
export { getValue_11 as getValue };
|
|
1079
|
-
const
|
|
1080
|
-
export {
|
|
1094
|
+
const formatter_36: string;
|
|
1095
|
+
export { formatter_36 as formatter };
|
|
1081
1096
|
const dashIfEmpty_5: boolean;
|
|
1082
1097
|
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1083
1098
|
const breakpoint_1: any;
|
|
@@ -1085,12 +1100,12 @@ export namespace WORKLOAD_ENDPOINTS {
|
|
|
1085
1100
|
export const maxPageSize: number;
|
|
1086
1101
|
}
|
|
1087
1102
|
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1088
|
-
const
|
|
1089
|
-
export {
|
|
1090
|
-
const
|
|
1091
|
-
export {
|
|
1092
|
-
const
|
|
1093
|
-
export {
|
|
1103
|
+
const name_81: string;
|
|
1104
|
+
export { name_81 as name };
|
|
1105
|
+
const labelKey_80: string;
|
|
1106
|
+
export { labelKey_80 as labelKey };
|
|
1107
|
+
const formatter_37: string;
|
|
1108
|
+
export { formatter_37 as formatter };
|
|
1094
1109
|
export function getValue_12(): any;
|
|
1095
1110
|
export { getValue_12 as getValue };
|
|
1096
1111
|
const width_21: number;
|
|
@@ -1104,24 +1119,6 @@ export namespace WORKLOAD_HEALTH_SCALE {
|
|
|
1104
1119
|
export { liveUpdates_1 as liveUpdates };
|
|
1105
1120
|
}
|
|
1106
1121
|
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
1122
|
const name_82: string;
|
|
1126
1123
|
export { name_82 as name };
|
|
1127
1124
|
const labelKey_81: string;
|
|
@@ -1130,26 +1127,44 @@ export namespace APP_SUMMARY {
|
|
|
1130
1127
|
export { value_81 as value };
|
|
1131
1128
|
const sort_73: boolean;
|
|
1132
1129
|
export { sort_73 as sort };
|
|
1133
|
-
const
|
|
1134
|
-
export {
|
|
1130
|
+
const search_7: boolean;
|
|
1131
|
+
export { search_7 as search };
|
|
1135
1132
|
const formatter_38: string;
|
|
1136
1133
|
export { formatter_38 as formatter };
|
|
1137
|
-
const
|
|
1138
|
-
export {
|
|
1139
|
-
const
|
|
1140
|
-
export {
|
|
1134
|
+
const align_12: string;
|
|
1135
|
+
export { align_12 as align };
|
|
1136
|
+
const width_22: number;
|
|
1137
|
+
export { width_22 as width };
|
|
1141
1138
|
}
|
|
1142
|
-
export namespace
|
|
1139
|
+
export namespace APP_SUMMARY {
|
|
1143
1140
|
const name_83: string;
|
|
1144
1141
|
export { name_83 as name };
|
|
1145
|
-
const
|
|
1146
|
-
export {
|
|
1142
|
+
const labelKey_82: string;
|
|
1143
|
+
export { labelKey_82 as labelKey };
|
|
1147
1144
|
const value_82: string;
|
|
1148
1145
|
export { value_82 as value };
|
|
1149
|
-
const sort_74:
|
|
1146
|
+
const sort_74: boolean;
|
|
1150
1147
|
export { sort_74 as sort };
|
|
1148
|
+
const search_8: boolean;
|
|
1149
|
+
export { search_8 as search };
|
|
1151
1150
|
const formatter_39: string;
|
|
1152
1151
|
export { formatter_39 as formatter };
|
|
1152
|
+
const align_13: string;
|
|
1153
|
+
export { align_13 as align };
|
|
1154
|
+
const width_23: number;
|
|
1155
|
+
export { width_23 as width };
|
|
1156
|
+
}
|
|
1157
|
+
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1158
|
+
const name_84: string;
|
|
1159
|
+
export { name_84 as name };
|
|
1160
|
+
const labelKey_83: string;
|
|
1161
|
+
export { labelKey_83 as labelKey };
|
|
1162
|
+
const value_83: string;
|
|
1163
|
+
export { value_83 as value };
|
|
1164
|
+
const sort_75: string;
|
|
1165
|
+
export { sort_75 as sort };
|
|
1166
|
+
const formatter_40: string;
|
|
1167
|
+
export { formatter_40 as formatter };
|
|
1153
1168
|
export namespace formatterOpts_4 {
|
|
1154
1169
|
export namespace options_1 {
|
|
1155
1170
|
const internal_1: boolean;
|
|
@@ -1160,16 +1175,18 @@ export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
|
1160
1175
|
export { formatterOpts_4 as formatterOpts };
|
|
1161
1176
|
}
|
|
1162
1177
|
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1163
|
-
const
|
|
1164
|
-
export {
|
|
1165
|
-
const
|
|
1166
|
-
export {
|
|
1167
|
-
const
|
|
1168
|
-
export {
|
|
1169
|
-
const
|
|
1170
|
-
export {
|
|
1171
|
-
const
|
|
1172
|
-
export {
|
|
1178
|
+
const name_85: string;
|
|
1179
|
+
export { name_85 as name };
|
|
1180
|
+
const labelKey_84: string;
|
|
1181
|
+
export { labelKey_84 as labelKey };
|
|
1182
|
+
const value_84: string;
|
|
1183
|
+
export { value_84 as value };
|
|
1184
|
+
const sort_76: string;
|
|
1185
|
+
export { sort_76 as sort };
|
|
1186
|
+
const search_9: string;
|
|
1187
|
+
export { search_9 as search };
|
|
1188
|
+
const formatter_41: string;
|
|
1189
|
+
export { formatter_41 as formatter };
|
|
1173
1190
|
export namespace formatterOpts_5 {
|
|
1174
1191
|
export namespace options_2 {
|
|
1175
1192
|
const internal_2: boolean;
|
|
@@ -1180,343 +1197,379 @@ export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
|
1180
1197
|
export { formatterOpts_5 as formatterOpts };
|
|
1181
1198
|
}
|
|
1182
1199
|
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
1200
|
const name_86: string;
|
|
1194
1201
|
export { name_86 as name };
|
|
1195
|
-
const
|
|
1196
|
-
export {
|
|
1202
|
+
const labelKey_85: string;
|
|
1203
|
+
export { labelKey_85 as labelKey };
|
|
1197
1204
|
const value_85: string;
|
|
1198
1205
|
export { value_85 as value };
|
|
1199
1206
|
const sort_77: string;
|
|
1200
1207
|
export { sort_77 as sort };
|
|
1201
1208
|
}
|
|
1202
|
-
export namespace
|
|
1209
|
+
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1203
1210
|
const name_87: string;
|
|
1204
1211
|
export { name_87 as name };
|
|
1205
|
-
const
|
|
1206
|
-
export {
|
|
1212
|
+
const labelKey_86: string;
|
|
1213
|
+
export { labelKey_86 as labelKey };
|
|
1207
1214
|
const value_86: string;
|
|
1208
1215
|
export { value_86 as value };
|
|
1209
1216
|
const sort_78: string;
|
|
1210
1217
|
export { sort_78 as sort };
|
|
1211
|
-
const
|
|
1212
|
-
export {
|
|
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 };
|
|
1218
|
+
const search_10: string;
|
|
1219
|
+
export { search_10 as search };
|
|
1221
1220
|
}
|
|
1222
|
-
export namespace
|
|
1221
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1223
1222
|
const name_88: string;
|
|
1224
1223
|
export { name_88 as name };
|
|
1225
|
-
const
|
|
1226
|
-
export {
|
|
1224
|
+
const labelKey_87: string;
|
|
1225
|
+
export { labelKey_87 as labelKey };
|
|
1227
1226
|
const value_87: string;
|
|
1228
1227
|
export { value_87 as value };
|
|
1229
1228
|
const sort_79: string;
|
|
1230
1229
|
export { sort_79 as sort };
|
|
1231
|
-
const formatter_42: string;
|
|
1232
|
-
export { formatter_42 as formatter };
|
|
1233
|
-
export namespace formatterOpts_7 {
|
|
1234
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1235
|
-
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1236
|
-
}
|
|
1237
|
-
export { formatterOpts_7 as formatterOpts };
|
|
1238
1230
|
}
|
|
1239
|
-
export namespace
|
|
1231
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1240
1232
|
const name_89: string;
|
|
1241
1233
|
export { name_89 as name };
|
|
1242
|
-
const
|
|
1243
|
-
export {
|
|
1234
|
+
const labelKey_88: string;
|
|
1235
|
+
export { labelKey_88 as labelKey };
|
|
1244
1236
|
const value_88: string;
|
|
1245
1237
|
export { value_88 as value };
|
|
1246
1238
|
const sort_80: string;
|
|
1247
1239
|
export { sort_80 as sort };
|
|
1248
|
-
const
|
|
1249
|
-
export {
|
|
1240
|
+
const formatter_42: string;
|
|
1241
|
+
export { formatter_42 as formatter };
|
|
1242
|
+
export namespace formatterOpts_6 {
|
|
1243
|
+
export namespace options_3 {
|
|
1244
|
+
const internal_3: boolean;
|
|
1245
|
+
export { internal_3 as internal };
|
|
1246
|
+
}
|
|
1247
|
+
export { options_3 as options };
|
|
1248
|
+
}
|
|
1249
|
+
export { formatterOpts_6 as formatterOpts };
|
|
1250
1250
|
}
|
|
1251
|
-
export namespace
|
|
1251
|
+
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1252
1252
|
const name_90: string;
|
|
1253
1253
|
export { name_90 as name };
|
|
1254
|
-
const
|
|
1255
|
-
export {
|
|
1254
|
+
const labelKey_89: string;
|
|
1255
|
+
export { labelKey_89 as labelKey };
|
|
1256
1256
|
const value_89: string;
|
|
1257
1257
|
export { value_89 as value };
|
|
1258
1258
|
const sort_81: string;
|
|
1259
1259
|
export { sort_81 as sort };
|
|
1260
|
-
const
|
|
1261
|
-
export {
|
|
1262
|
-
export namespace
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
export { internal_4 as internal };
|
|
1266
|
-
}
|
|
1267
|
-
export { options_4 as options };
|
|
1260
|
+
const formatter_43: string;
|
|
1261
|
+
export { formatter_43 as formatter };
|
|
1262
|
+
export namespace formatterOpts_7 {
|
|
1263
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1264
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1268
1265
|
}
|
|
1269
|
-
export {
|
|
1266
|
+
export { formatterOpts_7 as formatterOpts };
|
|
1270
1267
|
}
|
|
1271
|
-
export namespace
|
|
1268
|
+
export namespace RECEIVER_PROVIDERS {
|
|
1272
1269
|
const name_91: string;
|
|
1273
1270
|
export { name_91 as name };
|
|
1274
|
-
const
|
|
1275
|
-
export {
|
|
1271
|
+
const label_1: string;
|
|
1272
|
+
export { label_1 as label };
|
|
1276
1273
|
const value_90: string;
|
|
1277
1274
|
export { value_90 as value };
|
|
1278
|
-
const sort_82: string
|
|
1275
|
+
const sort_82: string;
|
|
1279
1276
|
export { sort_82 as sort };
|
|
1280
|
-
const
|
|
1281
|
-
export {
|
|
1282
|
-
const formatter_45: string;
|
|
1283
|
-
export { formatter_45 as formatter };
|
|
1284
|
-
const width_24: number;
|
|
1285
|
-
export { width_24 as width };
|
|
1277
|
+
const formatter_44: string;
|
|
1278
|
+
export { formatter_44 as formatter };
|
|
1286
1279
|
}
|
|
1287
|
-
export namespace
|
|
1280
|
+
export namespace CONFIGURED_RECEIVER {
|
|
1288
1281
|
const name_92: string;
|
|
1289
1282
|
export { name_92 as name };
|
|
1290
|
-
const
|
|
1291
|
-
export {
|
|
1283
|
+
const label_2: string;
|
|
1284
|
+
export { label_2 as label };
|
|
1292
1285
|
const value_91: string;
|
|
1293
1286
|
export { value_91 as value };
|
|
1294
|
-
const
|
|
1295
|
-
export {
|
|
1287
|
+
const sort_83: string;
|
|
1288
|
+
export { sort_83 as sort };
|
|
1289
|
+
const formatter_45: string;
|
|
1290
|
+
export { formatter_45 as formatter };
|
|
1291
|
+
export namespace formatterOpts_8 {
|
|
1292
|
+
export namespace options_4 {
|
|
1293
|
+
const internal_4: boolean;
|
|
1294
|
+
export { internal_4 as internal };
|
|
1295
|
+
}
|
|
1296
|
+
export { options_4 as options };
|
|
1297
|
+
}
|
|
1298
|
+
export { formatterOpts_8 as formatterOpts };
|
|
1296
1299
|
}
|
|
1297
|
-
export namespace
|
|
1300
|
+
export namespace GROUP_NAME {
|
|
1298
1301
|
const name_93: string;
|
|
1299
1302
|
export { name_93 as name };
|
|
1300
|
-
const
|
|
1301
|
-
export {
|
|
1303
|
+
const labelKey_90: string;
|
|
1304
|
+
export { labelKey_90 as labelKey };
|
|
1302
1305
|
const value_92: string;
|
|
1303
1306
|
export { value_92 as value };
|
|
1304
|
-
const
|
|
1305
|
-
export {
|
|
1307
|
+
const sort_84: string[];
|
|
1308
|
+
export { sort_84 as sort };
|
|
1309
|
+
const search_11: string[];
|
|
1310
|
+
export { search_11 as search };
|
|
1311
|
+
const formatter_46: string;
|
|
1312
|
+
export { formatter_46 as formatter };
|
|
1313
|
+
const width_24: number;
|
|
1314
|
+
export { width_24 as width };
|
|
1306
1315
|
}
|
|
1307
|
-
export namespace
|
|
1316
|
+
export namespace GROUP_ROLE_NAME {
|
|
1308
1317
|
const name_94: string;
|
|
1309
1318
|
export { name_94 as name };
|
|
1310
|
-
const
|
|
1311
|
-
export {
|
|
1319
|
+
const labelKey_91: string;
|
|
1320
|
+
export { labelKey_91 as labelKey };
|
|
1312
1321
|
const value_93: string;
|
|
1313
1322
|
export { value_93 as value };
|
|
1314
|
-
const
|
|
1315
|
-
export {
|
|
1323
|
+
const formatter_47: string;
|
|
1324
|
+
export { formatter_47 as formatter };
|
|
1316
1325
|
}
|
|
1317
|
-
export namespace
|
|
1326
|
+
export namespace HPA_REFERENCE {
|
|
1318
1327
|
const name_95: string;
|
|
1319
1328
|
export { name_95 as name };
|
|
1320
|
-
const
|
|
1321
|
-
export {
|
|
1329
|
+
const labelKey_92: string;
|
|
1330
|
+
export { labelKey_92 as labelKey };
|
|
1322
1331
|
const value_94: string;
|
|
1323
1332
|
export { value_94 as value };
|
|
1324
1333
|
const sort_85: string;
|
|
1325
1334
|
export { sort_85 as sort };
|
|
1326
1335
|
}
|
|
1327
|
-
export namespace
|
|
1336
|
+
export namespace MIN_REPLICA {
|
|
1328
1337
|
const name_96: string;
|
|
1329
1338
|
export { name_96 as name };
|
|
1330
|
-
const
|
|
1331
|
-
export {
|
|
1339
|
+
const labelKey_93: string;
|
|
1340
|
+
export { labelKey_93 as labelKey };
|
|
1332
1341
|
const value_95: string;
|
|
1333
1342
|
export { value_95 as value };
|
|
1334
1343
|
const sort_86: string;
|
|
1335
1344
|
export { sort_86 as sort };
|
|
1336
1345
|
}
|
|
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 {
|
|
1346
|
+
export namespace MAX_REPLICA {
|
|
1344
1347
|
const name_97: string;
|
|
1345
1348
|
export { name_97 as name };
|
|
1346
|
-
const
|
|
1347
|
-
export {
|
|
1348
|
-
const
|
|
1349
|
-
export {
|
|
1350
|
-
const sort_87: string
|
|
1349
|
+
const labelKey_94: string;
|
|
1350
|
+
export { labelKey_94 as labelKey };
|
|
1351
|
+
const value_96: string;
|
|
1352
|
+
export { value_96 as value };
|
|
1353
|
+
const sort_87: string;
|
|
1351
1354
|
export { sort_87 as sort };
|
|
1352
|
-
const width_25: number;
|
|
1353
|
-
export { width_25 as width };
|
|
1354
1355
|
}
|
|
1355
|
-
export namespace
|
|
1356
|
+
export namespace CURRENT_REPLICA {
|
|
1356
1357
|
const name_98: string;
|
|
1357
1358
|
export { name_98 as name };
|
|
1359
|
+
const labelKey_95: string;
|
|
1360
|
+
export { labelKey_95 as labelKey };
|
|
1358
1361
|
const value_97: string;
|
|
1359
1362
|
export { value_97 as value };
|
|
1360
|
-
const
|
|
1361
|
-
export { labelKey_89 as labelKey };
|
|
1362
|
-
const dashIfEmpty_6: boolean;
|
|
1363
|
-
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1364
|
-
const align_15: string;
|
|
1365
|
-
export { align_15 as align };
|
|
1366
|
-
const sort_88: string[];
|
|
1363
|
+
const sort_88: string;
|
|
1367
1364
|
export { sort_88 as sort };
|
|
1368
|
-
const width_26: number;
|
|
1369
|
-
export { width_26 as width };
|
|
1370
1365
|
}
|
|
1371
|
-
export namespace
|
|
1366
|
+
export namespace EXPIRY_STATE {
|
|
1372
1367
|
const value_98: string;
|
|
1373
1368
|
export { value_98 as value };
|
|
1374
|
-
const
|
|
1375
|
-
export {
|
|
1369
|
+
const formatter_48: string;
|
|
1370
|
+
export { formatter_48 as formatter };
|
|
1376
1371
|
}
|
|
1377
|
-
export namespace
|
|
1372
|
+
export namespace ACCESS_KEY {
|
|
1378
1373
|
const name_99: string;
|
|
1379
1374
|
export { name_99 as name };
|
|
1375
|
+
const labelKey_96: string;
|
|
1376
|
+
export { labelKey_96 as labelKey };
|
|
1377
|
+
const align_14: string;
|
|
1378
|
+
export { align_14 as align };
|
|
1379
|
+
const sort_89: string[];
|
|
1380
|
+
export { sort_89 as sort };
|
|
1381
|
+
const width_25: number;
|
|
1382
|
+
export { width_25 as width };
|
|
1383
|
+
}
|
|
1384
|
+
export namespace SCOPE {
|
|
1385
|
+
const name_100: string;
|
|
1386
|
+
export { name_100 as name };
|
|
1380
1387
|
const value_99: string;
|
|
1381
1388
|
export { value_99 as value };
|
|
1382
|
-
const
|
|
1383
|
-
export {
|
|
1384
|
-
const
|
|
1385
|
-
export {
|
|
1389
|
+
const labelKey_97: string;
|
|
1390
|
+
export { labelKey_97 as labelKey };
|
|
1391
|
+
const dashIfEmpty_6: boolean;
|
|
1392
|
+
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1393
|
+
const align_15: string;
|
|
1394
|
+
export { align_15 as align };
|
|
1386
1395
|
const sort_90: string[];
|
|
1387
1396
|
export { sort_90 as sort };
|
|
1388
|
-
const
|
|
1389
|
-
export {
|
|
1390
|
-
const formatter_48: string;
|
|
1391
|
-
export { formatter_48 as formatter };
|
|
1397
|
+
const width_26: number;
|
|
1398
|
+
export { width_26 as width };
|
|
1392
1399
|
}
|
|
1393
|
-
export namespace
|
|
1394
|
-
const name_100: string;
|
|
1395
|
-
export { name_100 as name };
|
|
1396
|
-
const labelKey_91: string;
|
|
1397
|
-
export { labelKey_91 as labelKey };
|
|
1400
|
+
export namespace SCOPE_NORMAN {
|
|
1398
1401
|
const value_100: string;
|
|
1399
1402
|
export { value_100 as value };
|
|
1400
1403
|
const sort_91: string[];
|
|
1401
1404
|
export { sort_91 as sort };
|
|
1402
|
-
const formatter_49: string;
|
|
1403
|
-
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
1405
|
}
|
|
1409
|
-
export namespace
|
|
1406
|
+
export namespace EXPIRES {
|
|
1410
1407
|
const name_101: string;
|
|
1411
1408
|
export { name_101 as name };
|
|
1412
1409
|
const value_101: string;
|
|
1413
1410
|
export { value_101 as value };
|
|
1414
|
-
const
|
|
1415
|
-
export {
|
|
1411
|
+
const labelKey_98: string;
|
|
1412
|
+
export { labelKey_98 as labelKey };
|
|
1413
|
+
const align_16: string;
|
|
1414
|
+
export { align_16 as align };
|
|
1415
|
+
const sort_92: string[];
|
|
1416
|
+
export { sort_92 as sort };
|
|
1417
|
+
const width_27: number;
|
|
1418
|
+
export { width_27 as width };
|
|
1419
|
+
const formatter_49: string;
|
|
1420
|
+
export { formatter_49 as formatter };
|
|
1416
1421
|
}
|
|
1417
|
-
export namespace
|
|
1422
|
+
export namespace RESTART {
|
|
1418
1423
|
const name_102: string;
|
|
1419
1424
|
export { name_102 as name };
|
|
1420
|
-
const
|
|
1421
|
-
export {
|
|
1425
|
+
const labelKey_99: string;
|
|
1426
|
+
export { labelKey_99 as labelKey };
|
|
1422
1427
|
const value_102: string;
|
|
1423
1428
|
export { value_102 as value };
|
|
1424
|
-
const
|
|
1425
|
-
export {
|
|
1426
|
-
const sort_92: string[];
|
|
1427
|
-
export { sort_92 as sort };
|
|
1429
|
+
const sort_93: string[];
|
|
1430
|
+
export { sort_93 as sort };
|
|
1428
1431
|
const formatter_50: string;
|
|
1429
1432
|
export { formatter_50 as formatter };
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
export {
|
|
1433
|
+
const width_28: number;
|
|
1434
|
+
export { width_28 as width };
|
|
1435
|
+
const align_17: string;
|
|
1436
|
+
export { align_17 as align };
|
|
1434
1437
|
}
|
|
1435
|
-
export namespace
|
|
1438
|
+
export namespace ROLE {
|
|
1436
1439
|
const name_103: string;
|
|
1437
1440
|
export { name_103 as name };
|
|
1438
|
-
const labelKey_94: string;
|
|
1439
|
-
export { labelKey_94 as labelKey };
|
|
1440
|
-
const sort_93: string[];
|
|
1441
|
-
export { sort_93 as sort };
|
|
1442
1441
|
const value_103: string;
|
|
1443
1442
|
export { value_103 as value };
|
|
1444
|
-
const
|
|
1445
|
-
export {
|
|
1446
|
-
const _default_1: string;
|
|
1447
|
-
export { _default_1 as default };
|
|
1448
|
-
const formatter_51: string;
|
|
1449
|
-
export { formatter_51 as formatter };
|
|
1443
|
+
const labelKey_100: string;
|
|
1444
|
+
export { labelKey_100 as labelKey };
|
|
1450
1445
|
}
|
|
1451
|
-
export namespace
|
|
1446
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1452
1447
|
const name_104: string;
|
|
1453
1448
|
export { name_104 as name };
|
|
1454
|
-
const
|
|
1455
|
-
export {
|
|
1449
|
+
const labelKey_101: string;
|
|
1450
|
+
export { labelKey_101 as labelKey };
|
|
1456
1451
|
const value_104: string;
|
|
1457
1452
|
export { value_104 as value };
|
|
1453
|
+
const align_18: string;
|
|
1454
|
+
export { align_18 as align };
|
|
1458
1455
|
const sort_94: string[];
|
|
1459
1456
|
export { sort_94 as sort };
|
|
1460
|
-
const
|
|
1461
|
-
export {
|
|
1457
|
+
const formatter_51: string;
|
|
1458
|
+
export { formatter_51 as formatter };
|
|
1459
|
+
export namespace formatterOpts_9 {
|
|
1460
|
+
const prefix: string;
|
|
1461
|
+
}
|
|
1462
|
+
export { formatterOpts_9 as formatterOpts };
|
|
1462
1463
|
}
|
|
1463
|
-
export namespace
|
|
1464
|
+
export namespace STATE_NORMAN {
|
|
1464
1465
|
const name_105: string;
|
|
1465
1466
|
export { name_105 as name };
|
|
1466
|
-
const
|
|
1467
|
-
export {
|
|
1468
|
-
const value_105: string;
|
|
1469
|
-
export { value_105 as value };
|
|
1467
|
+
const labelKey_102: string;
|
|
1468
|
+
export { labelKey_102 as labelKey };
|
|
1470
1469
|
const sort_95: string[];
|
|
1471
1470
|
export { sort_95 as sort };
|
|
1472
|
-
const
|
|
1473
|
-
export {
|
|
1474
|
-
const
|
|
1475
|
-
export {
|
|
1471
|
+
const value_105: string;
|
|
1472
|
+
export { value_105 as value };
|
|
1473
|
+
const width_29: number;
|
|
1474
|
+
export { width_29 as width };
|
|
1475
|
+
const _default_1: string;
|
|
1476
|
+
export { _default_1 as default };
|
|
1477
|
+
const formatter_52: string;
|
|
1478
|
+
export { formatter_52 as formatter };
|
|
1476
1479
|
}
|
|
1477
|
-
export namespace
|
|
1480
|
+
export namespace KUBE_NODE_OS {
|
|
1478
1481
|
const name_106: string;
|
|
1479
1482
|
export { name_106 as name };
|
|
1480
|
-
const
|
|
1481
|
-
export {
|
|
1483
|
+
const labelKey_103: string;
|
|
1484
|
+
export { labelKey_103 as labelKey };
|
|
1482
1485
|
const value_106: string;
|
|
1483
1486
|
export { value_106 as value };
|
|
1484
1487
|
const sort_96: string[];
|
|
1485
1488
|
export { sort_96 as sort };
|
|
1486
|
-
const
|
|
1487
|
-
export {
|
|
1488
|
-
const dashIfEmpty_8: boolean;
|
|
1489
|
-
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1489
|
+
const formatter_53: string;
|
|
1490
|
+
export { formatter_53 as formatter };
|
|
1490
1491
|
}
|
|
1491
|
-
export namespace
|
|
1492
|
+
export namespace MACHINE_NODE_OS {
|
|
1492
1493
|
const name_107: string;
|
|
1493
1494
|
export { name_107 as name };
|
|
1494
|
-
const
|
|
1495
|
-
export {
|
|
1495
|
+
const labelKey_104: string;
|
|
1496
|
+
export { labelKey_104 as labelKey };
|
|
1496
1497
|
const value_107: string;
|
|
1497
1498
|
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
1499
|
const sort_97: string[];
|
|
1506
1500
|
export { sort_97 as sort };
|
|
1501
|
+
const formatter_54: string;
|
|
1502
|
+
export { formatter_54 as formatter };
|
|
1503
|
+
const dashIfEmpty_7: boolean;
|
|
1504
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1507
1505
|
}
|
|
1508
|
-
export namespace
|
|
1506
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1509
1507
|
const name_108: string;
|
|
1510
1508
|
export { name_108 as name };
|
|
1511
|
-
const
|
|
1512
|
-
export {
|
|
1509
|
+
const labelKey_105: string;
|
|
1510
|
+
export { labelKey_105 as labelKey };
|
|
1513
1511
|
const value_108: string;
|
|
1514
1512
|
export { value_108 as value };
|
|
1515
1513
|
const sort_98: string[];
|
|
1516
1514
|
export { sort_98 as sort };
|
|
1515
|
+
const formatter_55: string;
|
|
1516
|
+
export { formatter_55 as formatter };
|
|
1517
|
+
const dashIfEmpty_8: boolean;
|
|
1518
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1519
|
+
}
|
|
1520
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1521
|
+
const name_109: string;
|
|
1522
|
+
export { name_109 as name };
|
|
1523
|
+
const labelKey_106: string;
|
|
1524
|
+
export { labelKey_106 as labelKey };
|
|
1525
|
+
const value_109: string;
|
|
1526
|
+
export { value_109 as value };
|
|
1527
|
+
const formatter_56: string;
|
|
1528
|
+
export { formatter_56 as formatter };
|
|
1529
|
+
export namespace formatterOpts_10 {
|
|
1530
|
+
const addSuffix_1: boolean;
|
|
1531
|
+
export { addSuffix_1 as addSuffix };
|
|
1532
|
+
}
|
|
1533
|
+
export { formatterOpts_10 as formatterOpts };
|
|
1534
|
+
const sort_99: string[];
|
|
1535
|
+
export { sort_99 as sort };
|
|
1536
|
+
}
|
|
1537
|
+
export namespace FLEET_BUNDLE_TYPE {
|
|
1538
|
+
const name_110: string;
|
|
1539
|
+
export { name_110 as name };
|
|
1540
|
+
const labelKey_107: string;
|
|
1541
|
+
export { labelKey_107 as labelKey };
|
|
1542
|
+
const value_110: string;
|
|
1543
|
+
export { value_110 as value };
|
|
1544
|
+
const sort_100: string[];
|
|
1545
|
+
export { sort_100 as sort };
|
|
1517
1546
|
const width_30: number;
|
|
1518
1547
|
export { width_30 as width };
|
|
1519
1548
|
}
|
|
1549
|
+
export namespace RBAC_USERS {
|
|
1550
|
+
const name_111: string;
|
|
1551
|
+
export { name_111 as name };
|
|
1552
|
+
const sort_101: string[];
|
|
1553
|
+
export { sort_101 as sort };
|
|
1554
|
+
export function getValue_13(row: any): any;
|
|
1555
|
+
export { getValue_13 as getValue };
|
|
1556
|
+
}
|
|
1557
|
+
export namespace RBAC_GROUPS {
|
|
1558
|
+
const name_112: string;
|
|
1559
|
+
export { name_112 as name };
|
|
1560
|
+
const sort_102: string[];
|
|
1561
|
+
export { sort_102 as sort };
|
|
1562
|
+
export function getValue_14(row: any): any;
|
|
1563
|
+
export { getValue_14 as getValue };
|
|
1564
|
+
}
|
|
1565
|
+
export namespace RBAC_SERVICE_ACCOUNTS {
|
|
1566
|
+
const name_113: string;
|
|
1567
|
+
export { name_113 as name };
|
|
1568
|
+
const sort_103: string[];
|
|
1569
|
+
export { sort_103 as sort };
|
|
1570
|
+
export function getValue_15(row: any): any;
|
|
1571
|
+
export { getValue_15 as getValue };
|
|
1572
|
+
}
|
|
1520
1573
|
}
|
|
1521
1574
|
|
|
1522
1575
|
// @shell/config/types
|
|
@@ -1567,6 +1620,7 @@ export const NETWORK_POLICY: "networking.k8s.io.networkpolicy";
|
|
|
1567
1620
|
export const POD: "pod";
|
|
1568
1621
|
export const POD_DISRUPTION_BUDGET: "policy.poddisruptionbudget";
|
|
1569
1622
|
export const PSP: "policy.podsecuritypolicy";
|
|
1623
|
+
export const PSPS: "policy.podsecuritypolicies";
|
|
1570
1624
|
export const PV: "persistentvolume";
|
|
1571
1625
|
export const PVC: "persistentvolumeclaim";
|
|
1572
1626
|
export const RESOURCE_QUOTA: "resourcequota";
|
|
@@ -1578,6 +1632,8 @@ export const STORAGE_CLASS: "storage.k8s.io.storageclass";
|
|
|
1578
1632
|
export const CSI_DRIVER: "storage.k8s.io.csidriver";
|
|
1579
1633
|
export const OBJECT_META: "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta";
|
|
1580
1634
|
export const NETWORK_ATTACHMENT: "k8s.cni.cncf.io.networkattachmentdefinition";
|
|
1635
|
+
export const USER: "user";
|
|
1636
|
+
export const GROUP: "group";
|
|
1581
1637
|
export namespace RBAC {
|
|
1582
1638
|
const ROLE: string;
|
|
1583
1639
|
const CLUSTER_ROLE: string;
|
|
@@ -1595,10 +1651,14 @@ export namespace WORKLOAD_TYPES {
|
|
|
1595
1651
|
const REPLICATION_CONTROLLER: string;
|
|
1596
1652
|
}
|
|
1597
1653
|
export namespace SCALABLE_WORKLOAD_TYPES { }
|
|
1654
|
+
export namespace LIST_WORKLOAD_TYPES {
|
|
1655
|
+
export { POD };
|
|
1656
|
+
}
|
|
1598
1657
|
export namespace METRIC {
|
|
1599
1658
|
const NODE_1: string;
|
|
1600
1659
|
export { NODE_1 as NODE };
|
|
1601
|
-
|
|
1660
|
+
const POD_1: string;
|
|
1661
|
+
export { POD_1 as POD };
|
|
1602
1662
|
}
|
|
1603
1663
|
export namespace CATALOG {
|
|
1604
1664
|
export const CLUSTER_REPO: string;
|
|
@@ -1704,6 +1764,8 @@ export namespace FLEET {
|
|
|
1704
1764
|
export const WORKSPACE: string;
|
|
1705
1765
|
const TOKEN_2: string;
|
|
1706
1766
|
export { TOKEN_2 as TOKEN };
|
|
1767
|
+
export const BUNDLE_NAMESPACE_MAPPING: string;
|
|
1768
|
+
export const GIT_REPO_RESTRICTION: string;
|
|
1707
1769
|
}
|
|
1708
1770
|
export namespace GATEKEEPER {
|
|
1709
1771
|
export const CONSTRAINT_TEMPLATE: string;
|
|
@@ -2264,6 +2326,10 @@ export default class Resource {
|
|
|
2264
2326
|
_findRelationship(rel: any, direction: any): Promise<any[]>;
|
|
2265
2327
|
get shortId(): any;
|
|
2266
2328
|
toJSON(): {};
|
|
2329
|
+
/**
|
|
2330
|
+
* Allow models to override the object that is sent when saving this resource
|
|
2331
|
+
*/
|
|
2332
|
+
toSave(): any;
|
|
2267
2333
|
get creationTimestamp(): any;
|
|
2268
2334
|
}
|
|
2269
2335
|
}
|
|
@@ -2333,6 +2399,8 @@ export function authProvidersInfo(store: any): Promise<{
|
|
|
2333
2399
|
};
|
|
2334
2400
|
enabled: any;
|
|
2335
2401
|
}>;
|
|
2402
|
+
export function checkSchemasForFindAllHash(types: any, store: any): any;
|
|
2403
|
+
export function checkPermissions(types: any, getters: any): any;
|
|
2336
2404
|
}
|
|
2337
2405
|
|
|
2338
2406
|
// @shell/utils/aws
|
|
@@ -2340,6 +2408,13 @@ export function authProvidersInfo(store: any): Promise<{
|
|
|
2340
2408
|
declare module '@shell/utils/aws' {
|
|
2341
2409
|
}
|
|
2342
2410
|
|
|
2411
|
+
// @shell/utils/axios
|
|
2412
|
+
|
|
2413
|
+
declare module '@shell/utils/axios' {
|
|
2414
|
+
declare function _default(ctx: any, inject: any): void;
|
|
2415
|
+
export default _default;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2343
2418
|
// @shell/utils/cluster
|
|
2344
2419
|
|
|
2345
2420
|
declare module '@shell/utils/cluster' {
|
|
@@ -2403,6 +2478,16 @@ export function keyValueStrings(path: any, delimiter?: any): {
|
|
|
2403
2478
|
};
|
|
2404
2479
|
}
|
|
2405
2480
|
|
|
2481
|
+
// @shell/utils/cookie-universal-nuxt
|
|
2482
|
+
|
|
2483
|
+
declare module '@shell/utils/cookie-universal-nuxt' {
|
|
2484
|
+
declare function _default({ req, res }: {
|
|
2485
|
+
req: any;
|
|
2486
|
+
res: any;
|
|
2487
|
+
}, inject: any): void;
|
|
2488
|
+
export default _default;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2406
2491
|
// @shell/utils/create-yaml
|
|
2407
2492
|
|
|
2408
2493
|
declare module '@shell/utils/create-yaml' {
|
|
@@ -2438,6 +2523,12 @@ declare namespace _default {
|
|
|
2438
2523
|
export default _default;
|
|
2439
2524
|
}
|
|
2440
2525
|
|
|
2526
|
+
// @shell/utils/dom
|
|
2527
|
+
|
|
2528
|
+
declare module '@shell/utils/dom' {
|
|
2529
|
+
export function getParent(el: any, parentSelector: any): any;
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2441
2532
|
// @shell/utils/download
|
|
2442
2533
|
|
|
2443
2534
|
declare module '@shell/utils/download' {
|
|
@@ -2515,13 +2606,14 @@ export function setFavIcon(store: any): void;
|
|
|
2515
2606
|
// @shell/utils/grafana
|
|
2516
2607
|
|
|
2517
2608
|
declare module '@shell/utils/grafana' {
|
|
2518
|
-
export function
|
|
2519
|
-
export function
|
|
2609
|
+
export function getClusterPrefix(monitoringVersion: any, clusterId: any): string;
|
|
2610
|
+
export function computeDashboardUrl(monitoringVersion: any, embedUrl: any, clusterId: any, params: any): string;
|
|
2611
|
+
export function dashboardExists(monitoringVersion: any, store: any, clusterId: any, embedUrl: any, storeName?: string): Promise<boolean>;
|
|
2520
2612
|
export function allDashboardsExist(store: any, clusterId: any, embeddedUrls: any, storeName?: string): Promise<boolean>;
|
|
2521
|
-
export function queryGrafana(dispatch: any, clusterId: any, query: any, range: any, step: any): any;
|
|
2522
|
-
export function hasLeader(dispatch: any, clusterId: any): Promise<boolean>;
|
|
2523
|
-
export function leaderChanges(dispatch: any, clusterId: any): Promise<any>;
|
|
2524
|
-
export function failedProposals(dispatch: any, clusterId: any): Promise<any>;
|
|
2613
|
+
export function queryGrafana(monitoringVersion: any, dispatch: any, clusterId: any, query: any, range: any, step: any): any;
|
|
2614
|
+
export function hasLeader(monitoringVersion: any, dispatch: any, clusterId: any): Promise<boolean>;
|
|
2615
|
+
export function leaderChanges(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
|
|
2616
|
+
export function failedProposals(monitoringVersion: any, dispatch: any, clusterId: any): Promise<any>;
|
|
2525
2617
|
}
|
|
2526
2618
|
|
|
2527
2619
|
// @shell/utils/group
|
|
@@ -2579,6 +2671,47 @@ export function splitNamespaceFilterKey(key: any): {
|
|
|
2579
2671
|
};
|
|
2580
2672
|
}
|
|
2581
2673
|
|
|
2674
|
+
// @shell/utils/nuxt
|
|
2675
|
+
|
|
2676
|
+
declare module '@shell/utils/nuxt' {
|
|
2677
|
+
export function createGetCounter(counterObject: any, defaultKey?: string): (id?: string) => number;
|
|
2678
|
+
export function empty(): void;
|
|
2679
|
+
export function globalHandleError(error: any): void;
|
|
2680
|
+
export function interopDefault(promise: any): any;
|
|
2681
|
+
export function hasFetch(vm: any): boolean;
|
|
2682
|
+
export function purifyData(data: any): any;
|
|
2683
|
+
export function getChildrenComponentInstancesUsingFetch(vm: any, instances?: any[]): any[];
|
|
2684
|
+
export function applyAsyncData(Component: any, asyncData: any): void;
|
|
2685
|
+
export function sanitizeComponent(Component: any): any;
|
|
2686
|
+
export function getMatchedComponents(route: any, matches?: boolean, prop?: string): any;
|
|
2687
|
+
export function getMatchedComponentsInstances(route: any, matches?: boolean): any;
|
|
2688
|
+
export function flatMapComponents(route: any, fn: any): any;
|
|
2689
|
+
export function resolveRouteComponents(route: any, fn: any): Promise<[any, any, any, any, any, any, any, any, any, any]>;
|
|
2690
|
+
export function getRouteData(route: any): Promise<any>;
|
|
2691
|
+
export function setContext(app: any, context: any): Promise<void>;
|
|
2692
|
+
export function middlewareSeries(promises: any, appContext: any): any;
|
|
2693
|
+
export function promisify(fn: any, context: any): Promise<any>;
|
|
2694
|
+
export function getLocation(base: any, mode: any): string;
|
|
2695
|
+
/**
|
|
2696
|
+
* Compile a string to a template function for the path.
|
|
2697
|
+
*
|
|
2698
|
+
* @param {string} str
|
|
2699
|
+
* @param {Object=} options
|
|
2700
|
+
* @return {!function(Object=, Object=)}
|
|
2701
|
+
*/
|
|
2702
|
+
export function compile(str: string, options?: any | undefined): (arg0: any | undefined, arg1: any | undefined) => any;
|
|
2703
|
+
export function getQueryDiff(toQuery: any, fromQuery: any): {};
|
|
2704
|
+
export function normalizeError(err: any): any;
|
|
2705
|
+
export function addLifecycleHook(vm: any, hook: any, fn: any): void;
|
|
2706
|
+
export function setScrollRestoration(newVal: any): void;
|
|
2707
|
+
export const urlJoin: typeof joinURL;
|
|
2708
|
+
export const stripTrailingSlash: typeof withoutTrailingSlash;
|
|
2709
|
+
export const isSamePath: typeof _isSamePath;
|
|
2710
|
+
import { joinURL } from "ufo";
|
|
2711
|
+
import { withoutTrailingSlash } from "ufo";
|
|
2712
|
+
import { isSamePath as _isSamePath } from "ufo";
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2582
2715
|
// @shell/utils/object
|
|
2583
2716
|
|
|
2584
2717
|
declare module '@shell/utils/object' {
|
|
@@ -2724,11 +2857,11 @@ export function fakeRectFor(event: any): {
|
|
|
2724
2857
|
};
|
|
2725
2858
|
export function screenRect(): {
|
|
2726
2859
|
top: number;
|
|
2727
|
-
right:
|
|
2728
|
-
bottom:
|
|
2860
|
+
right: number;
|
|
2861
|
+
bottom: number;
|
|
2729
2862
|
left: number;
|
|
2730
|
-
width:
|
|
2731
|
-
height:
|
|
2863
|
+
width: number;
|
|
2864
|
+
height: number;
|
|
2732
2865
|
};
|
|
2733
2866
|
export function fitOnScreen(contentElem: any, triggerElemOrEvent: any, opt: any, useDefaults: any): {
|
|
2734
2867
|
position: string;
|
|
@@ -2770,6 +2903,12 @@ declare module '@shell/utils/router' {
|
|
|
2770
2903
|
export function queryParamsFor(current: any, qp: any, defaults?: {}): any;
|
|
2771
2904
|
}
|
|
2772
2905
|
|
|
2906
|
+
// @shell/utils/router.scrollBehavior
|
|
2907
|
+
|
|
2908
|
+
declare module '@shell/utils/router.scrollBehavior' {
|
|
2909
|
+
export default function _default(to: any, from: any, savedPosition: any): Promise<any>;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2773
2912
|
// @shell/utils/select
|
|
2774
2913
|
|
|
2775
2914
|
declare module '@shell/utils/select' {
|
|
@@ -2805,6 +2944,7 @@ export const EVENT_CONNECT_ERROR: "connect_error";
|
|
|
2805
2944
|
export const EVENT_DISCONNECT_ERROR: "disconnect_error";
|
|
2806
2945
|
export const NO_WATCH: "NO_WATCH";
|
|
2807
2946
|
export const NO_SCHEMA: "NO_SCHEMA";
|
|
2947
|
+
export const REVISION_TOO_OLD: "TOO_OLD";
|
|
2808
2948
|
declare const Socket_base: import("event-target-shim").EventTargetConstructor<{}, {}, "loose"> & {
|
|
2809
2949
|
<TEvents extends EventTarget.EventDefinition = {}, TEventAttributes extends EventTarget.EventDefinition = {}, TMode extends EventTarget.Mode = "loose">(events: string[]): import("event-target-shim").EventTargetConstructor<TEvents, TEventAttributes, TMode>;
|
|
2810
2950
|
<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>;
|
|
@@ -2936,6 +3076,12 @@ export function lcFirst(str: any): any;
|
|
|
2936
3076
|
export function strPad(str: any, toLength: any, padChars?: string, right?: boolean): any;
|
|
2937
3077
|
export function sortableNumericSuffix(str: any): any;
|
|
2938
3078
|
export function escapeHtml(html: any): string;
|
|
3079
|
+
/**
|
|
3080
|
+
* Return HTML markup from escaped HTML string, allowing specific tags
|
|
3081
|
+
* @param text string
|
|
3082
|
+
* @returns string
|
|
3083
|
+
*/
|
|
3084
|
+
export function decodeHtml(text: any): string;
|
|
2939
3085
|
export function escapeRegex(string: any): any;
|
|
2940
3086
|
export function random32(count: any): number | number[];
|
|
2941
3087
|
export function randomStr(length?: number, chars?: string): any;
|