@rancher/shell 3.0.12-rc.3 → 3.0.12-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/global/_button.scss +1 -1
- package/assets/styles/global/_layout.scss +4 -0
- package/assets/translations/en-us.yaml +183 -51
- package/assets/translations/zh-hans.yaml +1 -7
- package/chart/monitoring/ClusterSelector.vue +0 -21
- package/chart/monitoring/prometheus/index.vue +6 -3
- package/components/ActionDropdownShell.vue +5 -3
- package/components/ButtonGroup.vue +26 -1
- package/components/CruResource.vue +212 -16
- package/components/ExplorerMembers.vue +8 -4
- package/components/ExplorerProjectsNamespaces.vue +10 -6
- package/components/GrowlManager.vue +4 -0
- package/components/MgmtNodeList.vue +184 -0
- package/components/PromptRestore.vue +93 -32
- package/components/Questions/index.vue +1 -0
- package/components/Resource/Detail/Card/StateCard/__tests__/composables.test.ts +90 -1
- package/components/Resource/Detail/Card/StateCard/composables.ts +57 -87
- package/components/Resource/Detail/Card/StatusCard/__tests__/StatusCard.test.ts +61 -0
- package/components/Resource/Detail/Card/StatusCard/index.vue +61 -15
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +2 -0
- package/components/Resource/Detail/Metadata/KeyValue.vue +5 -2
- package/components/Resource/Detail/Metadata/KeyValueRow.vue +2 -6
- package/components/ResourceDetail/index.vue +1 -1
- package/components/ResourceList/Masthead.vue +7 -1
- package/components/ResourceList/index.vue +82 -1
- package/components/ResourceTable.vue +1 -0
- package/components/RichTranslation.vue +5 -2
- package/components/Setting.vue +1 -0
- package/components/SortableTable/index.vue +4 -3
- package/components/SubtleLink.vue +31 -6
- package/components/Tabbed/Tab.vue +29 -3
- package/components/Tabbed/index.vue +25 -3
- package/components/TableOfContents/TableOfContents.vue +109 -0
- package/components/TableOfContents/composables.ts +258 -0
- package/components/Window/ContainerShell.vue +21 -11
- package/components/Window/__tests__/ContainerShell.test.ts +107 -37
- package/components/Wizard.vue +23 -5
- package/components/__tests__/ButtonGroup.test.ts +56 -0
- package/components/__tests__/PromptRestore.test.ts +169 -19
- package/components/fleet/AppCoChartGrid.vue +401 -0
- package/components/fleet/AppCoEmptyState.vue +127 -0
- package/components/fleet/AppCoPageHeader.vue +119 -0
- package/components/fleet/AppCoVersionSelect.vue +70 -0
- package/components/fleet/FleetClusterTargets/ClusterSelectionFields.vue +217 -0
- package/components/fleet/FleetClusterTargets/TargetsList.vue +123 -35
- package/components/fleet/FleetClusterTargets/index.vue +189 -146
- package/components/fleet/FleetIntro.vue +7 -3
- package/components/fleet/FleetNoWorkspaces.vue +7 -3
- package/components/fleet/FleetSecretSelector.vue +5 -3
- package/components/fleet/FleetValuesFrom.vue +8 -2
- package/components/fleet/GitRepoAdvancedTab.vue +1 -0
- package/components/fleet/GitRepoMetadataTab.vue +5 -0
- package/components/fleet/GitRepoTargetTab.vue +0 -2
- package/components/fleet/HelmOpAdvancedTab.vue +19 -53
- package/components/fleet/HelmOpAppCoConfigTab.vue +597 -0
- package/components/fleet/HelmOpAppCoResourcesSection.vue +162 -0
- package/components/fleet/HelmOpMetadataTab.vue +5 -0
- package/components/fleet/HelmOpResourcesSection.vue +82 -0
- package/components/fleet/HelmOpTargetOptionsSection.vue +89 -0
- package/components/fleet/HelmOpTargetTab.vue +64 -60
- package/components/fleet/HelmOpValuesTab.vue +129 -105
- package/components/fleet/__tests__/AppCoEmptyState.test.ts +71 -0
- package/components/fleet/__tests__/AppCoVersionSelect.test.ts +36 -0
- package/components/fleet/__tests__/ClusterSelectionFields.test.ts +62 -0
- package/components/fleet/__tests__/FleetClusterTargets.test.ts +253 -0
- package/components/fleet/__tests__/FleetSecretSelector.test.ts +16 -0
- package/components/fleet/__tests__/FleetValuesFrom.test.ts +44 -0
- package/components/fleet/__tests__/HelmOpAppCoConfigTab.test.ts +59 -0
- package/components/fleet/__tests__/HelmOpAppCoResourcesSection.test.ts +62 -0
- package/components/fleet/__tests__/HelmOpResourcesSection.test.ts +43 -0
- package/components/fleet/__tests__/HelmOpTargetOptionsSection.test.ts +34 -0
- package/components/fleet/__tests__/HelmOpValuesTab.test.ts +39 -0
- package/components/fleet/__tests__/__snapshots__/AppCoEmptyState.test.ts.snap +97 -0
- package/components/fleet/__tests__/__snapshots__/AppCoVersionSelect.test.ts.snap +30 -0
- package/components/fleet/__tests__/__snapshots__/ClusterSelectionFields.test.ts.snap +209 -0
- package/components/fleet/__tests__/__snapshots__/HelmOpTargetOptionsSection.test.ts.snap +140 -0
- package/components/fleet/dashboard/Empty.vue +8 -4
- package/components/fleet/dashboard/ResourceCard.vue +28 -0
- package/components/fleet/dashboard/ResourceDetails.vue +28 -0
- package/components/fleet/dashboard/__tests__/ResourceCard.test.ts +87 -0
- package/components/form/ArrayList.vue +61 -4
- package/components/form/FileSelector.vue +39 -1
- package/components/form/KeyValue.vue +23 -2
- package/components/form/LabeledSelect.vue +39 -1
- package/components/form/Labels.vue +22 -3
- package/components/form/NameNsDescription.vue +13 -5
- package/components/form/PrivateRegistry.constants.ts +7 -0
- package/components/form/PrivateRegistry.vue +253 -18
- package/components/form/ResourceTabs/index.vue +1 -0
- package/components/form/SelectOrCreateAuthSecret.vue +140 -17
- package/components/form/__tests__/FileSelector.test.ts +23 -0
- package/components/form/__tests__/NameNsDescription.test.ts +75 -0
- package/components/form/__tests__/PrivateRegistry.test.ts +463 -73
- package/components/form/__tests__/SelectOrCreateAuthSecret.test.ts +122 -0
- package/components/formatter/EtcdSnapshotName.vue +73 -0
- package/components/formatter/InternalExternalIP.vue +10 -4
- package/components/formatter/ServiceTargets.vue +26 -7
- package/components/formatter/__tests__/InternalExternalIP.test.ts +132 -0
- package/components/formatter/__tests__/ServiceTargets.test.ts +412 -0
- package/components/nav/Header.vue +12 -1
- package/components/nav/TopLevelMenu.vue +7 -2
- package/components/nav/__tests__/Header.test.ts +15 -0
- package/components/nav/__tests__/TopLevelMenu.test.ts +120 -2
- package/components/templates/default.vue +16 -4
- package/components/templates/home.vue +9 -4
- package/components/templates/plain.vue +9 -4
- package/composables/useHelmOpResources.test.ts +56 -0
- package/composables/useHelmOpResources.ts +32 -0
- package/composables/useStateColor.test.ts +325 -0
- package/composables/useStateColor.ts +128 -0
- package/config/features.js +1 -0
- package/config/home-links.js +1 -1
- package/config/labels-annotations.js +3 -0
- package/config/product/explorer.js +17 -4
- package/config/product/manager.js +8 -0
- package/config/router/index.js +16 -0
- package/config/router/navigation-guards/__tests__/authentication.test.ts +130 -0
- package/config/router/navigation-guards/authentication.js +10 -4
- package/config/router/routes.js +20 -6
- package/config/secret.ts +10 -0
- package/config/settings.ts +6 -4
- package/config/table-headers.js +3 -4
- package/config/types.js +16 -0
- package/core/plugin-products-base.ts +3 -3
- package/core/plugin-types.ts +83 -30
- package/core/plugin.ts +3 -0
- package/core/types-provisioning.ts +34 -1
- package/core/types.ts +15 -2
- package/detail/__tests__/provisioning.cattle.io.cluster.test.ts +114 -0
- package/detail/__tests__/workload.test.ts +3 -152
- package/detail/catalog.cattle.io.clusterrepo.vue +1 -1
- package/detail/provisioning.cattle.io.cluster.vue +109 -7
- package/detail/workload/index.vue +12 -55
- package/dialog/RotateEncryptionKeyDialog.vue +33 -9
- package/dialog/__tests__/RotateEncryptionKeyDialog.test.ts +78 -0
- package/edit/__tests__/catalog.cattle.io.clusterrepo.test.ts +248 -0
- package/edit/__tests__/fleet.cattle.io.gitrepo.test.ts +92 -0
- package/edit/__tests__/fleet.cattle.io.helmop.test.ts +206 -0
- package/edit/__tests__/management.cattle.io.setting.test.ts +2 -1
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/General.test.ts.snap +6 -0
- package/edit/auditlog.cattle.io.auditpolicy/__tests__/__snapshots__/index.test.ts.snap +1 -0
- package/edit/auth/__tests__/azuread.test.ts +34 -9
- package/edit/auth/__tests__/github.test.ts +234 -0
- package/edit/auth/__tests__/oidc.test.ts +26 -6
- package/edit/auth/__tests__/saml.test.ts +196 -0
- package/edit/auth/azuread.vue +128 -95
- package/edit/auth/github.vue +72 -13
- package/edit/auth/ldap/__tests__/index.test.ts +206 -0
- package/edit/auth/ldap/config.vue +8 -0
- package/edit/auth/ldap/index.vue +75 -1
- package/edit/auth/oidc.vue +119 -73
- package/edit/auth/saml.vue +76 -12
- package/edit/catalog.cattle.io.clusterrepo.vue +140 -32
- package/edit/compliance.cattle.io.clusterscanprofile.vue +39 -41
- package/edit/fleet.cattle.io.gitrepo.vue +70 -16
- package/edit/fleet.cattle.io.helmop.vue +542 -141
- package/edit/helm.cattle.io.projecthelmchart.vue +1 -0
- package/edit/{management.cattle.io.setting.vue → management.cattle.io.setting/index.vue} +32 -9
- package/edit/management.cattle.io.setting/system-default-registry-pull-secrets.vue +81 -0
- package/edit/management.cattle.io.user.vue +5 -2
- package/edit/provisioning.cattle.io.cluster/SelectCredential.vue +3 -12
- package/edit/provisioning.cattle.io.cluster/__tests__/rke2.test.ts +18 -0
- package/edit/provisioning.cattle.io.cluster/rke2.vue +89 -11
- package/edit/provisioning.cattle.io.cluster/tabs/MachinePool.vue +11 -0
- package/edit/provisioning.cattle.io.cluster/tabs/etcd/index.vue +0 -1
- package/edit/provisioning.cattle.io.cluster/tabs/registries/index.vue +14 -55
- package/list/group.principal.vue +5 -4
- package/list/harvesterhci.io.management.cluster.vue +8 -9
- package/list/management.cattle.io.user.vue +12 -9
- package/list/provisioning.cattle.io.cluster.vue +16 -10
- package/mixins/__tests__/auth-config.test.ts +90 -0
- package/mixins/__tests__/chart.test.ts +94 -0
- package/mixins/__tests__/resource-fetch-api-pagination.test.ts +48 -0
- package/mixins/auth-config.js +7 -0
- package/mixins/chart.js +11 -2
- package/mixins/child-hook.js +12 -6
- package/mixins/create-edit-view/impl.js +5 -3
- package/mixins/resource-fetch-api-pagination.js +21 -1
- package/models/__tests__/catalog.cattle.io.clusterrepo.test.ts +57 -0
- package/models/__tests__/compliance.cattle.io.clusterscan.test.ts +144 -0
- package/models/__tests__/fleet-application.test.ts +175 -0
- package/models/__tests__/fleet.cattle.io.bundle.test.ts +169 -0
- package/models/__tests__/fleet.cattle.io.helmop.test.ts +84 -0
- package/models/__tests__/management.cattle.io.node.ts +22 -0
- package/models/__tests__/namespace.test.ts +36 -0
- package/models/__tests__/provisioning.cattle.io.cluster.test.ts +205 -0
- package/models/__tests__/secret.test.ts +68 -1
- package/models/__tests__/workload.test.ts +401 -26
- package/models/catalog.cattle.io.clusterrepo.js +28 -4
- package/models/compliance.cattle.io.clusterscan.js +39 -4
- package/models/fleet-application.js +4 -0
- package/models/fleet.cattle.io.helmop.js +20 -1
- package/models/management.cattle.io.cluster.js +39 -5
- package/models/management.cattle.io.node.js +44 -3
- package/models/namespace.js +1 -1
- package/models/pod.js +46 -3
- package/models/provisioning.cattle.io.cluster.js +64 -14
- package/models/rke.cattle.io.etcdsnapshot.js +17 -9
- package/models/secret.js +19 -0
- package/models/workload.js +120 -20
- package/models/workload.service.js +5 -0
- package/package.json +14 -13
- package/pages/about.vue +5 -6
- package/pages/auth/login.vue +0 -35
- package/pages/auth/setup.vue +11 -0
- package/pages/c/_cluster/apps/charts/AppChartCardFooter.vue +2 -2
- package/pages/c/_cluster/apps/charts/AppChartCardSubHeader.vue +10 -1
- package/pages/c/_cluster/apps/charts/__tests__/index.test.ts +93 -0
- package/pages/c/_cluster/apps/charts/__tests__/install.test.ts +485 -107
- package/pages/c/_cluster/apps/charts/chart.vue +2 -1
- package/pages/c/_cluster/apps/charts/index.vue +48 -10
- package/pages/c/_cluster/apps/charts/install.vue +236 -144
- package/pages/c/_cluster/auth/roles/index.vue +5 -4
- package/pages/c/_cluster/explorer/workload-dashboard/ByNamespaceSection.vue +31 -0
- package/pages/c/_cluster/explorer/workload-dashboard/ByStateSection.vue +138 -0
- package/pages/c/_cluster/explorer/workload-dashboard/ByTypeSection.vue +30 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadCard.vue +155 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadNamespaceCard.vue +142 -0
- package/pages/c/_cluster/explorer/workload-dashboard/WorkloadTypeCard.vue +159 -0
- package/pages/c/_cluster/explorer/workload-dashboard/__tests__/composable.test.ts +561 -0
- package/pages/c/_cluster/explorer/workload-dashboard/composable.ts +440 -0
- package/pages/c/_cluster/explorer/workload-dashboard/index.vue +187 -0
- package/pages/c/_cluster/explorer/workload-dashboard/types.ts +80 -0
- package/pages/c/_cluster/fleet/application/create.vue +187 -136
- package/pages/c/_cluster/fleet/application/index.vue +5 -3
- package/pages/c/_cluster/fleet/application/suse-app-collection/ChartDetailBody.vue +338 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/ChartDetailHeader.vue +121 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/chart.vue +369 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/charts.vue +248 -0
- package/pages/c/_cluster/fleet/application/suse-app-collection/credentials.vue +310 -0
- package/pages/c/_cluster/fleet/index.vue +2 -2
- package/pages/c/_cluster/uiplugins/__tests__/index.test.ts +96 -0
- package/pages/c/_cluster/uiplugins/index.vue +15 -0
- package/pages/fail-whale.vue +16 -11
- package/pages/home.vue +16 -46
- package/pkg/require-asset.lib.js +25 -0
- package/pkg/vue.config.js +7 -0
- package/plugins/clean-html.d.ts +9 -0
- package/plugins/dashboard-store/__tests__/resource-class.test.ts +177 -0
- package/plugins/dashboard-store/getters.js +0 -1
- package/plugins/dashboard-store/resource-class.js +114 -19
- package/plugins/steve/__tests__/actions.test.ts +212 -0
- package/plugins/steve/actions.js +96 -0
- package/plugins/steve/steve-pagination-utils.ts +1 -1
- package/rancher-components/Accordion/Accordion.vue +53 -9
- package/rancher-components/Form/Checkbox/Checkbox.vue +14 -0
- package/rancher-components/Form/Radio/RadioButton.vue +17 -1
- package/rancher-components/Form/Radio/RadioGroup.vue +10 -0
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +30 -0
- package/rancher-components/Form/TextArea/__tests__/TextAreaAutoGrow.test.ts +95 -0
- package/rancher-components/Pill/RcTag/RcTag.vue +3 -2
- package/rancher-components/RcButton/RcButton.test.ts +103 -0
- package/rancher-components/RcButton/RcButton.vue +94 -15
- package/rancher-components/RcButton/index.ts +1 -1
- package/rancher-components/RcButton/types.ts +3 -0
- package/rancher-components/RcDropdown/RcDropdownTrigger.vue +6 -1
- package/rancher-components/RcItemCard/RcItemCard.test.ts +18 -0
- package/rancher-components/RcItemCard/RcItemCard.vue +2 -2
- package/rancher-components/RcSection/RcSection.vue +28 -3
- package/scripts/extension/helm/package/Dockerfile +1 -1
- package/scripts/test-plugins-build.sh +2 -1
- package/store/__tests__/features.test.ts +131 -0
- package/store/__tests__/growl.test.ts +374 -0
- package/store/__tests__/modal.test.ts +131 -0
- package/store/__tests__/notifications.test.ts +434 -0
- package/store/__tests__/slideInPanel.test.ts +88 -0
- package/store/__tests__/type-map.utils.test.ts +433 -0
- package/store/catalog.js +57 -0
- package/store/features.js +4 -0
- package/store/plugins.js +7 -4
- package/types/components/buttonGroup.ts +5 -0
- package/types/shell/index.d.ts +166 -70
- package/utils/__tests__/auth.test.ts +273 -0
- package/utils/__tests__/computed.test.ts +193 -0
- package/utils/__tests__/cspAdaptor.test.ts +163 -0
- package/utils/__tests__/dom.test.ts +81 -0
- package/utils/__tests__/duration.test.ts +37 -1
- package/utils/__tests__/dynamic-importer.test.ts +102 -0
- package/utils/__tests__/fleet-appco.test.ts +312 -0
- package/utils/__tests__/monitoring.test.ts +130 -0
- package/utils/__tests__/object.test.ts +22 -0
- package/utils/__tests__/operation-cr.test.ts +34 -0
- package/utils/__tests__/platform.test.ts +91 -0
- package/utils/__tests__/position.test.ts +237 -0
- package/utils/__tests__/provider.test.ts +51 -1
- package/utils/__tests__/queue.test.ts +232 -0
- package/utils/__tests__/release-notes.test.ts +221 -0
- package/utils/__tests__/router.test.js +254 -1
- package/utils/__tests__/select.test.ts +208 -0
- package/utils/__tests__/time.test.ts +265 -1
- package/utils/__tests__/title.test.ts +47 -0
- package/utils/__tests__/width.test.ts +53 -0
- package/utils/__tests__/window.test.ts +158 -0
- package/utils/__tests__/xccdf.test.ts +126 -6
- package/utils/crypto/__tests__/browserHashUtils.test.ts +98 -0
- package/utils/crypto/__tests__/index.test.ts +144 -0
- package/utils/duration.ts +104 -0
- package/utils/dynamic-content/__tests__/notification-handler.test.ts +196 -0
- package/utils/dynamic-content/info.ts +2 -1
- package/utils/error.js +13 -0
- package/utils/fleet-appco.ts +323 -0
- package/utils/object.js +22 -2
- package/utils/operation-cr.js +19 -0
- package/utils/provider.ts +12 -0
- package/utils/require-asset.ts +7 -0
- package/utils/validators/__tests__/container-images.test.ts +104 -0
- package/utils/validators/__tests__/flow-output.test.ts +91 -0
- package/utils/validators/__tests__/logging-outputs.test.ts +58 -0
- package/utils/validators/__tests__/monitoring-route.test.ts +119 -0
- package/utils/validators/__tests__/private-registry.test.ts +27 -15
- package/utils/validators/private-registry.ts +15 -4
- package/utils/xccdf.ts +39 -42
- package/vue.config.js +1 -1
- package/pages/support/index.vue +0 -264
- package/utils/duration.js +0 -43
package/types/shell/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export const NODE_ARCHITECTURE: "kubernetes.io/arch";
|
|
|
27
27
|
export const IMPORTED_CLUSTER_VERSION_MANAGEMENT: "rancher.io/imported-cluster-version-management";
|
|
28
28
|
export const UI_PROJECT_SECRET: "management.cattle.io/project-scoped-secret";
|
|
29
29
|
export const UI_PROJECT_SECRET_COPY: "management.cattle.io/project-scoped-secret-copy";
|
|
30
|
+
export const SERVICE_LINKS: "ui.rancher/service-links";
|
|
30
31
|
export namespace KUBERNETES {
|
|
31
32
|
let SERVICE_ACCOUNT_UID: string;
|
|
32
33
|
let SERVICE_ACCOUNT_NAME: string;
|
|
@@ -140,6 +141,9 @@ export namespace SNAPSHOT {
|
|
|
140
141
|
let CLUSTER_NAME_1: string;
|
|
141
142
|
export { CLUSTER_NAME_1 as CLUSTER_NAME };
|
|
142
143
|
}
|
|
144
|
+
export namespace OPERATION_ANNOTATIONS {
|
|
145
|
+
let ENABLED: string;
|
|
146
|
+
}
|
|
143
147
|
export namespace ISTIO {
|
|
144
148
|
let AUTO_INJECTION: string;
|
|
145
149
|
}
|
|
@@ -194,6 +198,7 @@ export const NODE_ARCHITECTURE: "kubernetes.io/arch";
|
|
|
194
198
|
export const IMPORTED_CLUSTER_VERSION_MANAGEMENT: "rancher.io/imported-cluster-version-management";
|
|
195
199
|
export const UI_PROJECT_SECRET: "management.cattle.io/project-scoped-secret";
|
|
196
200
|
export const UI_PROJECT_SECRET_COPY: "management.cattle.io/project-scoped-secret-copy";
|
|
201
|
+
export const SERVICE_LINKS: "ui.rancher/service-links";
|
|
197
202
|
export namespace KUBERNETES {
|
|
198
203
|
let SERVICE_ACCOUNT_UID: string;
|
|
199
204
|
let SERVICE_ACCOUNT_NAME: string;
|
|
@@ -307,6 +312,9 @@ export namespace SNAPSHOT {
|
|
|
307
312
|
let CLUSTER_NAME_1: string;
|
|
308
313
|
export { CLUSTER_NAME_1 as CLUSTER_NAME };
|
|
309
314
|
}
|
|
315
|
+
export namespace OPERATION_ANNOTATIONS {
|
|
316
|
+
let ENABLED: string;
|
|
317
|
+
}
|
|
310
318
|
export namespace ISTIO {
|
|
311
319
|
let AUTO_INJECTION: string;
|
|
312
320
|
}
|
|
@@ -1923,8 +1931,6 @@ export namespace FLEET_APPLICATION_TYPE {
|
|
|
1923
1931
|
export { sort_79 as sort };
|
|
1924
1932
|
let search_10: boolean;
|
|
1925
1933
|
export { search_10 as search };
|
|
1926
|
-
let align_12: string;
|
|
1927
|
-
export { align_12 as align };
|
|
1928
1934
|
let width_22: number;
|
|
1929
1935
|
export { width_22 as width };
|
|
1930
1936
|
}
|
|
@@ -1979,8 +1985,8 @@ export namespace FLEET_APPLICATION_RESOURCES_SUMMARY {
|
|
|
1979
1985
|
export { search_13 as search };
|
|
1980
1986
|
let formatter_49: string;
|
|
1981
1987
|
export { formatter_49 as formatter };
|
|
1982
|
-
let
|
|
1983
|
-
export {
|
|
1988
|
+
let align_12: string;
|
|
1989
|
+
export { align_12 as align };
|
|
1984
1990
|
let width_23: number;
|
|
1985
1991
|
export { width_23 as width };
|
|
1986
1992
|
}
|
|
@@ -1997,8 +2003,8 @@ export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
|
1997
2003
|
export { search_14 as search };
|
|
1998
2004
|
let formatter_50: string;
|
|
1999
2005
|
export { formatter_50 as formatter };
|
|
2000
|
-
let
|
|
2001
|
-
export {
|
|
2006
|
+
let align_13: string;
|
|
2007
|
+
export { align_13 as align };
|
|
2002
2008
|
let width_24: number;
|
|
2003
2009
|
export { width_24 as width };
|
|
2004
2010
|
}
|
|
@@ -2035,8 +2041,8 @@ export namespace APP_SUMMARY {
|
|
|
2035
2041
|
export { search_15 as search };
|
|
2036
2042
|
let formatter_52: string;
|
|
2037
2043
|
export { formatter_52 as formatter };
|
|
2038
|
-
let
|
|
2039
|
-
export {
|
|
2044
|
+
let align_14: string;
|
|
2045
|
+
export { align_14 as align };
|
|
2040
2046
|
let width_26: number;
|
|
2041
2047
|
export { width_26 as width };
|
|
2042
2048
|
}
|
|
@@ -2259,8 +2265,8 @@ export namespace ACCESS_KEY {
|
|
|
2259
2265
|
export { name_112 as name };
|
|
2260
2266
|
let labelKey_109: string;
|
|
2261
2267
|
export { labelKey_109 as labelKey };
|
|
2262
|
-
let
|
|
2263
|
-
export {
|
|
2268
|
+
let align_15: string;
|
|
2269
|
+
export { align_15 as align };
|
|
2264
2270
|
let sort_101: string[];
|
|
2265
2271
|
export { sort_101 as sort };
|
|
2266
2272
|
let width_28: number;
|
|
@@ -2275,8 +2281,8 @@ export namespace SCOPE {
|
|
|
2275
2281
|
export { labelKey_110 as labelKey };
|
|
2276
2282
|
let dashIfEmpty_6: boolean;
|
|
2277
2283
|
export { dashIfEmpty_6 as dashIfEmpty };
|
|
2278
|
-
let
|
|
2279
|
-
export {
|
|
2284
|
+
let align_16: string;
|
|
2285
|
+
export { align_16 as align };
|
|
2280
2286
|
let sort_102: string[];
|
|
2281
2287
|
export { sort_102 as sort };
|
|
2282
2288
|
let width_29: number;
|
|
@@ -2295,8 +2301,8 @@ export namespace EXPIRES {
|
|
|
2295
2301
|
export { value_113 as value };
|
|
2296
2302
|
let labelKey_111: string;
|
|
2297
2303
|
export { labelKey_111 as labelKey };
|
|
2298
|
-
let
|
|
2299
|
-
export {
|
|
2304
|
+
let align_17: string;
|
|
2305
|
+
export { align_17 as align };
|
|
2300
2306
|
let sort_104: string[];
|
|
2301
2307
|
export { sort_104 as sort };
|
|
2302
2308
|
let width_30: number;
|
|
@@ -2311,8 +2317,8 @@ export namespace LAST_USED {
|
|
|
2311
2317
|
export { value_114 as value };
|
|
2312
2318
|
let labelKey_112: string;
|
|
2313
2319
|
export { labelKey_112 as labelKey };
|
|
2314
|
-
let
|
|
2315
|
-
export {
|
|
2320
|
+
let align_18: string;
|
|
2321
|
+
export { align_18 as align };
|
|
2316
2322
|
let sort_105: string[];
|
|
2317
2323
|
export { sort_105 as sort };
|
|
2318
2324
|
let width_31: number;
|
|
@@ -2337,8 +2343,8 @@ export namespace RESTART {
|
|
|
2337
2343
|
export { formatter_64 as formatter };
|
|
2338
2344
|
let width_32: number;
|
|
2339
2345
|
export { width_32 as width };
|
|
2340
|
-
let
|
|
2341
|
-
export {
|
|
2346
|
+
let align_19: string;
|
|
2347
|
+
export { align_19 as align };
|
|
2342
2348
|
}
|
|
2343
2349
|
export namespace ROLE {
|
|
2344
2350
|
let name_117: string;
|
|
@@ -2355,8 +2361,8 @@ export namespace FEATURE_DESCRIPTION {
|
|
|
2355
2361
|
export { labelKey_115 as labelKey };
|
|
2356
2362
|
let value_117: string;
|
|
2357
2363
|
export { value_117 as value };
|
|
2358
|
-
let
|
|
2359
|
-
export {
|
|
2364
|
+
let align_20: string;
|
|
2365
|
+
export { align_20 as align };
|
|
2360
2366
|
let sort_107: string[];
|
|
2361
2367
|
export { sort_107 as sort };
|
|
2362
2368
|
let formatter_65: string;
|
|
@@ -3722,8 +3728,6 @@ export namespace FLEET_APPLICATION_TYPE {
|
|
|
3722
3728
|
export { sort_79 as sort };
|
|
3723
3729
|
let search_10: boolean;
|
|
3724
3730
|
export { search_10 as search };
|
|
3725
|
-
let align_12: string;
|
|
3726
|
-
export { align_12 as align };
|
|
3727
3731
|
let width_22: number;
|
|
3728
3732
|
export { width_22 as width };
|
|
3729
3733
|
}
|
|
@@ -3778,8 +3782,8 @@ export namespace FLEET_APPLICATION_RESOURCES_SUMMARY {
|
|
|
3778
3782
|
export { search_13 as search };
|
|
3779
3783
|
let formatter_49: string;
|
|
3780
3784
|
export { formatter_49 as formatter };
|
|
3781
|
-
let
|
|
3782
|
-
export {
|
|
3785
|
+
let align_12: string;
|
|
3786
|
+
export { align_12 as align };
|
|
3783
3787
|
let width_23: number;
|
|
3784
3788
|
export { width_23 as width };
|
|
3785
3789
|
}
|
|
@@ -3796,8 +3800,8 @@ export namespace FLEET_REPO_CLUSTER_SUMMARY {
|
|
|
3796
3800
|
export { search_14 as search };
|
|
3797
3801
|
let formatter_50: string;
|
|
3798
3802
|
export { formatter_50 as formatter };
|
|
3799
|
-
let
|
|
3800
|
-
export {
|
|
3803
|
+
let align_13: string;
|
|
3804
|
+
export { align_13 as align };
|
|
3801
3805
|
let width_24: number;
|
|
3802
3806
|
export { width_24 as width };
|
|
3803
3807
|
}
|
|
@@ -3834,8 +3838,8 @@ export namespace APP_SUMMARY {
|
|
|
3834
3838
|
export { search_15 as search };
|
|
3835
3839
|
let formatter_52: string;
|
|
3836
3840
|
export { formatter_52 as formatter };
|
|
3837
|
-
let
|
|
3838
|
-
export {
|
|
3841
|
+
let align_14: string;
|
|
3842
|
+
export { align_14 as align };
|
|
3839
3843
|
let width_26: number;
|
|
3840
3844
|
export { width_26 as width };
|
|
3841
3845
|
}
|
|
@@ -4058,8 +4062,8 @@ export namespace ACCESS_KEY {
|
|
|
4058
4062
|
export { name_112 as name };
|
|
4059
4063
|
let labelKey_109: string;
|
|
4060
4064
|
export { labelKey_109 as labelKey };
|
|
4061
|
-
let
|
|
4062
|
-
export {
|
|
4065
|
+
let align_15: string;
|
|
4066
|
+
export { align_15 as align };
|
|
4063
4067
|
let sort_101: string[];
|
|
4064
4068
|
export { sort_101 as sort };
|
|
4065
4069
|
let width_28: number;
|
|
@@ -4074,8 +4078,8 @@ export namespace SCOPE {
|
|
|
4074
4078
|
export { labelKey_110 as labelKey };
|
|
4075
4079
|
let dashIfEmpty_6: boolean;
|
|
4076
4080
|
export { dashIfEmpty_6 as dashIfEmpty };
|
|
4077
|
-
let
|
|
4078
|
-
export {
|
|
4081
|
+
let align_16: string;
|
|
4082
|
+
export { align_16 as align };
|
|
4079
4083
|
let sort_102: string[];
|
|
4080
4084
|
export { sort_102 as sort };
|
|
4081
4085
|
let width_29: number;
|
|
@@ -4094,8 +4098,8 @@ export namespace EXPIRES {
|
|
|
4094
4098
|
export { value_113 as value };
|
|
4095
4099
|
let labelKey_111: string;
|
|
4096
4100
|
export { labelKey_111 as labelKey };
|
|
4097
|
-
let
|
|
4098
|
-
export {
|
|
4101
|
+
let align_17: string;
|
|
4102
|
+
export { align_17 as align };
|
|
4099
4103
|
let sort_104: string[];
|
|
4100
4104
|
export { sort_104 as sort };
|
|
4101
4105
|
let width_30: number;
|
|
@@ -4110,8 +4114,8 @@ export namespace LAST_USED {
|
|
|
4110
4114
|
export { value_114 as value };
|
|
4111
4115
|
let labelKey_112: string;
|
|
4112
4116
|
export { labelKey_112 as labelKey };
|
|
4113
|
-
let
|
|
4114
|
-
export {
|
|
4117
|
+
let align_18: string;
|
|
4118
|
+
export { align_18 as align };
|
|
4115
4119
|
let sort_105: string[];
|
|
4116
4120
|
export { sort_105 as sort };
|
|
4117
4121
|
let width_31: number;
|
|
@@ -4136,8 +4140,8 @@ export namespace RESTART {
|
|
|
4136
4140
|
export { formatter_64 as formatter };
|
|
4137
4141
|
let width_32: number;
|
|
4138
4142
|
export { width_32 as width };
|
|
4139
|
-
let
|
|
4140
|
-
export {
|
|
4143
|
+
let align_19: string;
|
|
4144
|
+
export { align_19 as align };
|
|
4141
4145
|
}
|
|
4142
4146
|
export namespace ROLE {
|
|
4143
4147
|
let name_117: string;
|
|
@@ -4154,8 +4158,8 @@ export namespace FEATURE_DESCRIPTION {
|
|
|
4154
4158
|
export { labelKey_115 as labelKey };
|
|
4155
4159
|
let value_117: string;
|
|
4156
4160
|
export { value_117 as value };
|
|
4157
|
-
let
|
|
4158
|
-
export {
|
|
4161
|
+
let align_20: string;
|
|
4162
|
+
export { align_20 as align };
|
|
4159
4163
|
let sort_107: string[];
|
|
4160
4164
|
export { sort_107 as sort };
|
|
4161
4165
|
let formatter_65: string;
|
|
@@ -4412,6 +4416,7 @@ export namespace RBAC {
|
|
|
4412
4416
|
let CLUSTER_ROLE_BINDING: string;
|
|
4413
4417
|
}
|
|
4414
4418
|
export const WORKLOAD: "workload";
|
|
4419
|
+
export const WORKLOAD_DASHBOARD: "workload-dashboard";
|
|
4415
4420
|
export namespace WORKLOAD_TYPES {
|
|
4416
4421
|
let DEPLOYMENT: string;
|
|
4417
4422
|
let CRON_JOB: string;
|
|
@@ -4512,6 +4517,11 @@ export const LONGHORN_DRIVER: "driver.longhorn.io";
|
|
|
4512
4517
|
export const LONGHORN_VERSION_V1: "LonghornV1";
|
|
4513
4518
|
export const LONGHORN_VERSION_V2: "LonghornV2";
|
|
4514
4519
|
export const SNAPSHOT: "rke.cattle.io.etcdsnapshot";
|
|
4520
|
+
export namespace OPERATION {
|
|
4521
|
+
let ETCD_SNAPSHOT: string;
|
|
4522
|
+
let ETCD_SNAPSHOT_RESTORE: string;
|
|
4523
|
+
let ENCRYPTION_KEY_ROTATE: string;
|
|
4524
|
+
}
|
|
4515
4525
|
export namespace MANAGEMENT {
|
|
4516
4526
|
let AUTH_CONFIG_1: string;
|
|
4517
4527
|
export { AUTH_CONFIG_1 as AUTH_CONFIG };
|
|
@@ -4577,6 +4587,7 @@ export namespace CAPI {
|
|
|
4577
4587
|
let MACHINE: string;
|
|
4578
4588
|
let RANCHER_CLUSTER: string;
|
|
4579
4589
|
let MACHINE_CONFIG_GROUP: string;
|
|
4590
|
+
let CAPI_PROVIDER: string;
|
|
4580
4591
|
}
|
|
4581
4592
|
export namespace FLEET {
|
|
4582
4593
|
export let APPLICATION: string;
|
|
@@ -4588,6 +4599,7 @@ export namespace FLEET {
|
|
|
4588
4599
|
export let DASHBOARD: string;
|
|
4589
4600
|
export let GIT_REPO: string;
|
|
4590
4601
|
export let HELM_OP: string;
|
|
4602
|
+
export let SUSE_APP_COLLECTION: string;
|
|
4591
4603
|
export let WORKSPACE: string;
|
|
4592
4604
|
let TOKEN_2: string;
|
|
4593
4605
|
export { TOKEN_2 as TOKEN };
|
|
@@ -4687,6 +4699,7 @@ export namespace AUTH_TYPE {
|
|
|
4687
4699
|
let _S3: string;
|
|
4688
4700
|
let _RKE: string;
|
|
4689
4701
|
let _IMAGE_PULL_SECRET: string;
|
|
4702
|
+
let _GITHUB_APP: string;
|
|
4690
4703
|
}
|
|
4691
4704
|
export const LOCAL_CLUSTER: "local";
|
|
4692
4705
|
export namespace CLUSTER_REPO_TYPES {
|
|
@@ -4694,7 +4707,8 @@ export namespace CLUSTER_REPO_TYPES {
|
|
|
4694
4707
|
let GIT_REPO_1: string;
|
|
4695
4708
|
export { GIT_REPO_1 as GIT_REPO };
|
|
4696
4709
|
export let OCI_URL: string;
|
|
4697
|
-
|
|
4710
|
+
let SUSE_APP_COLLECTION_1: string;
|
|
4711
|
+
export { SUSE_APP_COLLECTION_1 as SUSE_APP_COLLECTION };
|
|
4698
4712
|
}
|
|
4699
4713
|
/**
|
|
4700
4714
|
* The `generateName` prefix used when creating authentication secrets
|
|
@@ -4706,6 +4720,11 @@ export const CLUSTER_REPO_APPCO_AUTH_GENERATE_NAME: "clusterrepo-appco-auth-";
|
|
|
4706
4720
|
* for standard repositories.
|
|
4707
4721
|
*/
|
|
4708
4722
|
export const CLUSTER_REPO_AUTH_GENERATE_NAME: "clusterrepo-auth-";
|
|
4723
|
+
/**
|
|
4724
|
+
* The `generateName` prefix used when creating Helm Op authentication secrets
|
|
4725
|
+
* for standard Helm sources.
|
|
4726
|
+
*/
|
|
4727
|
+
export const AUTH_GENERATE_NAME: "auth-";
|
|
4709
4728
|
export const ZERO_TIME: "0001-01-01T00:00:00Z";
|
|
4710
4729
|
export const DEFAULT_GRAFANA_STORAGE_SIZE: "10Gi";
|
|
4711
4730
|
export const DEPRECATED: "Deprecated";
|
|
@@ -4788,6 +4807,7 @@ export namespace RBAC {
|
|
|
4788
4807
|
let CLUSTER_ROLE_BINDING: string;
|
|
4789
4808
|
}
|
|
4790
4809
|
export const WORKLOAD: "workload";
|
|
4810
|
+
export const WORKLOAD_DASHBOARD: "workload-dashboard";
|
|
4791
4811
|
export namespace WORKLOAD_TYPES {
|
|
4792
4812
|
let DEPLOYMENT: string;
|
|
4793
4813
|
let CRON_JOB: string;
|
|
@@ -4888,6 +4908,11 @@ export const LONGHORN_DRIVER: "driver.longhorn.io";
|
|
|
4888
4908
|
export const LONGHORN_VERSION_V1: "LonghornV1";
|
|
4889
4909
|
export const LONGHORN_VERSION_V2: "LonghornV2";
|
|
4890
4910
|
export const SNAPSHOT: "rke.cattle.io.etcdsnapshot";
|
|
4911
|
+
export namespace OPERATION {
|
|
4912
|
+
let ETCD_SNAPSHOT: string;
|
|
4913
|
+
let ETCD_SNAPSHOT_RESTORE: string;
|
|
4914
|
+
let ENCRYPTION_KEY_ROTATE: string;
|
|
4915
|
+
}
|
|
4891
4916
|
export namespace MANAGEMENT {
|
|
4892
4917
|
let AUTH_CONFIG_1: string;
|
|
4893
4918
|
export { AUTH_CONFIG_1 as AUTH_CONFIG };
|
|
@@ -4953,6 +4978,7 @@ export namespace CAPI {
|
|
|
4953
4978
|
let MACHINE: string;
|
|
4954
4979
|
let RANCHER_CLUSTER: string;
|
|
4955
4980
|
let MACHINE_CONFIG_GROUP: string;
|
|
4981
|
+
let CAPI_PROVIDER: string;
|
|
4956
4982
|
}
|
|
4957
4983
|
export namespace FLEET {
|
|
4958
4984
|
export let APPLICATION: string;
|
|
@@ -4964,6 +4990,7 @@ export namespace FLEET {
|
|
|
4964
4990
|
export let DASHBOARD: string;
|
|
4965
4991
|
export let GIT_REPO: string;
|
|
4966
4992
|
export let HELM_OP: string;
|
|
4993
|
+
export let SUSE_APP_COLLECTION: string;
|
|
4967
4994
|
export let WORKSPACE: string;
|
|
4968
4995
|
let TOKEN_2: string;
|
|
4969
4996
|
export { TOKEN_2 as TOKEN };
|
|
@@ -5063,6 +5090,7 @@ export namespace AUTH_TYPE {
|
|
|
5063
5090
|
let _S3: string;
|
|
5064
5091
|
let _RKE: string;
|
|
5065
5092
|
let _IMAGE_PULL_SECRET: string;
|
|
5093
|
+
let _GITHUB_APP: string;
|
|
5066
5094
|
}
|
|
5067
5095
|
export const LOCAL_CLUSTER: "local";
|
|
5068
5096
|
export namespace CLUSTER_REPO_TYPES {
|
|
@@ -5070,7 +5098,8 @@ export namespace CLUSTER_REPO_TYPES {
|
|
|
5070
5098
|
let GIT_REPO_1: string;
|
|
5071
5099
|
export { GIT_REPO_1 as GIT_REPO };
|
|
5072
5100
|
export let OCI_URL: string;
|
|
5073
|
-
|
|
5101
|
+
let SUSE_APP_COLLECTION_1: string;
|
|
5102
|
+
export { SUSE_APP_COLLECTION_1 as SUSE_APP_COLLECTION };
|
|
5074
5103
|
}
|
|
5075
5104
|
/**
|
|
5076
5105
|
* The `generateName` prefix used when creating authentication secrets
|
|
@@ -5082,6 +5111,11 @@ export const CLUSTER_REPO_APPCO_AUTH_GENERATE_NAME: "clusterrepo-appco-auth-";
|
|
|
5082
5111
|
* for standard repositories.
|
|
5083
5112
|
*/
|
|
5084
5113
|
export const CLUSTER_REPO_AUTH_GENERATE_NAME: "clusterrepo-auth-";
|
|
5114
|
+
/**
|
|
5115
|
+
* The `generateName` prefix used when creating Helm Op authentication secrets
|
|
5116
|
+
* for standard Helm sources.
|
|
5117
|
+
*/
|
|
5118
|
+
export const AUTH_GENERATE_NAME: "auth-";
|
|
5085
5119
|
export const ZERO_TIME: "0001-01-01T00:00:00Z";
|
|
5086
5120
|
export const DEFAULT_GRAFANA_STORAGE_SIZE: "10Gi";
|
|
5087
5121
|
export const DEPRECATED: "Deprecated";
|
|
@@ -5342,6 +5376,7 @@ export default _default;
|
|
|
5342
5376
|
// @shell/mixins/mixins/resource-fetch-api-pagination
|
|
5343
5377
|
|
|
5344
5378
|
declare module '@shell/mixins/mixins/resource-fetch-api-pagination' {
|
|
5379
|
+
export function parseStateFilter(stateFilter: any): any[];
|
|
5345
5380
|
declare namespace _default {
|
|
5346
5381
|
namespace props {
|
|
5347
5382
|
namespace namespaced {
|
|
@@ -5470,6 +5505,7 @@ export default _default;
|
|
|
5470
5505
|
// @shell/mixins/mixins/resource-fetch-api-pagination.js
|
|
5471
5506
|
|
|
5472
5507
|
declare module '@shell/mixins/mixins/resource-fetch-api-pagination.js' {
|
|
5508
|
+
export function parseStateFilter(stateFilter: any): any[];
|
|
5473
5509
|
declare namespace _default {
|
|
5474
5510
|
namespace props {
|
|
5475
5511
|
namespace namespaced {
|
|
@@ -5831,18 +5867,21 @@ export default class ClusterRepo {
|
|
|
5831
5867
|
get canLoad(): boolean;
|
|
5832
5868
|
get isSuseAppCollectionFromUI(): any;
|
|
5833
5869
|
get isSuseAppCollection(): any;
|
|
5834
|
-
get typeDisplay():
|
|
5870
|
+
get typeDisplay(): any;
|
|
5835
5871
|
get nameDisplay(): any;
|
|
5836
5872
|
detailPageHeaderActionOverride(realMode: any): any;
|
|
5837
5873
|
get urlDisplay(): any;
|
|
5838
5874
|
get branchDisplay(): any;
|
|
5875
|
+
get defaultRefreshIntervalHours(): 1 | 24;
|
|
5876
|
+
get defaultRefreshInterval(): number;
|
|
5877
|
+
get refreshIntervalDisplay(): any;
|
|
5839
5878
|
get details(): ({
|
|
5840
|
-
label:
|
|
5841
|
-
content:
|
|
5879
|
+
label: any;
|
|
5880
|
+
content: any;
|
|
5842
5881
|
formatter?: undefined;
|
|
5843
5882
|
formatterOpts?: undefined;
|
|
5844
5883
|
} | {
|
|
5845
|
-
label:
|
|
5884
|
+
label: any;
|
|
5846
5885
|
content: any;
|
|
5847
5886
|
formatter: string;
|
|
5848
5887
|
formatterOpts: {
|
|
@@ -5889,18 +5928,21 @@ export default class ClusterRepo {
|
|
|
5889
5928
|
get canLoad(): boolean;
|
|
5890
5929
|
get isSuseAppCollectionFromUI(): any;
|
|
5891
5930
|
get isSuseAppCollection(): any;
|
|
5892
|
-
get typeDisplay():
|
|
5931
|
+
get typeDisplay(): any;
|
|
5893
5932
|
get nameDisplay(): any;
|
|
5894
5933
|
detailPageHeaderActionOverride(realMode: any): any;
|
|
5895
5934
|
get urlDisplay(): any;
|
|
5896
5935
|
get branchDisplay(): any;
|
|
5936
|
+
get defaultRefreshIntervalHours(): 1 | 24;
|
|
5937
|
+
get defaultRefreshInterval(): number;
|
|
5938
|
+
get refreshIntervalDisplay(): any;
|
|
5897
5939
|
get details(): ({
|
|
5898
|
-
label:
|
|
5899
|
-
content:
|
|
5940
|
+
label: any;
|
|
5941
|
+
content: any;
|
|
5900
5942
|
formatter?: undefined;
|
|
5901
5943
|
formatterOpts?: undefined;
|
|
5902
5944
|
} | {
|
|
5903
|
-
label:
|
|
5945
|
+
label: any;
|
|
5904
5946
|
content: any;
|
|
5905
5947
|
formatter: string;
|
|
5906
5948
|
formatterOpts: {
|
|
@@ -6580,7 +6622,8 @@ export function getStatesByType(type?: string): {
|
|
|
6580
6622
|
};
|
|
6581
6623
|
export function getStateLabel(state: any): string;
|
|
6582
6624
|
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
6583
|
-
export function
|
|
6625
|
+
export function simpleColorForState(state: any, isError?: boolean, isTransitioning?: boolean): string;
|
|
6626
|
+
export function stateDisplay(state: any, preserveOriginal?: boolean): any;
|
|
6584
6627
|
export function primaryDisplayStatusFromCount(status: any): string;
|
|
6585
6628
|
export function stateSort(color: any, display: any): string;
|
|
6586
6629
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
@@ -6599,6 +6642,7 @@ export namespace STATES_ENUM {
|
|
|
6599
6642
|
let BUILDING: string;
|
|
6600
6643
|
let COMPLETED: string;
|
|
6601
6644
|
let CORDONED: string;
|
|
6645
|
+
let CANCELLED: string;
|
|
6602
6646
|
let COUNT: string;
|
|
6603
6647
|
let CREATED: string;
|
|
6604
6648
|
let CREATING: string;
|
|
@@ -6719,9 +6763,9 @@ export default class Resource {
|
|
|
6719
6763
|
get stateColor(): any;
|
|
6720
6764
|
get stateColorPair(): {
|
|
6721
6765
|
state: any;
|
|
6722
|
-
color:
|
|
6766
|
+
color: string;
|
|
6723
6767
|
};
|
|
6724
|
-
get stateSimpleColor():
|
|
6768
|
+
get stateSimpleColor(): string;
|
|
6725
6769
|
get stateBackground(): any;
|
|
6726
6770
|
get stateIcon(): string;
|
|
6727
6771
|
get stateSort(): string;
|
|
@@ -6837,6 +6881,8 @@ export default class Resource {
|
|
|
6837
6881
|
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<any>;
|
|
6838
6882
|
patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
|
|
6839
6883
|
save(...args: any[]): Promise<this>;
|
|
6884
|
+
_collectionUrl(): any;
|
|
6885
|
+
dryRunCreate(data: any): Promise<any>;
|
|
6840
6886
|
/**
|
|
6841
6887
|
* Remove any unwanted properties from the object that will be saved
|
|
6842
6888
|
*/
|
|
@@ -7130,6 +7176,15 @@ export default class Resource {
|
|
|
7130
7176
|
rows: any[];
|
|
7131
7177
|
};
|
|
7132
7178
|
};
|
|
7179
|
+
get _resourcesCardRows(): any[];
|
|
7180
|
+
get resourcesCardRows(): any[];
|
|
7181
|
+
get resourcesCard(): {
|
|
7182
|
+
component: any;
|
|
7183
|
+
props: {
|
|
7184
|
+
title: any;
|
|
7185
|
+
rows: any[];
|
|
7186
|
+
};
|
|
7187
|
+
};
|
|
7133
7188
|
get _cards(): any[];
|
|
7134
7189
|
get cards(): any[];
|
|
7135
7190
|
}
|
|
@@ -7148,7 +7203,8 @@ export function getStatesByType(type?: string): {
|
|
|
7148
7203
|
};
|
|
7149
7204
|
export function getStateLabel(state: any): string;
|
|
7150
7205
|
export function colorForState(state: any, isError: any, isTransitioning: any): string;
|
|
7151
|
-
export function
|
|
7206
|
+
export function simpleColorForState(state: any, isError?: boolean, isTransitioning?: boolean): string;
|
|
7207
|
+
export function stateDisplay(state: any, preserveOriginal?: boolean): any;
|
|
7152
7208
|
export function primaryDisplayStatusFromCount(status: any): string;
|
|
7153
7209
|
export function stateSort(color: any, display: any): string;
|
|
7154
7210
|
export function isConditionReadyAndWaiting(condition: any): boolean;
|
|
@@ -7167,6 +7223,7 @@ export namespace STATES_ENUM {
|
|
|
7167
7223
|
let BUILDING: string;
|
|
7168
7224
|
let COMPLETED: string;
|
|
7169
7225
|
let CORDONED: string;
|
|
7226
|
+
let CANCELLED: string;
|
|
7170
7227
|
let COUNT: string;
|
|
7171
7228
|
let CREATED: string;
|
|
7172
7229
|
let CREATING: string;
|
|
@@ -7287,9 +7344,9 @@ export default class Resource {
|
|
|
7287
7344
|
get stateColor(): any;
|
|
7288
7345
|
get stateColorPair(): {
|
|
7289
7346
|
state: any;
|
|
7290
|
-
color:
|
|
7347
|
+
color: string;
|
|
7291
7348
|
};
|
|
7292
|
-
get stateSimpleColor():
|
|
7349
|
+
get stateSimpleColor(): string;
|
|
7293
7350
|
get stateBackground(): any;
|
|
7294
7351
|
get stateIcon(): string;
|
|
7295
7352
|
get stateSort(): string;
|
|
@@ -7405,6 +7462,8 @@ export default class Resource {
|
|
|
7405
7462
|
doActionGrowl(actionName: any, body: any, opt?: {}): Promise<any>;
|
|
7406
7463
|
patch(data: any, opt?: {}, merge?: boolean, alertOnError?: boolean): any;
|
|
7407
7464
|
save(...args: any[]): Promise<this>;
|
|
7465
|
+
_collectionUrl(): any;
|
|
7466
|
+
dryRunCreate(data: any): Promise<any>;
|
|
7408
7467
|
/**
|
|
7409
7468
|
* Remove any unwanted properties from the object that will be saved
|
|
7410
7469
|
*/
|
|
@@ -7698,6 +7757,15 @@ export default class Resource {
|
|
|
7698
7757
|
rows: any[];
|
|
7699
7758
|
};
|
|
7700
7759
|
};
|
|
7760
|
+
get _resourcesCardRows(): any[];
|
|
7761
|
+
get resourcesCardRows(): any[];
|
|
7762
|
+
get resourcesCard(): {
|
|
7763
|
+
component: any;
|
|
7764
|
+
props: {
|
|
7765
|
+
title: any;
|
|
7766
|
+
rows: any[];
|
|
7767
|
+
};
|
|
7768
|
+
};
|
|
7701
7769
|
get _cards(): any[];
|
|
7702
7770
|
get cards(): any[];
|
|
7703
7771
|
}
|
|
@@ -7857,6 +7925,9 @@ export const PROVISIONING_PRE_BOOTSTRAP: any;
|
|
|
7857
7925
|
export const SCHEDULING_CUSTOMIZATION: any;
|
|
7858
7926
|
export const SCC: any;
|
|
7859
7927
|
export const AUTOSCALER: any;
|
|
7928
|
+
export const CLUSTER_SHELL: any;
|
|
7929
|
+
export const NODE_SHELL: any;
|
|
7930
|
+
export const POD_SHELL: any;
|
|
7860
7931
|
export namespace getters {
|
|
7861
7932
|
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
7862
7933
|
}
|
|
@@ -7890,6 +7961,9 @@ export const PROVISIONING_PRE_BOOTSTRAP: any;
|
|
|
7890
7961
|
export const SCHEDULING_CUSTOMIZATION: any;
|
|
7891
7962
|
export const SCC: any;
|
|
7892
7963
|
export const AUTOSCALER: any;
|
|
7964
|
+
export const CLUSTER_SHELL: any;
|
|
7965
|
+
export const NODE_SHELL: any;
|
|
7966
|
+
export const POD_SHELL: any;
|
|
7893
7967
|
export namespace getters {
|
|
7894
7968
|
function get(state: any, getters: any, rootState: any, rootGetters: any): (name: any) => any;
|
|
7895
7969
|
}
|
|
@@ -9253,20 +9327,6 @@ export function generateZip(files: any): any;
|
|
|
9253
9327
|
export function downloadUrl(url: any, id?: string): void;
|
|
9254
9328
|
}
|
|
9255
9329
|
|
|
9256
|
-
// @shell/utils/duration
|
|
9257
|
-
|
|
9258
|
-
declare module '@shell/utils/duration' {
|
|
9259
|
-
export function toMilliseconds(input: any): number;
|
|
9260
|
-
export function toSeconds(input: any): number;
|
|
9261
|
-
}
|
|
9262
|
-
|
|
9263
|
-
// @shell/utils/duration.js
|
|
9264
|
-
|
|
9265
|
-
declare module '@shell/utils/duration.js' {
|
|
9266
|
-
export function toMilliseconds(input: any): number;
|
|
9267
|
-
export function toSeconds(input: any): number;
|
|
9268
|
-
}
|
|
9269
|
-
|
|
9270
9330
|
// @shell/utils/dynamic-importer
|
|
9271
9331
|
|
|
9272
9332
|
declare module '@shell/utils/dynamic-importer' {
|
|
@@ -9324,6 +9384,8 @@ export function resolveCloudCredentialComponent(key: any): string;
|
|
|
9324
9384
|
declare module '@shell/utils/error' {
|
|
9325
9385
|
export function stringify(err: any): any;
|
|
9326
9386
|
export function exceptionToErrorsArray(err: any): any;
|
|
9387
|
+
export function createDoNotLogError(message: any): Error;
|
|
9388
|
+
export function isDoNotLogError(err: any): boolean;
|
|
9327
9389
|
export class ClusterNotFoundError extends Error {
|
|
9328
9390
|
static NAME: string;
|
|
9329
9391
|
constructor(message: any);
|
|
@@ -9359,6 +9421,8 @@ export function formatAWSError(err: any): any;
|
|
|
9359
9421
|
declare module '@shell/utils/error.js' {
|
|
9360
9422
|
export function stringify(err: any): any;
|
|
9361
9423
|
export function exceptionToErrorsArray(err: any): any;
|
|
9424
|
+
export function createDoNotLogError(message: any): Error;
|
|
9425
|
+
export function isDoNotLogError(err: any): boolean;
|
|
9362
9426
|
export class ClusterNotFoundError extends Error {
|
|
9363
9427
|
static NAME: string;
|
|
9364
9428
|
constructor(message: any);
|
|
@@ -9731,6 +9795,38 @@ export function convertStringToKV(input: string): {};
|
|
|
9731
9795
|
declare function isEqualBasic(from: any, to: any): boolean;
|
|
9732
9796
|
}
|
|
9733
9797
|
|
|
9798
|
+
// @shell/utils/operation-cr
|
|
9799
|
+
|
|
9800
|
+
declare module '@shell/utils/operation-cr' {
|
|
9801
|
+
/**
|
|
9802
|
+
* Create a day 2 operation CR for imported clusters.
|
|
9803
|
+
*
|
|
9804
|
+
* @param {Function} dispatch - The Vuex dispatch function
|
|
9805
|
+
* @param {string} type - The operation CRD type
|
|
9806
|
+
* @param {object} spec - The operation spec
|
|
9807
|
+
* @param {string} namespace - The namespace for the operation CR
|
|
9808
|
+
* @param {string} namePrefix - The name prefix for the generated name
|
|
9809
|
+
* @returns {Promise} The saved resource
|
|
9810
|
+
*/
|
|
9811
|
+
export function createOperationCR(dispatch: Function, type: string, spec: object, namespace: string, namePrefix: string): Promise<any>;
|
|
9812
|
+
}
|
|
9813
|
+
|
|
9814
|
+
// @shell/utils/operation-cr.js
|
|
9815
|
+
|
|
9816
|
+
declare module '@shell/utils/operation-cr.js' {
|
|
9817
|
+
/**
|
|
9818
|
+
* Create a day 2 operation CR for imported clusters.
|
|
9819
|
+
*
|
|
9820
|
+
* @param {Function} dispatch - The Vuex dispatch function
|
|
9821
|
+
* @param {string} type - The operation CRD type
|
|
9822
|
+
* @param {object} spec - The operation spec
|
|
9823
|
+
* @param {string} namespace - The namespace for the operation CR
|
|
9824
|
+
* @param {string} namePrefix - The name prefix for the generated name
|
|
9825
|
+
* @returns {Promise} The saved resource
|
|
9826
|
+
*/
|
|
9827
|
+
export function createOperationCR(dispatch: Function, type: string, spec: object, namespace: string, namePrefix: string): Promise<any>;
|
|
9828
|
+
}
|
|
9829
|
+
|
|
9734
9830
|
// @shell/utils/parse-externalid
|
|
9735
9831
|
|
|
9736
9832
|
declare module '@shell/utils/parse-externalid' {
|