@harnessio/react-chaos-manager-client 1.23.3 → 1.25.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/useListFaultTemplateQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/index.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateCategoriesCount.d.ts +15 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateCategoriesCount.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateVariables.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateListFaultTemplateResponse.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ChaoshubresourcesPermissionLevel.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExperimenttemplateFault.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmProbeTemplate.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ProbeGcpCloudMonitoringProbeInputs.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/ProbeGcpCloudMonitoringProbeInputs.js +1 -0
- package/dist/chaos-manager/src/services/schemas/V1ApmProbeInputs.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/V1GcpCloudMonitoringInputs.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/V1GcpCloudMonitoringInputs.js +4 -0
- package/package.json +1 -1
|
@@ -428,6 +428,7 @@ export type { ChaosfaulttemplateChaosFaultTemplate } from './schemas/Chaosfaultt
|
|
|
428
428
|
export type { ChaosfaulttemplateCompareRevisions } from './schemas/ChaosfaulttemplateCompareRevisions';
|
|
429
429
|
export type { ChaosfaulttemplateCreateFaultTemplateRequest } from './schemas/ChaosfaulttemplateCreateFaultTemplateRequest';
|
|
430
430
|
export type { ChaosfaulttemplateCreateFaultTemplateResponse } from './schemas/ChaosfaulttemplateCreateFaultTemplateResponse';
|
|
431
|
+
export type { ChaosfaulttemplateFaultTemplateCategoriesCount } from './schemas/ChaosfaulttemplateFaultTemplateCategoriesCount';
|
|
431
432
|
export type { ChaosfaulttemplateFaultTemplateVariables } from './schemas/ChaosfaulttemplateFaultTemplateVariables';
|
|
432
433
|
export type { ChaosfaulttemplateFaultTemplateYaml } from './schemas/ChaosfaulttemplateFaultTemplateYaml';
|
|
433
434
|
export type { ChaosfaulttemplateGetActionTemplateResponse } from './schemas/ChaosfaulttemplateGetActionTemplateResponse';
|
|
@@ -761,6 +762,7 @@ export type { ProbeDynatraceProbe } from './schemas/ProbeDynatraceProbe';
|
|
|
761
762
|
export type { ProbeDynatraceProbeTemplate } from './schemas/ProbeDynatraceProbeTemplate';
|
|
762
763
|
export type { ProbeEvaluationWindow } from './schemas/ProbeEvaluationWindow';
|
|
763
764
|
export type { ProbeEvaluationWindowTemplate } from './schemas/ProbeEvaluationWindowTemplate';
|
|
765
|
+
export type { ProbeGcpCloudMonitoringProbeInputs } from './schemas/ProbeGcpCloudMonitoringProbeInputs';
|
|
764
766
|
export type { ProbeHttpProbe } from './schemas/ProbeHttpProbe';
|
|
765
767
|
export type { ProbeHttpProbeTemplate } from './schemas/ProbeHttpProbeTemplate';
|
|
766
768
|
export type { ProbeInfrastructureType } from './schemas/ProbeInfrastructureType';
|
|
@@ -945,6 +947,7 @@ export type { V1FieldsV1 } from './schemas/V1FieldsV1';
|
|
|
945
947
|
export type { V1FlexVolumeSource } from './schemas/V1FlexVolumeSource';
|
|
946
948
|
export type { V1FlockerVolumeSource } from './schemas/V1FlockerVolumeSource';
|
|
947
949
|
export type { V1GcePersistentDiskVolumeSource } from './schemas/V1GcePersistentDiskVolumeSource';
|
|
950
|
+
export type { V1GcpCloudMonitoringInputs } from './schemas/V1GcpCloudMonitoringInputs';
|
|
948
951
|
export type { V1GetMethod } from './schemas/V1GetMethod';
|
|
949
952
|
export type { V1GitRepoVolumeSource } from './schemas/V1GitRepoVolumeSource';
|
|
950
953
|
export type { V1GlusterfsVolumeSource } from './schemas/V1GlusterfsVolumeSource';
|
package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateCategoriesCount.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface ChaosfaulttemplateFaultTemplateCategoriesCount {
|
|
2
|
+
AWS?: number;
|
|
3
|
+
Azure?: number;
|
|
4
|
+
BYOC?: number;
|
|
5
|
+
'Cloud Foundry'?: number;
|
|
6
|
+
GCP?: number;
|
|
7
|
+
'Kube Resilience'?: number;
|
|
8
|
+
Kubernetes?: number;
|
|
9
|
+
Linux?: number;
|
|
10
|
+
Load?: number;
|
|
11
|
+
SSH?: number;
|
|
12
|
+
'Spring Boot'?: number;
|
|
13
|
+
VMWare?: number;
|
|
14
|
+
Windows?: number;
|
|
15
|
+
}
|
package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateFaultTemplateVariables.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { TemplateVariable } from '../schemas/TemplateVariable';
|
|
2
2
|
export interface ChaosfaulttemplateFaultTemplateVariables {
|
|
3
3
|
correlationID?: string;
|
|
4
|
+
faultAuthentication?: TemplateVariable[];
|
|
4
5
|
faultTargets?: TemplateVariable[];
|
|
5
6
|
faultTunable?: TemplateVariable[];
|
|
6
7
|
variables?: TemplateVariable[];
|
package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateListFaultTemplateResponse.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import type { ChaosfaulttemplateFaultTemplateCategoriesCount } from '../schemas/ChaosfaulttemplateFaultTemplateCategoriesCount';
|
|
1
2
|
import type { ChaosfaulttemplateChaosFaultTemplate } from '../schemas/ChaosfaulttemplateChaosFaultTemplate';
|
|
2
3
|
import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
|
|
3
4
|
export interface ChaosfaulttemplateListFaultTemplateResponse {
|
|
5
|
+
categoriesCount?: ChaosfaulttemplateFaultTemplateCategoriesCount;
|
|
4
6
|
correlationID?: string;
|
|
5
7
|
data?: ChaosfaulttemplateChaosFaultTemplate[];
|
|
6
8
|
pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ChaoshubresourcesPermissionLevel = '
|
|
1
|
+
export type ChaoshubresourcesPermissionLevel = 'Advanced' | 'Basic';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs';
|
|
2
2
|
import type { ProbeComparatorTemplate } from '../schemas/ProbeComparatorTemplate';
|
|
3
3
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs';
|
|
4
|
+
import type { ProbeGcpCloudMonitoringProbeInputs } from '../schemas/ProbeGcpCloudMonitoringProbeInputs';
|
|
4
5
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewRelicProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewRelicProbeInputs';
|
|
5
6
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs';
|
|
6
7
|
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs';
|
|
@@ -9,6 +10,7 @@ export interface ProbeApmProbeTemplate {
|
|
|
9
10
|
appDynamicsProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs;
|
|
10
11
|
comparator?: ProbeComparatorTemplate;
|
|
11
12
|
dynatraceApmProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs;
|
|
13
|
+
gcpCloudMonitoringProbeInputs?: ProbeGcpCloudMonitoringProbeInputs;
|
|
12
14
|
newRelicProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewRelicProbeInputs;
|
|
13
15
|
prometheusProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs;
|
|
14
16
|
splunkObservabilityProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSplunkObservabilityProbeInputs;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager';
|
|
2
|
+
export interface ProbeGcpCloudMonitoringProbeInputs {
|
|
3
|
+
projectID?: string;
|
|
4
|
+
query?: string;
|
|
5
|
+
serviceAccountKey?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { V1AppDynamicsInputs } from '../schemas/V1AppDynamicsInputs';
|
|
2
2
|
import type { V1ComparatorInfo } from '../schemas/V1ComparatorInfo';
|
|
3
3
|
import type { V1DynatraceApmProbeInputs } from '../schemas/V1DynatraceApmProbeInputs';
|
|
4
|
+
import type { V1GcpCloudMonitoringInputs } from '../schemas/V1GcpCloudMonitoringInputs';
|
|
4
5
|
import type { V1NewRelicInputs } from '../schemas/V1NewRelicInputs';
|
|
5
6
|
import type { V1PrometheusInputs } from '../schemas/V1PrometheusInputs';
|
|
6
7
|
import type { V1SplunkObservabilityInputs } from '../schemas/V1SplunkObservabilityInputs';
|
|
@@ -17,6 +18,10 @@ export interface V1ApmProbeInputs {
|
|
|
17
18
|
* DynatraceApmProbeInputs contains the inputs required for Dynatrace probe
|
|
18
19
|
*/
|
|
19
20
|
dynatraceApmProbeInputs?: V1DynatraceApmProbeInputs;
|
|
21
|
+
/**
|
|
22
|
+
* GcpCloudMonitoringInputs contains the inputs required for GCP Cloud Monitoring probe
|
|
23
|
+
*/
|
|
24
|
+
gcpCloudMonitoringInputs?: V1GcpCloudMonitoringInputs;
|
|
20
25
|
/**
|
|
21
26
|
* NewRelicInputs contains the inputs required for NewRelic probe
|
|
22
27
|
*/
|
package/package.json
CHANGED