@harnessio/react-chaos-manager-client 0.13.0 → 0.15.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.
Files changed (122) hide show
  1. package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.d.ts +24 -0
  2. package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.js +14 -0
  3. package/dist/chaos-manager/src/services/hooks/useDeleteEventWatcherMutation.d.ts +28 -0
  4. package/dist/chaos-manager/src/services/hooks/useDeleteEventWatcherMutation.js +14 -0
  5. package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.d.ts +23 -0
  6. package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.js +14 -0
  7. package/dist/chaos-manager/src/services/hooks/useGetEventWatcherQuery.d.ts +27 -0
  8. package/dist/chaos-manager/src/services/hooks/useGetEventWatcherQuery.js +14 -0
  9. package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.d.ts +23 -0
  10. package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.js +14 -0
  11. package/dist/chaos-manager/src/services/hooks/useListEventWatcherQuery.d.ts +32 -0
  12. package/dist/chaos-manager/src/services/hooks/useListEventWatcherQuery.js +14 -0
  13. package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.d.ts +25 -0
  14. package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.js +14 -0
  15. package/dist/chaos-manager/src/services/hooks/useRecommendationEventMutation.d.ts +19 -0
  16. package/dist/chaos-manager/src/services/hooks/useRecommendationEventMutation.js +14 -0
  17. package/dist/chaos-manager/src/services/hooks/useRegisterEventWatcherMutation.d.ts +28 -0
  18. package/dist/chaos-manager/src/services/hooks/useRegisterEventWatcherMutation.js +14 -0
  19. package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.d.ts +24 -0
  20. package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.js +14 -0
  21. package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.d.ts +24 -0
  22. package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.js +14 -0
  23. package/dist/chaos-manager/src/services/index.d.ts +60 -1
  24. package/dist/chaos-manager/src/services/index.js +11 -0
  25. package/dist/chaos-manager/src/services/schemas/ActionsActionResponse.d.ts +2 -0
  26. package/dist/chaos-manager/src/services/schemas/ChaosExperimentRunAnnotation.d.ts +1 -0
  27. package/dist/chaos-manager/src/services/schemas/EventWatcherDeleteEventWatcherResponse.d.ts +4 -0
  28. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherDetails.d.ts +52 -0
  29. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherDetails.js +1 -0
  30. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherStatus.d.ts +1 -0
  31. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherStatus.js +4 -0
  32. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherType.d.ts +1 -0
  33. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherType.js +4 -0
  34. package/dist/chaos-manager/src/services/schemas/EventWatcherIdentifiers.d.ts +5 -0
  35. package/dist/chaos-manager/src/services/schemas/EventWatcherIdentifiers.js +4 -0
  36. package/dist/chaos-manager/src/services/schemas/EventWatcherListEventWatchersResponse.d.ts +7 -0
  37. package/dist/chaos-manager/src/services/schemas/EventWatcherListEventWatchersResponse.js +1 -0
  38. package/dist/chaos-manager/src/services/schemas/EventWatcherRegisterEventWatcherRequest.d.ts +42 -0
  39. package/dist/chaos-manager/src/services/schemas/EventWatcherRegisterEventWatcherRequest.js +1 -0
  40. package/dist/chaos-manager/src/services/schemas/EventWatcherRegisterEventWatcherResponse.d.ts +5 -0
  41. package/dist/chaos-manager/src/services/schemas/EventWatcherRegisterEventWatcherResponse.js +4 -0
  42. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgActionsAction.d.ts +2 -0
  43. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction.d.ts +2 -0
  44. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.d.ts +4 -0
  45. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.js +4 -0
  46. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.d.ts +26 -0
  47. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.js +1 -0
  48. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType.d.ts +1 -0
  49. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType.js +4 -0
  50. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.d.ts +8 -0
  51. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.js +1 -0
  52. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.d.ts +6 -0
  53. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.js +4 -0
  54. package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs.d.ts +0 -2
  55. package/dist/chaos-manager/src/services/schemas/ProbeApmProbe.d.ts +18 -0
  56. package/dist/chaos-manager/src/services/schemas/ProbeApmProbe.js +1 -0
  57. package/dist/chaos-manager/src/services/schemas/ProbeApmtlsConfig.d.ts +7 -0
  58. package/dist/chaos-manager/src/services/schemas/ProbeApmtlsConfig.js +1 -0
  59. package/dist/chaos-manager/src/services/schemas/ProbeAppDynamicsProbeInputs.d.ts +5 -0
  60. package/dist/chaos-manager/src/services/schemas/ProbeAppDynamicsProbeInputs.js +1 -0
  61. package/dist/chaos-manager/src/services/schemas/ProbeAppdMetrics.d.ts +4 -0
  62. package/dist/chaos-manager/src/services/schemas/ProbeAppdMetrics.js +4 -0
  63. package/dist/chaos-manager/src/services/schemas/ProbeDatadogProbe.d.ts +1 -0
  64. package/dist/chaos-manager/src/services/schemas/ProbeDynatraceProbe.d.ts +1 -0
  65. package/dist/chaos-manager/src/services/schemas/ProbeHttpProbe.d.ts +1 -0
  66. package/dist/chaos-manager/src/services/schemas/ProbeK8SProbe.d.ts +1 -0
  67. package/dist/chaos-manager/src/services/schemas/ProbeKubernetesCmdProbe.d.ts +1 -0
  68. package/dist/chaos-manager/src/services/schemas/ProbeLinuxCmdProbe.d.ts +1 -0
  69. package/dist/chaos-manager/src/services/schemas/ProbePromProbe.d.ts +1 -0
  70. package/dist/chaos-manager/src/services/schemas/ProbePrometheusProbeInputs.d.ts +6 -0
  71. package/dist/chaos-manager/src/services/schemas/ProbePrometheusProbeInputs.js +1 -0
  72. package/dist/chaos-manager/src/services/schemas/ProbeSecretManager.d.ts +3 -0
  73. package/dist/chaos-manager/src/services/schemas/ProbeSecretManager.js +4 -0
  74. package/dist/chaos-manager/src/services/schemas/ProbeSloProbe.d.ts +1 -0
  75. package/dist/chaos-manager/src/services/schemas/RecommendationConfigScannerEvents.d.ts +11 -0
  76. package/dist/chaos-manager/src/services/schemas/RecommendationConfigScannerEvents.js +1 -0
  77. package/dist/chaos-manager/src/services/schemas/RecommendationEventRequest.d.ts +13 -0
  78. package/dist/chaos-manager/src/services/schemas/RecommendationEventRequest.js +1 -0
  79. package/dist/chaos-manager/src/services/schemas/RecommendationFailure.d.ts +6 -0
  80. package/dist/chaos-manager/src/services/schemas/RecommendationFailure.js +4 -0
  81. package/dist/chaos-manager/src/services/schemas/RecommendationFaultFilters.d.ts +6 -0
  82. package/dist/chaos-manager/src/services/schemas/RecommendationFaultFilters.js +1 -0
  83. package/dist/chaos-manager/src/services/schemas/RecommendationFaultPayload.d.ts +4 -0
  84. package/dist/chaos-manager/src/services/schemas/RecommendationFaultPayload.js +1 -0
  85. package/dist/chaos-manager/src/services/schemas/RecommendationFixes.d.ts +4 -0
  86. package/dist/chaos-manager/src/services/schemas/RecommendationFixes.js +4 -0
  87. package/dist/chaos-manager/src/services/schemas/RecommendationIdentifiers.d.ts +5 -0
  88. package/dist/chaos-manager/src/services/schemas/RecommendationIdentifiers.js +4 -0
  89. package/dist/chaos-manager/src/services/schemas/RecommendationProbeFilters.d.ts +6 -0
  90. package/dist/chaos-manager/src/services/schemas/RecommendationProbeFilters.js +4 -0
  91. package/dist/chaos-manager/src/services/schemas/RecommendationProbePayload.d.ts +9 -0
  92. package/dist/chaos-manager/src/services/schemas/RecommendationProbePayload.js +4 -0
  93. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationCategory.d.ts +1 -0
  94. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationCategory.js +4 -0
  95. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationSource.d.ts +1 -0
  96. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationSource.js +4 -0
  97. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationStatus.d.ts +1 -0
  98. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationStatus.js +4 -0
  99. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationType.d.ts +1 -0
  100. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationType.js +4 -0
  101. package/dist/chaos-manager/src/services/schemas/RecommendationSuggestions.d.ts +13 -0
  102. package/dist/chaos-manager/src/services/schemas/RecommendationSuggestions.js +1 -0
  103. package/dist/chaos-manager/src/services/schemas/RecommendationsCreateActionResponse.d.ts +4 -0
  104. package/dist/chaos-manager/src/services/schemas/RecommendationsCreateActionResponse.js +4 -0
  105. package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.d.ts +7 -0
  106. package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.js +1 -0
  107. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.d.ts +4 -0
  108. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.js +1 -0
  109. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.d.ts +4 -0
  110. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.js +1 -0
  111. package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.d.ts +4 -0
  112. package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.js +4 -0
  113. package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
  114. package/dist/chaos-manager/src/services/schemas/TemplateVariable.d.ts +1 -0
  115. package/dist/chaos-manager/src/services/schemas/TemplateVariableCategory.d.ts +1 -1
  116. package/dist/chaos-manager/src/services/schemas/TypesCreateProbeResponse.d.ts +4 -0
  117. package/dist/chaos-manager/src/services/schemas/TypesGetProbeResponse.d.ts +2 -0
  118. package/dist/chaos-manager/src/services/schemas/TypesProbeRequest.d.ts +2 -0
  119. package/dist/chaos-manager/src/services/schemas/TypesProbeType.d.ts +1 -1
  120. package/package.json +1 -1
  121. package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.d.ts +0 -1
  122. /package/dist/chaos-manager/src/services/schemas/{TypesCleanupPolicy.js → EventWatcherDeleteEventWatcherResponse.js} +0 -0
@@ -24,6 +24,8 @@ export type { CreateProbeErrorResponse, CreateProbeMutationProps, CreateProbeMut
24
24
  export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
25
25
  export type { CreateProbeTemplateErrorResponse, CreateProbeTemplateMutationProps, CreateProbeTemplateMutationQueryParams, CreateProbeTemplateOkResponse, CreateProbeTemplateProps, CreateProbeTemplateRequestBody, } from './hooks/useCreateProbeTemplateMutation';
26
26
  export { createProbeTemplate, useCreateProbeTemplateMutation, } from './hooks/useCreateProbeTemplateMutation';
27
+ export type { CreateRecommendationErrorResponse, CreateRecommendationMutationProps, CreateRecommendationMutationQueryParams, CreateRecommendationOkResponse, CreateRecommendationProps, } from './hooks/useCreateRecommendationMutation';
28
+ export { createRecommendation, useCreateRecommendationMutation, } from './hooks/useCreateRecommendationMutation';
27
29
  export type { CreateV2OnboardingErrorResponse, CreateV2OnboardingMutationProps, CreateV2OnboardingMutationQueryParams, CreateV2OnboardingOkResponse, CreateV2OnboardingProps, CreateV2OnboardingRequestBody, } from './hooks/useCreateV2OnboardingMutation';
28
30
  export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
29
31
  export type { DeleteActionErrorResponse, DeleteActionMutationPathParams, DeleteActionMutationProps, DeleteActionMutationQueryParams, DeleteActionOkResponse, DeleteActionProps, } from './hooks/useDeleteActionMutation';
@@ -32,6 +34,8 @@ export type { DeleteActionTemplateErrorResponse, DeleteActionTemplateMutationPat
32
34
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
33
35
  export type { DeleteChaosV2ExperimentErrorResponse, DeleteChaosV2ExperimentMutationPathParams, DeleteChaosV2ExperimentMutationProps, DeleteChaosV2ExperimentMutationQueryParams, DeleteChaosV2ExperimentOkResponse, DeleteChaosV2ExperimentProps, } from './hooks/useDeleteChaosV2ExperimentMutation';
34
36
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
37
+ export type { DeleteEventWatcherErrorResponse, DeleteEventWatcherMutationPathParams, DeleteEventWatcherMutationProps, DeleteEventWatcherMutationQueryParams, DeleteEventWatcherOkResponse, DeleteEventWatcherProps, } from './hooks/useDeleteEventWatcherMutation';
38
+ export { deleteEventWatcher, useDeleteEventWatcherMutation, } from './hooks/useDeleteEventWatcherMutation';
35
39
  export type { DeleteGamedayV2ErrorResponse, DeleteGamedayV2MutationPathParams, DeleteGamedayV2MutationProps, DeleteGamedayV2MutationQueryParams, DeleteGamedayV2OkResponse, DeleteGamedayV2Props, } from './hooks/useDeleteGamedayV2Mutation';
36
40
  export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
37
41
  export type { DeleteInfraV2ErrorResponse, DeleteInfraV2MutationPathParams, DeleteInfraV2MutationProps, DeleteInfraV2MutationQueryParams, DeleteInfraV2OkResponse, DeleteInfraV2Props, } from './hooks/useDeleteInfraV2Mutation';
@@ -42,6 +46,8 @@ export type { DeleteProbeErrorResponse, DeleteProbeMutationPathParams, DeletePro
42
46
  export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
43
47
  export type { DeleteProbeTemplateErrorResponse, DeleteProbeTemplateMutationPathParams, DeleteProbeTemplateMutationProps, DeleteProbeTemplateMutationQueryParams, DeleteProbeTemplateOkResponse, DeleteProbeTemplateProps, } from './hooks/useDeleteProbeTemplateMutation';
44
48
  export { deleteProbeTemplate, useDeleteProbeTemplateMutation, } from './hooks/useDeleteProbeTemplateMutation';
49
+ export type { DeleteRecommendationErrorResponse, DeleteRecommendationMutationProps, DeleteRecommendationMutationQueryParams, DeleteRecommendationOkResponse, DeleteRecommendationProps, } from './hooks/useDeleteRecommendationMutation';
50
+ export { deleteRecommendation, useDeleteRecommendationMutation, } from './hooks/useDeleteRecommendationMutation';
45
51
  export type { DeleteTargetNetworkMapErrorResponse, DeleteTargetNetworkMapMutationPathParams, DeleteTargetNetworkMapMutationProps, DeleteTargetNetworkMapMutationQueryParams, DeleteTargetNetworkMapOkResponse, DeleteTargetNetworkMapProps, } from './hooks/useDeleteTargetNetworkMapMutation';
46
52
  export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
47
53
  export type { EnableProbeErrorResponse, EnableProbeMutationPathParams, EnableProbeMutationProps, EnableProbeMutationQueryParams, EnableProbeOkResponse, EnableProbeProps, EnableProbeRequestBody, } from './hooks/useEnableProbeMutation';
@@ -74,6 +80,8 @@ export type { GetChaosV2ExperimentVariablesErrorResponse, GetChaosV2ExperimentVa
74
80
  export { getChaosV2ExperimentVariables, useGetChaosV2ExperimentVariablesQuery, } from './hooks/useGetChaosV2ExperimentVariablesQuery';
75
81
  export type { GetConnectorForInfraErrorResponse, GetConnectorForInfraOkResponse, GetConnectorForInfraProps, GetConnectorForInfraQueryPathParams, GetConnectorForInfraQueryQueryParams, } from './hooks/useGetConnectorForInfraQuery';
76
82
  export { getConnectorForInfra, useGetConnectorForInfraQuery, } from './hooks/useGetConnectorForInfraQuery';
83
+ export type { GetEventWatcherErrorResponse, GetEventWatcherOkResponse, GetEventWatcherProps, GetEventWatcherQueryPathParams, GetEventWatcherQueryQueryParams, } from './hooks/useGetEventWatcherQuery';
84
+ export { getEventWatcher, useGetEventWatcherQuery } from './hooks/useGetEventWatcherQuery';
77
85
  export type { GetExperimentHelperImageVersionErrorResponse, GetExperimentHelperImageVersionOkResponse, GetExperimentHelperImageVersionProps, } from './hooks/useGetExperimentHelperImageVersionQuery';
78
86
  export { getExperimentHelperImageVersion, useGetExperimentHelperImageVersionQuery, } from './hooks/useGetExperimentHelperImageVersionQuery';
79
87
  export type { GetExperimentRunTimelineViewErrorResponse, GetExperimentRunTimelineViewOkResponse, GetExperimentRunTimelineViewProps, GetExperimentRunTimelineViewQueryPathParams, GetExperimentRunTimelineViewQueryQueryParams, } from './hooks/useGetExperimentRunTimelineViewQuery';
@@ -108,6 +116,8 @@ export type { GetProbeErrorResponse, GetProbeOkResponse, GetProbeProps, GetProbe
108
116
  export { getProbe, useGetProbeQuery } from './hooks/useGetProbeQuery';
109
117
  export type { GetProbeTemplateErrorResponse, GetProbeTemplateOkResponse, GetProbeTemplateProps, GetProbeTemplateQueryPathParams, GetProbeTemplateQueryQueryParams, } from './hooks/useGetProbeTemplateQuery';
110
118
  export { getProbeTemplate, useGetProbeTemplateQuery } from './hooks/useGetProbeTemplateQuery';
119
+ export type { GetRecommendationErrorResponse, GetRecommendationOkResponse, GetRecommendationProps, GetRecommendationQueryQueryParams, } from './hooks/useGetRecommendationQuery';
120
+ export { getRecommendation, useGetRecommendationQuery } from './hooks/useGetRecommendationQuery';
111
121
  export type { GetResourceUsageErrorResponse, GetResourceUsageOkResponse, GetResourceUsageProps, } from './hooks/useGetResourceUsageQuery';
112
122
  export { getResourceUsage, useGetResourceUsageQuery } from './hooks/useGetResourceUsageQuery';
113
123
  export type { GetServiceResponseErrorResponse, GetServiceResponseOkResponse, GetServiceResponseProps, GetServiceResponseQueryPathParams, GetServiceResponseQueryQueryParams, } from './hooks/useGetServiceResponseQuery';
@@ -140,6 +150,8 @@ export type { ListChaosHubErrorResponse, ListChaosHubOkResponse, ListChaosHubPro
140
150
  export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
141
151
  export type { ListChaosV2ExperimentErrorResponse, ListChaosV2ExperimentOkResponse, ListChaosV2ExperimentProps, ListChaosV2ExperimentQueryQueryParams, } from './hooks/useListChaosV2ExperimentQuery';
142
152
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
153
+ export type { ListEventWatcherErrorResponse, ListEventWatcherOkResponse, ListEventWatcherProps, ListEventWatcherQueryQueryParams, } from './hooks/useListEventWatcherQuery';
154
+ export { listEventWatcher, useListEventWatcherQuery } from './hooks/useListEventWatcherQuery';
143
155
  export type { ListExperimentsWithActiveInfrasMinimalNotificationErrorResponse, ListExperimentsWithActiveInfrasMinimalNotificationOkResponse, ListExperimentsWithActiveInfrasMinimalNotificationProps, ListExperimentsWithActiveInfrasMinimalNotificationQueryQueryParams, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
144
156
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
145
157
  export type { ListFaultErrorResponse, ListFaultOkResponse, ListFaultProps, ListFaultQueryQueryParams, } from './hooks/useListFaultQuery';
@@ -166,6 +178,8 @@ export type { ListProbeTemplateErrorResponse, ListProbeTemplateOkResponse, ListP
166
178
  export { listProbeTemplate, useListProbeTemplateQuery } from './hooks/useListProbeTemplateQuery';
167
179
  export type { ListProbesErrorResponse, ListProbesOkResponse, ListProbesProps, ListProbesQueryQueryParams, } from './hooks/useListProbesQuery';
168
180
  export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
181
+ export type { ListRecommendationsErrorResponse, ListRecommendationsOkResponse, ListRecommendationsProps, ListRecommendationsQueryQueryParams, ListRecommendationsRequestBody, } from './hooks/useListRecommendationsQuery';
182
+ export { listRecommendations, useListRecommendationsQuery, } from './hooks/useListRecommendationsQuery';
169
183
  export type { ListServiceErrorResponse, ListServiceOkResponse, ListServiceProps, ListServiceQueryPathParams, ListServiceQueryQueryParams, } from './hooks/useListServiceQuery';
170
184
  export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
171
185
  export type { ListTargetNetworkMapsErrorResponse, ListTargetNetworkMapsOkResponse, ListTargetNetworkMapsProps, ListTargetNetworkMapsQueryQueryParams, ListTargetNetworkMapsRequestBody, } from './hooks/useListTargetNetworkMapsQuery';
@@ -186,6 +200,10 @@ export type { OnboardingConfirmExperimentRunErrorResponse, OnboardingConfirmExpe
186
200
  export { onboardingConfirmExperimentRun, useOnboardingConfirmExperimentRunMutation, } from './hooks/useOnboardingConfirmExperimentRunMutation';
187
201
  export type { OnboardingConfirmNetworkMapErrorResponse, OnboardingConfirmNetworkMapMutationPathParams, OnboardingConfirmNetworkMapMutationProps, OnboardingConfirmNetworkMapMutationQueryParams, OnboardingConfirmNetworkMapOkResponse, OnboardingConfirmNetworkMapProps, OnboardingConfirmNetworkMapRequestBody, } from './hooks/useOnboardingConfirmNetworkMapMutation';
188
202
  export { onboardingConfirmNetworkMap, useOnboardingConfirmNetworkMapMutation, } from './hooks/useOnboardingConfirmNetworkMapMutation';
203
+ export type { RecommendationEventErrorResponse, RecommendationEventMutationProps, RecommendationEventOkResponse, RecommendationEventProps, RecommendationEventRequestBody, } from './hooks/useRecommendationEventMutation';
204
+ export { recommendationEvent, useRecommendationEventMutation, } from './hooks/useRecommendationEventMutation';
205
+ export type { RegisterEventWatcherErrorResponse, RegisterEventWatcherMutationProps, RegisterEventWatcherMutationQueryParams, RegisterEventWatcherOkResponse, RegisterEventWatcherProps, RegisterEventWatcherRequestBody, } from './hooks/useRegisterEventWatcherMutation';
206
+ export { registerEventWatcher, useRegisterEventWatcherMutation, } from './hooks/useRegisterEventWatcherMutation';
189
207
  export type { RegisterInfraV2ErrorResponse, RegisterInfraV2MutationProps, RegisterInfraV2MutationQueryParams, RegisterInfraV2OkResponse, RegisterInfraV2Props, RegisterInfraV2RequestBody, } from './hooks/useRegisterInfraV2Mutation';
190
208
  export { registerInfraV2, useRegisterInfraV2Mutation } from './hooks/useRegisterInfraV2Mutation';
191
209
  export type { RetryExperimentCreationErrorResponse, RetryExperimentCreationMutationPathParams, RetryExperimentCreationMutationProps, RetryExperimentCreationMutationQueryParams, RetryExperimentCreationOkResponse, RetryExperimentCreationProps, RetryExperimentCreationRequestBody, } from './hooks/useRetryExperimentCreationMutation';
@@ -194,6 +212,8 @@ export type { RunChaosV2ExperimentErrorResponse, RunChaosV2ExperimentMutationPat
194
212
  export { runChaosV2Experiment, useRunChaosV2ExperimentMutation, } from './hooks/useRunChaosV2ExperimentMutation';
195
213
  export type { RunChaosV2InternalApiErrorResponse, RunChaosV2InternalApiMutationPathParams, RunChaosV2InternalApiMutationProps, RunChaosV2InternalApiMutationQueryParams, RunChaosV2InternalApiOkResponse, RunChaosV2InternalApiProps, RunChaosV2InternalApiRequestBody, } from './hooks/useRunChaosV2InternalApiMutation';
196
214
  export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hooks/useRunChaosV2InternalApiMutation';
215
+ export type { RunRecommendationErrorResponse, RunRecommendationMutationProps, RunRecommendationMutationQueryParams, RunRecommendationOkResponse, RunRecommendationProps, } from './hooks/useRunRecommendationMutation';
216
+ export { runRecommendation, useRunRecommendationMutation, } from './hooks/useRunRecommendationMutation';
197
217
  export type { SaveChaosV2ExperimentErrorResponse, SaveChaosV2ExperimentMutationProps, SaveChaosV2ExperimentMutationQueryParams, SaveChaosV2ExperimentOkResponse, SaveChaosV2ExperimentProps, SaveChaosV2ExperimentRequestBody, } from './hooks/useSaveChaosV2ExperimentMutation';
198
218
  export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
199
219
  export type { StopChaosV2ExperimentErrorResponse, StopChaosV2ExperimentMutationPathParams, StopChaosV2ExperimentMutationProps, StopChaosV2ExperimentMutationQueryParams, StopChaosV2ExperimentOkResponse, StopChaosV2ExperimentProps, } from './hooks/useStopChaosV2ExperimentMutation';
@@ -228,6 +248,8 @@ export type { UpdateProbeErrorResponse, UpdateProbeMutationPathParams, UpdatePro
228
248
  export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
229
249
  export type { UpdateProbeTemplateErrorResponse, UpdateProbeTemplateMutationPathParams, UpdateProbeTemplateMutationProps, UpdateProbeTemplateMutationQueryParams, UpdateProbeTemplateOkResponse, UpdateProbeTemplateProps, UpdateProbeTemplateRequestBody, } from './hooks/useUpdateProbeTemplateMutation';
230
250
  export { updateProbeTemplate, useUpdateProbeTemplateMutation, } from './hooks/useUpdateProbeTemplateMutation';
251
+ export type { UpdateRecommendationStatusErrorResponse, UpdateRecommendationStatusMutationProps, UpdateRecommendationStatusMutationQueryParams, UpdateRecommendationStatusOkResponse, UpdateRecommendationStatusProps, } from './hooks/useUpdateRecommendationStatusMutation';
252
+ export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
231
253
  export type { ChaosfaulttemplateActionTemplateRequestBody } from './requestBodies/ChaosfaulttemplateActionTemplateRequestBody';
232
254
  export type { InfraV2ListKubernetesInfraV2RequestRequestBody } from './requestBodies/InfraV2ListKubernetesInfraV2RequestRequestBody';
233
255
  export type { TypesProbeRequestRequestBody } from './requestBodies/TypesProbeRequestRequestBody';
@@ -345,6 +367,14 @@ export type { DatabaseResourceList } from './schemas/DatabaseResourceList';
345
367
  export type { DatabaseResourceRequirements } from './schemas/DatabaseResourceRequirements';
346
368
  export type { DatabaseServiceCollection } from './schemas/DatabaseServiceCollection';
347
369
  export type { DatabaseServiceIdentity } from './schemas/DatabaseServiceIdentity';
370
+ export type { EventWatcherDeleteEventWatcherResponse } from './schemas/EventWatcherDeleteEventWatcherResponse';
371
+ export type { EventWatcherEventWatcherDetails } from './schemas/EventWatcherEventWatcherDetails';
372
+ export type { EventWatcherEventWatcherStatus } from './schemas/EventWatcherEventWatcherStatus';
373
+ export type { EventWatcherEventWatcherType } from './schemas/EventWatcherEventWatcherType';
374
+ export type { EventWatcherIdentifiers } from './schemas/EventWatcherIdentifiers';
375
+ export type { EventWatcherListEventWatchersResponse } from './schemas/EventWatcherListEventWatchersResponse';
376
+ export type { EventWatcherRegisterEventWatcherRequest } from './schemas/EventWatcherRegisterEventWatcherRequest';
377
+ export type { EventWatcherRegisterEventWatcherResponse } from './schemas/EventWatcherRegisterEventWatcherResponse';
348
378
  export type { ExperimentSaveChaosExperimentResponse } from './schemas/ExperimentSaveChaosExperimentResponse';
349
379
  export type { Gamedayrunv2ApprovalStatus } from './schemas/Gamedayrunv2ApprovalStatus';
350
380
  export type { Gamedayrunv2PrerequisiteStatus } from './schemas/Gamedayrunv2PrerequisiteStatus';
@@ -365,6 +395,11 @@ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGet } f
365
395
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeHeaders } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeHeaders';
366
396
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentifier } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentifier';
367
397
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost';
398
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode';
399
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation';
400
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType';
401
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget';
402
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload';
368
403
  export type { GithubComHarnessHceSaasHceSdkCommonProbeV1Probe } from './schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe';
369
404
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogSyntheticsTestType } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogSyntheticsTestType';
370
405
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGet } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGet';
@@ -469,6 +504,10 @@ export type { PipelinesBulkExperimentRunResponse } from './schemas/PipelinesBulk
469
504
  export type { PipelinesChaosPipelineInput } from './schemas/PipelinesChaosPipelineInput';
470
505
  export type { PipelinesCreatePipelineResponse } from './schemas/PipelinesCreatePipelineResponse';
471
506
  export type { PipelinesExperimentSpec } from './schemas/PipelinesExperimentSpec';
507
+ export type { ProbeApmProbe } from './schemas/ProbeApmProbe';
508
+ export type { ProbeApmtlsConfig } from './schemas/ProbeApmtlsConfig';
509
+ export type { ProbeAppDynamicsProbeInputs } from './schemas/ProbeAppDynamicsProbeInputs';
510
+ export type { ProbeAppdMetrics } from './schemas/ProbeAppdMetrics';
472
511
  export type { ProbeAuthorization } from './schemas/ProbeAuthorization';
473
512
  export type { ProbeAuthorizationTemplate } from './schemas/ProbeAuthorizationTemplate';
474
513
  export type { ProbeCmdProbeTemplate } from './schemas/ProbeCmdProbeTemplate';
@@ -498,6 +537,8 @@ export type { ProbeProbeTemplateRunProperties } from './schemas/ProbeProbeTempla
498
537
  export type { ProbeProbeType } from './schemas/ProbeProbeType';
499
538
  export type { ProbePromProbe } from './schemas/ProbePromProbe';
500
539
  export type { ProbePromProbeTemplate } from './schemas/ProbePromProbeTemplate';
540
+ export type { ProbePrometheusProbeInputs } from './schemas/ProbePrometheusProbeInputs';
541
+ export type { ProbeSecretManager } from './schemas/ProbeSecretManager';
501
542
  export type { ProbeSloProbe } from './schemas/ProbeSloProbe';
502
543
  export type { ProbeSloProbeTemplate } from './schemas/ProbeSloProbeTemplate';
503
544
  export type { ProbeSloSourceMetadata } from './schemas/ProbeSloSourceMetadata';
@@ -506,6 +547,25 @@ export type { ProbeSyntheticsTest } from './schemas/ProbeSyntheticsTest';
506
547
  export type { ProbeSyntheticsTestTemplate } from './schemas/ProbeSyntheticsTestTemplate';
507
548
  export type { ProbeTlsConfig } from './schemas/ProbeTlsConfig';
508
549
  export type { ProbeTlsConfigTemplate } from './schemas/ProbeTlsConfigTemplate';
550
+ export type { RecommendationConfigScannerEvents } from './schemas/RecommendationConfigScannerEvents';
551
+ export type { RecommendationEventRequest } from './schemas/RecommendationEventRequest';
552
+ export type { RecommendationFailure } from './schemas/RecommendationFailure';
553
+ export type { RecommendationFaultFilters } from './schemas/RecommendationFaultFilters';
554
+ export type { RecommendationFaultPayload } from './schemas/RecommendationFaultPayload';
555
+ export type { RecommendationFixes } from './schemas/RecommendationFixes';
556
+ export type { RecommendationIdentifiers } from './schemas/RecommendationIdentifiers';
557
+ export type { RecommendationProbeFilters } from './schemas/RecommendationProbeFilters';
558
+ export type { RecommendationProbePayload } from './schemas/RecommendationProbePayload';
559
+ export type { RecommendationRecommendationCategory } from './schemas/RecommendationRecommendationCategory';
560
+ export type { RecommendationRecommendationSource } from './schemas/RecommendationRecommendationSource';
561
+ export type { RecommendationRecommendationStatus } from './schemas/RecommendationRecommendationStatus';
562
+ export type { RecommendationRecommendationType } from './schemas/RecommendationRecommendationType';
563
+ export type { RecommendationSuggestions } from './schemas/RecommendationSuggestions';
564
+ export type { RecommendationsCreateActionResponse } from './schemas/RecommendationsCreateActionResponse';
565
+ export type { RecommendationsFilters } from './schemas/RecommendationsFilters';
566
+ export type { RecommendationsListRecommendationsRequest } from './schemas/RecommendationsListRecommendationsRequest';
567
+ export type { RecommendationsListRecommendationsResponse } from './schemas/RecommendationsListRecommendationsResponse';
568
+ export type { RecommendationsRunActionResponse } from './schemas/RecommendationsRunActionResponse';
509
569
  export type { ResourceQuantity } from './schemas/ResourceQuantity';
510
570
  export type { SecurityGovernanceApplicationSpec } from './schemas/SecurityGovernanceApplicationSpec';
511
571
  export type { SecurityGovernanceChaosServiceAccountSpec } from './schemas/SecurityGovernanceChaosServiceAccountSpec';
@@ -540,7 +600,6 @@ export type { TemplateVariableMinimum } from './schemas/TemplateVariableMinimum'
540
600
  export type { TemplateVariableType } from './schemas/TemplateVariableType';
541
601
  export type { TypesActionItem } from './schemas/TypesActionItem';
542
602
  export type { TypesApplication } from './schemas/TypesApplication';
543
- export type { TypesCleanupPolicy } from './schemas/TypesCleanupPolicy';
544
603
  export type { TypesConfigMap } from './schemas/TypesConfigMap';
545
604
  export type { TypesCreateGamedayRequest } from './schemas/TypesCreateGamedayRequest';
546
605
  export type { TypesCreateGamedayResponse } from './schemas/TypesCreateGamedayResponse';
@@ -11,15 +11,18 @@ export { createGamedayV2, useCreateGamedayV2Mutation } from './hooks/useCreateGa
11
11
  export { createInputSet, useCreateInputSetMutation } from './hooks/useCreateInputSetMutation';
12
12
  export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
13
13
  export { createProbeTemplate, useCreateProbeTemplateMutation, } from './hooks/useCreateProbeTemplateMutation';
14
+ export { createRecommendation, useCreateRecommendationMutation, } from './hooks/useCreateRecommendationMutation';
14
15
  export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
15
16
  export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
16
17
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
17
18
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
19
+ export { deleteEventWatcher, useDeleteEventWatcherMutation, } from './hooks/useDeleteEventWatcherMutation';
18
20
  export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
19
21
  export { deleteInfraV2, useDeleteInfraV2Mutation } from './hooks/useDeleteInfraV2Mutation';
20
22
  export { deleteInputSet, useDeleteInputSetMutation } from './hooks/useDeleteInputSetMutation';
21
23
  export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
22
24
  export { deleteProbeTemplate, useDeleteProbeTemplateMutation, } from './hooks/useDeleteProbeTemplateMutation';
25
+ export { deleteRecommendation, useDeleteRecommendationMutation, } from './hooks/useDeleteRecommendationMutation';
23
26
  export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
24
27
  export { enableProbe, useEnableProbeMutation } from './hooks/useEnableProbeMutation';
25
28
  export { getAccountServiceDetails, useGetAccountServiceDetailsQuery, } from './hooks/useGetAccountServiceDetailsQuery';
@@ -36,6 +39,7 @@ export { getChaosV2ExperimentRunInternalApi, useGetChaosV2ExperimentRunInternalA
36
39
  export { getChaosV2ExperimentRun, useGetChaosV2ExperimentRunQuery, } from './hooks/useGetChaosV2ExperimentRunQuery';
37
40
  export { getChaosV2ExperimentVariables, useGetChaosV2ExperimentVariablesQuery, } from './hooks/useGetChaosV2ExperimentVariablesQuery';
38
41
  export { getConnectorForInfra, useGetConnectorForInfraQuery, } from './hooks/useGetConnectorForInfraQuery';
42
+ export { getEventWatcher, useGetEventWatcherQuery } from './hooks/useGetEventWatcherQuery';
39
43
  export { getExperimentHelperImageVersion, useGetExperimentHelperImageVersionQuery, } from './hooks/useGetExperimentHelperImageVersionQuery';
40
44
  export { getExperimentRunTimelineView, useGetExperimentRunTimelineViewQuery, } from './hooks/useGetExperimentRunTimelineViewQuery';
41
45
  export { getExperimentRunsOverviewStats, useGetExperimentRunsOverviewStatsQuery, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
@@ -53,6 +57,7 @@ export { getOverallServiceUsageStats, useGetOverallServiceUsageStatsQuery, } fro
53
57
  export { getProbeManifest, useGetProbeManifestQuery } from './hooks/useGetProbeManifestQuery';
54
58
  export { getProbe, useGetProbeQuery } from './hooks/useGetProbeQuery';
55
59
  export { getProbeTemplate, useGetProbeTemplateQuery } from './hooks/useGetProbeTemplateQuery';
60
+ export { getRecommendation, useGetRecommendationQuery } from './hooks/useGetRecommendationQuery';
56
61
  export { getResourceUsage, useGetResourceUsageQuery } from './hooks/useGetResourceUsageQuery';
57
62
  export { getServiceResponse, useGetServiceResponseQuery } from './hooks/useGetServiceResponseQuery';
58
63
  export { getServiceUsageReport, useGetServiceUsageReportQuery, } from './hooks/useGetServiceUsageReportQuery';
@@ -69,6 +74,7 @@ export { listApplication, useListApplicationQuery } from './hooks/useListApplica
69
74
  export { listChaosEnabledInfraV2, useListChaosEnabledInfraV2Query, } from './hooks/useListChaosEnabledInfraV2Query';
70
75
  export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
71
76
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
77
+ export { listEventWatcher, useListEventWatcherQuery } from './hooks/useListEventWatcherQuery';
72
78
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
73
79
  export { listFault, useListFaultQuery } from './hooks/useListFaultQuery';
74
80
  export { listFaultTemplate, useListFaultTemplateQuery } from './hooks/useListFaultTemplateQuery';
@@ -82,6 +88,7 @@ export { listInputSet, useListInputSetQuery } from './hooks/useListInputSetQuery
82
88
  export { listK8sInfrasV2, useListK8sInfrasV2Mutation } from './hooks/useListK8sInfrasV2Mutation';
83
89
  export { listProbeTemplate, useListProbeTemplateQuery } from './hooks/useListProbeTemplateQuery';
84
90
  export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
91
+ export { listRecommendations, useListRecommendationsQuery, } from './hooks/useListRecommendationsQuery';
85
92
  export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
86
93
  export { listTargetNetworkMaps, useListTargetNetworkMapsQuery, } from './hooks/useListTargetNetworkMapsQuery';
87
94
  export { listV2Onboarding, useListV2OnboardingQuery } from './hooks/useListV2OnboardingQuery';
@@ -92,10 +99,13 @@ export { onboardingConfirmDiscovery, useOnboardingConfirmDiscoveryMutation, } fr
92
99
  export { onboardingConfirmExperimentCreation, useOnboardingConfirmExperimentCreationMutation, } from './hooks/useOnboardingConfirmExperimentCreationMutation';
93
100
  export { onboardingConfirmExperimentRun, useOnboardingConfirmExperimentRunMutation, } from './hooks/useOnboardingConfirmExperimentRunMutation';
94
101
  export { onboardingConfirmNetworkMap, useOnboardingConfirmNetworkMapMutation, } from './hooks/useOnboardingConfirmNetworkMapMutation';
102
+ export { recommendationEvent, useRecommendationEventMutation, } from './hooks/useRecommendationEventMutation';
103
+ export { registerEventWatcher, useRegisterEventWatcherMutation, } from './hooks/useRegisterEventWatcherMutation';
95
104
  export { registerInfraV2, useRegisterInfraV2Mutation } from './hooks/useRegisterInfraV2Mutation';
96
105
  export { retryExperimentCreation, useRetryExperimentCreationMutation, } from './hooks/useRetryExperimentCreationMutation';
97
106
  export { runChaosV2Experiment, useRunChaosV2ExperimentMutation, } from './hooks/useRunChaosV2ExperimentMutation';
98
107
  export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hooks/useRunChaosV2InternalApiMutation';
108
+ export { runRecommendation, useRunRecommendationMutation, } from './hooks/useRunRecommendationMutation';
99
109
  export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
100
110
  export { stopChaosV2Experiment, useStopChaosV2ExperimentMutation, } from './hooks/useStopChaosV2ExperimentMutation';
101
111
  export { stopOnboardingExperiments, useStopOnboardingExperimentsMutation, } from './hooks/useStopOnboardingExperimentsMutation';
@@ -113,3 +123,4 @@ export { updateInputSet, useUpdateInputSetMutation } from './hooks/useUpdateInpu
113
123
  export { updateNote, useUpdateNoteMutation } from './hooks/useUpdateNoteMutation';
114
124
  export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
115
125
  export { updateProbeTemplate, useUpdateProbeTemplateMutation, } from './hooks/useUpdateProbeTemplateMutation';
126
+ export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
@@ -4,6 +4,7 @@ import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructure
4
4
  import type { ActionsRecentExecutions } from '../schemas/ActionsRecentExecutions';
5
5
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
6
6
  import type { ActionsActionType } from '../schemas/ActionsActionType';
7
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
7
8
  export interface ActionsActionResponse {
8
9
  accountID: string;
9
10
  actionProperties?: ActionActionTemplateProperties;
@@ -25,4 +26,5 @@ export interface ActionsActionResponse {
25
26
  type?: ActionsActionType;
26
27
  updatedAt?: number;
27
28
  updatedBy?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
29
+ variables?: TemplateVariable[];
28
30
  }
@@ -1,4 +1,5 @@
1
1
  export interface ChaosExperimentRunAnnotation {
2
+ mode?: string;
2
3
  name?: string;
3
4
  probeID?: string;
4
5
  revisionID?: string;
@@ -0,0 +1,4 @@
1
+ export interface EventWatcherDeleteEventWatcherResponse {
2
+ identity?: string;
3
+ message?: string;
4
+ }
@@ -0,0 +1,52 @@
1
+ import type { InfraV2UserDetails } from '../schemas/InfraV2UserDetails';
2
+ import type { InfraV2Env } from '../schemas/InfraV2Env';
3
+ import type { EventWatcherEventWatcherType } from '../schemas/EventWatcherEventWatcherType';
4
+ import type { EventWatcherIdentifiers } from '../schemas/EventWatcherIdentifiers';
5
+ import type { ImageRegistryImageRegistryV2 } from '../schemas/ImageRegistryImageRegistryV2';
6
+ import type { InfraV2MtlsConfiguration } from '../schemas/InfraV2MtlsConfiguration';
7
+ import type { InfraV2ProxyConfiguration } from '../schemas/InfraV2ProxyConfiguration';
8
+ import type { EventWatcherEventWatcherStatus } from '../schemas/EventWatcherEventWatcherStatus';
9
+ import type { V1Toleration } from '../schemas/V1Toleration';
10
+ import type { V1VolumeMount } from '../schemas/V1VolumeMount';
11
+ import type { InfraV2Volumes } from '../schemas/InfraV2Volumes';
12
+ export interface EventWatcherEventWatcherDetails {
13
+ annotation?: {
14
+ [key: string]: string;
15
+ };
16
+ containers?: string;
17
+ createdAt?: string;
18
+ createdBy?: InfraV2UserDetails;
19
+ deploymentType?: string;
20
+ description?: string;
21
+ env?: InfraV2Env[];
22
+ environmentID?: string;
23
+ eventWatcherID?: string;
24
+ eventWatcherNamespace?: string;
25
+ eventWatcherType?: EventWatcherEventWatcherType;
26
+ identifier?: EventWatcherIdentifiers;
27
+ identity?: string;
28
+ imageRegistry?: ImageRegistryImageRegistryV2;
29
+ insecureSkipVerify?: boolean;
30
+ k8sConnectorID?: string;
31
+ label?: {
32
+ [key: string]: string;
33
+ };
34
+ lastHeartbeat?: number;
35
+ mtls?: InfraV2MtlsConfiguration;
36
+ name?: string;
37
+ nodeSelector?: {
38
+ [key: string]: string;
39
+ };
40
+ proxy?: InfraV2ProxyConfiguration;
41
+ runAsGroup?: number;
42
+ runAsUser?: number;
43
+ serviceAccount?: string;
44
+ status?: EventWatcherEventWatcherStatus;
45
+ tags?: string[];
46
+ tolerations?: V1Toleration[];
47
+ updatedAt?: string;
48
+ updatedBy?: InfraV2UserDetails;
49
+ version?: string;
50
+ volumeMounts?: V1VolumeMount[];
51
+ volumes?: InfraV2Volumes[];
52
+ }
@@ -0,0 +1 @@
1
+ export type EventWatcherEventWatcherStatus = 'ACTIVE' | 'INACTIVE' | 'PENDING';
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1 @@
1
+ export type EventWatcherEventWatcherType = 'K8sWatcher';
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface EventWatcherIdentifiers {
2
+ accountID?: string;
3
+ organizationID?: string;
4
+ projectID?: string;
5
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,7 @@
1
+ import type { EventWatcherEventWatcherDetails } from '../schemas/EventWatcherEventWatcherDetails';
2
+ import type { InfraV2Pagination } from '../schemas/InfraV2Pagination';
3
+ export interface EventWatcherListEventWatchersResponse {
4
+ eventWatchers?: EventWatcherEventWatcherDetails[];
5
+ pagination?: InfraV2Pagination;
6
+ totalNoOfEventWatchers?: number;
7
+ }
@@ -0,0 +1,42 @@
1
+ import type { InfraV2Env } from '../schemas/InfraV2Env';
2
+ import type { EventWatcherEventWatcherType } from '../schemas/EventWatcherEventWatcherType';
3
+ import type { EventWatcherIdentifiers } from '../schemas/EventWatcherIdentifiers';
4
+ import type { ImageRegistryImageRegistryV2 } from '../schemas/ImageRegistryImageRegistryV2';
5
+ import type { InfraV2MtlsConfiguration } from '../schemas/InfraV2MtlsConfiguration';
6
+ import type { InfraV2ProxyConfiguration } from '../schemas/InfraV2ProxyConfiguration';
7
+ import type { V1Toleration } from '../schemas/V1Toleration';
8
+ import type { V1VolumeMount } from '../schemas/V1VolumeMount';
9
+ import type { InfraV2Volumes } from '../schemas/InfraV2Volumes';
10
+ export interface EventWatcherRegisterEventWatcherRequest {
11
+ annotation?: {
12
+ [key: string]: string;
13
+ };
14
+ containers?: string;
15
+ description?: string;
16
+ env?: InfraV2Env[];
17
+ environmentID?: string;
18
+ eventWatcherID?: string;
19
+ eventWatcherNamespace?: string;
20
+ eventWatcherType?: EventWatcherEventWatcherType;
21
+ identifier?: EventWatcherIdentifiers;
22
+ identity?: string;
23
+ imageRegistry?: ImageRegistryImageRegistryV2;
24
+ insecureSkipVerify?: boolean;
25
+ k8sConnectorID?: string;
26
+ label?: {
27
+ [key: string]: string;
28
+ };
29
+ mtls?: InfraV2MtlsConfiguration;
30
+ name?: string;
31
+ nodeSelector?: {
32
+ [key: string]: string;
33
+ };
34
+ proxy?: InfraV2ProxyConfiguration;
35
+ runAsGroup?: number;
36
+ runAsUser?: number;
37
+ serviceAccount?: string;
38
+ tags?: string[];
39
+ tolerations?: V1Toleration[];
40
+ volumeMounts?: V1VolumeMount[];
41
+ volumes?: InfraV2Volumes[];
42
+ }
@@ -0,0 +1,5 @@
1
+ export interface EventWatcherRegisterEventWatcherResponse {
2
+ identity?: string;
3
+ name?: string;
4
+ token?: string;
5
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -2,6 +2,7 @@ import type { ActionActionTemplateProperties } from '../schemas/ActionActionTemp
2
2
  import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructureType';
3
3
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
4
4
  import type { ActionsActionType } from '../schemas/ActionsActionType';
5
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
5
6
  export interface GithubComHarnessHceSaasGraphqlServerPkgActionsAction {
6
7
  actionProperties?: ActionActionTemplateProperties;
7
8
  actionsTemplateRef?: string;
@@ -13,4 +14,5 @@ export interface GithubComHarnessHceSaasGraphqlServerPkgActionsAction {
13
14
  runProperties?: ActionActionTemplateRunProperties;
14
15
  tags?: string[];
15
16
  type?: ActionsActionType;
17
+ variables?: TemplateVariable[];
16
18
  }
@@ -3,6 +3,7 @@ import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructure
3
3
  import type { ActionsRecentExecutions } from '../schemas/ActionsRecentExecutions';
4
4
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
5
5
  import type { ActionsActionType } from '../schemas/ActionsActionType';
6
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
6
7
  export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction {
7
8
  accountID: string;
8
9
  actionProperties?: ActionActionTemplateProperties;
@@ -19,4 +20,5 @@ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAc
19
20
  runProperties?: ActionActionTemplateRunProperties;
20
21
  tags?: string[];
21
22
  type?: ActionsActionType;
23
+ variables?: TemplateVariable[];
22
24
  }
@@ -0,0 +1,4 @@
1
+ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode {
2
+ labels?: string;
3
+ name?: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -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 @@
1
+ export type GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType = 'Node' | 'Workload';
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode';
2
+ import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType';
3
+ import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload';
4
+ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget {
5
+ node?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode;
6
+ type?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType;
7
+ workload?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload;
8
+ }
@@ -0,0 +1,6 @@
1
+ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload {
2
+ kind?: string;
3
+ labels?: string;
4
+ name?: string;
5
+ namespace?: string;
6
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,4 +1,3 @@
1
- import type { TypesCleanupPolicy } from '../schemas/TypesCleanupPolicy';
2
1
  import type { TypesExperimentComponents } from '../schemas/TypesExperimentComponents';
3
2
  import type { V1EnvVar } from '../schemas/V1EnvVar';
4
3
  import type { V1PullPolicy } from '../schemas/V1PullPolicy';
@@ -8,7 +7,6 @@ export interface GithubComWingsSoftwareDdcrPkgTypesChaosInputs {
8
7
  [key: string]: string;
9
8
  };
10
9
  args?: string[];
11
- cleanupPolicy?: TypesCleanupPolicy;
12
10
  command?: string[];
13
11
  components?: TypesExperimentComponents;
14
12
  defaultHealthCheck?: boolean;
@@ -0,0 +1,18 @@
1
+ import type { ProbeAppDynamicsProbeInputs } from '../schemas/ProbeAppDynamicsProbeInputs';
2
+ import type { ProbeComparator } from '../schemas/ProbeComparator';
3
+ import type { ProbePrometheusProbeInputs } from '../schemas/ProbePrometheusProbeInputs';
4
+ export interface ProbeApmProbe {
5
+ appDynamicsProbeInputs?: ProbeAppDynamicsProbeInputs;
6
+ attempt?: {};
7
+ comparator?: ProbeComparator;
8
+ initialDelay?: string;
9
+ initialDelaySeconds?: {};
10
+ interval?: string;
11
+ pollingInterval?: string;
12
+ probeTimeout?: string;
13
+ prometheusProbeInputs?: ProbePrometheusProbeInputs;
14
+ retry?: {};
15
+ stopOnFailure?: boolean;
16
+ type?: string;
17
+ verbosity?: string;
18
+ }
@@ -0,0 +1,7 @@
1
+ import type { ProbeSecretManager } from '../schemas/ProbeSecretManager';
2
+ export interface ProbeApmtlsConfig {
3
+ caCrt?: ProbeSecretManager;
4
+ clientCrt?: ProbeSecretManager;
5
+ insecureSkipVerify?: boolean;
6
+ key?: ProbeSecretManager;
7
+ }
@@ -0,0 +1,5 @@
1
+ import type { ProbeAppdMetrics } from '../schemas/ProbeAppdMetrics';
2
+ export interface ProbeAppDynamicsProbeInputs {
3
+ appdMetrics?: ProbeAppdMetrics;
4
+ connectorID?: string;
5
+ }