@harnessio/react-chaos-manager-client 0.10.0 → 0.11.0
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/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.d.ts +23 -0
- package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.d.ts +23 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationStatusMutation.d.ts +20 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationStatusMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useInsertRecommendationsMutation.d.ts +19 -0
- package/dist/chaos-manager/src/services/hooks/useInsertRecommendationsMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.d.ts +25 -0
- package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useStopChaosV2ExperimentMutation.d.ts +1 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.js +14 -0
- package/dist/chaos-manager/src/services/index.d.ts +52 -27
- package/dist/chaos-manager/src/services/index.js +8 -5
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesChaosStepStatus.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesFaultData.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesFaultDetails.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseAgentConfiguration.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseDiscoveredServiceCollection.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseNetworkMapEntity.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseNetworkMapEntityKubernetesInfo.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseServiceCollection.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.d.ts +26 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.d.ts +10 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs.d.ts +5 -31
- package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesDefinition.d.ts +0 -6
- package/dist/chaos-manager/src/services/schemas/NetworkmapTargetServiceDetails.d.ts +9 -3
- package/dist/chaos-manager/src/services/schemas/NetworkmapTargetServiceDetails.js +0 -3
- package/dist/chaos-manager/src/services/schemas/RecommendationEc2Instance.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationFaultFilters.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationFixes.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationProbeFilters.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationCategory.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationSource.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationStatus.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationTargetType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationSuggestions.d.ts +13 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsCreateActionResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsEc2Instance.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsEc2Instance.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFault.d.ts +12 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFaultFilters.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFaultFilters.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusRequest.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusRequest.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusResponse.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsIdentifiers.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsIdentifiers.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInActiveEvent.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInActiveEvent.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInsertRecommendationsRequest.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInsertRecommendationsRequest.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsLlmResponse.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsLlmResponse.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsNode.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsNode.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFilters.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFilters.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFix.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFix.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsTarget.d.ts +10 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsTarget.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsWorkload.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsWorkload.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/TypesApplication.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesApplication.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesConfigMap.d.ts +0 -9
- package/dist/chaos-manager/src/services/schemas/TypesExperimentComponents.d.ts +0 -39
- package/dist/chaos-manager/src/services/schemas/TypesHostFile.d.ts +0 -12
- package/dist/chaos-manager/src/services/schemas/TypesProjectedVolumes.d.ts +0 -12
- package/dist/chaos-manager/src/services/schemas/TypesSecret.d.ts +0 -9
- package/dist/chaos-manager/src/services/schemas/TypesSecurityContext.d.ts +0 -6
- package/dist/chaos-manager/src/services/schemas/TypesSelector.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/TypesSidecar.d.ts +0 -15
- package/dist/chaos-manager/src/services/schemas/TypesStatusCheckTimeout.d.ts +0 -6
- package/dist/chaos-manager/src/services/schemas/TypesTargets.d.ts +2 -3
- package/dist/chaos-manager/src/services/schemas/TypesWorkload.d.ts +0 -12
- package/package.json +2 -2
- package/dist/chaos-manager/src/services/hooks/useCreateChaosExperimentExecutionNodeMutation.d.ts +0 -24
- package/dist/chaos-manager/src/services/hooks/useCreateChaosExperimentExecutionNodeMutation.js +0 -14
- package/dist/chaos-manager/src/services/hooks/useExperimentExecutionNodeDetailsQuery.d.ts +0 -28
- package/dist/chaos-manager/src/services/hooks/useExperimentExecutionNodeDetailsQuery.js +0 -20
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineExecutionQuery.d.ts +0 -27
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineExecutionQuery.js +0 -14
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineStepDetailsQuery.d.ts +0 -28
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineStepDetailsQuery.js +0 -20
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosExperimentExecutionNodeMutation.d.ts +0 -29
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosExperimentExecutionNodeMutation.js +0 -14
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData.d.ts +0 -8
- package/dist/chaos-manager/src/services/schemas/ModelActionData.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/ModelChaosExecutionNode.d.ts +0 -19
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepStatus.d.ts +0 -1
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepType.d.ts +0 -1
- package/dist/chaos-manager/src/services/schemas/ModelCommandProbe.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/ModelErrorData.d.ts +0 -4
- package/dist/chaos-manager/src/services/schemas/ModelFaultData.d.ts +0 -10
- package/dist/chaos-manager/src/services/schemas/ModelHelperPodDetails.d.ts +0 -4
- package/dist/chaos-manager/src/services/schemas/ModelHttpProbe.d.ts +0 -5
- package/dist/chaos-manager/src/services/schemas/ModelProbeData.d.ts +0 -8
- package/dist/chaos-manager/src/services/schemas/ModelProbeIterations.d.ts +0 -11
- package/dist/chaos-manager/src/services/schemas/ModelPromProbe.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/TypesFault.d.ts +0 -21
- package/dist/chaos-manager/src/services/schemas/TypesFaultRef.d.ts +0 -14
- package/dist/chaos-manager/src/services/schemas/V1alpha1TargetDetails.d.ts +0 -5
- package/dist/chaos-manager/src/services/schemas/V1alpha1Targets.d.ts +0 -8
- /package/dist/chaos-manager/src/services/schemas/{GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData.js → ChaosExecutionNodesFaultDetails.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelActionData.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelChaosExecutionNode.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelFaultData.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelChaosStepStatus.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelChaosStepType.js → RecommendationEc2Instance.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelProbeData.js → RecommendationFaultFilters.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelCommandProbe.js → RecommendationFixes.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelErrorData.js → RecommendationProbeFilters.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelHelperPodDetails.js → RecommendationRecommendationCategory.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelHttpProbe.js → RecommendationRecommendationSource.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelPromProbe.js → RecommendationRecommendationStatus.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{TypesFaultRef.js → RecommendationRecommendationTargetType.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{V1alpha1TargetDetails.js → RecommendationRecommendationType.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelProbeIterations.js → RecommendationSuggestions.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{V1alpha1Targets.js → RecommendationsCreateActionResponse.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{TypesFault.js → RecommendationsFault.js} +0 -0
|
@@ -4,13 +4,13 @@ export { bulkExperimentTagAdd, useBulkExperimentTagAddMutation, } from './hooks/
|
|
|
4
4
|
export { canRetryExperimentCreation, useCanRetryExperimentCreationQuery, } from './hooks/useCanRetryExperimentCreationQuery';
|
|
5
5
|
export { createAction, useCreateActionMutation } from './hooks/useCreateActionMutation';
|
|
6
6
|
export { createActionTemplate, useCreateActionTemplateMutation, } from './hooks/useCreateActionTemplateMutation';
|
|
7
|
-
export { createChaosExperimentExecutionNode, useCreateChaosExperimentExecutionNodeMutation, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
|
|
8
7
|
export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
|
|
9
8
|
export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
|
|
10
9
|
export { createGamedayRunV2, useCreateGamedayRunV2Mutation, } from './hooks/useCreateGamedayRunV2Mutation';
|
|
11
10
|
export { createGamedayV2, useCreateGamedayV2Mutation } from './hooks/useCreateGamedayV2Mutation';
|
|
12
11
|
export { createInputSet, useCreateInputSetMutation } from './hooks/useCreateInputSetMutation';
|
|
13
12
|
export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
|
|
13
|
+
export { createRecommendation, useCreateRecommendationMutation, } from './hooks/useCreateRecommendationMutation';
|
|
14
14
|
export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
|
|
15
15
|
export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
|
|
16
16
|
export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
|
|
@@ -18,9 +18,9 @@ export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGa
|
|
|
18
18
|
export { deleteInfraV2, useDeleteInfraV2Mutation } from './hooks/useDeleteInfraV2Mutation';
|
|
19
19
|
export { deleteInputSet, useDeleteInputSetMutation } from './hooks/useDeleteInputSetMutation';
|
|
20
20
|
export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
|
|
21
|
+
export { deleteRecommendation, useDeleteRecommendationMutation, } from './hooks/useDeleteRecommendationMutation';
|
|
21
22
|
export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
|
|
22
23
|
export { enableProbe, useEnableProbeMutation } from './hooks/useEnableProbeMutation';
|
|
23
|
-
export { experimentExecutionNodeDetails, useExperimentExecutionNodeDetailsQuery, } from './hooks/useExperimentExecutionNodeDetailsQuery';
|
|
24
24
|
export { getAccountServiceDetails, useGetAccountServiceDetailsQuery, } from './hooks/useGetAccountServiceDetailsQuery';
|
|
25
25
|
export { getAccountServiceUsageStats, useGetAccountServiceUsageStatsQuery, } from './hooks/useGetAccountServiceUsageStatsQuery';
|
|
26
26
|
export { getActionManifest, useGetActionManifestQuery } from './hooks/useGetActionManifestQuery';
|
|
@@ -30,8 +30,6 @@ export { getActionTemplateRevisionDifference, useGetActionTemplateRevisionDiffer
|
|
|
30
30
|
export { getChaosDashboard, useGetChaosDashboardQuery } from './hooks/useGetChaosDashboardQuery';
|
|
31
31
|
export { getChaosExperimentRunReport, useGetChaosExperimentRunReportQuery, } from './hooks/useGetChaosExperimentRunReportQuery';
|
|
32
32
|
export { getChaosHub, useGetChaosHubQuery } from './hooks/useGetChaosHubQuery';
|
|
33
|
-
export { getChaosPipelineExecution, useGetChaosPipelineExecutionQuery, } from './hooks/useGetChaosPipelineExecutionQuery';
|
|
34
|
-
export { getChaosPipelineStepDetails, useGetChaosPipelineStepDetailsQuery, } from './hooks/useGetChaosPipelineStepDetailsQuery';
|
|
35
33
|
export { getChaosV2Experiment, useGetChaosV2ExperimentQuery, } from './hooks/useGetChaosV2ExperimentQuery';
|
|
36
34
|
export { getChaosV2ExperimentRunInternalApi, useGetChaosV2ExperimentRunInternalApiMutation, } from './hooks/useGetChaosV2ExperimentRunInternalApiMutation';
|
|
37
35
|
export { getChaosV2ExperimentRun, useGetChaosV2ExperimentRunQuery, } from './hooks/useGetChaosV2ExperimentRunQuery';
|
|
@@ -53,6 +51,8 @@ export { getOnboardingExperiments, useGetOnboardingExperimentsQuery, } from './h
|
|
|
53
51
|
export { getOverallServiceUsageStats, useGetOverallServiceUsageStatsQuery, } from './hooks/useGetOverallServiceUsageStatsQuery';
|
|
54
52
|
export { getProbeManifest, useGetProbeManifestQuery } from './hooks/useGetProbeManifestQuery';
|
|
55
53
|
export { getProbe, useGetProbeQuery } from './hooks/useGetProbeQuery';
|
|
54
|
+
export { getRecommendation, useGetRecommendationQuery } from './hooks/useGetRecommendationQuery';
|
|
55
|
+
export { getRecommendationStatus, useGetRecommendationStatusMutation, } from './hooks/useGetRecommendationStatusMutation';
|
|
56
56
|
export { getResourceUsage, useGetResourceUsageQuery } from './hooks/useGetResourceUsageQuery';
|
|
57
57
|
export { getServiceResponse, useGetServiceResponseQuery } from './hooks/useGetServiceResponseQuery';
|
|
58
58
|
export { getServiceUsageReport, useGetServiceUsageReportQuery, } from './hooks/useGetServiceUsageReportQuery';
|
|
@@ -61,6 +61,7 @@ export { getTargetNetworkMap, useGetTargetNetworkMapQuery, } from './hooks/useGe
|
|
|
61
61
|
export { getV2InfrastructureYaml, useGetV2InfrastructureYamlMutation, } from './hooks/useGetV2InfrastructureYamlMutation';
|
|
62
62
|
export { getV2Onboarding, useGetV2OnboardingQuery } from './hooks/useGetV2OnboardingQuery';
|
|
63
63
|
export { importAction, useImportActionMutation } from './hooks/useImportActionMutation';
|
|
64
|
+
export { insertRecommendations, useInsertRecommendationsMutation, } from './hooks/useInsertRecommendationsMutation';
|
|
64
65
|
export { listActionTemplate, useListActionTemplateQuery } from './hooks/useListActionTemplateQuery';
|
|
65
66
|
export { listActionTemplateRevisions, useListActionTemplateRevisionsQuery, } from './hooks/useListActionTemplateRevisionsQuery';
|
|
66
67
|
export { listActions, useListActionsQuery } from './hooks/useListActionsQuery';
|
|
@@ -79,6 +80,7 @@ export { listInfraV2, useListInfraV2Query } from './hooks/useListInfraV2Query';
|
|
|
79
80
|
export { listInputSet, useListInputSetQuery } from './hooks/useListInputSetQuery';
|
|
80
81
|
export { listK8sInfrasV2, useListK8sInfrasV2Mutation } from './hooks/useListK8sInfrasV2Mutation';
|
|
81
82
|
export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
|
|
83
|
+
export { listRecommendations, useListRecommendationsQuery, } from './hooks/useListRecommendationsQuery';
|
|
82
84
|
export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
|
|
83
85
|
export { listTargetNetworkMaps, useListTargetNetworkMapsQuery, } from './hooks/useListTargetNetworkMapsQuery';
|
|
84
86
|
export { listV2Onboarding, useListV2OnboardingQuery } from './hooks/useListV2OnboardingQuery';
|
|
@@ -92,12 +94,12 @@ export { registerInfraV2, useRegisterInfraV2Mutation } from './hooks/useRegister
|
|
|
92
94
|
export { retryExperimentCreation, useRetryExperimentCreationMutation, } from './hooks/useRetryExperimentCreationMutation';
|
|
93
95
|
export { runChaosV2Experiment, useRunChaosV2ExperimentMutation, } from './hooks/useRunChaosV2ExperimentMutation';
|
|
94
96
|
export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hooks/useRunChaosV2InternalApiMutation';
|
|
97
|
+
export { runRecommendation, useRunRecommendationMutation, } from './hooks/useRunRecommendationMutation';
|
|
95
98
|
export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
|
|
96
99
|
export { stopChaosV2Experiment, useStopChaosV2ExperimentMutation, } from './hooks/useStopChaosV2ExperimentMutation';
|
|
97
100
|
export { stopOnboardingExperiments, useStopOnboardingExperimentsMutation, } from './hooks/useStopOnboardingExperimentsMutation';
|
|
98
101
|
export { updateAction, useUpdateActionMutation } from './hooks/useUpdateActionMutation';
|
|
99
102
|
export { updateActionTemplate, useUpdateActionTemplateMutation, } from './hooks/useUpdateActionTemplateMutation';
|
|
100
|
-
export { updateChaosExperimentExecutionNode, useUpdateChaosExperimentExecutionNodeMutation, } from './hooks/useUpdateChaosExperimentExecutionNodeMutation';
|
|
101
103
|
export { updateChaosHub, useUpdateChaosHubMutation } from './hooks/useUpdateChaosHubMutation';
|
|
102
104
|
export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
|
|
103
105
|
export { updateEmissary, useUpdateEmissaryMutation } from './hooks/useUpdateEmissaryMutation';
|
|
@@ -109,3 +111,4 @@ export { updateInfraV2, useUpdateInfraV2Mutation } from './hooks/useUpdateInfraV
|
|
|
109
111
|
export { updateInputSet, useUpdateInputSetMutation } from './hooks/useUpdateInputSetMutation';
|
|
110
112
|
export { updateNote, useUpdateNoteMutation } from './hooks/useUpdateNoteMutation';
|
|
111
113
|
export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
|
|
114
|
+
export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ChaosExecutionNodesChaosStepStatus = 'COMPLETED' | 'FAILED' | 'PENDING' | 'RUNNING' | 'STOPPED';
|
|
1
|
+
export type ChaosExecutionNodesChaosStepStatus = 'COMPLETED' | 'FAILED' | 'PENDING' | 'RUNNING' | 'SKIPPED' | 'STOPPED';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ChaosExecutionNodesFaultDetails } from '../schemas/ChaosExecutionNodesFaultDetails';
|
|
2
2
|
import type { ChaosExecutionNodesHelperPodDetails } from '../schemas/ChaosExecutionNodesHelperPodDetails';
|
|
3
3
|
export interface ChaosExecutionNodesFaultData {
|
|
4
|
-
faultDetails?:
|
|
4
|
+
faultDetails?: ChaosExecutionNodesFaultDetails;
|
|
5
5
|
helperPodDetails?: ChaosExecutionNodesHelperPodDetails[];
|
|
6
6
|
name?: string;
|
|
7
7
|
namespace?: string;
|
|
@@ -3,8 +3,11 @@ import type { DatabaseKubernetesAgentConfiguration } from '../schemas/DatabaseKu
|
|
|
3
3
|
import type { DatabaseMtlsConfiguration } from '../schemas/DatabaseMtlsConfiguration';
|
|
4
4
|
import type { DatabaseProxyConfiguration } from '../schemas/DatabaseProxyConfiguration';
|
|
5
5
|
export interface DatabaseAgentConfiguration {
|
|
6
|
+
collectorImage?: string;
|
|
6
7
|
data: DatabaseDataCollectionConfiguration;
|
|
8
|
+
imagePullSecrets?: string[];
|
|
7
9
|
kubernetes?: DatabaseKubernetesAgentConfiguration;
|
|
10
|
+
logWatcherImage?: string;
|
|
8
11
|
mtls?: DatabaseMtlsConfiguration;
|
|
9
12
|
proxy?: DatabaseProxyConfiguration;
|
|
10
13
|
skipSecureVerify?: boolean;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import type { DatabaseDiscoveredServiceSpec } from '../schemas/DatabaseDiscoveredServiceSpec';
|
|
2
2
|
export interface DatabaseDiscoveredServiceCollection {
|
|
3
|
+
accountIdentifier: string;
|
|
3
4
|
agentID: string;
|
|
4
5
|
agentIdentity: string;
|
|
5
6
|
createdAt?: string;
|
|
6
7
|
createdBy?: string;
|
|
8
|
+
environmentIdentifier: string;
|
|
7
9
|
id: string;
|
|
8
10
|
name: string;
|
|
11
|
+
organizationIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
9
13
|
removed?: boolean;
|
|
10
14
|
removedAt?: string;
|
|
11
15
|
spec: DatabaseDiscoveredServiceSpec;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import type { DatabaseNetworkMapResourceKind } from '../schemas/DatabaseNetworkMapResourceKind';
|
|
2
2
|
import type { DatabaseNetworkMapEntityKubernetesInfo } from '../schemas/DatabaseNetworkMapEntityKubernetesInfo';
|
|
3
|
+
import type { DatabaseServiceIdentity } from '../schemas/DatabaseServiceIdentity';
|
|
3
4
|
export interface DatabaseNetworkMapEntity {
|
|
4
5
|
id: string;
|
|
5
6
|
kind: DatabaseNetworkMapResourceKind;
|
|
6
7
|
kubernetes?: DatabaseNetworkMapEntityKubernetesInfo;
|
|
7
8
|
name: string;
|
|
9
|
+
removed?: boolean;
|
|
10
|
+
serviceIdentity?: DatabaseServiceIdentity;
|
|
8
11
|
}
|
|
@@ -2,6 +2,7 @@ import type { V1OwnerReference } from '../schemas/V1OwnerReference';
|
|
|
2
2
|
import type { V1ServiceSpec } from '../schemas/V1ServiceSpec';
|
|
3
3
|
import type { V1ServiceStatus } from '../schemas/V1ServiceStatus';
|
|
4
4
|
export interface DatabaseServiceCollection {
|
|
5
|
+
accountIdentifier: string;
|
|
5
6
|
agentID: string;
|
|
6
7
|
annotations?: {
|
|
7
8
|
[key: string]: string;
|
|
@@ -11,6 +12,7 @@ export interface DatabaseServiceCollection {
|
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
creationTimestamp?: string;
|
|
13
14
|
deletionTimestamp?: string;
|
|
15
|
+
environmentIdentifier: string;
|
|
14
16
|
id: string;
|
|
15
17
|
kind: string;
|
|
16
18
|
labels?: {
|
|
@@ -18,7 +20,9 @@ export interface DatabaseServiceCollection {
|
|
|
18
20
|
};
|
|
19
21
|
name: string;
|
|
20
22
|
namespace: string;
|
|
23
|
+
organizationIdentifier?: string;
|
|
21
24
|
ownerReference?: V1OwnerReference[];
|
|
25
|
+
projectIdentifier?: string;
|
|
22
26
|
removed?: boolean;
|
|
23
27
|
removedAt?: string;
|
|
24
28
|
resourceVersion: string;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { RecommendationFaultFilters } from '../schemas/RecommendationFaultFilters';
|
|
2
|
+
import type { RecommendationProbeFilters } from '../schemas/RecommendationProbeFilters';
|
|
3
|
+
import type { RecommendationRecommendationCategory } from '../schemas/RecommendationRecommendationCategory';
|
|
4
|
+
import type { RecommendationRecommendationSource } from '../schemas/RecommendationRecommendationSource';
|
|
5
|
+
import type { RecommendationSuggestions } from '../schemas/RecommendationSuggestions';
|
|
6
|
+
export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation {
|
|
7
|
+
accountID: string;
|
|
8
|
+
environmentID?: string;
|
|
9
|
+
eventIdentifier?: string;
|
|
10
|
+
experimentID?: string;
|
|
11
|
+
experimentName?: string;
|
|
12
|
+
faultFilters?: RecommendationFaultFilters;
|
|
13
|
+
infraID?: string;
|
|
14
|
+
infraName?: string;
|
|
15
|
+
infraNamespace?: string;
|
|
16
|
+
infraType?: string;
|
|
17
|
+
isRemoved?: boolean;
|
|
18
|
+
orgID?: string;
|
|
19
|
+
probeFilters?: RecommendationProbeFilters;
|
|
20
|
+
projectID?: string;
|
|
21
|
+
recommendationCategory?: RecommendationRecommendationCategory;
|
|
22
|
+
recommendationID?: string;
|
|
23
|
+
source?: RecommendationRecommendationSource;
|
|
24
|
+
suggestions?: RecommendationSuggestions[];
|
|
25
|
+
tags?: string[];
|
|
26
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { RecommendationEc2Instance } from '../schemas/RecommendationEc2Instance';
|
|
2
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode';
|
|
3
|
+
import type { RecommendationRecommendationTargetType } from '../schemas/RecommendationRecommendationTargetType';
|
|
4
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload';
|
|
5
|
+
export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget {
|
|
6
|
+
ec2?: RecommendationEc2Instance;
|
|
7
|
+
node?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode;
|
|
8
|
+
type?: RecommendationRecommendationTargetType;
|
|
9
|
+
workload?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload;
|
|
10
|
+
}
|
package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs.d.ts
CHANGED
|
@@ -1,49 +1,23 @@
|
|
|
1
|
+
import type { TypesCleanupPolicy } from '../schemas/TypesCleanupPolicy';
|
|
1
2
|
import type { TypesExperimentComponents } from '../schemas/TypesExperimentComponents';
|
|
2
3
|
import type { V1EnvVar } from '../schemas/V1EnvVar';
|
|
3
4
|
import type { V1PullPolicy } from '../schemas/V1PullPolicy';
|
|
5
|
+
import type { GithubComHarnessHceSaasHceSdkCommonProbeV1Probe } from '../schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe';
|
|
4
6
|
export interface GithubComWingsSoftwareDdcrPkgTypesChaosInputs {
|
|
5
|
-
/**
|
|
6
|
-
* Annotations to store the annotations
|
|
7
|
-
*/
|
|
8
7
|
annotations?: {
|
|
9
8
|
[key: string]: string;
|
|
10
9
|
};
|
|
11
|
-
/**
|
|
12
|
-
* Args to store the args
|
|
13
|
-
*/
|
|
14
10
|
args?: string[];
|
|
15
|
-
|
|
16
|
-
* Command to store the command
|
|
17
|
-
*/
|
|
11
|
+
cleanupPolicy?: TypesCleanupPolicy;
|
|
18
12
|
command?: string[];
|
|
19
|
-
/**
|
|
20
|
-
* Components to store the components
|
|
21
|
-
*/
|
|
22
13
|
components?: TypesExperimentComponents;
|
|
23
|
-
/**
|
|
24
|
-
* DefaultHealthCheck to store the default health check
|
|
25
|
-
*/
|
|
26
14
|
defaultHealthCheck?: boolean;
|
|
27
|
-
/**
|
|
28
|
-
* ENV to store the env
|
|
29
|
-
*/
|
|
30
15
|
env?: V1EnvVar[];
|
|
31
|
-
|
|
32
|
-
* Fault to store the fault
|
|
33
|
-
*/
|
|
34
|
-
fault?: string;
|
|
35
|
-
/**
|
|
36
|
-
* Image to store the image
|
|
37
|
-
*/
|
|
16
|
+
experiment?: string;
|
|
38
17
|
image?: string;
|
|
39
|
-
/**
|
|
40
|
-
* ImagePullPolicy to store the image pull policy
|
|
41
|
-
*/
|
|
42
18
|
imagePullPolicy?: V1PullPolicy;
|
|
43
|
-
/**
|
|
44
|
-
* Labels to store the labels
|
|
45
|
-
*/
|
|
46
19
|
labels?: {
|
|
47
20
|
[key: string]: string;
|
|
48
21
|
};
|
|
22
|
+
probes?: GithubComHarnessHceSaasHceSdkCommonProbeV1Probe[];
|
|
49
23
|
}
|
package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesDefinition.d.ts
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
import type { GithubComWingsSoftwareDdcrPkgTypesChaosInputs } from '../schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs';
|
|
2
2
|
import type { TypesTargets } from '../schemas/TypesTargets';
|
|
3
3
|
export interface GithubComWingsSoftwareDdcrPkgTypesDefinition {
|
|
4
|
-
/**
|
|
5
|
-
* Chaos to store the chaos inputs
|
|
6
|
-
*/
|
|
7
4
|
chaos?: GithubComWingsSoftwareDdcrPkgTypesChaosInputs;
|
|
8
|
-
/**
|
|
9
|
-
* Type of the fault
|
|
10
|
-
*/
|
|
11
5
|
targets?: TypesTargets;
|
|
12
6
|
}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
import type { DatabaseNetworkMapResourceKind } from '../schemas/DatabaseNetworkMapResourceKind';
|
|
2
|
+
import type { DatabaseNetworkMapEntityKubernetesInfo } from '../schemas/DatabaseNetworkMapEntityKubernetesInfo';
|
|
3
|
+
import type { DatabaseServiceIdentity } from '../schemas/DatabaseServiceIdentity';
|
|
1
4
|
export interface NetworkmapTargetServiceDetails {
|
|
2
5
|
averageResiliencyScore?: number;
|
|
3
|
-
id
|
|
4
|
-
|
|
5
|
-
|
|
6
|
+
id: string;
|
|
7
|
+
kind: DatabaseNetworkMapResourceKind;
|
|
8
|
+
kubernetes?: DatabaseNetworkMapEntityKubernetesInfo;
|
|
9
|
+
name: string;
|
|
10
|
+
removed?: boolean;
|
|
6
11
|
resiliencyCoverage?: number;
|
|
12
|
+
serviceIdentity?: DatabaseServiceIdentity;
|
|
7
13
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget';
|
|
2
|
+
export interface RecommendationFaultFilters {
|
|
3
|
+
criticality?: number;
|
|
4
|
+
faultName?: string;
|
|
5
|
+
targets?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RecommendationRecommendationCategory = 'FAULT' | 'PROBE';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RecommendationRecommendationSource = 'ConfigScanner' | 'K8sWatcher';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RecommendationRecommendationStatus = 'Acknowledged' | 'Ignored' | 'Pending' | 'Tracking';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RecommendationRecommendationTargetType = 'EC2' | 'Node' | 'Workload';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type RecommendationRecommendationType = 'CREATE' | 'FIX' | 'RUN';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { RecommendationFixes } from '../schemas/RecommendationFixes';
|
|
2
|
+
import type { RecommendationRecommendationType } from '../schemas/RecommendationRecommendationType';
|
|
3
|
+
import type { RecommendationRecommendationStatus } from '../schemas/RecommendationRecommendationStatus';
|
|
4
|
+
export interface RecommendationSuggestions {
|
|
5
|
+
count?: number;
|
|
6
|
+
error?: string;
|
|
7
|
+
fixes?: RecommendationFixes[];
|
|
8
|
+
ignoreCounter?: number;
|
|
9
|
+
reason?: string;
|
|
10
|
+
recommendationType?: RecommendationRecommendationType;
|
|
11
|
+
status?: RecommendationRecommendationStatus;
|
|
12
|
+
updatedAt?: number;
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { RecommendationsLlmResponse } from '../schemas/RecommendationsLlmResponse';
|
|
2
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget';
|
|
3
|
+
export interface RecommendationsFault {
|
|
4
|
+
bucket?: string;
|
|
5
|
+
error?: string;
|
|
6
|
+
eventIdentifier?: string;
|
|
7
|
+
experimentID?: string;
|
|
8
|
+
experimentName?: string;
|
|
9
|
+
llmResponse?: RecommendationsLlmResponse;
|
|
10
|
+
recommendationID?: string;
|
|
11
|
+
target?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { RecommendationRecommendationSource } from '../schemas/RecommendationRecommendationSource';
|
|
2
|
+
import type { RecommendationRecommendationStatus } from '../schemas/RecommendationRecommendationStatus';
|
|
3
|
+
export interface RecommendationsFilters {
|
|
4
|
+
category?: string;
|
|
5
|
+
source?: RecommendationRecommendationSource;
|
|
6
|
+
status?: RecommendationRecommendationStatus;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusRequest.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RecommendationsFaultFilters } from '../schemas/RecommendationsFaultFilters';
|
|
2
|
+
import type { RecommendationsIdentifiers } from '../schemas/RecommendationsIdentifiers';
|
|
3
|
+
import type { RecommendationsProbeFilters } from '../schemas/RecommendationsProbeFilters';
|
|
4
|
+
export interface RecommendationsGetRecommendationsStatusRequest {
|
|
5
|
+
environmentID?: string;
|
|
6
|
+
faultFilters?: RecommendationsFaultFilters;
|
|
7
|
+
identifiers?: RecommendationsIdentifiers;
|
|
8
|
+
infraID?: string;
|
|
9
|
+
probeFilters?: RecommendationsProbeFilters;
|
|
10
|
+
type?: string;
|
|
11
|
+
}
|
package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusRequest.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusResponse.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { RecommendationRecommendationStatus } from '../schemas/RecommendationRecommendationStatus';
|
|
2
|
+
export interface RecommendationsInActiveEvent {
|
|
3
|
+
eventIdentifier?: string;
|
|
4
|
+
experimentID?: string;
|
|
5
|
+
experimentName?: string;
|
|
6
|
+
recommendationID?: string;
|
|
7
|
+
status?: RecommendationRecommendationStatus;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/chaos-manager/src/services/schemas/RecommendationsInsertRecommendationsRequest.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RecommendationsFault } from '../schemas/RecommendationsFault';
|
|
2
|
+
import type { RecommendationsIdentifiers } from '../schemas/RecommendationsIdentifiers';
|
|
3
|
+
import type { RecommendationsProbeFix } from '../schemas/RecommendationsProbeFix';
|
|
4
|
+
export interface RecommendationsInsertRecommendationsRequest {
|
|
5
|
+
environmentID?: string;
|
|
6
|
+
fault?: RecommendationsFault[];
|
|
7
|
+
identifiers?: RecommendationsIdentifiers;
|
|
8
|
+
infraID?: string;
|
|
9
|
+
probeFixes?: RecommendationsProbeFix;
|
|
10
|
+
source?: string;
|
|
11
|
+
}
|
package/dist/chaos-manager/src/services/schemas/RecommendationsInsertRecommendationsRequest.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation';
|
|
2
|
+
export interface RecommendationsListRecommendationsResponse {
|
|
3
|
+
recommendations?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation[];
|
|
4
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { RecommendationFixes } from '../schemas/RecommendationFixes';
|
|
2
|
+
export interface RecommendationsProbeFix {
|
|
3
|
+
error?: string;
|
|
4
|
+
experimentID?: string;
|
|
5
|
+
experimentName?: string;
|
|
6
|
+
experimentRunID?: string;
|
|
7
|
+
fixes?: RecommendationFixes[];
|
|
8
|
+
probeID?: string;
|
|
9
|
+
probeName?: string;
|
|
10
|
+
probeType?: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { RecommendationsEc2Instance } from '../schemas/RecommendationsEc2Instance';
|
|
2
|
+
import type { RecommendationsNode } from '../schemas/RecommendationsNode';
|
|
3
|
+
import type { RecommendationRecommendationTargetType } from '../schemas/RecommendationRecommendationTargetType';
|
|
4
|
+
import type { RecommendationsWorkload } from '../schemas/RecommendationsWorkload';
|
|
5
|
+
export interface RecommendationsTarget {
|
|
6
|
+
ec2Instances?: RecommendationsEc2Instance[];
|
|
7
|
+
nodes?: RecommendationsNode[];
|
|
8
|
+
type?: RecommendationRecommendationTargetType;
|
|
9
|
+
workloads?: RecommendationsWorkload[];
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|