@rancher/shell 3.0.0 → 3.0.1-rc.2
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/brand/harvester/favicon.png +0 -0
- package/assets/brand/harvester/metadata.json +3 -0
- package/assets/images/pl/harvester.svg +1 -0
- package/assets/translations/en-us.yaml +26 -8
- package/assets/translations/zh-hans.yaml +1 -1
- package/components/BrandImage.vue +5 -1
- package/components/CopyToClipboardText.vue +2 -0
- package/components/CruResourceFooter.vue +1 -0
- package/components/DetailTop.vue +1 -1
- package/components/ExplorerMembers.vue +5 -1
- package/components/ExplorerProjectsNamespaces.vue +39 -15
- package/components/HardwareResourceGauge.vue +12 -2
- package/components/InputOrDisplay.vue +6 -2
- package/components/LandingPagePreference.vue +2 -2
- package/components/MessageLink.vue +1 -1
- package/components/ResourceDetail/Masthead.vue +22 -1
- package/components/ResourceDetail/index.vue +2 -8
- package/components/ResourceTable.vue +14 -6
- package/components/ResourceYaml.vue +1 -1
- package/components/SideNav.vue +6 -4
- package/components/TableDataUserIcon.vue +1 -1
- package/components/fleet/FleetRepos.vue +0 -7
- package/components/form/ArrayList.vue +5 -1
- package/components/form/ArrayListSelect.vue +5 -1
- package/components/form/KeyValue.vue +1 -1
- package/components/form/LabeledSelect.vue +26 -6
- package/components/form/Password.vue +7 -1
- package/components/form/UnitInput.vue +10 -1
- package/components/form/__tests__/UnitInput.test.ts +1 -0
- package/components/formatter/ClusterProvider.vue +3 -3
- package/components/formatter/ImagePercentageBar.vue +1 -1
- package/components/formatter/Si.vue +5 -1
- package/components/formatter/Translate.vue +1 -1
- package/components/nav/Header.vue +29 -5
- package/components/nav/NamespaceFilter.vue +5 -8
- package/components/nav/TopLevelMenu.vue +16 -14
- package/config/labels-annotations.js +2 -0
- package/config/table-headers.js +15 -0
- package/config/types.js +3 -0
- package/detail/fleet.cattle.io.bundle.vue +5 -68
- package/detail/fleet.cattle.io.gitrepo.vue +2 -1
- package/directives/clean-tooltip.js +4 -4
- package/edit/constraints.gatekeeper.sh.constraint/index.vue +5 -2
- package/edit/logging-flow/Match.vue +75 -42
- package/edit/logging-flow/index.vue +89 -10
- package/edit/logging.banzaicloud.io.output/index.vue +2 -2
- package/edit/management.cattle.io.project.vue +2 -2
- package/edit/namespace.vue +1 -1
- package/edit/provisioning.cattle.io.cluster/__tests__/DirectoryConfig.test.ts +17 -7
- package/edit/provisioning.cattle.io.cluster/index.vue +2 -1
- package/edit/provisioning.cattle.io.cluster/rke2.vue +1 -3
- package/edit/provisioning.cattle.io.cluster/tabs/DirectoryConfig.vue +20 -6
- package/edit/provisioning.cattle.io.cluster/tabs/registries/RegistryMirrors.vue +1 -1
- package/list/harvesterhci.io.management.cluster.vue +244 -0
- package/list/namespace.vue +16 -4
- package/models/__tests__/management.cattle.io.cluster.test.ts +45 -3
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +0 -86
- package/models/fleet.cattle.io.bundle.js +3 -1
- package/models/fleet.cattle.io.gitrepo.js +46 -48
- package/models/k8s.cni.cncf.io.networkattachmentdefinition.js +88 -0
- package/models/management.cattle.io.cluster.js +26 -5
- package/models/management.cattle.io.setting.js +25 -0
- package/models/provisioning.cattle.io.cluster.js +5 -14
- package/models/storage.k8s.io.storageclass.js +15 -4
- package/package.json +8 -6
- package/pages/auth/login.vue +8 -2
- package/pages/auth/setup.vue +1 -1
- package/pages/c/_cluster/fleet/index.vue +2 -4
- package/pages/c/_cluster/settings/brand.vue +4 -1
- package/pages/prefs.vue +22 -10
- package/plugins/dashboard-store/resource-class.js +11 -3
- package/plugins/steve/steve-pagination-utils.ts +1 -1
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +7 -2
- package/scripts/extension/parse-tag-name +19 -12
- package/scripts/publish-shell.sh +10 -2
- package/scripts/test-plugins-build.sh +8 -9
- package/scripts/typegen.sh +2 -0
- package/store/features.js +1 -0
- package/store/i18n.js +5 -1
- package/store/prefs.js +8 -0
- package/types/resources/fleet.d.ts +40 -0
- package/types/shell/index.d.ts +524 -396
- package/utils/auth.js +1 -1
- package/utils/create-yaml.js +1 -1
- package/utils/favicon.js +2 -0
- package/utils/fleet.ts +159 -0
- package/utils/gc/gc.ts +1 -1
- package/utils/v-sphere.ts +31 -0
- package/utils/validators/cron-schedule.js +1 -1
- package/utils/validators/formRules/index.ts +1 -1
- package/utils/version.js +1 -1
- package/vue.config.js +2 -2
package/types/shell/index.d.ts
CHANGED
|
@@ -127,6 +127,8 @@ export namespace FLEET {
|
|
|
127
127
|
export const BUNDLE_ID: string;
|
|
128
128
|
const MANAGED_1: string;
|
|
129
129
|
export { MANAGED_1 as MANAGED };
|
|
130
|
+
const CLUSTER_NAMESPACE_1: string;
|
|
131
|
+
export { CLUSTER_NAMESPACE_1 as CLUSTER_NAMESPACE };
|
|
130
132
|
export const CLUSTER: string;
|
|
131
133
|
}
|
|
132
134
|
export namespace RBAC {
|
|
@@ -151,6 +153,7 @@ export namespace HCI {
|
|
|
151
153
|
const NETWORK_ROUTE: string;
|
|
152
154
|
const IMAGE_NAME: string;
|
|
153
155
|
const NETWORK_TYPE: string;
|
|
156
|
+
const CLUSTER_NETWORK: string;
|
|
154
157
|
const PRIMARY_SERVICE: string;
|
|
155
158
|
}
|
|
156
159
|
export namespace CLUSTER_BADGE {
|
|
@@ -624,7 +627,7 @@ export namespace DESCRIPTION {
|
|
|
624
627
|
const width_7: number;
|
|
625
628
|
export { width_7 as width };
|
|
626
629
|
}
|
|
627
|
-
export namespace
|
|
630
|
+
export namespace NS_SNAPSHOT_QUOTA {
|
|
628
631
|
const name_29: string;
|
|
629
632
|
export { name_29 as name };
|
|
630
633
|
const labelKey_29: string;
|
|
@@ -633,82 +636,89 @@ export namespace DURATION {
|
|
|
633
636
|
export { value_28 as value };
|
|
634
637
|
const sort_29: string;
|
|
635
638
|
export { sort_29 as sort };
|
|
639
|
+
const align_3: string;
|
|
640
|
+
export { align_3 as align };
|
|
636
641
|
const formatter_17: string;
|
|
637
642
|
export { formatter_17 as formatter };
|
|
643
|
+
export namespace formatterOpts_3 {
|
|
644
|
+
namespace opts {
|
|
645
|
+
const increment: number;
|
|
646
|
+
const addSuffix: boolean;
|
|
647
|
+
const suffix: string;
|
|
648
|
+
}
|
|
649
|
+
const needParseSi: boolean;
|
|
650
|
+
}
|
|
651
|
+
export { formatterOpts_3 as formatterOpts };
|
|
638
652
|
}
|
|
639
|
-
export namespace
|
|
653
|
+
export namespace DURATION {
|
|
640
654
|
const name_30: string;
|
|
641
655
|
export { name_30 as name };
|
|
642
656
|
const labelKey_30: string;
|
|
643
657
|
export { labelKey_30 as labelKey };
|
|
644
658
|
const value_29: string;
|
|
645
659
|
export { value_29 as value };
|
|
646
|
-
const sort_30: string
|
|
660
|
+
const sort_30: string;
|
|
647
661
|
export { sort_30 as sort };
|
|
648
662
|
const formatter_18: string;
|
|
649
663
|
export { formatter_18 as formatter };
|
|
650
664
|
}
|
|
651
|
-
export namespace
|
|
665
|
+
export namespace IMAGE_NAME {
|
|
652
666
|
const name_31: string;
|
|
653
667
|
export { name_31 as name };
|
|
654
668
|
const labelKey_31: string;
|
|
655
669
|
export { labelKey_31 as labelKey };
|
|
656
670
|
const value_30: string;
|
|
657
671
|
export { value_30 as value };
|
|
658
|
-
|
|
659
|
-
export { getValue_9 as getValue };
|
|
660
|
-
const sort_31: string;
|
|
672
|
+
const sort_31: string[];
|
|
661
673
|
export { sort_31 as sort };
|
|
662
674
|
const formatter_19: string;
|
|
663
675
|
export { formatter_19 as formatter };
|
|
664
676
|
}
|
|
665
|
-
export namespace
|
|
677
|
+
export namespace POD_IMAGES {
|
|
666
678
|
const name_32: string;
|
|
667
679
|
export { name_32 as name };
|
|
668
680
|
const labelKey_32: string;
|
|
669
681
|
export { labelKey_32 as labelKey };
|
|
670
|
-
const formatter_20: string;
|
|
671
|
-
export { formatter_20 as formatter };
|
|
672
|
-
export const delayLoading: boolean;
|
|
673
682
|
const value_31: string;
|
|
674
683
|
export { value_31 as value };
|
|
675
|
-
export function
|
|
676
|
-
export {
|
|
677
|
-
const
|
|
678
|
-
export {
|
|
679
|
-
|
|
684
|
+
export function getValue_9(row: any): any;
|
|
685
|
+
export { getValue_9 as getValue };
|
|
686
|
+
const sort_32: string;
|
|
687
|
+
export { sort_32 as sort };
|
|
688
|
+
const formatter_20: string;
|
|
689
|
+
export { formatter_20 as formatter };
|
|
680
690
|
}
|
|
681
|
-
export namespace
|
|
691
|
+
export namespace POD_RESTARTS {
|
|
682
692
|
const name_33: string;
|
|
683
693
|
export { name_33 as name };
|
|
684
694
|
const labelKey_33: string;
|
|
685
695
|
export { labelKey_33 as labelKey };
|
|
686
|
-
const value_32: string;
|
|
687
|
-
export { value_32 as value };
|
|
688
696
|
const formatter_21: string;
|
|
689
697
|
export { formatter_21 as formatter };
|
|
690
|
-
const
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
export
|
|
698
|
+
export const delayLoading: boolean;
|
|
699
|
+
const value_32: string;
|
|
700
|
+
export { value_32 as value };
|
|
701
|
+
export function getValue_10(row: any): any;
|
|
702
|
+
export { getValue_10 as getValue };
|
|
703
|
+
const search_5: boolean;
|
|
704
|
+
export { search_5 as search };
|
|
705
|
+
export const liveUpdates: boolean;
|
|
694
706
|
}
|
|
695
|
-
export namespace
|
|
707
|
+
export namespace ENDPOINTS {
|
|
696
708
|
const name_34: string;
|
|
697
709
|
export { name_34 as name };
|
|
698
710
|
const labelKey_34: string;
|
|
699
711
|
export { labelKey_34 as labelKey };
|
|
700
712
|
const value_33: string;
|
|
701
713
|
export { value_33 as value };
|
|
702
|
-
const sort_32: string[];
|
|
703
|
-
export { sort_32 as sort };
|
|
704
714
|
const formatter_22: string;
|
|
705
715
|
export { formatter_22 as formatter };
|
|
706
|
-
const
|
|
707
|
-
export {
|
|
716
|
+
const width_8: number;
|
|
717
|
+
export { width_8 as width };
|
|
708
718
|
const align_4: string;
|
|
709
719
|
export { align_4 as align };
|
|
710
720
|
}
|
|
711
|
-
export namespace
|
|
721
|
+
export namespace SCALE {
|
|
712
722
|
const name_35: string;
|
|
713
723
|
export { name_35 as name };
|
|
714
724
|
const labelKey_35: string;
|
|
@@ -717,134 +727,134 @@ export namespace SIMPLE_SCALE {
|
|
|
717
727
|
export { value_34 as value };
|
|
718
728
|
const sort_33: string[];
|
|
719
729
|
export { sort_33 as sort };
|
|
730
|
+
const formatter_23: string;
|
|
731
|
+
export { formatter_23 as formatter };
|
|
732
|
+
const width_9: number;
|
|
733
|
+
export { width_9 as width };
|
|
734
|
+
const align_5: string;
|
|
735
|
+
export { align_5 as align };
|
|
720
736
|
}
|
|
721
|
-
export namespace
|
|
737
|
+
export namespace SIMPLE_SCALE {
|
|
722
738
|
const name_36: string;
|
|
723
739
|
export { name_36 as name };
|
|
724
740
|
const labelKey_36: string;
|
|
725
741
|
export { labelKey_36 as labelKey };
|
|
726
742
|
const value_35: string;
|
|
727
743
|
export { value_35 as value };
|
|
728
|
-
const
|
|
729
|
-
export {
|
|
730
|
-
const align_5: string;
|
|
731
|
-
export { align_5 as align };
|
|
744
|
+
const sort_34: string[];
|
|
745
|
+
export { sort_34 as sort };
|
|
732
746
|
}
|
|
733
|
-
export namespace
|
|
747
|
+
export namespace SUCCESS {
|
|
734
748
|
const name_37: string;
|
|
735
749
|
export { name_37 as name };
|
|
736
750
|
const labelKey_37: string;
|
|
737
751
|
export { labelKey_37 as labelKey };
|
|
738
752
|
const value_36: string;
|
|
739
753
|
export { value_36 as value };
|
|
740
|
-
const
|
|
741
|
-
export {
|
|
754
|
+
const width_10: number;
|
|
755
|
+
export { width_10 as width };
|
|
742
756
|
const align_6: string;
|
|
743
757
|
export { align_6 as align };
|
|
744
758
|
}
|
|
745
|
-
export namespace
|
|
759
|
+
export namespace REQ_RATE {
|
|
746
760
|
const name_38: string;
|
|
747
761
|
export { name_38 as name };
|
|
748
762
|
const labelKey_38: string;
|
|
749
763
|
export { labelKey_38 as labelKey };
|
|
750
764
|
const value_37: string;
|
|
751
765
|
export { value_37 as value };
|
|
752
|
-
const
|
|
753
|
-
export {
|
|
766
|
+
const width_11: number;
|
|
767
|
+
export { width_11 as width };
|
|
754
768
|
const align_7: string;
|
|
755
769
|
export { align_7 as align };
|
|
756
770
|
}
|
|
757
|
-
export namespace
|
|
771
|
+
export namespace P95 {
|
|
758
772
|
const name_39: string;
|
|
759
773
|
export { name_39 as name };
|
|
760
774
|
const labelKey_39: string;
|
|
761
775
|
export { labelKey_39 as labelKey };
|
|
762
|
-
const sort_34: boolean;
|
|
763
|
-
export { sort_34 as sort };
|
|
764
776
|
const value_38: string;
|
|
765
777
|
export { value_38 as value };
|
|
778
|
+
const width_12: number;
|
|
779
|
+
export { width_12 as width };
|
|
780
|
+
const align_8: string;
|
|
781
|
+
export { align_8 as align };
|
|
766
782
|
}
|
|
767
|
-
export namespace
|
|
783
|
+
export namespace KEYS {
|
|
768
784
|
const name_40: string;
|
|
769
785
|
export { name_40 as name };
|
|
770
786
|
const labelKey_40: string;
|
|
771
787
|
export { labelKey_40 as labelKey };
|
|
788
|
+
const sort_35: boolean;
|
|
789
|
+
export { sort_35 as sort };
|
|
772
790
|
const value_39: string;
|
|
773
791
|
export { value_39 as value };
|
|
774
|
-
const formatter_23: string;
|
|
775
|
-
export { formatter_23 as formatter };
|
|
776
792
|
}
|
|
777
|
-
export namespace
|
|
793
|
+
export namespace SECRET_DATA {
|
|
778
794
|
const name_41: string;
|
|
779
795
|
export { name_41 as name };
|
|
780
796
|
const labelKey_41: string;
|
|
781
797
|
export { labelKey_41 as labelKey };
|
|
782
798
|
const value_40: string;
|
|
783
799
|
export { value_40 as value };
|
|
784
|
-
const
|
|
785
|
-
export {
|
|
800
|
+
const formatter_24: string;
|
|
801
|
+
export { formatter_24 as formatter };
|
|
786
802
|
}
|
|
787
|
-
export namespace
|
|
803
|
+
export namespace TARGET_KIND {
|
|
788
804
|
const name_42: string;
|
|
789
805
|
export { name_42 as name };
|
|
790
806
|
const labelKey_42: string;
|
|
791
807
|
export { labelKey_42 as labelKey };
|
|
792
808
|
const value_41: string;
|
|
793
809
|
export { value_41 as value };
|
|
810
|
+
const width_13: number;
|
|
811
|
+
export { width_13 as width };
|
|
794
812
|
}
|
|
795
|
-
export namespace
|
|
813
|
+
export namespace TARGET {
|
|
796
814
|
const name_43: string;
|
|
797
815
|
export { name_43 as name };
|
|
798
816
|
const labelKey_43: string;
|
|
799
817
|
export { labelKey_43 as labelKey };
|
|
800
818
|
const value_42: string;
|
|
801
819
|
export { value_42 as value };
|
|
802
|
-
const dashIfEmpty_1: boolean;
|
|
803
|
-
export { dashIfEmpty_1 as dashIfEmpty };
|
|
804
|
-
const sort_35: string;
|
|
805
|
-
export { sort_35 as sort };
|
|
806
820
|
}
|
|
807
|
-
export namespace
|
|
821
|
+
export namespace USERNAME {
|
|
808
822
|
const name_44: string;
|
|
809
823
|
export { name_44 as name };
|
|
810
824
|
const labelKey_44: string;
|
|
811
825
|
export { labelKey_44 as labelKey };
|
|
812
826
|
const value_43: string;
|
|
813
827
|
export { value_43 as value };
|
|
814
|
-
const
|
|
828
|
+
const dashIfEmpty_1: boolean;
|
|
829
|
+
export { dashIfEmpty_1 as dashIfEmpty };
|
|
830
|
+
const sort_36: string;
|
|
815
831
|
export { sort_36 as sort };
|
|
816
|
-
const dashIfEmpty_2: boolean;
|
|
817
|
-
export { dashIfEmpty_2 as dashIfEmpty };
|
|
818
832
|
}
|
|
819
|
-
export namespace
|
|
833
|
+
export namespace USER_DISPLAY_NAME {
|
|
820
834
|
const name_45: string;
|
|
821
835
|
export { name_45 as name };
|
|
822
836
|
const labelKey_45: string;
|
|
823
837
|
export { labelKey_45 as labelKey };
|
|
824
838
|
const value_44: string;
|
|
825
839
|
export { value_44 as value };
|
|
826
|
-
const
|
|
827
|
-
export { dashIfEmpty_3 as dashIfEmpty };
|
|
828
|
-
const sort_37: string;
|
|
840
|
+
const sort_37: string[];
|
|
829
841
|
export { sort_37 as sort };
|
|
842
|
+
const dashIfEmpty_2: boolean;
|
|
843
|
+
export { dashIfEmpty_2 as dashIfEmpty };
|
|
830
844
|
}
|
|
831
|
-
export namespace
|
|
845
|
+
export namespace USER_PROVIDER {
|
|
832
846
|
const name_46: string;
|
|
833
847
|
export { name_46 as name };
|
|
834
848
|
const labelKey_46: string;
|
|
835
849
|
export { labelKey_46 as labelKey };
|
|
836
850
|
const value_45: string;
|
|
837
851
|
export { value_45 as value };
|
|
838
|
-
const
|
|
839
|
-
export {
|
|
840
|
-
export namespace formatterOpts_3 {
|
|
841
|
-
const addSuffix: boolean;
|
|
842
|
-
}
|
|
843
|
-
export { formatterOpts_3 as formatterOpts };
|
|
852
|
+
const dashIfEmpty_3: boolean;
|
|
853
|
+
export { dashIfEmpty_3 as dashIfEmpty };
|
|
844
854
|
const sort_38: string;
|
|
845
855
|
export { sort_38 as sort };
|
|
846
856
|
}
|
|
847
|
-
export namespace
|
|
857
|
+
export namespace USER_LAST_LOGIN {
|
|
848
858
|
const name_47: string;
|
|
849
859
|
export { name_47 as name };
|
|
850
860
|
const labelKey_47: string;
|
|
@@ -854,13 +864,14 @@ export namespace USER_DISABLED_IN {
|
|
|
854
864
|
const formatter_25: string;
|
|
855
865
|
export { formatter_25 as formatter };
|
|
856
866
|
export namespace formatterOpts_4 {
|
|
857
|
-
const
|
|
867
|
+
const addSuffix_1: boolean;
|
|
868
|
+
export { addSuffix_1 as addSuffix };
|
|
858
869
|
}
|
|
859
870
|
export { formatterOpts_4 as formatterOpts };
|
|
860
871
|
const sort_39: string;
|
|
861
872
|
export { sort_39 as sort };
|
|
862
873
|
}
|
|
863
|
-
export namespace
|
|
874
|
+
export namespace USER_DISABLED_IN {
|
|
864
875
|
const name_48: string;
|
|
865
876
|
export { name_48 as name };
|
|
866
877
|
const labelKey_48: string;
|
|
@@ -870,14 +881,13 @@ export namespace USER_DELETED_IN {
|
|
|
870
881
|
const formatter_26: string;
|
|
871
882
|
export { formatter_26 as formatter };
|
|
872
883
|
export namespace formatterOpts_5 {
|
|
873
|
-
const
|
|
874
|
-
export { isCountdown_1 as isCountdown };
|
|
884
|
+
const isCountdown: boolean;
|
|
875
885
|
}
|
|
876
886
|
export { formatterOpts_5 as formatterOpts };
|
|
877
887
|
const sort_40: string;
|
|
878
888
|
export { sort_40 as sort };
|
|
879
889
|
}
|
|
880
|
-
export namespace
|
|
890
|
+
export namespace USER_DELETED_IN {
|
|
881
891
|
const name_49: string;
|
|
882
892
|
export { name_49 as name };
|
|
883
893
|
const labelKey_49: string;
|
|
@@ -886,22 +896,29 @@ export namespace USER_ID {
|
|
|
886
896
|
export { value_48 as value };
|
|
887
897
|
const formatter_27: string;
|
|
888
898
|
export { formatter_27 as formatter };
|
|
889
|
-
|
|
890
|
-
|
|
899
|
+
export namespace formatterOpts_6 {
|
|
900
|
+
const isCountdown_1: boolean;
|
|
901
|
+
export { isCountdown_1 as isCountdown };
|
|
902
|
+
}
|
|
903
|
+
export { formatterOpts_6 as formatterOpts };
|
|
891
904
|
const sort_41: string;
|
|
892
905
|
export { sort_41 as sort };
|
|
893
906
|
}
|
|
894
|
-
export namespace
|
|
907
|
+
export namespace USER_ID {
|
|
895
908
|
const name_50: string;
|
|
896
909
|
export { name_50 as name };
|
|
897
910
|
const labelKey_50: string;
|
|
898
911
|
export { labelKey_50 as labelKey };
|
|
899
912
|
const value_49: string;
|
|
900
913
|
export { value_49 as value };
|
|
901
|
-
const
|
|
914
|
+
const formatter_28: string;
|
|
915
|
+
export { formatter_28 as formatter };
|
|
916
|
+
const canBeVariable_5: boolean;
|
|
917
|
+
export { canBeVariable_5 as canBeVariable };
|
|
918
|
+
const sort_42: string;
|
|
902
919
|
export { sort_42 as sort };
|
|
903
920
|
}
|
|
904
|
-
export namespace
|
|
921
|
+
export namespace ADDRESS {
|
|
905
922
|
const name_51: string;
|
|
906
923
|
export { name_51 as name };
|
|
907
924
|
const labelKey_51: string;
|
|
@@ -910,10 +927,8 @@ export namespace SIMPLE_TYPE {
|
|
|
910
927
|
export { value_50 as value };
|
|
911
928
|
const sort_43: string[];
|
|
912
929
|
export { sort_43 as sort };
|
|
913
|
-
const width_14: number;
|
|
914
|
-
export { width_14 as width };
|
|
915
930
|
}
|
|
916
|
-
export namespace
|
|
931
|
+
export namespace SIMPLE_TYPE {
|
|
917
932
|
const name_52: string;
|
|
918
933
|
export { name_52 as name };
|
|
919
934
|
const labelKey_52: string;
|
|
@@ -922,83 +937,81 @@ export namespace IMAGE_SIZE {
|
|
|
922
937
|
export { value_51 as value };
|
|
923
938
|
const sort_44: string[];
|
|
924
939
|
export { sort_44 as sort };
|
|
925
|
-
const
|
|
926
|
-
export {
|
|
940
|
+
const width_14: number;
|
|
941
|
+
export { width_14 as width };
|
|
927
942
|
}
|
|
928
|
-
export namespace
|
|
943
|
+
export namespace IMAGE_SIZE {
|
|
929
944
|
const name_53: string;
|
|
930
945
|
export { name_53 as name };
|
|
931
946
|
const labelKey_53: string;
|
|
932
947
|
export { labelKey_53 as labelKey };
|
|
933
948
|
const value_52: string;
|
|
934
949
|
export { value_52 as value };
|
|
935
|
-
export function getValue_11(row: any): any;
|
|
936
|
-
export { getValue_11 as getValue };
|
|
937
950
|
const sort_45: string[];
|
|
938
951
|
export { sort_45 as sort };
|
|
939
|
-
const
|
|
940
|
-
export {
|
|
952
|
+
const formatter_29: string;
|
|
953
|
+
export { formatter_29 as formatter };
|
|
941
954
|
}
|
|
942
|
-
export namespace
|
|
955
|
+
export namespace TYPE {
|
|
943
956
|
const name_54: string;
|
|
944
957
|
export { name_54 as name };
|
|
945
958
|
const labelKey_54: string;
|
|
946
959
|
export { labelKey_54 as labelKey };
|
|
947
960
|
const value_53: string;
|
|
948
961
|
export { value_53 as value };
|
|
962
|
+
export function getValue_11(row: any): any;
|
|
963
|
+
export { getValue_11 as getValue };
|
|
949
964
|
const sort_46: string[];
|
|
950
965
|
export { sort_46 as sort };
|
|
951
|
-
const
|
|
952
|
-
export {
|
|
966
|
+
const width_15: number;
|
|
967
|
+
export { width_15 as width };
|
|
953
968
|
}
|
|
954
|
-
export namespace
|
|
969
|
+
export namespace SUB_TYPE {
|
|
955
970
|
const name_55: string;
|
|
956
971
|
export { name_55 as name };
|
|
957
972
|
const labelKey_55: string;
|
|
958
973
|
export { labelKey_55 as labelKey };
|
|
959
974
|
const value_54: string;
|
|
960
975
|
export { value_54 as value };
|
|
961
|
-
const sort_47: string;
|
|
976
|
+
const sort_47: string[];
|
|
962
977
|
export { sort_47 as sort };
|
|
978
|
+
const width_16: number;
|
|
979
|
+
export { width_16 as width };
|
|
963
980
|
}
|
|
964
|
-
export namespace
|
|
981
|
+
export namespace EVENT_TYPE {
|
|
965
982
|
const name_56: string;
|
|
966
983
|
export { name_56 as name };
|
|
967
984
|
const labelKey_56: string;
|
|
968
985
|
export { labelKey_56 as labelKey };
|
|
969
986
|
const value_55: string;
|
|
970
987
|
export { value_55 as value };
|
|
971
|
-
const sort_48: string
|
|
988
|
+
const sort_48: string;
|
|
972
989
|
export { sort_48 as sort };
|
|
973
|
-
const width_17: number;
|
|
974
|
-
export { width_17 as width };
|
|
975
990
|
}
|
|
976
|
-
export namespace
|
|
991
|
+
export namespace STATUS {
|
|
977
992
|
const name_57: string;
|
|
978
993
|
export { name_57 as name };
|
|
979
994
|
const labelKey_57: string;
|
|
980
995
|
export { labelKey_57 as labelKey };
|
|
981
996
|
const value_56: string;
|
|
982
997
|
export { value_56 as value };
|
|
983
|
-
const sort_49: string;
|
|
998
|
+
const sort_49: string[];
|
|
984
999
|
export { sort_49 as sort };
|
|
985
|
-
|
|
1000
|
+
const width_17: number;
|
|
1001
|
+
export { width_17 as width };
|
|
986
1002
|
}
|
|
987
|
-
export namespace
|
|
1003
|
+
export namespace LAST_SEEN_TIME {
|
|
988
1004
|
const name_58: string;
|
|
989
1005
|
export { name_58 as name };
|
|
990
1006
|
const labelKey_58: string;
|
|
991
1007
|
export { labelKey_58 as labelKey };
|
|
992
1008
|
const value_57: string;
|
|
993
1009
|
export { value_57 as value };
|
|
994
|
-
const sort_50: string
|
|
1010
|
+
const sort_50: string;
|
|
995
1011
|
export { sort_50 as sort };
|
|
996
|
-
const
|
|
997
|
-
export { formatter_29 as formatter };
|
|
998
|
-
const width_18: number;
|
|
999
|
-
export { width_18 as width };
|
|
1012
|
+
export const tooltip: string;
|
|
1000
1013
|
}
|
|
1001
|
-
export namespace
|
|
1014
|
+
export namespace LAST_HEARTBEAT_TIME {
|
|
1002
1015
|
const name_59: string;
|
|
1003
1016
|
export { name_59 as name };
|
|
1004
1017
|
const labelKey_59: string;
|
|
@@ -1007,8 +1020,12 @@ export namespace REASON {
|
|
|
1007
1020
|
export { value_58 as value };
|
|
1008
1021
|
const sort_51: string[];
|
|
1009
1022
|
export { sort_51 as sort };
|
|
1023
|
+
const formatter_30: string;
|
|
1024
|
+
export { formatter_30 as formatter };
|
|
1025
|
+
const width_18: number;
|
|
1026
|
+
export { width_18 as width };
|
|
1010
1027
|
}
|
|
1011
|
-
export namespace
|
|
1028
|
+
export namespace REASON {
|
|
1012
1029
|
const name_60: string;
|
|
1013
1030
|
export { name_60 as name };
|
|
1014
1031
|
const labelKey_60: string;
|
|
@@ -1017,12 +1034,8 @@ export namespace OBJECT {
|
|
|
1017
1034
|
export { value_59 as value };
|
|
1018
1035
|
const sort_52: string[];
|
|
1019
1036
|
export { sort_52 as sort };
|
|
1020
|
-
const canBeVariable_6: boolean;
|
|
1021
|
-
export { canBeVariable_6 as canBeVariable };
|
|
1022
|
-
const formatter_30: string;
|
|
1023
|
-
export { formatter_30 as formatter };
|
|
1024
1037
|
}
|
|
1025
|
-
export namespace
|
|
1038
|
+
export namespace OBJECT {
|
|
1026
1039
|
const name_61: string;
|
|
1027
1040
|
export { name_61 as name };
|
|
1028
1041
|
const labelKey_61: string;
|
|
@@ -1031,8 +1044,12 @@ export namespace RECLAIM_POLICY {
|
|
|
1031
1044
|
export { value_60 as value };
|
|
1032
1045
|
const sort_53: string[];
|
|
1033
1046
|
export { sort_53 as sort };
|
|
1047
|
+
const canBeVariable_6: boolean;
|
|
1048
|
+
export { canBeVariable_6 as canBeVariable };
|
|
1049
|
+
const formatter_31: string;
|
|
1050
|
+
export { formatter_31 as formatter };
|
|
1034
1051
|
}
|
|
1035
|
-
export namespace
|
|
1052
|
+
export namespace RECLAIM_POLICY {
|
|
1036
1053
|
const name_62: string;
|
|
1037
1054
|
export { name_62 as name };
|
|
1038
1055
|
const labelKey_62: string;
|
|
@@ -1042,7 +1059,7 @@ export namespace PV_REASON {
|
|
|
1042
1059
|
const sort_54: string[];
|
|
1043
1060
|
export { sort_54 as sort };
|
|
1044
1061
|
}
|
|
1045
|
-
export namespace
|
|
1062
|
+
export namespace PV_REASON {
|
|
1046
1063
|
const name_63: string;
|
|
1047
1064
|
export { name_63 as name };
|
|
1048
1065
|
const labelKey_63: string;
|
|
@@ -1052,7 +1069,7 @@ export namespace MESSAGE {
|
|
|
1052
1069
|
const sort_55: string[];
|
|
1053
1070
|
export { sort_55 as sort };
|
|
1054
1071
|
}
|
|
1055
|
-
export namespace
|
|
1072
|
+
export namespace MESSAGE {
|
|
1056
1073
|
const name_64: string;
|
|
1057
1074
|
export { name_64 as name };
|
|
1058
1075
|
const labelKey_64: string;
|
|
@@ -1062,7 +1079,7 @@ export namespace KEY {
|
|
|
1062
1079
|
const sort_56: string[];
|
|
1063
1080
|
export { sort_56 as sort };
|
|
1064
1081
|
}
|
|
1065
|
-
export namespace
|
|
1082
|
+
export namespace KEY {
|
|
1066
1083
|
const name_65: string;
|
|
1067
1084
|
export { name_65 as name };
|
|
1068
1085
|
const labelKey_65: string;
|
|
@@ -1072,7 +1089,7 @@ export namespace VALUE {
|
|
|
1072
1089
|
const sort_57: string[];
|
|
1073
1090
|
export { sort_57 as sort };
|
|
1074
1091
|
}
|
|
1075
|
-
export namespace
|
|
1092
|
+
export namespace VALUE {
|
|
1076
1093
|
const name_66: string;
|
|
1077
1094
|
export { name_66 as name };
|
|
1078
1095
|
const labelKey_66: string;
|
|
@@ -1081,12 +1098,8 @@ export namespace BUILT_IN {
|
|
|
1081
1098
|
export { value_65 as value };
|
|
1082
1099
|
const sort_58: string[];
|
|
1083
1100
|
export { sort_58 as sort };
|
|
1084
|
-
const align_8: string;
|
|
1085
|
-
export { align_8 as align };
|
|
1086
|
-
const formatter_31: string;
|
|
1087
|
-
export { formatter_31 as formatter };
|
|
1088
1101
|
}
|
|
1089
|
-
export namespace
|
|
1102
|
+
export namespace BUILT_IN {
|
|
1090
1103
|
const name_67: string;
|
|
1091
1104
|
export { name_67 as name };
|
|
1092
1105
|
const labelKey_67: string;
|
|
@@ -1100,19 +1113,21 @@ export namespace CLUSTER_CREATOR_DEFAULT {
|
|
|
1100
1113
|
const formatter_32: string;
|
|
1101
1114
|
export { formatter_32 as formatter };
|
|
1102
1115
|
}
|
|
1103
|
-
export namespace
|
|
1116
|
+
export namespace CLUSTER_CREATOR_DEFAULT {
|
|
1104
1117
|
const name_68: string;
|
|
1105
1118
|
export { name_68 as name };
|
|
1106
1119
|
const labelKey_68: string;
|
|
1107
1120
|
export { labelKey_68 as labelKey };
|
|
1108
1121
|
const value_67: string;
|
|
1109
1122
|
export { value_67 as value };
|
|
1110
|
-
const formatter_33: string;
|
|
1111
|
-
export { formatter_33 as formatter };
|
|
1112
1123
|
const sort_60: string[];
|
|
1113
1124
|
export { sort_60 as sort };
|
|
1125
|
+
const align_10: string;
|
|
1126
|
+
export { align_10 as align };
|
|
1127
|
+
const formatter_33: string;
|
|
1128
|
+
export { formatter_33 as formatter };
|
|
1114
1129
|
}
|
|
1115
|
-
export namespace
|
|
1130
|
+
export namespace RBAC_DEFAULT {
|
|
1116
1131
|
const name_69: string;
|
|
1117
1132
|
export { name_69 as name };
|
|
1118
1133
|
const labelKey_69: string;
|
|
@@ -1124,17 +1139,19 @@ export namespace RBAC_BUILTIN {
|
|
|
1124
1139
|
const sort_61: string[];
|
|
1125
1140
|
export { sort_61 as sort };
|
|
1126
1141
|
}
|
|
1127
|
-
export namespace
|
|
1142
|
+
export namespace RBAC_BUILTIN {
|
|
1128
1143
|
const name_70: string;
|
|
1129
1144
|
export { name_70 as name };
|
|
1130
1145
|
const labelKey_70: string;
|
|
1131
1146
|
export { labelKey_70 as labelKey };
|
|
1132
1147
|
const value_69: string;
|
|
1133
1148
|
export { value_69 as value };
|
|
1149
|
+
const formatter_35: string;
|
|
1150
|
+
export { formatter_35 as formatter };
|
|
1134
1151
|
const sort_62: string[];
|
|
1135
1152
|
export { sort_62 as sort };
|
|
1136
1153
|
}
|
|
1137
|
-
export namespace
|
|
1154
|
+
export namespace RESOURCE {
|
|
1138
1155
|
const name_71: string;
|
|
1139
1156
|
export { name_71 as name };
|
|
1140
1157
|
const labelKey_71: string;
|
|
@@ -1144,103 +1161,101 @@ export namespace API_GROUP {
|
|
|
1144
1161
|
const sort_63: string[];
|
|
1145
1162
|
export { sort_63 as sort };
|
|
1146
1163
|
}
|
|
1147
|
-
export namespace
|
|
1164
|
+
export namespace API_GROUP {
|
|
1148
1165
|
const name_72: string;
|
|
1149
1166
|
export { name_72 as name };
|
|
1150
1167
|
const labelKey_72: string;
|
|
1151
1168
|
export { labelKey_72 as labelKey };
|
|
1152
1169
|
const value_71: string;
|
|
1153
1170
|
export { value_71 as value };
|
|
1154
|
-
const sort_64: string;
|
|
1171
|
+
const sort_64: string[];
|
|
1155
1172
|
export { sort_64 as sort };
|
|
1156
1173
|
}
|
|
1157
|
-
export namespace
|
|
1174
|
+
export namespace INGRESS_CLASS {
|
|
1158
1175
|
const name_73: string;
|
|
1159
1176
|
export { name_73 as name };
|
|
1160
1177
|
const labelKey_73: string;
|
|
1161
1178
|
export { labelKey_73 as labelKey };
|
|
1162
1179
|
const value_72: string;
|
|
1163
1180
|
export { value_72 as value };
|
|
1164
|
-
const sort_65: string
|
|
1181
|
+
const sort_65: string;
|
|
1165
1182
|
export { sort_65 as sort };
|
|
1166
|
-
const formatter_35: string;
|
|
1167
|
-
export { formatter_35 as formatter };
|
|
1168
|
-
const width_19: number;
|
|
1169
|
-
export { width_19 as width };
|
|
1170
|
-
const align_10: string;
|
|
1171
|
-
export { align_10 as align };
|
|
1172
1183
|
}
|
|
1173
|
-
export namespace
|
|
1184
|
+
export namespace INGRESS_DEFAULT_BACKEND {
|
|
1174
1185
|
const name_74: string;
|
|
1175
1186
|
export { name_74 as name };
|
|
1176
1187
|
const labelKey_74: string;
|
|
1177
1188
|
export { labelKey_74 as labelKey };
|
|
1178
1189
|
const value_73: string;
|
|
1179
1190
|
export { value_73 as value };
|
|
1191
|
+
const sort_66: string[];
|
|
1192
|
+
export { sort_66 as sort };
|
|
1180
1193
|
const formatter_36: string;
|
|
1181
1194
|
export { formatter_36 as formatter };
|
|
1182
|
-
const
|
|
1183
|
-
export {
|
|
1195
|
+
const width_19: number;
|
|
1196
|
+
export { width_19 as width };
|
|
1197
|
+
const align_11: string;
|
|
1198
|
+
export { align_11 as align };
|
|
1184
1199
|
}
|
|
1185
|
-
export namespace
|
|
1200
|
+
export namespace INGRESS_TARGET {
|
|
1186
1201
|
const name_75: string;
|
|
1187
1202
|
export { name_75 as name };
|
|
1188
1203
|
const labelKey_75: string;
|
|
1189
1204
|
export { labelKey_75 as labelKey };
|
|
1190
1205
|
const value_74: string;
|
|
1191
1206
|
export { value_74 as value };
|
|
1192
|
-
const sort_67: string;
|
|
1193
|
-
export { sort_67 as sort };
|
|
1194
1207
|
const formatter_37: string;
|
|
1195
1208
|
export { formatter_37 as formatter };
|
|
1209
|
+
const sort_67: string;
|
|
1210
|
+
export { sort_67 as sort };
|
|
1196
1211
|
}
|
|
1197
|
-
export namespace
|
|
1198
|
-
const formatter_38: string;
|
|
1199
|
-
export { formatter_38 as formatter };
|
|
1200
|
-
const labelKey_76: string;
|
|
1201
|
-
export { labelKey_76 as labelKey };
|
|
1212
|
+
export namespace SPEC_TYPE {
|
|
1202
1213
|
const name_76: string;
|
|
1203
1214
|
export { name_76 as name };
|
|
1204
|
-
const
|
|
1205
|
-
export {
|
|
1215
|
+
const labelKey_76: string;
|
|
1216
|
+
export { labelKey_76 as labelKey };
|
|
1206
1217
|
const value_75: string;
|
|
1207
1218
|
export { value_75 as value };
|
|
1219
|
+
const sort_68: string;
|
|
1220
|
+
export { sort_68 as sort };
|
|
1221
|
+
const formatter_38: string;
|
|
1222
|
+
export { formatter_38 as formatter };
|
|
1208
1223
|
}
|
|
1209
|
-
export namespace
|
|
1224
|
+
export namespace TARGET_PORT {
|
|
1210
1225
|
const formatter_39: string;
|
|
1211
1226
|
export { formatter_39 as formatter };
|
|
1212
|
-
const name_77: string;
|
|
1213
|
-
export { name_77 as name };
|
|
1214
1227
|
const labelKey_77: string;
|
|
1215
1228
|
export { labelKey_77 as labelKey };
|
|
1216
|
-
const
|
|
1217
|
-
export {
|
|
1229
|
+
const name_77: string;
|
|
1230
|
+
export { name_77 as name };
|
|
1218
1231
|
const sort_69: string;
|
|
1219
1232
|
export { sort_69 as sort };
|
|
1233
|
+
const value_76: string;
|
|
1234
|
+
export { value_76 as value };
|
|
1220
1235
|
}
|
|
1221
|
-
export namespace
|
|
1236
|
+
export namespace SELECTOR {
|
|
1237
|
+
const formatter_40: string;
|
|
1238
|
+
export { formatter_40 as formatter };
|
|
1222
1239
|
const name_78: string;
|
|
1223
1240
|
export { name_78 as name };
|
|
1224
1241
|
const labelKey_78: string;
|
|
1225
1242
|
export { labelKey_78 as labelKey };
|
|
1226
1243
|
const value_77: string;
|
|
1227
1244
|
export { value_77 as value };
|
|
1228
|
-
const sort_70: string
|
|
1245
|
+
const sort_70: string;
|
|
1229
1246
|
export { sort_70 as sort };
|
|
1230
1247
|
}
|
|
1231
|
-
export namespace
|
|
1248
|
+
export namespace CHART {
|
|
1232
1249
|
const name_79: string;
|
|
1233
1250
|
export { name_79 as name };
|
|
1234
1251
|
const labelKey_79: string;
|
|
1235
1252
|
export { labelKey_79 as labelKey };
|
|
1236
1253
|
const value_78: string;
|
|
1237
1254
|
export { value_78 as value };
|
|
1238
|
-
const sort_71: string;
|
|
1255
|
+
const sort_71: string[];
|
|
1239
1256
|
export { sort_71 as sort };
|
|
1240
|
-
const dashIfEmpty_4: boolean;
|
|
1241
|
-
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1242
1257
|
}
|
|
1243
|
-
export namespace
|
|
1258
|
+
export namespace CHART_UPGRADE {
|
|
1244
1259
|
const name_80: string;
|
|
1245
1260
|
export { name_80 as name };
|
|
1246
1261
|
const labelKey_80: string;
|
|
@@ -1249,10 +1264,10 @@ export namespace RESOURCES {
|
|
|
1249
1264
|
export { value_79 as value };
|
|
1250
1265
|
const sort_72: string;
|
|
1251
1266
|
export { sort_72 as sort };
|
|
1252
|
-
const
|
|
1253
|
-
export {
|
|
1267
|
+
const dashIfEmpty_4: boolean;
|
|
1268
|
+
export { dashIfEmpty_4 as dashIfEmpty };
|
|
1254
1269
|
}
|
|
1255
|
-
export namespace
|
|
1270
|
+
export namespace RESOURCES {
|
|
1256
1271
|
const name_81: string;
|
|
1257
1272
|
export { name_81 as name };
|
|
1258
1273
|
const labelKey_81: string;
|
|
@@ -1261,49 +1276,61 @@ export namespace URL {
|
|
|
1261
1276
|
export { value_80 as value };
|
|
1262
1277
|
const sort_73: string;
|
|
1263
1278
|
export { sort_73 as sort };
|
|
1279
|
+
const width_20: number;
|
|
1280
|
+
export { width_20 as width };
|
|
1264
1281
|
}
|
|
1265
|
-
export namespace
|
|
1282
|
+
export namespace URL {
|
|
1266
1283
|
const name_82: string;
|
|
1267
1284
|
export { name_82 as name };
|
|
1268
1285
|
const labelKey_82: string;
|
|
1269
1286
|
export { labelKey_82 as labelKey };
|
|
1270
1287
|
const value_81: string;
|
|
1271
1288
|
export { value_81 as value };
|
|
1272
|
-
const
|
|
1273
|
-
export { formatter_40 as formatter };
|
|
1274
|
-
export namespace formatterOpts_6 {
|
|
1275
|
-
const addSuffix_1: boolean;
|
|
1276
|
-
export { addSuffix_1 as addSuffix };
|
|
1277
|
-
}
|
|
1278
|
-
export { formatterOpts_6 as formatterOpts };
|
|
1279
|
-
const sort_74: string[];
|
|
1289
|
+
const sort_74: string;
|
|
1280
1290
|
export { sort_74 as sort };
|
|
1281
1291
|
}
|
|
1282
|
-
export namespace
|
|
1292
|
+
export namespace LAST_UPDATED {
|
|
1283
1293
|
const name_83: string;
|
|
1284
1294
|
export { name_83 as name };
|
|
1285
|
-
|
|
1295
|
+
const labelKey_83: string;
|
|
1296
|
+
export { labelKey_83 as labelKey };
|
|
1286
1297
|
const value_82: string;
|
|
1287
1298
|
export { value_82 as value };
|
|
1299
|
+
const formatter_41: string;
|
|
1300
|
+
export { formatter_41 as formatter };
|
|
1301
|
+
export namespace formatterOpts_7 {
|
|
1302
|
+
const addSuffix_2: boolean;
|
|
1303
|
+
export { addSuffix_2 as addSuffix };
|
|
1304
|
+
}
|
|
1305
|
+
export { formatterOpts_7 as formatterOpts };
|
|
1288
1306
|
const sort_75: string[];
|
|
1289
1307
|
export { sort_75 as sort };
|
|
1290
1308
|
}
|
|
1291
|
-
export namespace
|
|
1309
|
+
export namespace WORKSPACE {
|
|
1310
|
+
const name_84: string;
|
|
1311
|
+
export { name_84 as name };
|
|
1312
|
+
export const label: string;
|
|
1292
1313
|
const value_83: string;
|
|
1293
1314
|
export { value_83 as value };
|
|
1294
|
-
|
|
1315
|
+
const sort_76: string[];
|
|
1316
|
+
export { sort_76 as sort };
|
|
1295
1317
|
}
|
|
1296
|
-
export namespace
|
|
1297
|
-
const name_84: string;
|
|
1298
|
-
export { name_84 as name };
|
|
1299
|
-
const labelKey_83: string;
|
|
1300
|
-
export { labelKey_83 as labelKey };
|
|
1318
|
+
export namespace WORKLOAD_IMAGES {
|
|
1301
1319
|
const value_84: string;
|
|
1302
1320
|
export { value_84 as value };
|
|
1321
|
+
export const breakpoint: any;
|
|
1322
|
+
}
|
|
1323
|
+
export namespace WORKLOAD_ENDPOINTS {
|
|
1324
|
+
const name_85: string;
|
|
1325
|
+
export { name_85 as name };
|
|
1326
|
+
const labelKey_84: string;
|
|
1327
|
+
export { labelKey_84 as labelKey };
|
|
1328
|
+
const value_85: string;
|
|
1329
|
+
export { value_85 as value };
|
|
1303
1330
|
export function getValue_12(row: any): any;
|
|
1304
1331
|
export { getValue_12 as getValue };
|
|
1305
|
-
const
|
|
1306
|
-
export {
|
|
1332
|
+
const formatter_42: string;
|
|
1333
|
+
export { formatter_42 as formatter };
|
|
1307
1334
|
const dashIfEmpty_5: boolean;
|
|
1308
1335
|
export { dashIfEmpty_5 as dashIfEmpty };
|
|
1309
1336
|
const breakpoint_1: any;
|
|
@@ -1311,12 +1338,12 @@ export namespace WORKLOAD_ENDPOINTS {
|
|
|
1311
1338
|
export const maxPageSize: number;
|
|
1312
1339
|
}
|
|
1313
1340
|
export namespace WORKLOAD_HEALTH_SCALE {
|
|
1314
|
-
const
|
|
1315
|
-
export {
|
|
1316
|
-
const
|
|
1317
|
-
export {
|
|
1318
|
-
const
|
|
1319
|
-
export {
|
|
1341
|
+
const name_86: string;
|
|
1342
|
+
export { name_86 as name };
|
|
1343
|
+
const labelKey_85: string;
|
|
1344
|
+
export { labelKey_85 as labelKey };
|
|
1345
|
+
const formatter_43: string;
|
|
1346
|
+
export { formatter_43 as formatter };
|
|
1320
1347
|
export function getValue_13(): any;
|
|
1321
1348
|
export { getValue_13 as getValue };
|
|
1322
1349
|
const width_21: number;
|
|
@@ -1330,24 +1357,6 @@ export namespace WORKLOAD_HEALTH_SCALE {
|
|
|
1330
1357
|
export { liveUpdates_1 as liveUpdates };
|
|
1331
1358
|
}
|
|
1332
1359
|
export namespace FLEET_SUMMARY {
|
|
1333
|
-
const name_86: string;
|
|
1334
|
-
export { name_86 as name };
|
|
1335
|
-
const labelKey_85: string;
|
|
1336
|
-
export { labelKey_85 as labelKey };
|
|
1337
|
-
const value_85: string;
|
|
1338
|
-
export { value_85 as value };
|
|
1339
|
-
const sort_76: boolean;
|
|
1340
|
-
export { sort_76 as sort };
|
|
1341
|
-
const search_7: boolean;
|
|
1342
|
-
export { search_7 as search };
|
|
1343
|
-
const formatter_43: string;
|
|
1344
|
-
export { formatter_43 as formatter };
|
|
1345
|
-
const align_11: string;
|
|
1346
|
-
export { align_11 as align };
|
|
1347
|
-
const width_22: number;
|
|
1348
|
-
export { width_22 as width };
|
|
1349
|
-
}
|
|
1350
|
-
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1351
1360
|
const name_87: string;
|
|
1352
1361
|
export { name_87 as name };
|
|
1353
1362
|
const labelKey_86: string;
|
|
@@ -1356,74 +1365,72 @@ export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
|
1356
1365
|
export { value_86 as value };
|
|
1357
1366
|
const sort_77: boolean;
|
|
1358
1367
|
export { sort_77 as sort };
|
|
1359
|
-
const
|
|
1360
|
-
export {
|
|
1368
|
+
const search_7: boolean;
|
|
1369
|
+
export { search_7 as search };
|
|
1361
1370
|
const formatter_44: string;
|
|
1362
1371
|
export { formatter_44 as formatter };
|
|
1363
1372
|
const align_12: string;
|
|
1364
1373
|
export { align_12 as align };
|
|
1365
|
-
const
|
|
1366
|
-
export {
|
|
1374
|
+
const width_22: number;
|
|
1375
|
+
export { width_22 as width };
|
|
1367
1376
|
}
|
|
1368
|
-
export namespace
|
|
1377
|
+
export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
1369
1378
|
const name_88: string;
|
|
1370
1379
|
export { name_88 as name };
|
|
1371
1380
|
const labelKey_87: string;
|
|
1372
1381
|
export { labelKey_87 as labelKey };
|
|
1373
|
-
const
|
|
1374
|
-
export {
|
|
1375
|
-
const sort_78:
|
|
1382
|
+
const value_87: string;
|
|
1383
|
+
export { value_87 as value };
|
|
1384
|
+
const sort_78: boolean;
|
|
1376
1385
|
export { sort_78 as sort };
|
|
1377
|
-
const
|
|
1378
|
-
export {
|
|
1379
|
-
const _default_2: string;
|
|
1380
|
-
export { _default_2 as default };
|
|
1386
|
+
const search_8: boolean;
|
|
1387
|
+
export { search_8 as search };
|
|
1381
1388
|
const formatter_45: string;
|
|
1382
1389
|
export { formatter_45 as formatter };
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
export {
|
|
1390
|
+
const align_13: string;
|
|
1391
|
+
export { align_13 as align };
|
|
1392
|
+
const width_23: number;
|
|
1393
|
+
export { width_23 as width };
|
|
1387
1394
|
}
|
|
1388
|
-
export namespace
|
|
1395
|
+
export namespace FLEET_REPO_PER_CLUSTER_STATE {
|
|
1389
1396
|
const name_89: string;
|
|
1390
1397
|
export { name_89 as name };
|
|
1391
1398
|
const labelKey_88: string;
|
|
1392
1399
|
export { labelKey_88 as labelKey };
|
|
1393
|
-
const
|
|
1394
|
-
export {
|
|
1395
|
-
const sort_79:
|
|
1400
|
+
const tooltip_1: string;
|
|
1401
|
+
export { tooltip_1 as tooltip };
|
|
1402
|
+
const sort_79: string[];
|
|
1396
1403
|
export { sort_79 as sort };
|
|
1397
|
-
const
|
|
1398
|
-
export {
|
|
1404
|
+
const width_24: number;
|
|
1405
|
+
export { width_24 as width };
|
|
1406
|
+
const _default_2: string;
|
|
1407
|
+
export { _default_2 as default };
|
|
1399
1408
|
const formatter_46: string;
|
|
1400
1409
|
export { formatter_46 as formatter };
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
export {
|
|
1410
|
+
export namespace formatterOpts_8 {
|
|
1411
|
+
const arbitrary: boolean;
|
|
1412
|
+
}
|
|
1413
|
+
export { formatterOpts_8 as formatterOpts };
|
|
1405
1414
|
}
|
|
1406
|
-
export namespace
|
|
1415
|
+
export namespace APP_SUMMARY {
|
|
1407
1416
|
const name_90: string;
|
|
1408
1417
|
export { name_90 as name };
|
|
1409
1418
|
const labelKey_89: string;
|
|
1410
1419
|
export { labelKey_89 as labelKey };
|
|
1411
1420
|
const value_88: string;
|
|
1412
1421
|
export { value_88 as value };
|
|
1413
|
-
const sort_80:
|
|
1422
|
+
const sort_80: boolean;
|
|
1414
1423
|
export { sort_80 as sort };
|
|
1424
|
+
const search_9: boolean;
|
|
1425
|
+
export { search_9 as search };
|
|
1415
1426
|
const formatter_47: string;
|
|
1416
1427
|
export { formatter_47 as formatter };
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
}
|
|
1422
|
-
export { options_1 as options };
|
|
1423
|
-
}
|
|
1424
|
-
export { formatterOpts_8 as formatterOpts };
|
|
1428
|
+
const align_14: string;
|
|
1429
|
+
export { align_14 as align };
|
|
1430
|
+
const width_25: number;
|
|
1431
|
+
export { width_25 as width };
|
|
1425
1432
|
}
|
|
1426
|
-
export namespace
|
|
1433
|
+
export namespace CONSTRAINT_VIOLATION_CONSTRAINT_LINK {
|
|
1427
1434
|
const name_91: string;
|
|
1428
1435
|
export { name_91 as name };
|
|
1429
1436
|
const labelKey_90: string;
|
|
@@ -1432,20 +1439,18 @@ export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
|
1432
1439
|
export { value_89 as value };
|
|
1433
1440
|
const sort_81: string;
|
|
1434
1441
|
export { sort_81 as sort };
|
|
1435
|
-
const search_10: string;
|
|
1436
|
-
export { search_10 as search };
|
|
1437
1442
|
const formatter_48: string;
|
|
1438
1443
|
export { formatter_48 as formatter };
|
|
1439
1444
|
export namespace formatterOpts_9 {
|
|
1440
|
-
export namespace
|
|
1441
|
-
const
|
|
1442
|
-
export {
|
|
1445
|
+
export namespace options_1 {
|
|
1446
|
+
const internal_1: boolean;
|
|
1447
|
+
export { internal_1 as internal };
|
|
1443
1448
|
}
|
|
1444
|
-
export {
|
|
1449
|
+
export { options_1 as options };
|
|
1445
1450
|
}
|
|
1446
1451
|
export { formatterOpts_9 as formatterOpts };
|
|
1447
1452
|
}
|
|
1448
|
-
export namespace
|
|
1453
|
+
export namespace CONSTRAINT_VIOLATION_RESOURCE_LINK {
|
|
1449
1454
|
const name_92: string;
|
|
1450
1455
|
export { name_92 as name };
|
|
1451
1456
|
const labelKey_91: string;
|
|
@@ -1454,8 +1459,20 @@ export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
|
1454
1459
|
export { value_90 as value };
|
|
1455
1460
|
const sort_82: string;
|
|
1456
1461
|
export { sort_82 as sort };
|
|
1462
|
+
const search_10: string;
|
|
1463
|
+
export { search_10 as search };
|
|
1464
|
+
const formatter_49: string;
|
|
1465
|
+
export { formatter_49 as formatter };
|
|
1466
|
+
export namespace formatterOpts_10 {
|
|
1467
|
+
export namespace options_2 {
|
|
1468
|
+
const internal_2: boolean;
|
|
1469
|
+
export { internal_2 as internal };
|
|
1470
|
+
}
|
|
1471
|
+
export { options_2 as options };
|
|
1472
|
+
}
|
|
1473
|
+
export { formatterOpts_10 as formatterOpts };
|
|
1457
1474
|
}
|
|
1458
|
-
export namespace
|
|
1475
|
+
export namespace CONSTRAINT_VIOLATION_TYPE {
|
|
1459
1476
|
const name_93: string;
|
|
1460
1477
|
export { name_93 as name };
|
|
1461
1478
|
const labelKey_92: string;
|
|
@@ -1464,10 +1481,8 @@ export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
|
1464
1481
|
export { value_91 as value };
|
|
1465
1482
|
const sort_83: string;
|
|
1466
1483
|
export { sort_83 as sort };
|
|
1467
|
-
const search_11: string;
|
|
1468
|
-
export { search_11 as search };
|
|
1469
1484
|
}
|
|
1470
|
-
export namespace
|
|
1485
|
+
export namespace CONSTRAINT_VIOLATION_NAMESPACE {
|
|
1471
1486
|
const name_94: string;
|
|
1472
1487
|
export { name_94 as name };
|
|
1473
1488
|
const labelKey_93: string;
|
|
@@ -1476,8 +1491,10 @@ export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
|
1476
1491
|
export { value_92 as value };
|
|
1477
1492
|
const sort_84: string;
|
|
1478
1493
|
export { sort_84 as sort };
|
|
1494
|
+
const search_11: string;
|
|
1495
|
+
export { search_11 as search };
|
|
1479
1496
|
}
|
|
1480
|
-
export namespace
|
|
1497
|
+
export namespace CONSTRAINT_VIOLATION_MESSAGE {
|
|
1481
1498
|
const name_95: string;
|
|
1482
1499
|
export { name_95 as name };
|
|
1483
1500
|
const labelKey_94: string;
|
|
@@ -1486,18 +1503,8 @@ export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
|
1486
1503
|
export { value_93 as value };
|
|
1487
1504
|
const sort_85: string;
|
|
1488
1505
|
export { sort_85 as sort };
|
|
1489
|
-
const formatter_49: string;
|
|
1490
|
-
export { formatter_49 as formatter };
|
|
1491
|
-
export namespace formatterOpts_10 {
|
|
1492
|
-
export namespace options_3 {
|
|
1493
|
-
const internal_3: boolean;
|
|
1494
|
-
export { internal_3 as internal };
|
|
1495
|
-
}
|
|
1496
|
-
export { options_3 as options };
|
|
1497
|
-
}
|
|
1498
|
-
export { formatterOpts_10 as formatterOpts };
|
|
1499
1506
|
}
|
|
1500
|
-
export namespace
|
|
1507
|
+
export namespace CONSTRAINT_VIOLATION_TEMPLATE_LINK {
|
|
1501
1508
|
const name_96: string;
|
|
1502
1509
|
export { name_96 as name };
|
|
1503
1510
|
const labelKey_95: string;
|
|
@@ -1509,80 +1516,90 @@ export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
|
1509
1516
|
const formatter_50: string;
|
|
1510
1517
|
export { formatter_50 as formatter };
|
|
1511
1518
|
export namespace formatterOpts_11 {
|
|
1512
|
-
|
|
1513
|
-
|
|
1519
|
+
export namespace options_3 {
|
|
1520
|
+
const internal_3: boolean;
|
|
1521
|
+
export { internal_3 as internal };
|
|
1522
|
+
}
|
|
1523
|
+
export { options_3 as options };
|
|
1514
1524
|
}
|
|
1515
1525
|
export { formatterOpts_11 as formatterOpts };
|
|
1516
1526
|
}
|
|
1517
|
-
export namespace
|
|
1527
|
+
export namespace CONSTRAINT_VIOLATION_COUNT {
|
|
1518
1528
|
const name_97: string;
|
|
1519
1529
|
export { name_97 as name };
|
|
1520
|
-
const
|
|
1521
|
-
export {
|
|
1530
|
+
const labelKey_96: string;
|
|
1531
|
+
export { labelKey_96 as labelKey };
|
|
1522
1532
|
const value_95: string;
|
|
1523
1533
|
export { value_95 as value };
|
|
1524
1534
|
const sort_87: string;
|
|
1525
1535
|
export { sort_87 as sort };
|
|
1526
1536
|
const formatter_51: string;
|
|
1527
1537
|
export { formatter_51 as formatter };
|
|
1538
|
+
export namespace formatterOpts_12 {
|
|
1539
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1540
|
+
function qualityFn(value: any): "error" | "success" | "warning";
|
|
1541
|
+
}
|
|
1542
|
+
export { formatterOpts_12 as formatterOpts };
|
|
1528
1543
|
}
|
|
1529
|
-
export namespace
|
|
1544
|
+
export namespace RECEIVER_PROVIDERS {
|
|
1530
1545
|
const name_98: string;
|
|
1531
1546
|
export { name_98 as name };
|
|
1532
|
-
const
|
|
1533
|
-
export {
|
|
1547
|
+
const label_1: string;
|
|
1548
|
+
export { label_1 as label };
|
|
1534
1549
|
const value_96: string;
|
|
1535
1550
|
export { value_96 as value };
|
|
1536
1551
|
const sort_88: string;
|
|
1537
1552
|
export { sort_88 as sort };
|
|
1538
1553
|
const formatter_52: string;
|
|
1539
1554
|
export { formatter_52 as formatter };
|
|
1540
|
-
export namespace formatterOpts_12 {
|
|
1541
|
-
export namespace options_4 {
|
|
1542
|
-
const internal_4: boolean;
|
|
1543
|
-
export { internal_4 as internal };
|
|
1544
|
-
}
|
|
1545
|
-
export { options_4 as options };
|
|
1546
|
-
}
|
|
1547
|
-
export { formatterOpts_12 as formatterOpts };
|
|
1548
1555
|
}
|
|
1549
|
-
export namespace
|
|
1556
|
+
export namespace CONFIGURED_RECEIVER {
|
|
1550
1557
|
const name_99: string;
|
|
1551
1558
|
export { name_99 as name };
|
|
1552
|
-
const
|
|
1553
|
-
export {
|
|
1559
|
+
const label_2: string;
|
|
1560
|
+
export { label_2 as label };
|
|
1554
1561
|
const value_97: string;
|
|
1555
1562
|
export { value_97 as value };
|
|
1556
|
-
const sort_89: string
|
|
1563
|
+
const sort_89: string;
|
|
1557
1564
|
export { sort_89 as sort };
|
|
1558
|
-
const search_12: string[];
|
|
1559
|
-
export { search_12 as search };
|
|
1560
1565
|
const formatter_53: string;
|
|
1561
1566
|
export { formatter_53 as formatter };
|
|
1562
|
-
|
|
1563
|
-
|
|
1567
|
+
export namespace formatterOpts_13 {
|
|
1568
|
+
export namespace options_4 {
|
|
1569
|
+
const internal_4: boolean;
|
|
1570
|
+
export { internal_4 as internal };
|
|
1571
|
+
}
|
|
1572
|
+
export { options_4 as options };
|
|
1573
|
+
}
|
|
1574
|
+
export { formatterOpts_13 as formatterOpts };
|
|
1564
1575
|
}
|
|
1565
|
-
export namespace
|
|
1576
|
+
export namespace GROUP_NAME {
|
|
1566
1577
|
const name_100: string;
|
|
1567
1578
|
export { name_100 as name };
|
|
1568
1579
|
const labelKey_97: string;
|
|
1569
1580
|
export { labelKey_97 as labelKey };
|
|
1570
1581
|
const value_98: string;
|
|
1571
1582
|
export { value_98 as value };
|
|
1583
|
+
const sort_90: string[];
|
|
1584
|
+
export { sort_90 as sort };
|
|
1585
|
+
const search_12: string[];
|
|
1586
|
+
export { search_12 as search };
|
|
1572
1587
|
const formatter_54: string;
|
|
1573
1588
|
export { formatter_54 as formatter };
|
|
1589
|
+
const width_26: number;
|
|
1590
|
+
export { width_26 as width };
|
|
1574
1591
|
}
|
|
1575
|
-
export namespace
|
|
1592
|
+
export namespace GROUP_ROLE_NAME {
|
|
1576
1593
|
const name_101: string;
|
|
1577
1594
|
export { name_101 as name };
|
|
1578
1595
|
const labelKey_98: string;
|
|
1579
1596
|
export { labelKey_98 as labelKey };
|
|
1580
1597
|
const value_99: string;
|
|
1581
1598
|
export { value_99 as value };
|
|
1582
|
-
const
|
|
1583
|
-
export {
|
|
1599
|
+
const formatter_55: string;
|
|
1600
|
+
export { formatter_55 as formatter };
|
|
1584
1601
|
}
|
|
1585
|
-
export namespace
|
|
1602
|
+
export namespace HPA_REFERENCE {
|
|
1586
1603
|
const name_102: string;
|
|
1587
1604
|
export { name_102 as name };
|
|
1588
1605
|
const labelKey_99: string;
|
|
@@ -1592,7 +1609,7 @@ export namespace MIN_REPLICA {
|
|
|
1592
1609
|
const sort_91: string;
|
|
1593
1610
|
export { sort_91 as sort };
|
|
1594
1611
|
}
|
|
1595
|
-
export namespace
|
|
1612
|
+
export namespace MIN_REPLICA {
|
|
1596
1613
|
const name_103: string;
|
|
1597
1614
|
export { name_103 as name };
|
|
1598
1615
|
const labelKey_100: string;
|
|
@@ -1602,7 +1619,7 @@ export namespace MAX_REPLICA {
|
|
|
1602
1619
|
const sort_92: string;
|
|
1603
1620
|
export { sort_92 as sort };
|
|
1604
1621
|
}
|
|
1605
|
-
export namespace
|
|
1622
|
+
export namespace MAX_REPLICA {
|
|
1606
1623
|
const name_104: string;
|
|
1607
1624
|
export { name_104 as name };
|
|
1608
1625
|
const labelKey_101: string;
|
|
@@ -1612,133 +1629,131 @@ export namespace CURRENT_REPLICA {
|
|
|
1612
1629
|
const sort_93: string;
|
|
1613
1630
|
export { sort_93 as sort };
|
|
1614
1631
|
}
|
|
1615
|
-
export namespace
|
|
1616
|
-
const value_103: string;
|
|
1617
|
-
export { value_103 as value };
|
|
1618
|
-
const formatter_55: string;
|
|
1619
|
-
export { formatter_55 as formatter };
|
|
1620
|
-
}
|
|
1621
|
-
export namespace ACCESS_KEY {
|
|
1632
|
+
export namespace CURRENT_REPLICA {
|
|
1622
1633
|
const name_105: string;
|
|
1623
1634
|
export { name_105 as name };
|
|
1624
1635
|
const labelKey_102: string;
|
|
1625
1636
|
export { labelKey_102 as labelKey };
|
|
1626
|
-
const
|
|
1627
|
-
export {
|
|
1628
|
-
const sort_94: string
|
|
1637
|
+
const value_103: string;
|
|
1638
|
+
export { value_103 as value };
|
|
1639
|
+
const sort_94: string;
|
|
1629
1640
|
export { sort_94 as sort };
|
|
1630
|
-
const width_27: number;
|
|
1631
|
-
export { width_27 as width };
|
|
1632
1641
|
}
|
|
1633
|
-
export namespace
|
|
1634
|
-
const name_106: string;
|
|
1635
|
-
export { name_106 as name };
|
|
1642
|
+
export namespace EXPIRY_STATE {
|
|
1636
1643
|
const value_104: string;
|
|
1637
1644
|
export { value_104 as value };
|
|
1645
|
+
const formatter_56: string;
|
|
1646
|
+
export { formatter_56 as formatter };
|
|
1647
|
+
}
|
|
1648
|
+
export namespace ACCESS_KEY {
|
|
1649
|
+
const name_106: string;
|
|
1650
|
+
export { name_106 as name };
|
|
1638
1651
|
const labelKey_103: string;
|
|
1639
1652
|
export { labelKey_103 as labelKey };
|
|
1640
|
-
const dashIfEmpty_6: boolean;
|
|
1641
|
-
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1642
1653
|
const align_15: string;
|
|
1643
1654
|
export { align_15 as align };
|
|
1644
1655
|
const sort_95: string[];
|
|
1645
1656
|
export { sort_95 as sort };
|
|
1646
|
-
const
|
|
1647
|
-
export {
|
|
1657
|
+
const width_27: number;
|
|
1658
|
+
export { width_27 as width };
|
|
1648
1659
|
}
|
|
1649
|
-
export namespace
|
|
1660
|
+
export namespace SCOPE {
|
|
1661
|
+
const name_107: string;
|
|
1662
|
+
export { name_107 as name };
|
|
1650
1663
|
const value_105: string;
|
|
1651
1664
|
export { value_105 as value };
|
|
1665
|
+
const labelKey_104: string;
|
|
1666
|
+
export { labelKey_104 as labelKey };
|
|
1667
|
+
const dashIfEmpty_6: boolean;
|
|
1668
|
+
export { dashIfEmpty_6 as dashIfEmpty };
|
|
1669
|
+
const align_16: string;
|
|
1670
|
+
export { align_16 as align };
|
|
1652
1671
|
const sort_96: string[];
|
|
1653
1672
|
export { sort_96 as sort };
|
|
1673
|
+
const width_28: number;
|
|
1674
|
+
export { width_28 as width };
|
|
1654
1675
|
}
|
|
1655
|
-
export namespace
|
|
1656
|
-
const name_107: string;
|
|
1657
|
-
export { name_107 as name };
|
|
1676
|
+
export namespace SCOPE_NORMAN {
|
|
1658
1677
|
const value_106: string;
|
|
1659
1678
|
export { value_106 as value };
|
|
1660
|
-
const labelKey_104: string;
|
|
1661
|
-
export { labelKey_104 as labelKey };
|
|
1662
|
-
const align_16: string;
|
|
1663
|
-
export { align_16 as align };
|
|
1664
1679
|
const sort_97: string[];
|
|
1665
1680
|
export { sort_97 as sort };
|
|
1666
|
-
const width_29: number;
|
|
1667
|
-
export { width_29 as width };
|
|
1668
|
-
const formatter_56: string;
|
|
1669
|
-
export { formatter_56 as formatter };
|
|
1670
1681
|
}
|
|
1671
|
-
export namespace
|
|
1682
|
+
export namespace EXPIRES {
|
|
1672
1683
|
const name_108: string;
|
|
1673
1684
|
export { name_108 as name };
|
|
1674
|
-
const labelKey_105: string;
|
|
1675
|
-
export { labelKey_105 as labelKey };
|
|
1676
1685
|
const value_107: string;
|
|
1677
1686
|
export { value_107 as value };
|
|
1687
|
+
const labelKey_105: string;
|
|
1688
|
+
export { labelKey_105 as labelKey };
|
|
1689
|
+
const align_17: string;
|
|
1690
|
+
export { align_17 as align };
|
|
1678
1691
|
const sort_98: string[];
|
|
1679
1692
|
export { sort_98 as sort };
|
|
1693
|
+
const width_29: number;
|
|
1694
|
+
export { width_29 as width };
|
|
1680
1695
|
const formatter_57: string;
|
|
1681
1696
|
export { formatter_57 as formatter };
|
|
1682
|
-
const width_30: number;
|
|
1683
|
-
export { width_30 as width };
|
|
1684
|
-
const align_17: string;
|
|
1685
|
-
export { align_17 as align };
|
|
1686
1697
|
}
|
|
1687
|
-
export namespace
|
|
1698
|
+
export namespace RESTART {
|
|
1688
1699
|
const name_109: string;
|
|
1689
1700
|
export { name_109 as name };
|
|
1690
|
-
const value_108: string;
|
|
1691
|
-
export { value_108 as value };
|
|
1692
1701
|
const labelKey_106: string;
|
|
1693
1702
|
export { labelKey_106 as labelKey };
|
|
1703
|
+
const value_108: string;
|
|
1704
|
+
export { value_108 as value };
|
|
1705
|
+
const sort_99: string[];
|
|
1706
|
+
export { sort_99 as sort };
|
|
1707
|
+
const formatter_58: string;
|
|
1708
|
+
export { formatter_58 as formatter };
|
|
1709
|
+
const width_30: number;
|
|
1710
|
+
export { width_30 as width };
|
|
1711
|
+
const align_18: string;
|
|
1712
|
+
export { align_18 as align };
|
|
1694
1713
|
}
|
|
1695
|
-
export namespace
|
|
1714
|
+
export namespace ROLE {
|
|
1696
1715
|
const name_110: string;
|
|
1697
1716
|
export { name_110 as name };
|
|
1698
|
-
const labelKey_107: string;
|
|
1699
|
-
export { labelKey_107 as labelKey };
|
|
1700
1717
|
const value_109: string;
|
|
1701
1718
|
export { value_109 as value };
|
|
1702
|
-
const
|
|
1703
|
-
export {
|
|
1704
|
-
const sort_99: string[];
|
|
1705
|
-
export { sort_99 as sort };
|
|
1706
|
-
const formatter_58: string;
|
|
1707
|
-
export { formatter_58 as formatter };
|
|
1708
|
-
export namespace formatterOpts_13 {
|
|
1709
|
-
const prefix: string;
|
|
1710
|
-
}
|
|
1711
|
-
export { formatterOpts_13 as formatterOpts };
|
|
1719
|
+
const labelKey_107: string;
|
|
1720
|
+
export { labelKey_107 as labelKey };
|
|
1712
1721
|
}
|
|
1713
|
-
export namespace
|
|
1722
|
+
export namespace FEATURE_DESCRIPTION {
|
|
1714
1723
|
const name_111: string;
|
|
1715
1724
|
export { name_111 as name };
|
|
1716
1725
|
const labelKey_108: string;
|
|
1717
1726
|
export { labelKey_108 as labelKey };
|
|
1718
|
-
const sort_100: string[];
|
|
1719
|
-
export { sort_100 as sort };
|
|
1720
1727
|
const value_110: string;
|
|
1721
1728
|
export { value_110 as value };
|
|
1722
|
-
const
|
|
1723
|
-
export {
|
|
1724
|
-
const
|
|
1725
|
-
export {
|
|
1729
|
+
const align_19: string;
|
|
1730
|
+
export { align_19 as align };
|
|
1731
|
+
const sort_100: string[];
|
|
1732
|
+
export { sort_100 as sort };
|
|
1726
1733
|
const formatter_59: string;
|
|
1727
1734
|
export { formatter_59 as formatter };
|
|
1735
|
+
export namespace formatterOpts_14 {
|
|
1736
|
+
const prefix: string;
|
|
1737
|
+
}
|
|
1738
|
+
export { formatterOpts_14 as formatterOpts };
|
|
1728
1739
|
}
|
|
1729
|
-
export namespace
|
|
1740
|
+
export namespace STATE_NORMAN {
|
|
1730
1741
|
const name_112: string;
|
|
1731
1742
|
export { name_112 as name };
|
|
1732
1743
|
const labelKey_109: string;
|
|
1733
1744
|
export { labelKey_109 as labelKey };
|
|
1734
|
-
const value_111: string;
|
|
1735
|
-
export { value_111 as value };
|
|
1736
1745
|
const sort_101: string[];
|
|
1737
1746
|
export { sort_101 as sort };
|
|
1747
|
+
const value_111: string;
|
|
1748
|
+
export { value_111 as value };
|
|
1749
|
+
const width_31: number;
|
|
1750
|
+
export { width_31 as width };
|
|
1751
|
+
const _default_3: string;
|
|
1752
|
+
export { _default_3 as default };
|
|
1738
1753
|
const formatter_60: string;
|
|
1739
1754
|
export { formatter_60 as formatter };
|
|
1740
1755
|
}
|
|
1741
|
-
export namespace
|
|
1756
|
+
export namespace KUBE_NODE_OS {
|
|
1742
1757
|
const name_113: string;
|
|
1743
1758
|
export { name_113 as name };
|
|
1744
1759
|
const labelKey_110: string;
|
|
@@ -1749,10 +1764,8 @@ export namespace MACHINE_NODE_OS {
|
|
|
1749
1764
|
export { sort_102 as sort };
|
|
1750
1765
|
const formatter_61: string;
|
|
1751
1766
|
export { formatter_61 as formatter };
|
|
1752
|
-
const dashIfEmpty_7: boolean;
|
|
1753
|
-
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1754
1767
|
}
|
|
1755
|
-
export namespace
|
|
1768
|
+
export namespace MACHINE_NODE_OS {
|
|
1756
1769
|
const name_114: string;
|
|
1757
1770
|
export { name_114 as name };
|
|
1758
1771
|
const labelKey_111: string;
|
|
@@ -1763,69 +1776,83 @@ export namespace MANAGEMENT_NODE_OS {
|
|
|
1763
1776
|
export { sort_103 as sort };
|
|
1764
1777
|
const formatter_62: string;
|
|
1765
1778
|
export { formatter_62 as formatter };
|
|
1766
|
-
const
|
|
1767
|
-
export {
|
|
1779
|
+
const dashIfEmpty_7: boolean;
|
|
1780
|
+
export { dashIfEmpty_7 as dashIfEmpty };
|
|
1768
1781
|
}
|
|
1769
|
-
export namespace
|
|
1782
|
+
export namespace MANAGEMENT_NODE_OS {
|
|
1770
1783
|
const name_115: string;
|
|
1771
1784
|
export { name_115 as name };
|
|
1772
1785
|
const labelKey_112: string;
|
|
1773
1786
|
export { labelKey_112 as labelKey };
|
|
1774
1787
|
const value_114: string;
|
|
1775
1788
|
export { value_114 as value };
|
|
1776
|
-
const formatter_63: string;
|
|
1777
|
-
export { formatter_63 as formatter };
|
|
1778
|
-
export namespace formatterOpts_14 {
|
|
1779
|
-
const addSuffix_2: boolean;
|
|
1780
|
-
export { addSuffix_2 as addSuffix };
|
|
1781
|
-
}
|
|
1782
|
-
export { formatterOpts_14 as formatterOpts };
|
|
1783
1789
|
const sort_104: string[];
|
|
1784
1790
|
export { sort_104 as sort };
|
|
1791
|
+
const formatter_63: string;
|
|
1792
|
+
export { formatter_63 as formatter };
|
|
1793
|
+
const dashIfEmpty_8: boolean;
|
|
1794
|
+
export { dashIfEmpty_8 as dashIfEmpty };
|
|
1785
1795
|
}
|
|
1786
|
-
export namespace
|
|
1796
|
+
export namespace FLEET_BUNDLE_LAST_UPDATED {
|
|
1787
1797
|
const name_116: string;
|
|
1788
1798
|
export { name_116 as name };
|
|
1789
1799
|
const labelKey_113: string;
|
|
1790
1800
|
export { labelKey_113 as labelKey };
|
|
1791
1801
|
const value_115: string;
|
|
1792
1802
|
export { value_115 as value };
|
|
1803
|
+
const formatter_64: string;
|
|
1804
|
+
export { formatter_64 as formatter };
|
|
1805
|
+
export namespace formatterOpts_15 {
|
|
1806
|
+
const addSuffix_3: boolean;
|
|
1807
|
+
export { addSuffix_3 as addSuffix };
|
|
1808
|
+
}
|
|
1809
|
+
export { formatterOpts_15 as formatterOpts };
|
|
1793
1810
|
const sort_105: string[];
|
|
1794
1811
|
export { sort_105 as sort };
|
|
1795
|
-
const width_32: number;
|
|
1796
|
-
export { width_32 as width };
|
|
1797
1812
|
}
|
|
1798
|
-
export namespace
|
|
1813
|
+
export namespace FLEET_BUNDLE_TYPE {
|
|
1799
1814
|
const name_117: string;
|
|
1800
1815
|
export { name_117 as name };
|
|
1801
1816
|
const labelKey_114: string;
|
|
1802
1817
|
export { labelKey_114 as labelKey };
|
|
1803
1818
|
const value_116: string;
|
|
1804
1819
|
export { value_116 as value };
|
|
1805
|
-
const sort_106: string;
|
|
1820
|
+
const sort_106: string[];
|
|
1806
1821
|
export { sort_106 as sort };
|
|
1807
|
-
const
|
|
1808
|
-
export {
|
|
1822
|
+
const width_32: number;
|
|
1823
|
+
export { width_32 as width };
|
|
1809
1824
|
}
|
|
1810
|
-
export namespace
|
|
1825
|
+
export namespace FLEET_REPO_CLUSTERS_READY {
|
|
1811
1826
|
const name_118: string;
|
|
1812
1827
|
export { name_118 as name };
|
|
1813
1828
|
const labelKey_115: string;
|
|
1814
1829
|
export { labelKey_115 as labelKey };
|
|
1815
1830
|
const value_117: string;
|
|
1816
1831
|
export { value_117 as value };
|
|
1817
|
-
const sort_107: string
|
|
1832
|
+
const sort_107: string;
|
|
1818
1833
|
export { sort_107 as sort };
|
|
1834
|
+
const search_13: boolean;
|
|
1835
|
+
export { search_13 as search };
|
|
1819
1836
|
}
|
|
1820
|
-
export namespace
|
|
1837
|
+
export namespace FLEET_REPO_TARGET {
|
|
1821
1838
|
const name_119: string;
|
|
1822
1839
|
export { name_119 as name };
|
|
1823
1840
|
const labelKey_116: string;
|
|
1824
1841
|
export { labelKey_116 as labelKey };
|
|
1825
1842
|
const value_118: string;
|
|
1826
1843
|
export { value_118 as value };
|
|
1827
|
-
const sort_108: string;
|
|
1844
|
+
const sort_108: string[];
|
|
1828
1845
|
export { sort_108 as sort };
|
|
1846
|
+
}
|
|
1847
|
+
export namespace FLEET_REPO {
|
|
1848
|
+
const name_120: string;
|
|
1849
|
+
export { name_120 as name };
|
|
1850
|
+
const labelKey_117: string;
|
|
1851
|
+
export { labelKey_117 as labelKey };
|
|
1852
|
+
const value_119: string;
|
|
1853
|
+
export { value_119 as value };
|
|
1854
|
+
const sort_109: string;
|
|
1855
|
+
export { sort_109 as sort };
|
|
1829
1856
|
const search_14: string[];
|
|
1830
1857
|
export { search_14 as search };
|
|
1831
1858
|
}
|
|
@@ -1998,6 +2025,8 @@ export namespace LONGHORN {
|
|
|
1998
2025
|
const VOLUMES: string;
|
|
1999
2026
|
}
|
|
2000
2027
|
export const LONGHORN_DRIVER: "driver.longhorn.io";
|
|
2028
|
+
export const LONGHORN_VERSION_V1: "LonghornV1";
|
|
2029
|
+
export const LONGHORN_VERSION_V2: "LonghornV2";
|
|
2001
2030
|
export const SNAPSHOT: "rke.cattle.io.etcdsnapshot";
|
|
2002
2031
|
export namespace MANAGEMENT {
|
|
2003
2032
|
const AUTH_CONFIG_1: string;
|
|
@@ -2139,6 +2168,7 @@ export namespace HCI {
|
|
|
2139
2168
|
export const VGPU_DEVICE: string;
|
|
2140
2169
|
const SETTING_2: string;
|
|
2141
2170
|
export { SETTING_2 as SETTING };
|
|
2171
|
+
export const RESOURCE_QUOTA: string;
|
|
2142
2172
|
export const HARVESTER_CONFIG: string;
|
|
2143
2173
|
}
|
|
2144
2174
|
export const VIRTUAL_HARVESTER_PROVIDER: "harvester";
|
|
@@ -2322,6 +2352,67 @@ declare var _default: import("vue").DefineComponent<{
|
|
|
2322
2352
|
export default _default;
|
|
2323
2353
|
}
|
|
2324
2354
|
|
|
2355
|
+
// @shell/mixins/resource-fetch
|
|
2356
|
+
|
|
2357
|
+
declare module '@shell/mixins/resource-fetch' {
|
|
2358
|
+
declare namespace _default {
|
|
2359
|
+
const mixins: any[];
|
|
2360
|
+
const inheritAttrs: boolean;
|
|
2361
|
+
function data(): {
|
|
2362
|
+
perfConfig: {};
|
|
2363
|
+
init: boolean;
|
|
2364
|
+
multipleResources: any[];
|
|
2365
|
+
loadResources: any[];
|
|
2366
|
+
hasManualRefresh: boolean;
|
|
2367
|
+
watch: boolean;
|
|
2368
|
+
isTooManyItemsToAutoUpdate: boolean;
|
|
2369
|
+
force: boolean;
|
|
2370
|
+
incremental: boolean;
|
|
2371
|
+
fetchedResourceType: any[];
|
|
2372
|
+
paginating: any;
|
|
2373
|
+
};
|
|
2374
|
+
function data(): {
|
|
2375
|
+
perfConfig: {};
|
|
2376
|
+
init: boolean;
|
|
2377
|
+
multipleResources: any[];
|
|
2378
|
+
loadResources: any[];
|
|
2379
|
+
hasManualRefresh: boolean;
|
|
2380
|
+
watch: boolean;
|
|
2381
|
+
isTooManyItemsToAutoUpdate: boolean;
|
|
2382
|
+
force: boolean;
|
|
2383
|
+
incremental: boolean;
|
|
2384
|
+
fetchedResourceType: any[];
|
|
2385
|
+
paginating: any;
|
|
2386
|
+
};
|
|
2387
|
+
function beforeUnmount(): void;
|
|
2388
|
+
function beforeUnmount(): void;
|
|
2389
|
+
namespace computed {
|
|
2390
|
+
function rows(): any;
|
|
2391
|
+
function rows(): any;
|
|
2392
|
+
function loading(): any;
|
|
2393
|
+
function loading(): any;
|
|
2394
|
+
const refreshFlag: import("vuex").Computed;
|
|
2395
|
+
}
|
|
2396
|
+
namespace watch {
|
|
2397
|
+
function refreshFlag(neu: any): Promise<void>;
|
|
2398
|
+
function refreshFlag(neu: any): Promise<void>;
|
|
2399
|
+
}
|
|
2400
|
+
namespace methods {
|
|
2401
|
+
function $initializeFetchData(type: any, multipleResources: any[], storeType: any): void;
|
|
2402
|
+
function $initializeFetchData(type: any, multipleResources: any[], storeType: any): void;
|
|
2403
|
+
function $fetchType(type: any, multipleResources: any[], storeType: any): any;
|
|
2404
|
+
function $fetchType(type: any, multipleResources: any[], storeType: any): any;
|
|
2405
|
+
function __getCountForResources(resourceNames: any, namespace: any, storeType: any): any;
|
|
2406
|
+
function __getCountForResources(resourceNames: any, namespace: any, storeType: any): any;
|
|
2407
|
+
function __getCountForResource(resourceName: any, namespace: any, storeType: any): any;
|
|
2408
|
+
function __getCountForResource(resourceName: any, namespace: any, storeType: any): any;
|
|
2409
|
+
function __gatherResourceFetchData(resourceName: any, multipleResources: any, currStore: any): void;
|
|
2410
|
+
function __gatherResourceFetchData(resourceName: any, multipleResources: any, currStore: any): void;
|
|
2411
|
+
}
|
|
2412
|
+
}
|
|
2413
|
+
export default _default;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2325
2416
|
// @shell/models/namespace
|
|
2326
2417
|
|
|
2327
2418
|
declare module '@shell/models/namespace' {
|
|
@@ -2725,6 +2816,7 @@ export namespace STATES_ENUM {
|
|
|
2725
2816
|
const DISCONNECTED: string;
|
|
2726
2817
|
const DRAINED: string;
|
|
2727
2818
|
const DRAINING: string;
|
|
2819
|
+
const ENABLED: string;
|
|
2728
2820
|
const ERR_APPLIED: string;
|
|
2729
2821
|
const ERROR: string;
|
|
2730
2822
|
const ERRORING: string;
|
|
@@ -2938,7 +3030,7 @@ export default class Resource {
|
|
|
2938
3030
|
hasAction(actionName: any): boolean;
|
|
2939
3031
|
actionLinkFor(actionName: any): any;
|
|
2940
3032
|
doAction(actionName: any, body: any, opt?: {}): any;
|
|
2941
|
-
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<
|
|
3033
|
+
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<any>;
|
|
2942
3034
|
patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
|
|
2943
3035
|
save(...args: any[]): Promise<Resource>;
|
|
2944
3036
|
/**
|
|
@@ -3084,6 +3176,40 @@ export default class Resource {
|
|
|
3084
3176
|
}
|
|
3085
3177
|
}
|
|
3086
3178
|
|
|
3179
|
+
// @shell/plugins/steve/hybrid-class
|
|
3180
|
+
|
|
3181
|
+
declare module '@shell/plugins/steve/hybrid-class' {
|
|
3182
|
+
export function cleanHybridResources(data: any): any;
|
|
3183
|
+
export default class HybridModel {
|
|
3184
|
+
constructor(data: any, ctx: any, rehydrateNamespace?: any, setClone?: boolean);
|
|
3185
|
+
get labels(): any;
|
|
3186
|
+
setLabels(val: any): void;
|
|
3187
|
+
metadata: {};
|
|
3188
|
+
setLabel(key: any, val: any): void;
|
|
3189
|
+
get annotations(): any;
|
|
3190
|
+
setAnnotations(val: any): void;
|
|
3191
|
+
setAnnotation(key: any, val: any): void;
|
|
3192
|
+
get state(): any;
|
|
3193
|
+
}
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
// @shell/plugins/steve/steve-class
|
|
3197
|
+
|
|
3198
|
+
declare module '@shell/plugins/steve/steve-class' {
|
|
3199
|
+
export default class SteveModel extends HybridModel {
|
|
3200
|
+
get name(): any;
|
|
3201
|
+
get namespace(): any;
|
|
3202
|
+
/**
|
|
3203
|
+
* Set description based on the type of model available with private fallback
|
|
3204
|
+
*/
|
|
3205
|
+
set description(arg: any);
|
|
3206
|
+
get description(): any;
|
|
3207
|
+
_description: any;
|
|
3208
|
+
cleanForSave(data: any, forNew: any): any;
|
|
3209
|
+
}
|
|
3210
|
+
import HybridModel from "./hybrid-class";
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3087
3213
|
// @shell/store/features
|
|
3088
3214
|
|
|
3089
3215
|
declare module '@shell/store/features' {
|
|
@@ -3103,6 +3229,7 @@ export const HARVESTER_CONTAINER: any;
|
|
|
3103
3229
|
export const FLEET_WORKSPACE_BACK: any;
|
|
3104
3230
|
export const STEVE_CACHE: any;
|
|
3105
3231
|
export const UIEXTENSION: any;
|
|
3232
|
+
export const PROVISIONING_PRE_BOOTSTRAP: any;
|
|
3106
3233
|
export namespace getters {
|
|
3107
3234
|
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
3108
3235
|
}
|
|
@@ -3177,6 +3304,7 @@ export namespace getters {
|
|
|
3177
3304
|
function options(state: any): (key: any) => any;
|
|
3178
3305
|
function theme(state: any, getters: any, rootState: any, rootGetters: any): any;
|
|
3179
3306
|
function afterLoginRoute(state: any, getters: any): any;
|
|
3307
|
+
function dev(state: any, getters: any): any;
|
|
3180
3308
|
}
|
|
3181
3309
|
export namespace mutations {
|
|
3182
3310
|
function load(state: any, { key, value }: {
|
|
@@ -4555,7 +4683,7 @@ declare module '@shell/utils/version' {
|
|
|
4555
4683
|
export function parse(str: any): any;
|
|
4556
4684
|
export function sortable(str: any): any;
|
|
4557
4685
|
export function compare(in1: any, in2: any): any;
|
|
4558
|
-
export function isPrerelease(version
|
|
4686
|
+
export function isPrerelease(version?: string): boolean;
|
|
4559
4687
|
export function isDevBuild(version: any): boolean;
|
|
4560
4688
|
export function getVersionInfo(store: any): {
|
|
4561
4689
|
displayVersion: any;
|