@harnessio/react-chaos-manager-client 1.21.1 → 1.23.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 (137) hide show
  1. package/dist/chaos-manager/src/services/hooks/useCompareExperimentTemplateRevisionsQuery.d.ts +31 -0
  2. package/dist/chaos-manager/src/services/hooks/useCompareExperimentTemplateRevisionsQuery.js +14 -0
  3. package/dist/chaos-manager/src/services/hooks/useCreateExperimentFromTemplateMutation.d.ts +34 -0
  4. package/dist/chaos-manager/src/services/hooks/useCreateExperimentFromTemplateMutation.js +14 -0
  5. package/dist/chaos-manager/src/services/hooks/useCreateExperimentTemplateMutation.d.ts +30 -0
  6. package/dist/chaos-manager/src/services/hooks/useCreateExperimentTemplateMutation.js +14 -0
  7. package/dist/chaos-manager/src/services/hooks/useDeleteExperimentTemplateMutation.d.ts +30 -0
  8. package/dist/chaos-manager/src/services/hooks/useDeleteExperimentTemplateMutation.js +14 -0
  9. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateQuery.d.ts +30 -0
  10. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateQuery.js +14 -0
  11. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateRevisionsQuery.d.ts +43 -0
  12. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateRevisionsQuery.js +14 -0
  13. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateVariablesQuery.d.ts +30 -0
  14. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateVariablesQuery.js +14 -0
  15. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateYamlQuery.d.ts +30 -0
  16. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateYamlQuery.js +14 -0
  17. package/dist/chaos-manager/src/services/hooks/useListExperimentTemplateQuery.d.ts +40 -0
  18. package/dist/chaos-manager/src/services/hooks/useListExperimentTemplateQuery.js +14 -0
  19. package/dist/chaos-manager/src/services/hooks/useUpdateExperimentTemplateMutation.d.ts +33 -0
  20. package/dist/chaos-manager/src/services/hooks/useUpdateExperimentTemplateMutation.js +14 -0
  21. package/dist/chaos-manager/src/services/index.d.ts +59 -2
  22. package/dist/chaos-manager/src/services/index.js +10 -0
  23. package/dist/chaos-manager/src/services/schemas/ActionsIdentifiers.d.ts +5 -0
  24. package/dist/chaos-manager/src/services/schemas/ActionsImportActionTemplateRequest.d.ts +3 -3
  25. package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateChaosActionTemplate.d.ts +4 -0
  26. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateChaosExperimentTemplate.d.ts +28 -0
  27. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateChaosExperimentTemplate.js +1 -0
  28. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCompareRevisions.d.ts +5 -0
  29. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest.d.ts +6 -0
  30. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest.js +4 -0
  31. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateRequest.d.ts +3 -0
  32. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateRequest.js +4 -0
  33. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateResponse.d.ts +14 -0
  34. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateResponse.js +1 -0
  35. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateVariables.d.ts +7 -0
  36. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateVariables.js +1 -0
  37. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateYaml.d.ts +4 -0
  38. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateYaml.js +4 -0
  39. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateGetExperimentTemplateResponse.d.ts +14 -0
  40. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateGetExperimentTemplateResponse.js +1 -0
  41. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateListExperimentTemplateResponse.d.ts +7 -0
  42. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateListExperimentTemplateResponse.js +1 -0
  43. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateRequest.d.ts +3 -0
  44. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateRequest.js +4 -0
  45. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateResponse.d.ts +14 -0
  46. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateResponse.js +1 -0
  47. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateVariable.d.ts +5 -0
  48. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateVariable.js +1 -0
  49. package/dist/chaos-manager/src/services/schemas/ChaosfaultChaosFault.d.ts +1 -1
  50. package/dist/chaos-manager/src/services/schemas/ChaosfaultCreateFaultRequest.d.ts +4 -2
  51. package/dist/chaos-manager/src/services/schemas/ChaosfaultCreateFaultResponse.d.ts +4 -2
  52. package/dist/chaos-manager/src/services/schemas/ChaosfaultFaultVariables.d.ts +1 -0
  53. package/dist/chaos-manager/src/services/schemas/ChaosfaultGetFaultResponse.d.ts +4 -2
  54. package/dist/chaos-manager/src/services/schemas/ChaosfaultUpdateFaultRequest.d.ts +4 -2
  55. package/dist/chaos-manager/src/services/schemas/ChaosfaultUpdateFaultResponse.d.ts +4 -2
  56. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateActionTemplate.d.ts +2 -0
  57. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateChaosFaultTemplate.d.ts +4 -0
  58. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateCreateFaultTemplateRequest.d.ts +4 -2
  59. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateCreateFaultTemplateResponse.d.ts +4 -2
  60. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateUpdateFaultTemplateResponse.d.ts +4 -2
  61. package/dist/chaos-manager/src/services/schemas/ChaosprobetemplateProbeTemplate.d.ts +2 -0
  62. package/dist/chaos-manager/src/services/schemas/ExperimentApiAuth.d.ts +4 -0
  63. package/dist/chaos-manager/src/services/schemas/ExperimentApiAuth.js +4 -0
  64. package/dist/chaos-manager/src/services/schemas/ExperimentAuth.d.ts +16 -0
  65. package/dist/chaos-manager/src/services/schemas/ExperimentAuth.js +1 -0
  66. package/dist/chaos-manager/src/services/schemas/ExperimentAuthType.d.ts +1 -0
  67. package/dist/chaos-manager/src/services/schemas/ExperimentAuthType.js +4 -0
  68. package/dist/chaos-manager/src/services/schemas/ExperimentCleanupPolicy.d.ts +1 -0
  69. package/dist/chaos-manager/src/services/schemas/ExperimentCleanupPolicy.js +4 -0
  70. package/dist/chaos-manager/src/services/schemas/ExperimentExperimentComponents.d.ts +2 -0
  71. package/dist/chaos-manager/src/services/schemas/ExperimentRedisAuth.d.ts +4 -0
  72. package/dist/chaos-manager/src/services/schemas/ExperimentRedisAuth.js +4 -0
  73. package/dist/chaos-manager/src/services/schemas/ExperimentSshFaultAuth.d.ts +4 -0
  74. package/dist/chaos-manager/src/services/schemas/ExperimentSshFaultAuth.js +4 -0
  75. package/dist/chaos-manager/src/services/schemas/ExperimentVmWareAuth.d.ts +6 -0
  76. package/dist/chaos-manager/src/services/schemas/ExperimentVmWareAuth.js +4 -0
  77. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateAction.d.ts +10 -0
  78. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateAction.js +1 -0
  79. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateFault.d.ts +9 -0
  80. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateFault.js +1 -0
  81. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbe.d.ts +14 -0
  82. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbe.js +1 -0
  83. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbeConditions.d.ts +3 -0
  84. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbeConditions.js +4 -0
  85. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateSpec.d.ts +17 -0
  86. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateSpec.js +1 -0
  87. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateStatusCheckTimeout.d.ts +4 -0
  88. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateStatusCheckTimeout.js +4 -0
  89. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertex.d.ts +6 -0
  90. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertex.js +1 -0
  91. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexChild.d.ts +6 -0
  92. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexChild.js +1 -0
  93. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexResource.d.ts +3 -0
  94. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexResource.js +4 -0
  95. package/dist/chaos-manager/src/services/schemas/FaulttemplateAuth.d.ts +14 -0
  96. package/dist/chaos-manager/src/services/schemas/FaulttemplateAuth.js +1 -0
  97. package/dist/chaos-manager/src/services/schemas/FaulttemplateAwsAuth.d.ts +3 -0
  98. package/dist/chaos-manager/src/services/schemas/FaulttemplateAwsAuth.js +4 -0
  99. package/dist/chaos-manager/src/services/schemas/FaulttemplateAzureAuth.d.ts +3 -0
  100. package/dist/chaos-manager/src/services/schemas/FaulttemplateAzureAuth.js +4 -0
  101. package/dist/chaos-manager/src/services/schemas/FaulttemplateChaosSpec.d.ts +6 -0
  102. package/dist/chaos-manager/src/services/schemas/FaulttemplateFaultTemplate.d.ts +4 -2
  103. package/dist/chaos-manager/src/services/schemas/FaulttemplateGcpAuth.d.ts +3 -0
  104. package/dist/chaos-manager/src/services/schemas/FaulttemplateGcpAuth.js +4 -0
  105. package/dist/chaos-manager/src/services/schemas/FaulttemplateRedisAuth.d.ts +3 -0
  106. package/dist/chaos-manager/src/services/schemas/FaulttemplateRedisAuth.js +4 -0
  107. package/dist/chaos-manager/src/services/schemas/FaulttemplateSshAuth.d.ts +4 -0
  108. package/dist/chaos-manager/src/services/schemas/FaulttemplateSshAuth.js +4 -0
  109. package/dist/chaos-manager/src/services/schemas/FaulttemplateStatusCheckTimeout.d.ts +4 -0
  110. package/dist/chaos-manager/src/services/schemas/FaulttemplateStatusCheckTimeout.js +4 -0
  111. package/dist/chaos-manager/src/services/schemas/FaulttemplateTls.d.ts +5 -0
  112. package/dist/chaos-manager/src/services/schemas/FaulttemplateTls.js +4 -0
  113. package/dist/chaos-manager/src/services/schemas/FaulttemplateVmWareAuth.d.ts +6 -0
  114. package/dist/chaos-manager/src/services/schemas/FaulttemplateVmWareAuth.js +4 -0
  115. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosprobetemplateChaosProbeTemplate.d.ts +4 -0
  116. package/dist/chaos-manager/src/services/schemas/ProbeAuthorization.d.ts +0 -1
  117. package/dist/chaos-manager/src/services/schemas/ProbeAuthorizationTemplate.d.ts +0 -1
  118. package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
  119. package/dist/chaos-manager/src/services/schemas/TemplateVariable.d.ts +2 -2
  120. package/dist/chaos-manager/src/services/schemas/TemplateVariableCategory.d.ts +1 -1
  121. package/dist/chaos-manager/src/services/schemas/TemplateVariableMinimum.d.ts +2 -2
  122. package/dist/chaos-manager/src/services/schemas/TemplateVariableType.d.ts +1 -1
  123. package/dist/chaos-manager/src/services/schemas/TypesIdentifiers.d.ts +5 -0
  124. package/dist/chaos-manager/src/services/schemas/TypesIdentifiers.js +4 -0
  125. package/dist/chaos-manager/src/services/schemas/TypesImportProbeTemplateRequest.d.ts +3 -3
  126. package/dist/chaos-manager/src/services/schemas/V1AppDynamicsInputs.d.ts +0 -4
  127. package/dist/chaos-manager/src/services/schemas/V1Authorization.d.ts +0 -1
  128. package/dist/chaos-manager/src/services/schemas/V1DynatraceApmProbeInputs.d.ts +0 -4
  129. package/dist/chaos-manager/src/services/schemas/V1NewrelicInputs.d.ts +0 -4
  130. package/dist/chaos-manager/src/services/schemas/V1PrometheusInputs.d.ts +2 -6
  131. package/dist/chaos-manager/src/services/schemas/V1SplunkObservabilityInputs.d.ts +0 -4
  132. package/dist/custom-fetcher/index.js +17 -5
  133. package/package.json +1 -1
  134. package/dist/chaos-manager/src/services/schemas/MongodbIdentifiers.d.ts +0 -5
  135. package/dist/chaos-manager/src/services/schemas/V1ApmProbeTlsConfig.d.ts +0 -14
  136. /package/dist/chaos-manager/src/services/schemas/{MongodbIdentifiers.js → ActionsIdentifiers.js} +0 -0
  137. /package/dist/chaos-manager/src/services/schemas/{V1ApmProbeTlsConfig.js → ChaosexperimenttemplateCompareRevisions.js} +0 -0
@@ -6,6 +6,8 @@ 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 { CompareExperimentTemplateRevisionsErrorResponse, CompareExperimentTemplateRevisionsOkResponse, CompareExperimentTemplateRevisionsProps, CompareExperimentTemplateRevisionsQueryPathParams, CompareExperimentTemplateRevisionsQueryQueryParams, } from './hooks/useCompareExperimentTemplateRevisionsQuery';
10
+ export { compareExperimentTemplateRevisions, useCompareExperimentTemplateRevisionsQuery, } from './hooks/useCompareExperimentTemplateRevisionsQuery';
9
11
  export type { CompareFaultTemplateRevisionsErrorResponse, CompareFaultTemplateRevisionsOkResponse, CompareFaultTemplateRevisionsProps, CompareFaultTemplateRevisionsQueryPathParams, CompareFaultTemplateRevisionsQueryQueryParams, } from './hooks/useCompareFaultTemplateRevisionsQuery';
10
12
  export { compareFaultTemplateRevisions, useCompareFaultTemplateRevisionsQuery, } from './hooks/useCompareFaultTemplateRevisionsQuery';
11
13
  export type { CreateActionErrorResponse, CreateActionMutationProps, CreateActionMutationQueryParams, CreateActionOkResponse, CreateActionProps, CreateActionRequestBody, } from './hooks/useCreateActionMutation';
@@ -18,6 +20,10 @@ export type { CreateChaosExperimentPipelineErrorResponse, CreateChaosExperimentP
18
20
  export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
19
21
  export type { CreateChaosHubErrorResponse, CreateChaosHubMutationProps, CreateChaosHubMutationQueryParams, CreateChaosHubOkResponse, CreateChaosHubProps, CreateChaosHubRequestBody, } from './hooks/useCreateChaosHubMutation';
20
22
  export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
23
+ export type { CreateExperimentFromTemplateErrorResponse, CreateExperimentFromTemplateMutationPathParams, CreateExperimentFromTemplateMutationProps, CreateExperimentFromTemplateMutationQueryParams, CreateExperimentFromTemplateOkResponse, CreateExperimentFromTemplateProps, CreateExperimentFromTemplateRequestBody, } from './hooks/useCreateExperimentFromTemplateMutation';
24
+ export { createExperimentFromTemplate, useCreateExperimentFromTemplateMutation, } from './hooks/useCreateExperimentFromTemplateMutation';
25
+ export type { CreateExperimentTemplateErrorResponse, CreateExperimentTemplateMutationProps, CreateExperimentTemplateMutationQueryParams, CreateExperimentTemplateOkResponse, CreateExperimentTemplateProps, CreateExperimentTemplateRequestBody, } from './hooks/useCreateExperimentTemplateMutation';
26
+ export { createExperimentTemplate, useCreateExperimentTemplateMutation, } from './hooks/useCreateExperimentTemplateMutation';
21
27
  export type { CreateFaultErrorResponse, CreateFaultMutationProps, CreateFaultMutationQueryParams, CreateFaultOkResponse, CreateFaultProps, CreateFaultRequestBody, } from './hooks/useCreateFaultMutation';
22
28
  export { createFault, useCreateFaultMutation } from './hooks/useCreateFaultMutation';
23
29
  export type { CreateFaultTemplateErrorResponse, CreateFaultTemplateMutationProps, CreateFaultTemplateMutationQueryParams, CreateFaultTemplateOkResponse, CreateFaultTemplateProps, CreateFaultTemplateRequestBody, } from './hooks/useCreateFaultTemplateMutation';
@@ -42,6 +48,8 @@ export type { DeleteActionTemplateErrorResponse, DeleteActionTemplateMutationPat
42
48
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
43
49
  export type { DeleteChaosV2ExperimentErrorResponse, DeleteChaosV2ExperimentMutationPathParams, DeleteChaosV2ExperimentMutationProps, DeleteChaosV2ExperimentMutationQueryParams, DeleteChaosV2ExperimentOkResponse, DeleteChaosV2ExperimentProps, } from './hooks/useDeleteChaosV2ExperimentMutation';
44
50
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
51
+ export type { DeleteExperimentTemplateErrorResponse, DeleteExperimentTemplateMutationPathParams, DeleteExperimentTemplateMutationProps, DeleteExperimentTemplateMutationQueryParams, DeleteExperimentTemplateOkResponse, DeleteExperimentTemplateProps, } from './hooks/useDeleteExperimentTemplateMutation';
52
+ export { deleteExperimentTemplate, useDeleteExperimentTemplateMutation, } from './hooks/useDeleteExperimentTemplateMutation';
45
53
  export type { DeleteFaultErrorResponse, DeleteFaultMutationPathParams, DeleteFaultMutationProps, DeleteFaultMutationQueryParams, DeleteFaultOkResponse, DeleteFaultProps, } from './hooks/useDeleteFaultMutation';
46
54
  export { deleteFault, useDeleteFaultMutation } from './hooks/useDeleteFaultMutation';
47
55
  export type { DeleteFaultTemplateErrorResponse, DeleteFaultTemplateMutationPathParams, DeleteFaultTemplateMutationProps, DeleteFaultTemplateMutationQueryParams, DeleteFaultTemplateOkResponse, DeleteFaultTemplateProps, } from './hooks/useDeleteFaultTemplateMutation';
@@ -110,6 +118,14 @@ export type { GetExperimentRunTimelineViewErrorResponse, GetExperimentRunTimelin
110
118
  export { getExperimentRunTimelineView, useGetExperimentRunTimelineViewQuery, } from './hooks/useGetExperimentRunTimelineViewQuery';
111
119
  export type { GetExperimentRunsOverviewStatsErrorResponse, GetExperimentRunsOverviewStatsOkResponse, GetExperimentRunsOverviewStatsProps, GetExperimentRunsOverviewStatsQueryQueryParams, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
112
120
  export { getExperimentRunsOverviewStats, useGetExperimentRunsOverviewStatsQuery, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
121
+ export type { GetExperimentTemplateErrorResponse, GetExperimentTemplateOkResponse, GetExperimentTemplateProps, GetExperimentTemplateQueryPathParams, GetExperimentTemplateQueryQueryParams, } from './hooks/useGetExperimentTemplateQuery';
122
+ export { getExperimentTemplate, useGetExperimentTemplateQuery, } from './hooks/useGetExperimentTemplateQuery';
123
+ export type { GetExperimentTemplateRevisionsErrorResponse, GetExperimentTemplateRevisionsOkResponse, GetExperimentTemplateRevisionsProps, GetExperimentTemplateRevisionsQueryPathParams, GetExperimentTemplateRevisionsQueryQueryParams, } from './hooks/useGetExperimentTemplateRevisionsQuery';
124
+ export { getExperimentTemplateRevisions, useGetExperimentTemplateRevisionsQuery, } from './hooks/useGetExperimentTemplateRevisionsQuery';
125
+ export type { GetExperimentTemplateVariablesErrorResponse, GetExperimentTemplateVariablesOkResponse, GetExperimentTemplateVariablesProps, GetExperimentTemplateVariablesQueryPathParams, GetExperimentTemplateVariablesQueryQueryParams, } from './hooks/useGetExperimentTemplateVariablesQuery';
126
+ export { getExperimentTemplateVariables, useGetExperimentTemplateVariablesQuery, } from './hooks/useGetExperimentTemplateVariablesQuery';
127
+ export type { GetExperimentTemplateYamlErrorResponse, GetExperimentTemplateYamlOkResponse, GetExperimentTemplateYamlProps, GetExperimentTemplateYamlQueryPathParams, GetExperimentTemplateYamlQueryQueryParams, } from './hooks/useGetExperimentTemplateYamlQuery';
128
+ export { getExperimentTemplateYaml, useGetExperimentTemplateYamlQuery, } from './hooks/useGetExperimentTemplateYamlQuery';
113
129
  export type { GetFaultErrorResponse, GetFaultOkResponse, GetFaultProps, GetFaultQueryPathParams, GetFaultQueryQueryParams, } from './hooks/useGetFaultQuery';
114
130
  export { getFault, useGetFaultQuery } from './hooks/useGetFaultQuery';
115
131
  export type { GetFaultTemplateErrorResponse, GetFaultTemplateOkResponse, GetFaultTemplateProps, GetFaultTemplateQueryPathParams, GetFaultTemplateQueryQueryParams, } from './hooks/useGetFaultTemplateQuery';
@@ -190,6 +206,8 @@ export type { ListChaosV2ExperimentErrorResponse, ListChaosV2ExperimentOkRespons
190
206
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
191
207
  export type { ListExperimentRunsOfFaultErrorResponse, ListExperimentRunsOfFaultOkResponse, ListExperimentRunsOfFaultProps, ListExperimentRunsOfFaultQueryPathParams, ListExperimentRunsOfFaultQueryQueryParams, } from './hooks/useListExperimentRunsOfFaultQuery';
192
208
  export { listExperimentRunsOfFault, useListExperimentRunsOfFaultQuery, } from './hooks/useListExperimentRunsOfFaultQuery';
209
+ export type { ListExperimentTemplateErrorResponse, ListExperimentTemplateOkResponse, ListExperimentTemplateProps, ListExperimentTemplateQueryQueryParams, } from './hooks/useListExperimentTemplateQuery';
210
+ export { listExperimentTemplate, useListExperimentTemplateQuery, } from './hooks/useListExperimentTemplateQuery';
193
211
  export type { ListExperimentsWithActiveInfrasMinimalNotificationErrorResponse, ListExperimentsWithActiveInfrasMinimalNotificationOkResponse, ListExperimentsWithActiveInfrasMinimalNotificationProps, ListExperimentsWithActiveInfrasMinimalNotificationQueryQueryParams, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
194
212
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
195
213
  export type { ListFaultErrorResponse, ListFaultOkResponse, ListFaultProps, ListFaultQueryQueryParams, } from './hooks/useListFaultQuery';
@@ -280,6 +298,8 @@ export type { UpdateChaosV2CronExperimentErrorResponse, UpdateChaosV2CronExperim
280
298
  export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
281
299
  export type { UpdateEmissaryErrorResponse, UpdateEmissaryMutationPathParams, UpdateEmissaryMutationProps, UpdateEmissaryMutationQueryParams, UpdateEmissaryOkResponse, UpdateEmissaryProps, UpdateEmissaryRequestBody, } from './hooks/useUpdateEmissaryMutation';
282
300
  export { updateEmissary, useUpdateEmissaryMutation } from './hooks/useUpdateEmissaryMutation';
301
+ export type { UpdateExperimentTemplateErrorResponse, UpdateExperimentTemplateMutationPathParams, UpdateExperimentTemplateMutationProps, UpdateExperimentTemplateMutationQueryParams, UpdateExperimentTemplateOkResponse, UpdateExperimentTemplateProps, UpdateExperimentTemplateRequestBody, } from './hooks/useUpdateExperimentTemplateMutation';
302
+ export { updateExperimentTemplate, useUpdateExperimentTemplateMutation, } from './hooks/useUpdateExperimentTemplateMutation';
283
303
  export type { UpdateFaultErrorResponse, UpdateFaultMutationPathParams, UpdateFaultMutationProps, UpdateFaultMutationQueryParams, UpdateFaultOkResponse, UpdateFaultProps, UpdateFaultRequestBody, } from './hooks/useUpdateFaultMutation';
284
304
  export { updateFault, useUpdateFaultMutation } from './hooks/useUpdateFaultMutation';
285
305
  export type { UpdateFaultTemplateErrorResponse, UpdateFaultTemplateMutationPathParams, UpdateFaultTemplateMutationProps, UpdateFaultTemplateMutationQueryParams, UpdateFaultTemplateOkResponse, UpdateFaultTemplateProps, } from './hooks/useUpdateFaultTemplateMutation';
@@ -320,6 +340,7 @@ export type { ActionSourceActionTemplate } from './schemas/ActionSourceActionTem
320
340
  export type { ActionsActionResponse } from './schemas/ActionsActionResponse';
321
341
  export type { ActionsActionType } from './schemas/ActionsActionType';
322
342
  export type { ActionsExecutedByExperiment } from './schemas/ActionsExecutedByExperiment';
343
+ export type { ActionsIdentifiers } from './schemas/ActionsIdentifiers';
323
344
  export type { ActionsImportActionTemplateRequest } from './schemas/ActionsImportActionTemplateRequest';
324
345
  export type { ActionsInfrastructureType } from './schemas/ActionsInfrastructureType';
325
346
  export type { ActionsListActionTemplateResponse } from './schemas/ActionsListActionTemplateResponse';
@@ -377,6 +398,18 @@ export type { ChaosactiontemplateActionsTemplateCount } from './schemas/Chaosact
377
398
  export type { ChaosactiontemplateChaosActionTemplate } from './schemas/ChaosactiontemplateChaosActionTemplate';
378
399
  export type { ChaosexperimentpipelineGetChaosPipelineNodesResponse } from './schemas/ChaosexperimentpipelineGetChaosPipelineNodesResponse';
379
400
  export type { ChaosexperimentpipelineReferenceEntities } from './schemas/ChaosexperimentpipelineReferenceEntities';
401
+ export type { ChaosexperimenttemplateChaosExperimentTemplate } from './schemas/ChaosexperimenttemplateChaosExperimentTemplate';
402
+ export type { ChaosexperimenttemplateCompareRevisions } from './schemas/ChaosexperimenttemplateCompareRevisions';
403
+ export type { ChaosexperimenttemplateCreateExperimentFromTemplateRequest } from './schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest';
404
+ export type { ChaosexperimenttemplateCreateExperimentTemplateRequest } from './schemas/ChaosexperimenttemplateCreateExperimentTemplateRequest';
405
+ export type { ChaosexperimenttemplateCreateExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateCreateExperimentTemplateResponse';
406
+ export type { ChaosexperimenttemplateExperimentTemplateVariables } from './schemas/ChaosexperimenttemplateExperimentTemplateVariables';
407
+ export type { ChaosexperimenttemplateExperimentTemplateYaml } from './schemas/ChaosexperimenttemplateExperimentTemplateYaml';
408
+ export type { ChaosexperimenttemplateGetExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateGetExperimentTemplateResponse';
409
+ export type { ChaosexperimenttemplateListExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateListExperimentTemplateResponse';
410
+ export type { ChaosexperimenttemplateUpdateExperimentTemplateRequest } from './schemas/ChaosexperimenttemplateUpdateExperimentTemplateRequest';
411
+ export type { ChaosexperimenttemplateUpdateExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateUpdateExperimentTemplateResponse';
412
+ export type { ChaosexperimenttemplateVariable } from './schemas/ChaosexperimenttemplateVariable';
380
413
  export type { ChaosfaultChaosFault } from './schemas/ChaosfaultChaosFault';
381
414
  export type { ChaosfaultCreateFaultRequest } from './schemas/ChaosfaultCreateFaultRequest';
382
415
  export type { ChaosfaultCreateFaultResponse } from './schemas/ChaosfaultCreateFaultResponse';
@@ -466,8 +499,12 @@ export type { ExecutionProbeData } from './schemas/ExecutionProbeData';
466
499
  export type { ExecutionProbeIterations } from './schemas/ExecutionProbeIterations';
467
500
  export type { ExecutionPromProbe } from './schemas/ExecutionPromProbe';
468
501
  export type { ExperimentActionRef } from './schemas/ExperimentActionRef';
502
+ export type { ExperimentApiAuth } from './schemas/ExperimentApiAuth';
469
503
  export type { ExperimentApplication } from './schemas/ExperimentApplication';
504
+ export type { ExperimentAuth } from './schemas/ExperimentAuth';
505
+ export type { ExperimentAuthType } from './schemas/ExperimentAuthType';
470
506
  export type { ExperimentChaosInputs } from './schemas/ExperimentChaosInputs';
507
+ export type { ExperimentCleanupPolicy } from './schemas/ExperimentCleanupPolicy';
471
508
  export type { ExperimentConfigMap } from './schemas/ExperimentConfigMap';
472
509
  export type { ExperimentDefinition } from './schemas/ExperimentDefinition';
473
510
  export type { ExperimentExperimentComponents } from './schemas/ExperimentExperimentComponents';
@@ -479,29 +516,50 @@ export type { ExperimentProbeActions } from './schemas/ExperimentProbeActions';
479
516
  export type { ExperimentProbeConditions } from './schemas/ExperimentProbeConditions';
480
517
  export type { ExperimentProbeRef } from './schemas/ExperimentProbeRef';
481
518
  export type { ExperimentProjectedVolumes } from './schemas/ExperimentProjectedVolumes';
519
+ export type { ExperimentRedisAuth } from './schemas/ExperimentRedisAuth';
482
520
  export type { ExperimentSaveChaosExperimentResponse } from './schemas/ExperimentSaveChaosExperimentResponse';
483
521
  export type { ExperimentSecret } from './schemas/ExperimentSecret';
484
522
  export type { ExperimentSecurityContext } from './schemas/ExperimentSecurityContext';
485
523
  export type { ExperimentSelector } from './schemas/ExperimentSelector';
486
524
  export type { ExperimentSidecar } from './schemas/ExperimentSidecar';
525
+ export type { ExperimentSshFaultAuth } from './schemas/ExperimentSshFaultAuth';
487
526
  export type { ExperimentStatusCheckTimeout } from './schemas/ExperimentStatusCheckTimeout';
488
527
  export type { ExperimentTargets } from './schemas/ExperimentTargets';
528
+ export type { ExperimentVmWareAuth } from './schemas/ExperimentVmWareAuth';
489
529
  export type { ExperimentWorkload } from './schemas/ExperimentWorkload';
490
530
  export type { ExperimentWorkloadKind } from './schemas/ExperimentWorkloadKind';
531
+ export type { ExperimenttemplateAction } from './schemas/ExperimenttemplateAction';
532
+ export type { ExperimenttemplateFault } from './schemas/ExperimenttemplateFault';
533
+ export type { ExperimenttemplateProbe } from './schemas/ExperimenttemplateProbe';
534
+ export type { ExperimenttemplateProbeConditions } from './schemas/ExperimenttemplateProbeConditions';
535
+ export type { ExperimenttemplateSpec } from './schemas/ExperimenttemplateSpec';
536
+ export type { ExperimenttemplateStatusCheckTimeout } from './schemas/ExperimenttemplateStatusCheckTimeout';
537
+ export type { ExperimenttemplateVertex } from './schemas/ExperimenttemplateVertex';
538
+ export type { ExperimenttemplateVertexChild } from './schemas/ExperimenttemplateVertexChild';
539
+ export type { ExperimenttemplateVertexResource } from './schemas/ExperimenttemplateVertexResource';
491
540
  export type { FaultLink } from './schemas/FaultLink';
492
541
  export type { FaulttemplateApplicationTarget } from './schemas/FaulttemplateApplicationTarget';
542
+ export type { FaulttemplateAuth } from './schemas/FaulttemplateAuth';
543
+ export type { FaulttemplateAwsAuth } from './schemas/FaulttemplateAwsAuth';
544
+ export type { FaulttemplateAzureAuth } from './schemas/FaulttemplateAzureAuth';
493
545
  export type { FaulttemplateChaosKubernetesSpec } from './schemas/FaulttemplateChaosKubernetesSpec';
494
546
  export type { FaulttemplateChaosParameter } from './schemas/FaulttemplateChaosParameter';
495
547
  export type { FaulttemplateChaosSpec } from './schemas/FaulttemplateChaosSpec';
496
548
  export type { FaulttemplateConfigMapVolume } from './schemas/FaulttemplateConfigMapVolume';
497
549
  export type { FaulttemplateFaultTemplate } from './schemas/FaulttemplateFaultTemplate';
550
+ export type { FaulttemplateGcpAuth } from './schemas/FaulttemplateGcpAuth';
498
551
  export type { FaulttemplateHostPathVolume } from './schemas/FaulttemplateHostPathVolume';
499
552
  export type { FaulttemplateKubernetesTarget } from './schemas/FaulttemplateKubernetesTarget';
500
553
  export type { FaulttemplateLink } from './schemas/FaulttemplateLink';
554
+ export type { FaulttemplateRedisAuth } from './schemas/FaulttemplateRedisAuth';
501
555
  export type { FaulttemplateResourceRequirements } from './schemas/FaulttemplateResourceRequirements';
502
556
  export type { FaulttemplateSecretVolume } from './schemas/FaulttemplateSecretVolume';
503
557
  export type { FaulttemplateSpec } from './schemas/FaulttemplateSpec';
558
+ export type { FaulttemplateSshAuth } from './schemas/FaulttemplateSshAuth';
559
+ export type { FaulttemplateStatusCheckTimeout } from './schemas/FaulttemplateStatusCheckTimeout';
504
560
  export type { FaulttemplateTarget } from './schemas/FaulttemplateTarget';
561
+ export type { FaulttemplateTls } from './schemas/FaulttemplateTls';
562
+ export type { FaulttemplateVmWareAuth } from './schemas/FaulttemplateVmWareAuth';
505
563
  export type { Gamedayrunv2ApprovalStatus } from './schemas/Gamedayrunv2ApprovalStatus';
506
564
  export type { Gamedayrunv2PrerequisiteStatus } from './schemas/Gamedayrunv2PrerequisiteStatus';
507
565
  export type { Gamedayv2GamedayRunStatus } from './schemas/Gamedayv2GamedayRunStatus';
@@ -656,7 +714,6 @@ export type { ModelWeightages } from './schemas/ModelWeightages';
656
714
  export type { ModelWorkflowRun } from './schemas/ModelWorkflowRun';
657
715
  export type { ModelWorkflowRunStatus } from './schemas/ModelWorkflowRunStatus';
658
716
  export type { ModelWorkflowType } from './schemas/ModelWorkflowType';
659
- export type { MongodbIdentifiers } from './schemas/MongodbIdentifiers';
660
717
  export type { MongodbImportType } from './schemas/MongodbImportType';
661
718
  export type { NetworkmapCanRetryExperimentCreationResponse } from './schemas/NetworkmapCanRetryExperimentCreationResponse';
662
719
  export type { NetworkmapGetTargetNetworkMapResponse } from './schemas/NetworkmapGetTargetNetworkMapResponse';
@@ -803,6 +860,7 @@ export type { TypesGamedayV2 } from './schemas/TypesGamedayV2';
803
860
  export type { TypesGetGamedayExperimentResponse } from './schemas/TypesGetGamedayExperimentResponse';
804
861
  export type { TypesGetGamedayResponse } from './schemas/TypesGetGamedayResponse';
805
862
  export type { TypesGetProbeResponse } from './schemas/TypesGetProbeResponse';
863
+ export type { TypesIdentifiers } from './schemas/TypesIdentifiers';
806
864
  export type { TypesImportProbeTemplateRequest } from './schemas/TypesImportProbeTemplateRequest';
807
865
  export type { TypesInfra } from './schemas/TypesInfra';
808
866
  export type { TypesInfrastructureType } from './schemas/TypesInfrastructureType';
@@ -847,7 +905,6 @@ export type { TypesUpdatePrerequisiteRequest } from './schemas/TypesUpdatePrereq
847
905
  export type { TypesUpdateStakeHolderActionRequest } from './schemas/TypesUpdateStakeHolderActionRequest';
848
906
  export type { TypesWeightages } from './schemas/TypesWeightages';
849
907
  export type { V1ApmProbeInputs } from './schemas/V1ApmProbeInputs';
850
- export type { V1ApmProbeTlsConfig } from './schemas/V1ApmProbeTlsConfig';
851
908
  export type { V1AppDynamicsInputs } from './schemas/V1AppDynamicsInputs';
852
909
  export type { V1AppdMetrics } from './schemas/V1AppdMetrics';
853
910
  export type { V1Authorization } from './schemas/V1Authorization';
@@ -2,12 +2,15 @@ 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 { compareExperimentTemplateRevisions, useCompareExperimentTemplateRevisionsQuery, } from './hooks/useCompareExperimentTemplateRevisionsQuery';
5
6
  export { compareFaultTemplateRevisions, useCompareFaultTemplateRevisionsQuery, } from './hooks/useCompareFaultTemplateRevisionsQuery';
6
7
  export { createAction, useCreateActionMutation } from './hooks/useCreateActionMutation';
7
8
  export { createActionTemplate, useCreateActionTemplateMutation, } from './hooks/useCreateActionTemplateMutation';
8
9
  export { createChaosExperimentExecutionNode, useCreateChaosExperimentExecutionNodeMutation, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
9
10
  export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
10
11
  export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
12
+ export { createExperimentFromTemplate, useCreateExperimentFromTemplateMutation, } from './hooks/useCreateExperimentFromTemplateMutation';
13
+ export { createExperimentTemplate, useCreateExperimentTemplateMutation, } from './hooks/useCreateExperimentTemplateMutation';
11
14
  export { createFault, useCreateFaultMutation } from './hooks/useCreateFaultMutation';
12
15
  export { createFaultTemplate, useCreateFaultTemplateMutation, } from './hooks/useCreateFaultTemplateMutation';
13
16
  export { createGamedayRunV2, useCreateGamedayRunV2Mutation, } from './hooks/useCreateGamedayRunV2Mutation';
@@ -20,6 +23,7 @@ export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useC
20
23
  export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
21
24
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
22
25
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
26
+ export { deleteExperimentTemplate, useDeleteExperimentTemplateMutation, } from './hooks/useDeleteExperimentTemplateMutation';
23
27
  export { deleteFault, useDeleteFaultMutation } from './hooks/useDeleteFaultMutation';
24
28
  export { deleteFaultTemplate, useDeleteFaultTemplateMutation, } from './hooks/useDeleteFaultTemplateMutation';
25
29
  export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
@@ -54,6 +58,10 @@ export { getConnectorForInfra, useGetConnectorForInfraQuery, } from './hooks/use
54
58
  export { getExperimentHelperImageVersion, useGetExperimentHelperImageVersionQuery, } from './hooks/useGetExperimentHelperImageVersionQuery';
55
59
  export { getExperimentRunTimelineView, useGetExperimentRunTimelineViewQuery, } from './hooks/useGetExperimentRunTimelineViewQuery';
56
60
  export { getExperimentRunsOverviewStats, useGetExperimentRunsOverviewStatsQuery, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
61
+ export { getExperimentTemplate, useGetExperimentTemplateQuery, } from './hooks/useGetExperimentTemplateQuery';
62
+ export { getExperimentTemplateRevisions, useGetExperimentTemplateRevisionsQuery, } from './hooks/useGetExperimentTemplateRevisionsQuery';
63
+ export { getExperimentTemplateVariables, useGetExperimentTemplateVariablesQuery, } from './hooks/useGetExperimentTemplateVariablesQuery';
64
+ export { getExperimentTemplateYaml, useGetExperimentTemplateYamlQuery, } from './hooks/useGetExperimentTemplateYamlQuery';
57
65
  export { getFault, useGetFaultQuery } from './hooks/useGetFaultQuery';
58
66
  export { getFaultTemplate, useGetFaultTemplateQuery } from './hooks/useGetFaultTemplateQuery';
59
67
  export { getFaultTemplateRevisions, useGetFaultTemplateRevisionsQuery, } from './hooks/useGetFaultTemplateRevisionsQuery';
@@ -94,6 +102,7 @@ export { listChaosEnabledInfraV2, useListChaosEnabledInfraV2Query, } from './hoo
94
102
  export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
95
103
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
96
104
  export { listExperimentRunsOfFault, useListExperimentRunsOfFaultQuery, } from './hooks/useListExperimentRunsOfFaultQuery';
105
+ export { listExperimentTemplate, useListExperimentTemplateQuery, } from './hooks/useListExperimentTemplateQuery';
97
106
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
98
107
  export { listFault, useListFaultQuery } from './hooks/useListFaultQuery';
99
108
  export { listFaultTemplate, useListFaultTemplateQuery } from './hooks/useListFaultTemplateQuery';
@@ -139,6 +148,7 @@ export { updateChaosExperimentExecutionNode, useUpdateChaosExperimentExecutionNo
139
148
  export { updateChaosHub, useUpdateChaosHubMutation } from './hooks/useUpdateChaosHubMutation';
140
149
  export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
141
150
  export { updateEmissary, useUpdateEmissaryMutation } from './hooks/useUpdateEmissaryMutation';
151
+ export { updateExperimentTemplate, useUpdateExperimentTemplateMutation, } from './hooks/useUpdateExperimentTemplateMutation';
142
152
  export { updateFault, useUpdateFaultMutation } from './hooks/useUpdateFaultMutation';
143
153
  export { updateFaultTemplate, useUpdateFaultTemplateMutation, } from './hooks/useUpdateFaultTemplateMutation';
144
154
  export { updateGamedayRunPrerequisitesV2, useUpdateGamedayRunPrerequisitesV2Mutation, } from './hooks/useUpdateGamedayRunPrerequisitesV2Mutation';
@@ -0,0 +1,5 @@
1
+ export interface ActionsIdentifiers {
2
+ accountID?: string;
3
+ orgID?: string;
4
+ projectID?: string;
5
+ }
@@ -1,10 +1,10 @@
1
- import type { MongodbIdentifiers } from '../schemas/MongodbIdentifiers';
1
+ import type { ActionsIdentifiers } from '../schemas/ActionsIdentifiers';
2
2
  import type { MongodbImportType } from '../schemas/MongodbImportType';
3
3
  export interface ActionsImportActionTemplateRequest {
4
4
  actionRef: string;
5
5
  description?: string;
6
- hubIdentifiers?: MongodbIdentifiers;
7
- hubRef: string;
6
+ hubIdentifiers?: ActionsIdentifiers;
7
+ hubRef?: string;
8
8
  identity: string;
9
9
  importType: MongodbImportType;
10
10
  name: string;
@@ -1,4 +1,5 @@
1
1
  import type { ActionActionTemplateProperties } from '../schemas/ActionActionTemplateProperties';
2
+ import type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from '../schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
2
3
  import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructureType';
3
4
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
4
5
  import type { ActionsActionType } from '../schemas/ActionsActionType';
@@ -11,6 +12,7 @@ export interface ChaosactiontemplateChaosActionTemplate {
11
12
  actionProperties?: ActionActionTemplateProperties;
12
13
  createdAt?: number;
13
14
  createdBy?: string;
15
+ createdByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
14
16
  description?: string;
15
17
  hubRef?: string;
16
18
  id?: string;
@@ -25,6 +27,7 @@ export interface ChaosactiontemplateChaosActionTemplate {
25
27
  * for predefined faults, latest should be set as default
26
28
  */
27
29
  isDefault?: boolean;
30
+ isEnterprise?: boolean;
28
31
  isRemoved: boolean;
29
32
  /**
30
33
  * Fault name to sync the changes from the hub
@@ -43,5 +46,6 @@ export interface ChaosactiontemplateChaosActionTemplate {
43
46
  type?: ActionsActionType;
44
47
  updatedAt?: number;
45
48
  updatedBy?: string;
49
+ updatedByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
46
50
  variables?: TemplateVariable[];
47
51
  }
@@ -0,0 +1,28 @@
1
+ import type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from '../schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
2
+ import type { ExperimentInfraType } from '../schemas/ExperimentInfraType';
3
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
4
+ export interface ChaosexperimenttemplateChaosExperimentTemplate {
5
+ accountID: string;
6
+ createdAt?: number;
7
+ createdBy?: string;
8
+ createdByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
9
+ description?: string;
10
+ hubIdentity?: string;
11
+ id?: string;
12
+ identity?: string;
13
+ infraType?: ExperimentInfraType;
14
+ infras?: string[];
15
+ isDefault?: boolean;
16
+ isEnterprise?: boolean;
17
+ isRemoved: boolean;
18
+ name: string;
19
+ orgID?: string;
20
+ projectID?: string;
21
+ revision?: string;
22
+ tags?: string[];
23
+ template?: string;
24
+ updatedAt?: number;
25
+ updatedBy?: string;
26
+ updatedByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
27
+ variables?: TemplateVariable[];
28
+ }
@@ -0,0 +1,5 @@
1
+ export interface ChaosexperimenttemplateCompareRevisions {
2
+ correlationID?: string;
3
+ template1?: string;
4
+ template2?: string;
5
+ }
@@ -0,0 +1,6 @@
1
+ export interface ChaosexperimenttemplateCreateExperimentFromTemplateRequest {
2
+ accountIdentifier: string;
3
+ infraRef?: string;
4
+ organizationIdentifier?: string;
5
+ projectIdentifier?: 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 {};
@@ -0,0 +1,3 @@
1
+ export interface ChaosexperimenttemplateCreateExperimentTemplateRequest {
2
+ manifest: string;
3
+ }
@@ -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,14 @@
1
+ import type { ExperimenttemplateSpec } from '../schemas/ExperimenttemplateSpec';
2
+ export interface ChaosexperimenttemplateCreateExperimentTemplateResponse {
3
+ apiVersion?: string;
4
+ correlationID?: string;
5
+ description?: string;
6
+ hubIdentity?: string;
7
+ identity: string;
8
+ isDefault: boolean;
9
+ kind?: string;
10
+ name: string;
11
+ revision: string;
12
+ spec: ExperimenttemplateSpec;
13
+ tags?: string[];
14
+ }
@@ -0,0 +1,7 @@
1
+ import type { ChaosexperimenttemplateVariable } from '../schemas/ChaosexperimenttemplateVariable';
2
+ export interface ChaosexperimenttemplateExperimentTemplateVariables {
3
+ actions?: ChaosexperimenttemplateVariable[];
4
+ correlationID?: string;
5
+ faults?: ChaosexperimenttemplateVariable[];
6
+ probes?: ChaosexperimenttemplateVariable[];
7
+ }
@@ -0,0 +1,4 @@
1
+ export interface ChaosexperimenttemplateExperimentTemplateYaml {
2
+ correlationID?: string;
3
+ template?: 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,14 @@
1
+ import type { ExperimenttemplateSpec } from '../schemas/ExperimenttemplateSpec';
2
+ export interface ChaosexperimenttemplateGetExperimentTemplateResponse {
3
+ apiVersion?: string;
4
+ correlationID?: string;
5
+ description?: string;
6
+ hubIdentity?: string;
7
+ identity: string;
8
+ isDefault: boolean;
9
+ kind?: string;
10
+ name: string;
11
+ revision: string;
12
+ spec: ExperimenttemplateSpec;
13
+ tags?: string[];
14
+ }
@@ -0,0 +1,7 @@
1
+ import type { ChaosexperimenttemplateChaosExperimentTemplate } from '../schemas/ChaosexperimenttemplateChaosExperimentTemplate';
2
+ import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
3
+ export interface ChaosexperimenttemplateListExperimentTemplateResponse {
4
+ correlationID?: string;
5
+ data?: ChaosexperimenttemplateChaosExperimentTemplate[];
6
+ pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
7
+ }
@@ -0,0 +1,3 @@
1
+ export interface ChaosexperimenttemplateUpdateExperimentTemplateRequest {
2
+ manifest: string;
3
+ }
@@ -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,14 @@
1
+ import type { ExperimenttemplateSpec } from '../schemas/ExperimenttemplateSpec';
2
+ export interface ChaosexperimenttemplateUpdateExperimentTemplateResponse {
3
+ apiVersion?: string;
4
+ correlationID?: string;
5
+ description?: string;
6
+ hubIdentity?: string;
7
+ identity: string;
8
+ isDefault: boolean;
9
+ kind?: string;
10
+ name: string;
11
+ revision: string;
12
+ spec: ExperimenttemplateSpec;
13
+ tags?: string[];
14
+ }
@@ -0,0 +1,5 @@
1
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
2
+ export interface ChaosexperimenttemplateVariable {
3
+ name?: string;
4
+ variables?: TemplateVariable[];
5
+ }
@@ -16,7 +16,7 @@ export interface ChaosfaultChaosFault {
16
16
  /**
17
17
  * Unique identifier (human-readable) immutable
18
18
  */
19
- identity?: string;
19
+ identity: string;
20
20
  infraType?: string;
21
21
  infras?: string[];
22
22
  isEnterprise?: boolean;
@@ -3,13 +3,15 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultCreateFaultRequest {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  description?: string;
8
- identity?: string;
9
+ identity: string;
9
10
  infraType?: string;
10
11
  infras?: string[];
12
+ kind?: string;
11
13
  links?: FaultLink[];
12
- name?: string;
14
+ name: string;
13
15
  permissionsRequired?: string;
14
16
  spec?: FaulttemplateSpec;
15
17
  tags?: string[];
@@ -3,14 +3,16 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultCreateFaultResponse {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  correlationID?: string;
8
9
  description?: string;
9
- identity?: string;
10
+ identity: string;
10
11
  infraType?: string;
11
12
  infras?: string[];
13
+ kind?: string;
12
14
  links?: FaultLink[];
13
- name?: string;
15
+ name: string;
14
16
  permissionsRequired?: string;
15
17
  spec?: FaulttemplateSpec;
16
18
  tags?: string[];
@@ -1,6 +1,7 @@
1
1
  import type { TemplateVariable } from '../schemas/TemplateVariable';
2
2
  export interface ChaosfaultFaultVariables {
3
3
  correlationID?: string;
4
+ faultAuthentication?: TemplateVariable[];
4
5
  faultTargets?: TemplateVariable[];
5
6
  faultTunable?: TemplateVariable[];
6
7
  variables?: TemplateVariable[];
@@ -3,15 +3,17 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultGetFaultResponse {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  correlationID?: string;
8
9
  description?: string;
9
- identity?: string;
10
+ identity: string;
10
11
  infraType?: string;
11
12
  infras?: string[];
12
13
  isEnterprise?: boolean;
14
+ kind?: string;
13
15
  links?: FaultLink[];
14
- name?: string;
16
+ name: string;
15
17
  permissionsRequired?: string;
16
18
  spec?: FaulttemplateSpec;
17
19
  tags?: string[];
@@ -3,13 +3,15 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultUpdateFaultRequest {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  description?: string;
8
- identity?: string;
9
+ identity: string;
9
10
  infraType?: string;
10
11
  infras?: string[];
12
+ kind?: string;
11
13
  links?: FaultLink[];
12
- name?: string;
14
+ name: string;
13
15
  permissionsRequired?: string;
14
16
  spec?: FaulttemplateSpec;
15
17
  tags?: string[];
@@ -3,14 +3,16 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultUpdateFaultResponse {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  correlationID?: string;
8
9
  description?: string;
9
- identity?: string;
10
+ identity: string;
10
11
  infraType?: string;
11
12
  infras?: string[];
13
+ kind?: string;
12
14
  links?: FaultLink[];
13
- name?: string;
15
+ name: string;
14
16
  permissionsRequired?: string;
15
17
  spec?: FaulttemplateSpec;
16
18
  tags?: string[];
@@ -8,7 +8,9 @@ export interface ChaosfaulttemplateActionTemplate {
8
8
  hubRef?: string;
9
9
  identity?: string;
10
10
  infrastructureType?: ActionsInfrastructureType;
11
+ isDefault?: boolean;
11
12
  name: string;
13
+ revision?: number;
12
14
  runProperties?: ActionActionTemplateRunProperties;
13
15
  tags?: string[];
14
16
  type?: string;