@harnessio/react-chaos-manager-client 0.9.0 → 0.10.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/useCreateActionMutation.d.ts +26 -0
- package/dist/chaos-manager/src/services/hooks/useCreateActionMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useCreateActionTemplateMutation.d.ts +27 -0
- package/dist/chaos-manager/src/services/hooks/useCreateActionTemplateMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useCreateChaosExperimentExecutionNodeMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useCreateChaosExperimentExecutionNodeMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useCreateChaosHubMutation.d.ts +30 -0
- package/dist/chaos-manager/src/services/hooks/useCreateChaosHubMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useDeleteActionMutation.d.ts +26 -0
- package/dist/chaos-manager/src/services/hooks/useDeleteActionMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useExperimentExecutionNodeDetailsQuery.d.ts +28 -0
- package/dist/chaos-manager/src/services/hooks/useExperimentExecutionNodeDetailsQuery.js +20 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionManifestQuery.d.ts +25 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionManifestQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionQuery.d.ts +26 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionTemplateQuery.d.ts +28 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionTemplateQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionTemplateRevisionDifferenceQuery.d.ts +29 -0
- package/dist/chaos-manager/src/services/hooks/useGetActionTemplateRevisionDifferenceQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetChaosHubQuery.d.ts +26 -0
- package/dist/chaos-manager/src/services/hooks/useGetChaosHubQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineExecutionQuery.d.ts +27 -0
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineExecutionQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineStepDetailsQuery.d.ts +28 -0
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineStepDetailsQuery.js +20 -0
- package/dist/chaos-manager/src/services/hooks/useImportActionMutation.d.ts +27 -0
- package/dist/chaos-manager/src/services/hooks/useImportActionMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListActionTemplateQuery.d.ts +36 -0
- package/dist/chaos-manager/src/services/hooks/useListActionTemplateQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListActionTemplateRevisionsQuery.d.ts +35 -0
- package/dist/chaos-manager/src/services/hooks/useListActionTemplateRevisionsQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListActionsQuery.d.ts +36 -0
- package/dist/chaos-manager/src/services/hooks/useListActionsQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListChaosHubQuery.d.ts +33 -0
- package/dist/chaos-manager/src/services/hooks/useListChaosHubQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListVariablesInActionTemplateQuery.d.ts +28 -0
- package/dist/chaos-manager/src/services/hooks/useListVariablesInActionTemplateQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateActionMutation.d.ts +30 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateActionMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateActionTemplateMutation.d.ts +31 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateActionTemplateMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosExperimentExecutionNodeMutation.d.ts +29 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosExperimentExecutionNodeMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosHubMutation.d.ts +30 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosHubMutation.js +14 -0
- package/dist/chaos-manager/src/services/index.d.ts +90 -3
- package/dist/chaos-manager/src/services/index.js +23 -0
- package/dist/chaos-manager/src/services/requestBodies/ChaosfaulttemplateActionTemplateRequestBody.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ActionsActionDetails.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/ActionsActionDetails.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ActionsActionResponse.d.ts +29 -0
- package/dist/chaos-manager/src/services/schemas/ActionsActionResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ActionsActionRunProperties.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/ActionsActionType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ActionsExecutedByExperiment.d.ts +9 -0
- package/dist/chaos-manager/src/services/schemas/ActionsExecutedByExperiment.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ActionsImportActionTemplateRequest.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/ActionsImportActionTemplateRequest.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ActionsInfrastructureType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ActionsInfrastructureType.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ActionsListActionTemplateResponse.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/ActionsListActionTemplateResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ActionsRecentExecutions.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/ActionsRecentExecutions.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesChaosExecutionNode.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesChaosExecutionResponse.d.ts +1 -1
- 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/ChaosExperimentChaosExperimentRequest.d.ts +3 -3
- package/dist/chaos-manager/src/services/schemas/ChaosExperimentExperimentRunDetail.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaosExperimentRunChaosExperimentRun.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/ChaosHubAuthType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosHubAuthType.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaosHubConnectorScope.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosHubConnectorScope.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaosHubStatus.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosHubStatus.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaosInfrastructureV2ChaosInfraV2.d.ts +3 -3
- package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateActionProperties.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateActionProperties.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateActionsTemplateCount.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateActionsTemplateCount.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateChaosActionTemplate.d.ts +44 -0
- package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateChaosActionTemplate.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateActionTemplate.d.ts +16 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateActionTemplate.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateActionTemplateVariables.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateActionTemplateVariables.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateGetActionTemplateResponse.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateGetActionTemplateResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateListActionTemplateResponse.d.ts +9 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateListActionTemplateResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2ChaosHubResponse.d.ts +44 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2ChaosHubResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2CreateHubRequest.d.ts +9 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2CreateHubRequest.js +4 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2GetHubResponse.d.ts +44 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2GetHubResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2ListHubResponse.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2ListHubResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2UpdateHubRequest.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/Chaoshubv2UpdateHubRequest.js +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgActionsAction.d.ts +18 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgActionsAction.js +1 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction.d.ts +24 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction.js +1 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosfaulttemplateChaosFaultTemplate.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData.js +1 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs.d.ts +31 -5
- package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesDefinition.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/InputsetInputSet.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ModelActionData.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/ModelActionData.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelChaosExecutionNode.d.ts +19 -0
- package/dist/chaos-manager/src/services/schemas/ModelChaosExecutionNode.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepStatus.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepStatus.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepType.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelCommandProbe.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/ModelCommandProbe.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelErrorData.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelErrorData.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelFaultData.d.ts +10 -0
- package/dist/chaos-manager/src/services/schemas/ModelFaultData.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ModelHelperPodDetails.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelHelperPodDetails.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelHttpProbe.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/ModelHttpProbe.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ModelProbeData.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/ModelProbeData.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ModelProbeIterations.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/ModelProbeIterations.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ModelPromProbe.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/ModelPromProbe.js +4 -0
- package/dist/chaos-manager/src/services/schemas/NetworkmapGetTargetNetworkMapResponse.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/TargetnetworkmapExperimentRunDetail.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/TargetnetworkmapTargetNetworkMap.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/TargetserviceTargetService.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/TypesConfigMap.d.ts +9 -0
- package/dist/chaos-manager/src/services/schemas/TypesExperimentComponents.d.ts +39 -0
- package/dist/chaos-manager/src/services/schemas/TypesFault.d.ts +21 -0
- package/dist/chaos-manager/src/services/schemas/TypesFault.js +1 -0
- package/dist/chaos-manager/src/services/schemas/TypesFaultRef.d.ts +14 -0
- package/dist/chaos-manager/src/services/schemas/TypesFaultRef.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesHostFile.d.ts +12 -0
- package/dist/chaos-manager/src/services/schemas/TypesProjectedVolumes.d.ts +12 -0
- package/dist/chaos-manager/src/services/schemas/TypesSecret.d.ts +9 -0
- package/dist/chaos-manager/src/services/schemas/TypesSecurityContext.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/TypesSelector.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/TypesSidecar.d.ts +15 -0
- package/dist/chaos-manager/src/services/schemas/TypesStatusCheckTimeout.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/TypesTargets.d.ts +3 -2
- package/dist/chaos-manager/src/services/schemas/TypesWorkload.d.ts +12 -0
- package/dist/chaos-manager/src/services/schemas/V1alpha1TargetDetails.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/V1alpha1TargetDetails.js +4 -0
- package/dist/chaos-manager/src/services/schemas/V1alpha1Targets.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/V1alpha1Targets.js +4 -0
- package/dist/chaos-manager/src/services/schemas/V2OnboardingV2Onboarding.d.ts +2 -2
- package/package.json +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesFaultDetails.d.ts +0 -5
- package/dist/chaos-manager/src/services/schemas/TypesApplication.d.ts +0 -4
- package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.d.ts +0 -1
- /package/dist/chaos-manager/src/services/{schemas/ChaosExecutionNodesFaultDetails.js → requestBodies/ChaosfaulttemplateActionTemplateRequestBody.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{TypesApplication.js → ActionsActionRunProperties.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{TypesCleanupPolicy.js → ActionsActionType.js} +0 -0
|
@@ -6,8 +6,16 @@ export type { BulkExperimentTagAddErrorResponse, BulkExperimentTagAddMutationPro
|
|
|
6
6
|
export { bulkExperimentTagAdd, useBulkExperimentTagAddMutation, } from './hooks/useBulkExperimentTagAddMutation';
|
|
7
7
|
export type { CanRetryExperimentCreationErrorResponse, CanRetryExperimentCreationOkResponse, CanRetryExperimentCreationProps, CanRetryExperimentCreationQueryPathParams, CanRetryExperimentCreationQueryQueryParams, } from './hooks/useCanRetryExperimentCreationQuery';
|
|
8
8
|
export { canRetryExperimentCreation, useCanRetryExperimentCreationQuery, } from './hooks/useCanRetryExperimentCreationQuery';
|
|
9
|
+
export type { CreateActionErrorResponse, CreateActionMutationProps, CreateActionMutationQueryParams, CreateActionOkResponse, CreateActionProps, CreateActionRequestBody, } from './hooks/useCreateActionMutation';
|
|
10
|
+
export { createAction, useCreateActionMutation } from './hooks/useCreateActionMutation';
|
|
11
|
+
export type { CreateActionTemplateErrorResponse, CreateActionTemplateMutationProps, CreateActionTemplateMutationQueryParams, CreateActionTemplateOkResponse, CreateActionTemplateProps, CreateActionTemplateRequestBody, } from './hooks/useCreateActionTemplateMutation';
|
|
12
|
+
export { createActionTemplate, useCreateActionTemplateMutation, } from './hooks/useCreateActionTemplateMutation';
|
|
13
|
+
export type { CreateChaosExperimentExecutionNodeErrorResponse, CreateChaosExperimentExecutionNodeMutationPathParams, CreateChaosExperimentExecutionNodeMutationProps, CreateChaosExperimentExecutionNodeOkResponse, CreateChaosExperimentExecutionNodeProps, CreateChaosExperimentExecutionNodeRequestBody, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
|
|
14
|
+
export { createChaosExperimentExecutionNode, useCreateChaosExperimentExecutionNodeMutation, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
|
|
9
15
|
export type { CreateChaosExperimentPipelineErrorResponse, CreateChaosExperimentPipelineMutationProps, CreateChaosExperimentPipelineMutationQueryParams, CreateChaosExperimentPipelineOkResponse, CreateChaosExperimentPipelineProps, CreateChaosExperimentPipelineRequestBody, } from './hooks/useCreateChaosExperimentPipelineMutation';
|
|
10
16
|
export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
|
|
17
|
+
export type { CreateChaosHubErrorResponse, CreateChaosHubMutationPathParams, CreateChaosHubMutationProps, CreateChaosHubMutationQueryParams, CreateChaosHubOkResponse, CreateChaosHubProps, CreateChaosHubRequestBody, } from './hooks/useCreateChaosHubMutation';
|
|
18
|
+
export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
|
|
11
19
|
export type { CreateGamedayRunV2ErrorResponse, CreateGamedayRunV2MutationPathParams, CreateGamedayRunV2MutationProps, CreateGamedayRunV2MutationQueryParams, CreateGamedayRunV2OkResponse, CreateGamedayRunV2Props, } from './hooks/useCreateGamedayRunV2Mutation';
|
|
12
20
|
export { createGamedayRunV2, useCreateGamedayRunV2Mutation, } from './hooks/useCreateGamedayRunV2Mutation';
|
|
13
21
|
export type { CreateGamedayV2ErrorResponse, CreateGamedayV2MutationProps, CreateGamedayV2MutationQueryParams, CreateGamedayV2OkResponse, CreateGamedayV2Props, CreateGamedayV2RequestBody, } from './hooks/useCreateGamedayV2Mutation';
|
|
@@ -18,6 +26,8 @@ export type { CreateProbeErrorResponse, CreateProbeMutationProps, CreateProbeMut
|
|
|
18
26
|
export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
|
|
19
27
|
export type { CreateV2OnboardingErrorResponse, CreateV2OnboardingMutationProps, CreateV2OnboardingMutationQueryParams, CreateV2OnboardingOkResponse, CreateV2OnboardingProps, CreateV2OnboardingRequestBody, } from './hooks/useCreateV2OnboardingMutation';
|
|
20
28
|
export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
|
|
29
|
+
export type { DeleteActionErrorResponse, DeleteActionMutationPathParams, DeleteActionMutationProps, DeleteActionMutationQueryParams, DeleteActionOkResponse, DeleteActionProps, } from './hooks/useDeleteActionMutation';
|
|
30
|
+
export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
|
|
21
31
|
export type { DeleteChaosV2ExperimentErrorResponse, DeleteChaosV2ExperimentMutationPathParams, DeleteChaosV2ExperimentMutationProps, DeleteChaosV2ExperimentMutationQueryParams, DeleteChaosV2ExperimentOkResponse, DeleteChaosV2ExperimentProps, } from './hooks/useDeleteChaosV2ExperimentMutation';
|
|
22
32
|
export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
|
|
23
33
|
export type { DeleteGamedayV2ErrorResponse, DeleteGamedayV2MutationPathParams, DeleteGamedayV2MutationProps, DeleteGamedayV2MutationQueryParams, DeleteGamedayV2OkResponse, DeleteGamedayV2Props, } from './hooks/useDeleteGamedayV2Mutation';
|
|
@@ -32,14 +42,30 @@ export type { DeleteTargetNetworkMapErrorResponse, DeleteTargetNetworkMapMutatio
|
|
|
32
42
|
export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
|
|
33
43
|
export type { EnableProbeErrorResponse, EnableProbeMutationPathParams, EnableProbeMutationProps, EnableProbeMutationQueryParams, EnableProbeOkResponse, EnableProbeProps, EnableProbeRequestBody, } from './hooks/useEnableProbeMutation';
|
|
34
44
|
export { enableProbe, useEnableProbeMutation } from './hooks/useEnableProbeMutation';
|
|
45
|
+
export type { ExperimentExecutionNodeDetailsErrorResponse, ExperimentExecutionNodeDetailsOkResponse, ExperimentExecutionNodeDetailsProps, ExperimentExecutionNodeDetailsQueryPathParams, ExperimentExecutionNodeDetailsQueryQueryParams, } from './hooks/useExperimentExecutionNodeDetailsQuery';
|
|
46
|
+
export { experimentExecutionNodeDetails, useExperimentExecutionNodeDetailsQuery, } from './hooks/useExperimentExecutionNodeDetailsQuery';
|
|
35
47
|
export type { GetAccountServiceDetailsErrorResponse, GetAccountServiceDetailsOkResponse, GetAccountServiceDetailsProps, GetAccountServiceDetailsQueryPathParams, GetAccountServiceDetailsQueryQueryParams, } from './hooks/useGetAccountServiceDetailsQuery';
|
|
36
48
|
export { getAccountServiceDetails, useGetAccountServiceDetailsQuery, } from './hooks/useGetAccountServiceDetailsQuery';
|
|
37
49
|
export type { GetAccountServiceUsageStatsErrorResponse, GetAccountServiceUsageStatsOkResponse, GetAccountServiceUsageStatsProps, GetAccountServiceUsageStatsQueryPathParams, GetAccountServiceUsageStatsQueryQueryParams, } from './hooks/useGetAccountServiceUsageStatsQuery';
|
|
38
50
|
export { getAccountServiceUsageStats, useGetAccountServiceUsageStatsQuery, } from './hooks/useGetAccountServiceUsageStatsQuery';
|
|
51
|
+
export type { GetActionManifestErrorResponse, GetActionManifestOkResponse, GetActionManifestProps, GetActionManifestQueryPathParams, GetActionManifestQueryQueryParams, } from './hooks/useGetActionManifestQuery';
|
|
52
|
+
export { getActionManifest, useGetActionManifestQuery } from './hooks/useGetActionManifestQuery';
|
|
53
|
+
export type { GetActionErrorResponse, GetActionOkResponse, GetActionProps, GetActionQueryPathParams, GetActionQueryQueryParams, } from './hooks/useGetActionQuery';
|
|
54
|
+
export { getAction, useGetActionQuery } from './hooks/useGetActionQuery';
|
|
55
|
+
export type { GetActionTemplateErrorResponse, GetActionTemplateOkResponse, GetActionTemplateProps, GetActionTemplateQueryPathParams, GetActionTemplateQueryQueryParams, } from './hooks/useGetActionTemplateQuery';
|
|
56
|
+
export { getActionTemplate, useGetActionTemplateQuery } from './hooks/useGetActionTemplateQuery';
|
|
57
|
+
export type { GetActionTemplateRevisionDifferenceErrorResponse, GetActionTemplateRevisionDifferenceOkResponse, GetActionTemplateRevisionDifferenceProps, GetActionTemplateRevisionDifferenceQueryPathParams, GetActionTemplateRevisionDifferenceQueryQueryParams, } from './hooks/useGetActionTemplateRevisionDifferenceQuery';
|
|
58
|
+
export { getActionTemplateRevisionDifference, useGetActionTemplateRevisionDifferenceQuery, } from './hooks/useGetActionTemplateRevisionDifferenceQuery';
|
|
39
59
|
export type { GetChaosDashboardErrorResponse, GetChaosDashboardOkResponse, GetChaosDashboardProps, } from './hooks/useGetChaosDashboardQuery';
|
|
40
60
|
export { getChaosDashboard, useGetChaosDashboardQuery } from './hooks/useGetChaosDashboardQuery';
|
|
41
61
|
export type { GetChaosExperimentRunReportErrorResponse, GetChaosExperimentRunReportOkResponse, GetChaosExperimentRunReportProps, GetChaosExperimentRunReportQueryPathParams, GetChaosExperimentRunReportQueryQueryParams, } from './hooks/useGetChaosExperimentRunReportQuery';
|
|
42
62
|
export { getChaosExperimentRunReport, useGetChaosExperimentRunReportQuery, } from './hooks/useGetChaosExperimentRunReportQuery';
|
|
63
|
+
export type { GetChaosHubErrorResponse, GetChaosHubOkResponse, GetChaosHubProps, GetChaosHubQueryPathParams, GetChaosHubQueryQueryParams, } from './hooks/useGetChaosHubQuery';
|
|
64
|
+
export { getChaosHub, useGetChaosHubQuery } from './hooks/useGetChaosHubQuery';
|
|
65
|
+
export type { GetChaosPipelineExecutionErrorResponse, GetChaosPipelineExecutionOkResponse, GetChaosPipelineExecutionProps, GetChaosPipelineExecutionQueryPathParams, GetChaosPipelineExecutionQueryQueryParams, } from './hooks/useGetChaosPipelineExecutionQuery';
|
|
66
|
+
export { getChaosPipelineExecution, useGetChaosPipelineExecutionQuery, } from './hooks/useGetChaosPipelineExecutionQuery';
|
|
67
|
+
export type { GetChaosPipelineStepDetailsErrorResponse, GetChaosPipelineStepDetailsOkResponse, GetChaosPipelineStepDetailsProps, GetChaosPipelineStepDetailsQueryPathParams, GetChaosPipelineStepDetailsQueryQueryParams, } from './hooks/useGetChaosPipelineStepDetailsQuery';
|
|
68
|
+
export { getChaosPipelineStepDetails, useGetChaosPipelineStepDetailsQuery, } from './hooks/useGetChaosPipelineStepDetailsQuery';
|
|
43
69
|
export type { GetChaosV2ExperimentErrorResponse, GetChaosV2ExperimentOkResponse, GetChaosV2ExperimentProps, GetChaosV2ExperimentQueryPathParams, GetChaosV2ExperimentQueryQueryParams, } from './hooks/useGetChaosV2ExperimentQuery';
|
|
44
70
|
export { getChaosV2Experiment, useGetChaosV2ExperimentQuery, } from './hooks/useGetChaosV2ExperimentQuery';
|
|
45
71
|
export type { GetChaosV2ExperimentRunInternalApiErrorResponse, GetChaosV2ExperimentRunInternalApiMutationPathParams, GetChaosV2ExperimentRunInternalApiMutationProps, GetChaosV2ExperimentRunInternalApiMutationQueryParams, GetChaosV2ExperimentRunInternalApiOkResponse, GetChaosV2ExperimentRunInternalApiProps, GetChaosV2ExperimentRunInternalApiRequestBody, } from './hooks/useGetChaosV2ExperimentRunInternalApiMutation';
|
|
@@ -96,10 +122,20 @@ export type { GetV2InfrastructureYamlErrorResponse, GetV2InfrastructureYamlMutat
|
|
|
96
122
|
export { getV2InfrastructureYaml, useGetV2InfrastructureYamlMutation, } from './hooks/useGetV2InfrastructureYamlMutation';
|
|
97
123
|
export type { GetV2OnboardingErrorResponse, GetV2OnboardingOkResponse, GetV2OnboardingProps, GetV2OnboardingQueryPathParams, GetV2OnboardingQueryQueryParams, } from './hooks/useGetV2OnboardingQuery';
|
|
98
124
|
export { getV2Onboarding, useGetV2OnboardingQuery } from './hooks/useGetV2OnboardingQuery';
|
|
125
|
+
export type { ImportActionErrorResponse, ImportActionMutationProps, ImportActionMutationQueryParams, ImportActionOkResponse, ImportActionProps, ImportActionRequestBody, } from './hooks/useImportActionMutation';
|
|
126
|
+
export { importAction, useImportActionMutation } from './hooks/useImportActionMutation';
|
|
127
|
+
export type { ListActionTemplateErrorResponse, ListActionTemplateOkResponse, ListActionTemplateProps, ListActionTemplateQueryQueryParams, } from './hooks/useListActionTemplateQuery';
|
|
128
|
+
export { listActionTemplate, useListActionTemplateQuery } from './hooks/useListActionTemplateQuery';
|
|
129
|
+
export type { ListActionTemplateRevisionsErrorResponse, ListActionTemplateRevisionsOkResponse, ListActionTemplateRevisionsProps, ListActionTemplateRevisionsQueryPathParams, ListActionTemplateRevisionsQueryQueryParams, } from './hooks/useListActionTemplateRevisionsQuery';
|
|
130
|
+
export { listActionTemplateRevisions, useListActionTemplateRevisionsQuery, } from './hooks/useListActionTemplateRevisionsQuery';
|
|
131
|
+
export type { ListActionsErrorResponse, ListActionsOkResponse, ListActionsProps, ListActionsQueryQueryParams, } from './hooks/useListActionsQuery';
|
|
132
|
+
export { listActions, useListActionsQuery } from './hooks/useListActionsQuery';
|
|
99
133
|
export type { ListApplicationErrorResponse, ListApplicationOkResponse, ListApplicationProps, ListApplicationQueryPathParams, ListApplicationQueryQueryParams, } from './hooks/useListApplicationQuery';
|
|
100
134
|
export { listApplication, useListApplicationQuery } from './hooks/useListApplicationQuery';
|
|
101
135
|
export type { ListChaosEnabledInfraV2ErrorResponse, ListChaosEnabledInfraV2OkResponse, ListChaosEnabledInfraV2Props, ListChaosEnabledInfraV2QueryQueryParams, ListChaosEnabledInfraV2RequestBody, } from './hooks/useListChaosEnabledInfraV2Query';
|
|
102
136
|
export { listChaosEnabledInfraV2, useListChaosEnabledInfraV2Query, } from './hooks/useListChaosEnabledInfraV2Query';
|
|
137
|
+
export type { ListChaosHubErrorResponse, ListChaosHubOkResponse, ListChaosHubProps, ListChaosHubQueryQueryParams, } from './hooks/useListChaosHubQuery';
|
|
138
|
+
export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
|
|
103
139
|
export type { ListChaosV2ExperimentErrorResponse, ListChaosV2ExperimentOkResponse, ListChaosV2ExperimentProps, ListChaosV2ExperimentQueryQueryParams, } from './hooks/useListChaosV2ExperimentQuery';
|
|
104
140
|
export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
|
|
105
141
|
export type { ListExperimentsWithActiveInfrasMinimalNotificationErrorResponse, ListExperimentsWithActiveInfrasMinimalNotificationOkResponse, ListExperimentsWithActiveInfrasMinimalNotificationProps, ListExperimentsWithActiveInfrasMinimalNotificationQueryQueryParams, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
|
|
@@ -130,6 +166,8 @@ export type { ListTargetNetworkMapsErrorResponse, ListTargetNetworkMapsOkRespons
|
|
|
130
166
|
export { listTargetNetworkMaps, useListTargetNetworkMapsQuery, } from './hooks/useListTargetNetworkMapsQuery';
|
|
131
167
|
export type { ListV2OnboardingErrorResponse, ListV2OnboardingOkResponse, ListV2OnboardingProps, ListV2OnboardingQueryQueryParams, } from './hooks/useListV2OnboardingQuery';
|
|
132
168
|
export { listV2Onboarding, useListV2OnboardingQuery } from './hooks/useListV2OnboardingQuery';
|
|
169
|
+
export type { ListVariablesInActionTemplateErrorResponse, ListVariablesInActionTemplateOkResponse, ListVariablesInActionTemplateProps, ListVariablesInActionTemplateQueryPathParams, ListVariablesInActionTemplateQueryQueryParams, } from './hooks/useListVariablesInActionTemplateQuery';
|
|
170
|
+
export { listVariablesInActionTemplate, useListVariablesInActionTemplateQuery, } from './hooks/useListVariablesInActionTemplateQuery';
|
|
133
171
|
export type { ListVariablesInFaultTemplateErrorResponse, ListVariablesInFaultTemplateOkResponse, ListVariablesInFaultTemplateProps, ListVariablesInFaultTemplateQueryPathParams, ListVariablesInFaultTemplateQueryQueryParams, } from './hooks/useListVariablesInFaultTemplateQuery';
|
|
134
172
|
export { listVariablesInFaultTemplate, useListVariablesInFaultTemplateQuery, } from './hooks/useListVariablesInFaultTemplateQuery';
|
|
135
173
|
export type { OnboardingConfirmDiscoveryErrorResponse, OnboardingConfirmDiscoveryMutationPathParams, OnboardingConfirmDiscoveryMutationProps, OnboardingConfirmDiscoveryMutationQueryParams, OnboardingConfirmDiscoveryOkResponse, OnboardingConfirmDiscoveryProps, } from './hooks/useOnboardingConfirmDiscoveryMutation';
|
|
@@ -154,6 +192,14 @@ export type { StopChaosV2ExperimentErrorResponse, StopChaosV2ExperimentMutationP
|
|
|
154
192
|
export { stopChaosV2Experiment, useStopChaosV2ExperimentMutation, } from './hooks/useStopChaosV2ExperimentMutation';
|
|
155
193
|
export type { StopOnboardingExperimentsErrorResponse, StopOnboardingExperimentsMutationPathParams, StopOnboardingExperimentsMutationProps, StopOnboardingExperimentsMutationQueryParams, StopOnboardingExperimentsOkResponse, StopOnboardingExperimentsProps, } from './hooks/useStopOnboardingExperimentsMutation';
|
|
156
194
|
export { stopOnboardingExperiments, useStopOnboardingExperimentsMutation, } from './hooks/useStopOnboardingExperimentsMutation';
|
|
195
|
+
export type { UpdateActionErrorResponse, UpdateActionMutationPathParams, UpdateActionMutationProps, UpdateActionMutationQueryParams, UpdateActionOkResponse, UpdateActionProps, UpdateActionRequestBody, } from './hooks/useUpdateActionMutation';
|
|
196
|
+
export { updateAction, useUpdateActionMutation } from './hooks/useUpdateActionMutation';
|
|
197
|
+
export type { UpdateActionTemplateErrorResponse, UpdateActionTemplateMutationPathParams, UpdateActionTemplateMutationProps, UpdateActionTemplateMutationQueryParams, UpdateActionTemplateOkResponse, UpdateActionTemplateProps, UpdateActionTemplateRequestBody, } from './hooks/useUpdateActionTemplateMutation';
|
|
198
|
+
export { updateActionTemplate, useUpdateActionTemplateMutation, } from './hooks/useUpdateActionTemplateMutation';
|
|
199
|
+
export type { UpdateChaosExperimentExecutionNodeErrorResponse, UpdateChaosExperimentExecutionNodeMutationPathParams, UpdateChaosExperimentExecutionNodeMutationProps, UpdateChaosExperimentExecutionNodeMutationQueryParams, UpdateChaosExperimentExecutionNodeOkResponse, UpdateChaosExperimentExecutionNodeProps, UpdateChaosExperimentExecutionNodeRequestBody, } from './hooks/useUpdateChaosExperimentExecutionNodeMutation';
|
|
200
|
+
export { updateChaosExperimentExecutionNode, useUpdateChaosExperimentExecutionNodeMutation, } from './hooks/useUpdateChaosExperimentExecutionNodeMutation';
|
|
201
|
+
export type { UpdateChaosHubErrorResponse, UpdateChaosHubMutationPathParams, UpdateChaosHubMutationProps, UpdateChaosHubMutationQueryParams, UpdateChaosHubOkResponse, UpdateChaosHubProps, UpdateChaosHubRequestBody, } from './hooks/useUpdateChaosHubMutation';
|
|
202
|
+
export { updateChaosHub, useUpdateChaosHubMutation } from './hooks/useUpdateChaosHubMutation';
|
|
157
203
|
export type { UpdateChaosV2CronExperimentErrorResponse, UpdateChaosV2CronExperimentMutationProps, UpdateChaosV2CronExperimentMutationQueryParams, UpdateChaosV2CronExperimentOkResponse, UpdateChaosV2CronExperimentProps, UpdateChaosV2CronExperimentRequestBody, } from './hooks/useUpdateChaosV2CronExperimentMutation';
|
|
158
204
|
export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
|
|
159
205
|
export type { UpdateEmissaryErrorResponse, UpdateEmissaryMutationPathParams, UpdateEmissaryMutationProps, UpdateEmissaryMutationQueryParams, UpdateEmissaryOkResponse, UpdateEmissaryProps, UpdateEmissaryRequestBody, } from './hooks/useUpdateEmissaryMutation';
|
|
@@ -174,8 +220,18 @@ export type { UpdateNoteErrorResponse, UpdateNoteMutationProps, UpdateNoteMutati
|
|
|
174
220
|
export { updateNote, useUpdateNoteMutation } from './hooks/useUpdateNoteMutation';
|
|
175
221
|
export type { UpdateProbeErrorResponse, UpdateProbeMutationPathParams, UpdateProbeMutationProps, UpdateProbeMutationQueryParams, UpdateProbeOkResponse, UpdateProbeProps, UpdateProbeRequestBody, } from './hooks/useUpdateProbeMutation';
|
|
176
222
|
export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
|
|
223
|
+
export type { ChaosfaulttemplateActionTemplateRequestBody } from './requestBodies/ChaosfaulttemplateActionTemplateRequestBody';
|
|
177
224
|
export type { InfraV2ListKubernetesInfraV2RequestRequestBody } from './requestBodies/InfraV2ListKubernetesInfraV2RequestRequestBody';
|
|
178
225
|
export type { TypesProbeRequestRequestBody } from './requestBodies/TypesProbeRequestRequestBody';
|
|
226
|
+
export type { ActionsActionDetails } from './schemas/ActionsActionDetails';
|
|
227
|
+
export type { ActionsActionResponse } from './schemas/ActionsActionResponse';
|
|
228
|
+
export type { ActionsActionRunProperties } from './schemas/ActionsActionRunProperties';
|
|
229
|
+
export type { ActionsActionType } from './schemas/ActionsActionType';
|
|
230
|
+
export type { ActionsExecutedByExperiment } from './schemas/ActionsExecutedByExperiment';
|
|
231
|
+
export type { ActionsImportActionTemplateRequest } from './schemas/ActionsImportActionTemplateRequest';
|
|
232
|
+
export type { ActionsInfrastructureType } from './schemas/ActionsInfrastructureType';
|
|
233
|
+
export type { ActionsListActionTemplateResponse } from './schemas/ActionsListActionTemplateResponse';
|
|
234
|
+
export type { ActionsRecentExecutions } from './schemas/ActionsRecentExecutions';
|
|
179
235
|
export type { ApiGetHarnessInfrastructureResponse } from './schemas/ApiGetHarnessInfrastructureResponse';
|
|
180
236
|
export type { ApiHarnessInfrastructure } from './schemas/ApiHarnessInfrastructure';
|
|
181
237
|
export type { ApiListHarnessInfrastructureResponse } from './schemas/ApiListHarnessInfrastructureResponse';
|
|
@@ -195,7 +251,6 @@ export type { ChaosExecutionNodesChaosStepType } from './schemas/ChaosExecutionN
|
|
|
195
251
|
export type { ChaosExecutionNodesCommandProbe } from './schemas/ChaosExecutionNodesCommandProbe';
|
|
196
252
|
export type { ChaosExecutionNodesErrorData } from './schemas/ChaosExecutionNodesErrorData';
|
|
197
253
|
export type { ChaosExecutionNodesFaultData } from './schemas/ChaosExecutionNodesFaultData';
|
|
198
|
-
export type { ChaosExecutionNodesFaultDetails } from './schemas/ChaosExecutionNodesFaultDetails';
|
|
199
254
|
export type { ChaosExecutionNodesHelperPodDetails } from './schemas/ChaosExecutionNodesHelperPodDetails';
|
|
200
255
|
export type { ChaosExecutionNodesHttpProbe } from './schemas/ChaosExecutionNodesHttpProbe';
|
|
201
256
|
export type { ChaosExecutionNodesProbeData } from './schemas/ChaosExecutionNodesProbeData';
|
|
@@ -217,14 +272,29 @@ export type { ChaosExperimentRunSecurityGovernanceNodeData } from './schemas/Cha
|
|
|
217
272
|
export type { ChaosExperimentSingleClickOnboardMetadata } from './schemas/ChaosExperimentSingleClickOnboardMetadata';
|
|
218
273
|
export type { ChaosExperimentWeightagesInput } from './schemas/ChaosExperimentWeightagesInput';
|
|
219
274
|
export type { ChaosExperimentWorkflowRevision } from './schemas/ChaosExperimentWorkflowRevision';
|
|
275
|
+
export type { ChaosHubAuthType } from './schemas/ChaosHubAuthType';
|
|
276
|
+
export type { ChaosHubConnectorScope } from './schemas/ChaosHubConnectorScope';
|
|
277
|
+
export type { ChaosHubStatus } from './schemas/ChaosHubStatus';
|
|
220
278
|
export type { ChaosInfrastructureV2ChaosInfraV2 } from './schemas/ChaosInfrastructureV2ChaosInfraV2';
|
|
221
279
|
export type { ChaosInfrastructureV2ChaosInfraV2Spec } from './schemas/ChaosInfrastructureV2ChaosInfraV2Spec';
|
|
222
280
|
export type { ChaosInfrastructureV2InfraScope } from './schemas/ChaosInfrastructureV2InfraScope';
|
|
223
281
|
export type { ChaosInfrastructureV2InfraType } from './schemas/ChaosInfrastructureV2InfraType';
|
|
224
282
|
export type { ChaosInfrastructureV2K8sInfraV2SpecIdentifiers } from './schemas/ChaosInfrastructureV2K8sInfraV2SpecIdentifiers';
|
|
283
|
+
export type { ChaosactiontemplateActionProperties } from './schemas/ChaosactiontemplateActionProperties';
|
|
284
|
+
export type { ChaosactiontemplateActionsTemplateCount } from './schemas/ChaosactiontemplateActionsTemplateCount';
|
|
285
|
+
export type { ChaosactiontemplateChaosActionTemplate } from './schemas/ChaosactiontemplateChaosActionTemplate';
|
|
286
|
+
export type { ChaosfaulttemplateActionTemplate } from './schemas/ChaosfaulttemplateActionTemplate';
|
|
287
|
+
export type { ChaosfaulttemplateActionTemplateVariables } from './schemas/ChaosfaulttemplateActionTemplateVariables';
|
|
225
288
|
export type { ChaosfaulttemplateFaultTemplateVariables } from './schemas/ChaosfaulttemplateFaultTemplateVariables';
|
|
289
|
+
export type { ChaosfaulttemplateGetActionTemplateResponse } from './schemas/ChaosfaulttemplateGetActionTemplateResponse';
|
|
226
290
|
export type { ChaosfaulttemplateGetFaultTemplateResponse } from './schemas/ChaosfaulttemplateGetFaultTemplateResponse';
|
|
291
|
+
export type { ChaosfaulttemplateListActionTemplateResponse } from './schemas/ChaosfaulttemplateListActionTemplateResponse';
|
|
227
292
|
export type { ChaosfaulttemplateListFaultTemplateResponse } from './schemas/ChaosfaulttemplateListFaultTemplateResponse';
|
|
293
|
+
export type { Chaoshubv2ChaosHubResponse } from './schemas/Chaoshubv2ChaosHubResponse';
|
|
294
|
+
export type { Chaoshubv2CreateHubRequest } from './schemas/Chaoshubv2CreateHubRequest';
|
|
295
|
+
export type { Chaoshubv2GetHubResponse } from './schemas/Chaoshubv2GetHubResponse';
|
|
296
|
+
export type { Chaoshubv2ListHubResponse } from './schemas/Chaoshubv2ListHubResponse';
|
|
297
|
+
export type { Chaoshubv2UpdateHubRequest } from './schemas/Chaoshubv2UpdateHubRequest';
|
|
228
298
|
export type { ChaosresourcenotesNoteType } from './schemas/ChaosresourcenotesNoteType';
|
|
229
299
|
export type { ChaosserviceusageInfrastructureType } from './schemas/ChaosserviceusageInfrastructureType';
|
|
230
300
|
export type { ChaosserviceusageOverallServiceUsageStats } from './schemas/ChaosserviceusageOverallServiceUsageStats';
|
|
@@ -268,9 +338,12 @@ export type { GithubComHarnessHceSaasGraphqlServerGraphModelIdentifiers } from '
|
|
|
268
338
|
export type { GithubComHarnessHceSaasGraphqlServerGraphModelInfraFilterInput } from './schemas/GithubComHarnessHceSaasGraphqlServerGraphModelInfraFilterInput';
|
|
269
339
|
export type { GithubComHarnessHceSaasGraphqlServerGraphModelPagination } from './schemas/GithubComHarnessHceSaasGraphqlServerGraphModelPagination';
|
|
270
340
|
export type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from './schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
|
|
341
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgActionsAction } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgActionsAction';
|
|
271
342
|
export type { GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesProbeVerdict } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesProbeVerdict';
|
|
272
343
|
export type { GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesTlsConfig } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesTlsConfig';
|
|
344
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction';
|
|
273
345
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosfaulttemplateChaosFaultTemplate } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosfaulttemplateChaosFaultTemplate';
|
|
346
|
+
export type { GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData } from './schemas/GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData';
|
|
274
347
|
export type { GithubComHarnessHceSaasHceSdkCommonProbeV1Probe } from './schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe';
|
|
275
348
|
export type { GithubComHarnessHceSaasHceSdkTypesApiK8sifsImageRegistryScopedIdentifiers } from './schemas/GithubComHarnessHceSaasHceSdkTypesApiK8sifsImageRegistryScopedIdentifiers';
|
|
276
349
|
export type { GithubComWingsSoftwareDdcrPkgTypesChaosInputs } from './schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs';
|
|
@@ -328,9 +401,18 @@ export type { K8sIoApimachineryPkgApisMetaV1ConditionStatus } from './schemas/K8
|
|
|
328
401
|
export type { K8sinfraGetInfraTokenResponse } from './schemas/K8sinfraGetInfraTokenResponse';
|
|
329
402
|
export type { K8sinfraUpdateEmissaryUrlRequest } from './schemas/K8sinfraUpdateEmissaryUrlRequest';
|
|
330
403
|
export type { K8sinfraUpdateEmissaryUrlResponse } from './schemas/K8sinfraUpdateEmissaryUrlResponse';
|
|
404
|
+
export type { ModelActionData } from './schemas/ModelActionData';
|
|
405
|
+
export type { ModelChaosExecutionNode } from './schemas/ModelChaosExecutionNode';
|
|
406
|
+
export type { ModelChaosStepStatus } from './schemas/ModelChaosStepStatus';
|
|
407
|
+
export type { ModelChaosStepType } from './schemas/ModelChaosStepType';
|
|
331
408
|
export type { ModelClusterType } from './schemas/ModelClusterType';
|
|
409
|
+
export type { ModelCommandProbe } from './schemas/ModelCommandProbe';
|
|
332
410
|
export type { ModelConditionDetails } from './schemas/ModelConditionDetails';
|
|
411
|
+
export type { ModelErrorData } from './schemas/ModelErrorData';
|
|
333
412
|
export type { ModelEventMetadata } from './schemas/ModelEventMetadata';
|
|
413
|
+
export type { ModelFaultData } from './schemas/ModelFaultData';
|
|
414
|
+
export type { ModelHelperPodDetails } from './schemas/ModelHelperPodDetails';
|
|
415
|
+
export type { ModelHttpProbe } from './schemas/ModelHttpProbe';
|
|
334
416
|
export type { ModelInfraScope } from './schemas/ModelInfraScope';
|
|
335
417
|
export type { ModelInfrastructure } from './schemas/ModelInfrastructure';
|
|
336
418
|
export type { ModelInfrastructureType } from './schemas/ModelInfrastructureType';
|
|
@@ -338,7 +420,10 @@ export type { ModelInstallationType } from './schemas/ModelInstallationType';
|
|
|
338
420
|
export type { ModelKubernetesInfra } from './schemas/ModelKubernetesInfra';
|
|
339
421
|
export type { ModelListInfraRequest } from './schemas/ModelListInfraRequest';
|
|
340
422
|
export type { ModelListInfraResponse } from './schemas/ModelListInfraResponse';
|
|
423
|
+
export type { ModelProbeData } from './schemas/ModelProbeData';
|
|
424
|
+
export type { ModelProbeIterations } from './schemas/ModelProbeIterations';
|
|
341
425
|
export type { ModelProbeMap } from './schemas/ModelProbeMap';
|
|
426
|
+
export type { ModelPromProbe } from './schemas/ModelPromProbe';
|
|
342
427
|
export type { ModelReRunChaosWorkflowResponse } from './schemas/ModelReRunChaosWorkflowResponse';
|
|
343
428
|
export type { ModelRecentWorkflowRun } from './schemas/ModelRecentWorkflowRun';
|
|
344
429
|
export type { ModelRecurrence } from './schemas/ModelRecurrence';
|
|
@@ -422,9 +507,7 @@ export type { TemplateVariableCategory } from './schemas/TemplateVariableCategor
|
|
|
422
507
|
export type { TemplateVariableMinimum } from './schemas/TemplateVariableMinimum';
|
|
423
508
|
export type { TemplateVariableType } from './schemas/TemplateVariableType';
|
|
424
509
|
export type { TypesActionItem } from './schemas/TypesActionItem';
|
|
425
|
-
export type { TypesApplication } from './schemas/TypesApplication';
|
|
426
510
|
export type { TypesAuthorization } from './schemas/TypesAuthorization';
|
|
427
|
-
export type { TypesCleanupPolicy } from './schemas/TypesCleanupPolicy';
|
|
428
511
|
export type { TypesCmdProbe } from './schemas/TypesCmdProbe';
|
|
429
512
|
export type { TypesConfigMap } from './schemas/TypesConfigMap';
|
|
430
513
|
export type { TypesCreateGamedayRequest } from './schemas/TypesCreateGamedayRequest';
|
|
@@ -445,6 +528,8 @@ export type { TypesExperimentRequest } from './schemas/TypesExperimentRequest';
|
|
|
445
528
|
export type { TypesExperimentRunRequest } from './schemas/TypesExperimentRunRequest';
|
|
446
529
|
export type { TypesExperimentRuns } from './schemas/TypesExperimentRuns';
|
|
447
530
|
export type { TypesExperimentV2 } from './schemas/TypesExperimentV2';
|
|
531
|
+
export type { TypesFault } from './schemas/TypesFault';
|
|
532
|
+
export type { TypesFaultRef } from './schemas/TypesFaultRef';
|
|
448
533
|
export type { TypesGamedayInfraDetails } from './schemas/TypesGamedayInfraDetails';
|
|
449
534
|
export type { TypesGamedayV2 } from './schemas/TypesGamedayV2';
|
|
450
535
|
export type { TypesGet } from './schemas/TypesGet';
|
|
@@ -638,6 +723,8 @@ export type { V1alpha1ObjectFieldSelector } from './schemas/V1alpha1ObjectFieldS
|
|
|
638
723
|
export type { V1alpha1SecretKeySelector } from './schemas/V1alpha1SecretKeySelector';
|
|
639
724
|
export type { V1alpha1SecretVolumeSource } from './schemas/V1alpha1SecretVolumeSource';
|
|
640
725
|
export type { V1alpha1SourceDetails } from './schemas/V1alpha1SourceDetails';
|
|
726
|
+
export type { V1alpha1TargetDetails } from './schemas/V1alpha1TargetDetails';
|
|
727
|
+
export type { V1alpha1Targets } from './schemas/V1alpha1Targets';
|
|
641
728
|
export type { V1alpha1Volume } from './schemas/V1alpha1Volume';
|
|
642
729
|
export type { V2OnboardingAgentData } from './schemas/V2OnboardingAgentData';
|
|
643
730
|
export type { V2OnboardingAgentDetails } from './schemas/V2OnboardingAgentDetails';
|
|
@@ -2,12 +2,17 @@ export { addNote, useAddNoteMutation } from './hooks/useAddNoteMutation';
|
|
|
2
2
|
export { bulkExperimentDelete, useBulkExperimentDeleteMutation, } from './hooks/useBulkExperimentDeleteMutation';
|
|
3
3
|
export { bulkExperimentTagAdd, useBulkExperimentTagAddMutation, } from './hooks/useBulkExperimentTagAddMutation';
|
|
4
4
|
export { canRetryExperimentCreation, useCanRetryExperimentCreationQuery, } from './hooks/useCanRetryExperimentCreationQuery';
|
|
5
|
+
export { createAction, useCreateActionMutation } from './hooks/useCreateActionMutation';
|
|
6
|
+
export { createActionTemplate, useCreateActionTemplateMutation, } from './hooks/useCreateActionTemplateMutation';
|
|
7
|
+
export { createChaosExperimentExecutionNode, useCreateChaosExperimentExecutionNodeMutation, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
|
|
5
8
|
export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
|
|
9
|
+
export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
|
|
6
10
|
export { createGamedayRunV2, useCreateGamedayRunV2Mutation, } from './hooks/useCreateGamedayRunV2Mutation';
|
|
7
11
|
export { createGamedayV2, useCreateGamedayV2Mutation } from './hooks/useCreateGamedayV2Mutation';
|
|
8
12
|
export { createInputSet, useCreateInputSetMutation } from './hooks/useCreateInputSetMutation';
|
|
9
13
|
export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
|
|
10
14
|
export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
|
|
15
|
+
export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
|
|
11
16
|
export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
|
|
12
17
|
export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
|
|
13
18
|
export { deleteInfraV2, useDeleteInfraV2Mutation } from './hooks/useDeleteInfraV2Mutation';
|
|
@@ -15,10 +20,18 @@ export { deleteInputSet, useDeleteInputSetMutation } from './hooks/useDeleteInpu
|
|
|
15
20
|
export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
|
|
16
21
|
export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
|
|
17
22
|
export { enableProbe, useEnableProbeMutation } from './hooks/useEnableProbeMutation';
|
|
23
|
+
export { experimentExecutionNodeDetails, useExperimentExecutionNodeDetailsQuery, } from './hooks/useExperimentExecutionNodeDetailsQuery';
|
|
18
24
|
export { getAccountServiceDetails, useGetAccountServiceDetailsQuery, } from './hooks/useGetAccountServiceDetailsQuery';
|
|
19
25
|
export { getAccountServiceUsageStats, useGetAccountServiceUsageStatsQuery, } from './hooks/useGetAccountServiceUsageStatsQuery';
|
|
26
|
+
export { getActionManifest, useGetActionManifestQuery } from './hooks/useGetActionManifestQuery';
|
|
27
|
+
export { getAction, useGetActionQuery } from './hooks/useGetActionQuery';
|
|
28
|
+
export { getActionTemplate, useGetActionTemplateQuery } from './hooks/useGetActionTemplateQuery';
|
|
29
|
+
export { getActionTemplateRevisionDifference, useGetActionTemplateRevisionDifferenceQuery, } from './hooks/useGetActionTemplateRevisionDifferenceQuery';
|
|
20
30
|
export { getChaosDashboard, useGetChaosDashboardQuery } from './hooks/useGetChaosDashboardQuery';
|
|
21
31
|
export { getChaosExperimentRunReport, useGetChaosExperimentRunReportQuery, } from './hooks/useGetChaosExperimentRunReportQuery';
|
|
32
|
+
export { getChaosHub, useGetChaosHubQuery } from './hooks/useGetChaosHubQuery';
|
|
33
|
+
export { getChaosPipelineExecution, useGetChaosPipelineExecutionQuery, } from './hooks/useGetChaosPipelineExecutionQuery';
|
|
34
|
+
export { getChaosPipelineStepDetails, useGetChaosPipelineStepDetailsQuery, } from './hooks/useGetChaosPipelineStepDetailsQuery';
|
|
22
35
|
export { getChaosV2Experiment, useGetChaosV2ExperimentQuery, } from './hooks/useGetChaosV2ExperimentQuery';
|
|
23
36
|
export { getChaosV2ExperimentRunInternalApi, useGetChaosV2ExperimentRunInternalApiMutation, } from './hooks/useGetChaosV2ExperimentRunInternalApiMutation';
|
|
24
37
|
export { getChaosV2ExperimentRun, useGetChaosV2ExperimentRunQuery, } from './hooks/useGetChaosV2ExperimentRunQuery';
|
|
@@ -47,8 +60,13 @@ export { getSgpTemplateByGenAi, useGetSgpTemplateByGenAiMutation, } from './hook
|
|
|
47
60
|
export { getTargetNetworkMap, useGetTargetNetworkMapQuery, } from './hooks/useGetTargetNetworkMapQuery';
|
|
48
61
|
export { getV2InfrastructureYaml, useGetV2InfrastructureYamlMutation, } from './hooks/useGetV2InfrastructureYamlMutation';
|
|
49
62
|
export { getV2Onboarding, useGetV2OnboardingQuery } from './hooks/useGetV2OnboardingQuery';
|
|
63
|
+
export { importAction, useImportActionMutation } from './hooks/useImportActionMutation';
|
|
64
|
+
export { listActionTemplate, useListActionTemplateQuery } from './hooks/useListActionTemplateQuery';
|
|
65
|
+
export { listActionTemplateRevisions, useListActionTemplateRevisionsQuery, } from './hooks/useListActionTemplateRevisionsQuery';
|
|
66
|
+
export { listActions, useListActionsQuery } from './hooks/useListActionsQuery';
|
|
50
67
|
export { listApplication, useListApplicationQuery } from './hooks/useListApplicationQuery';
|
|
51
68
|
export { listChaosEnabledInfraV2, useListChaosEnabledInfraV2Query, } from './hooks/useListChaosEnabledInfraV2Query';
|
|
69
|
+
export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
|
|
52
70
|
export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
|
|
53
71
|
export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
|
|
54
72
|
export { listFaultTemplate, useListFaultTemplateQuery } from './hooks/useListFaultTemplateQuery';
|
|
@@ -64,6 +82,7 @@ export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
|
|
|
64
82
|
export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
|
|
65
83
|
export { listTargetNetworkMaps, useListTargetNetworkMapsQuery, } from './hooks/useListTargetNetworkMapsQuery';
|
|
66
84
|
export { listV2Onboarding, useListV2OnboardingQuery } from './hooks/useListV2OnboardingQuery';
|
|
85
|
+
export { listVariablesInActionTemplate, useListVariablesInActionTemplateQuery, } from './hooks/useListVariablesInActionTemplateQuery';
|
|
67
86
|
export { listVariablesInFaultTemplate, useListVariablesInFaultTemplateQuery, } from './hooks/useListVariablesInFaultTemplateQuery';
|
|
68
87
|
export { onboardingConfirmDiscovery, useOnboardingConfirmDiscoveryMutation, } from './hooks/useOnboardingConfirmDiscoveryMutation';
|
|
69
88
|
export { onboardingConfirmExperimentCreation, useOnboardingConfirmExperimentCreationMutation, } from './hooks/useOnboardingConfirmExperimentCreationMutation';
|
|
@@ -76,6 +95,10 @@ export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hook
|
|
|
76
95
|
export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
|
|
77
96
|
export { stopChaosV2Experiment, useStopChaosV2ExperimentMutation, } from './hooks/useStopChaosV2ExperimentMutation';
|
|
78
97
|
export { stopOnboardingExperiments, useStopOnboardingExperimentsMutation, } from './hooks/useStopOnboardingExperimentsMutation';
|
|
98
|
+
export { updateAction, useUpdateActionMutation } from './hooks/useUpdateActionMutation';
|
|
99
|
+
export { updateActionTemplate, useUpdateActionTemplateMutation, } from './hooks/useUpdateActionTemplateMutation';
|
|
100
|
+
export { updateChaosExperimentExecutionNode, useUpdateChaosExperimentExecutionNodeMutation, } from './hooks/useUpdateChaosExperimentExecutionNodeMutation';
|
|
101
|
+
export { updateChaosHub, useUpdateChaosHubMutation } from './hooks/useUpdateChaosHubMutation';
|
|
79
102
|
export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
|
|
80
103
|
export { updateEmissary, useUpdateEmissaryMutation } from './hooks/useUpdateEmissaryMutation';
|
|
81
104
|
export { updateGamedayRunPrerequisitesV2, useUpdateGamedayRunPrerequisitesV2Mutation, } from './hooks/useUpdateGamedayRunPrerequisitesV2Mutation';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ActionsActionDetails } from '../schemas/ActionsActionDetails';
|
|
2
|
+
import type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from '../schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
|
|
3
|
+
import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructureType';
|
|
4
|
+
import type { ActionsRecentExecutions } from '../schemas/ActionsRecentExecutions';
|
|
5
|
+
import type { ActionsActionRunProperties } from '../schemas/ActionsActionRunProperties';
|
|
6
|
+
import type { ActionsActionType } from '../schemas/ActionsActionType';
|
|
7
|
+
import type { TemplateVariable } from '../schemas/TemplateVariable';
|
|
8
|
+
export interface ActionsActionResponse {
|
|
9
|
+
accountID: string;
|
|
10
|
+
actionProperties?: ActionsActionDetails;
|
|
11
|
+
actionsRef?: string;
|
|
12
|
+
createdAt?: number;
|
|
13
|
+
createdBy?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
|
|
14
|
+
description?: string;
|
|
15
|
+
hubRef?: string;
|
|
16
|
+
identity?: string;
|
|
17
|
+
infrastructureType?: ActionsInfrastructureType;
|
|
18
|
+
isRemoved?: boolean;
|
|
19
|
+
name: string;
|
|
20
|
+
orgID?: string;
|
|
21
|
+
projectID?: string;
|
|
22
|
+
recentExecutions?: ActionsRecentExecutions[];
|
|
23
|
+
runProperties?: ActionsActionRunProperties;
|
|
24
|
+
tags?: string[];
|
|
25
|
+
type?: ActionsActionType;
|
|
26
|
+
updatedAt?: number;
|
|
27
|
+
updatedBy?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
|
|
28
|
+
variables?: TemplateVariable[];
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ActionsActionType = 'customScript' | 'delay';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from '../schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
|
|
2
|
+
export interface ActionsExecutedByExperiment {
|
|
3
|
+
experimentID?: string;
|
|
4
|
+
experimentName?: string;
|
|
5
|
+
experimentRunID?: string;
|
|
6
|
+
notifyID?: string;
|
|
7
|
+
updatedAt?: number;
|
|
8
|
+
updatedBy?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ActionsInfrastructureType = 'CloudFoundry' | 'Container' | 'Kubernetes' | 'Linux' | 'Windows';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ActionsActionResponse } from '../schemas/ActionsActionResponse';
|
|
2
|
+
import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
|
|
3
|
+
export interface ActionsListActionTemplateResponse {
|
|
4
|
+
data?: ActionsActionResponse[];
|
|
5
|
+
pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,7 +3,7 @@ import type { ChaosExecutionNodesErrorData } from '../schemas/ChaosExecutionNode
|
|
|
3
3
|
import type { ChaosExecutionNodesChaosStepStatus } from '../schemas/ChaosExecutionNodesChaosStepStatus';
|
|
4
4
|
import type { ChaosExecutionNodesChaosStepType } from '../schemas/ChaosExecutionNodesChaosStepType';
|
|
5
5
|
export interface ChaosExecutionNodesChaosExecutionNode {
|
|
6
|
-
accountID
|
|
6
|
+
accountID: string;
|
|
7
7
|
chaosData?: ChaosExecutionNodesChaosData;
|
|
8
8
|
duration?: number;
|
|
9
9
|
errorData?: ChaosExecutionNodesErrorData;
|
package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesChaosExecutionResponse.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { ChaosExecutionNodesChaosExecutionNode } from '../schemas/ChaosExec
|
|
|
2
2
|
import type { ChaosExecutionNodesChaosStepStatus } from '../schemas/ChaosExecutionNodesChaosStepStatus';
|
|
3
3
|
import type { ChaosExecutionNodesChaosStepType } from '../schemas/ChaosExecutionNodesChaosStepType';
|
|
4
4
|
export interface ChaosExecutionNodesChaosExecutionResponse {
|
|
5
|
-
accountID
|
|
5
|
+
accountID: string;
|
|
6
6
|
duration?: number;
|
|
7
7
|
estimatedTime?: number;
|
|
8
8
|
experimentID?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ChaosExecutionNodesChaosStepStatus = 'COMPLETED' | 'FAILED' | 'PENDING' | 'RUNNING' | '
|
|
1
|
+
export type ChaosExecutionNodesChaosStepStatus = 'COMPLETED' | 'FAILED' | 'PENDING' | 'RUNNING' | 'STOPPED';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { TypesFault } from '../schemas/TypesFault';
|
|
2
2
|
import type { ChaosExecutionNodesHelperPodDetails } from '../schemas/ChaosExecutionNodesHelperPodDetails';
|
|
3
3
|
export interface ChaosExecutionNodesFaultData {
|
|
4
|
-
faultDetails?:
|
|
4
|
+
faultDetails?: TypesFault;
|
|
5
5
|
helperPodDetails?: ChaosExecutionNodesHelperPodDetails[];
|
|
6
6
|
name?: string;
|
|
7
7
|
namespace?: string;
|
|
@@ -4,7 +4,7 @@ import type { ChaosExperimentRecommendation } from '../schemas/ChaosExperimentRe
|
|
|
4
4
|
import type { ChaosExperimentWorkflowRevision } from '../schemas/ChaosExperimentWorkflowRevision';
|
|
5
5
|
import type { ChaosExperimentSingleClickOnboardMetadata } from '../schemas/ChaosExperimentSingleClickOnboardMetadata';
|
|
6
6
|
export interface ChaosExperimentChaosExperimentRequest {
|
|
7
|
-
accountID
|
|
7
|
+
accountID: string;
|
|
8
8
|
createdAt?: number;
|
|
9
9
|
createdBy?: string;
|
|
10
10
|
cronSyntax?: string;
|
|
@@ -19,10 +19,10 @@ export interface ChaosExperimentChaosExperimentRequest {
|
|
|
19
19
|
infraType?: string;
|
|
20
20
|
isCronEnabled?: boolean;
|
|
21
21
|
isCustomExperiment?: boolean;
|
|
22
|
-
isRemoved
|
|
22
|
+
isRemoved: boolean;
|
|
23
23
|
isSingleRunCronEnabled?: boolean;
|
|
24
24
|
lastExecutedAt?: number;
|
|
25
|
-
name
|
|
25
|
+
name: string;
|
|
26
26
|
orgID?: string;
|
|
27
27
|
projectID?: string;
|
|
28
28
|
/**
|
|
@@ -5,7 +5,7 @@ export interface ChaosExperimentExperimentRunDetail {
|
|
|
5
5
|
createdBy?: string;
|
|
6
6
|
experimentRunID?: string;
|
|
7
7
|
faultsWithProbes?: ChaosExperimentRunFaults[];
|
|
8
|
-
isRemoved
|
|
8
|
+
isRemoved: boolean;
|
|
9
9
|
notifyID?: string;
|
|
10
10
|
phase?: string;
|
|
11
11
|
resiliencyScore?: number;
|
|
@@ -3,7 +3,7 @@ import type { ChaosExperimentRunFaults } from '../schemas/ChaosExperimentRunFaul
|
|
|
3
3
|
import type { ChaosExperimentRunSecurityGovernanceNode } from '../schemas/ChaosExperimentRunSecurityGovernanceNode';
|
|
4
4
|
import type { TargetserviceServiceMetadata } from '../schemas/TargetserviceServiceMetadata';
|
|
5
5
|
export interface ChaosExperimentRunChaosExperimentRun {
|
|
6
|
-
accountID
|
|
6
|
+
accountID: string;
|
|
7
7
|
completed?: boolean;
|
|
8
8
|
createdAt?: number;
|
|
9
9
|
createdBy?: string;
|
|
@@ -21,7 +21,7 @@ export interface ChaosExperimentRunChaosExperimentRun {
|
|
|
21
21
|
faultsStopped?: number;
|
|
22
22
|
faultsWithProbes?: ChaosExperimentRunFaults[];
|
|
23
23
|
infraID?: string;
|
|
24
|
-
isRemoved
|
|
24
|
+
isRemoved: boolean;
|
|
25
25
|
networkMapID?: string;
|
|
26
26
|
notifyID?: string;
|
|
27
27
|
orgID?: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ChaosHubAuthType = 'Ssh' | 'UsernameToken';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ChaosHubConnectorScope = 'ACCOUNT' | 'ORGANISATION' | 'PROJECT';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ChaosHubStatus = 'Active' | 'Errored' | 'Pending' | 'Updating';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ChaosInfrastructureV2ChaosInfraV2Spec } from '../schemas/ChaosInfrastructureV2ChaosInfraV2Spec';
|
|
2
2
|
export interface ChaosInfrastructureV2ChaosInfraV2 {
|
|
3
|
-
accountID
|
|
3
|
+
accountID: string;
|
|
4
4
|
apiVersion?: string;
|
|
5
5
|
createdAt?: number;
|
|
6
6
|
createdBy?: string;
|
|
@@ -8,9 +8,9 @@ export interface ChaosInfrastructureV2ChaosInfraV2 {
|
|
|
8
8
|
environmentId?: string;
|
|
9
9
|
id?: string;
|
|
10
10
|
identity?: string;
|
|
11
|
-
isRemoved
|
|
11
|
+
isRemoved: boolean;
|
|
12
12
|
kind?: string;
|
|
13
|
-
name
|
|
13
|
+
name: string;
|
|
14
14
|
orgID?: string;
|
|
15
15
|
projectID?: string;
|
|
16
16
|
spec?: ChaosInfrastructureV2ChaosInfraV2Spec;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|