@harnessio/react-chaos-manager-client 0.14.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chaos-manager/src/services/index.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmProbe.d.ts +18 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmProbe.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmtlsConfig.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/ProbeApmtlsConfig.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ProbeAppDynamicsProbeInputs.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/ProbeAppDynamicsProbeInputs.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ProbeAppdMetrics.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/ProbeAppdMetrics.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ProbePrometheusProbeInputs.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/ProbePrometheusProbeInputs.js +1 -0
- package/dist/chaos-manager/src/services/schemas/ProbeSecretManager.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/ProbeSecretManager.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesCreateProbeResponse.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/TypesProbeType.d.ts +1 -1
- package/package.json +1 -1
|
@@ -504,6 +504,10 @@ export type { PipelinesBulkExperimentRunResponse } from './schemas/PipelinesBulk
|
|
|
504
504
|
export type { PipelinesChaosPipelineInput } from './schemas/PipelinesChaosPipelineInput';
|
|
505
505
|
export type { PipelinesCreatePipelineResponse } from './schemas/PipelinesCreatePipelineResponse';
|
|
506
506
|
export type { PipelinesExperimentSpec } from './schemas/PipelinesExperimentSpec';
|
|
507
|
+
export type { ProbeApmProbe } from './schemas/ProbeApmProbe';
|
|
508
|
+
export type { ProbeApmtlsConfig } from './schemas/ProbeApmtlsConfig';
|
|
509
|
+
export type { ProbeAppDynamicsProbeInputs } from './schemas/ProbeAppDynamicsProbeInputs';
|
|
510
|
+
export type { ProbeAppdMetrics } from './schemas/ProbeAppdMetrics';
|
|
507
511
|
export type { ProbeAuthorization } from './schemas/ProbeAuthorization';
|
|
508
512
|
export type { ProbeAuthorizationTemplate } from './schemas/ProbeAuthorizationTemplate';
|
|
509
513
|
export type { ProbeCmdProbeTemplate } from './schemas/ProbeCmdProbeTemplate';
|
|
@@ -533,6 +537,8 @@ export type { ProbeProbeTemplateRunProperties } from './schemas/ProbeProbeTempla
|
|
|
533
537
|
export type { ProbeProbeType } from './schemas/ProbeProbeType';
|
|
534
538
|
export type { ProbePromProbe } from './schemas/ProbePromProbe';
|
|
535
539
|
export type { ProbePromProbeTemplate } from './schemas/ProbePromProbeTemplate';
|
|
540
|
+
export type { ProbePrometheusProbeInputs } from './schemas/ProbePrometheusProbeInputs';
|
|
541
|
+
export type { ProbeSecretManager } from './schemas/ProbeSecretManager';
|
|
536
542
|
export type { ProbeSloProbe } from './schemas/ProbeSloProbe';
|
|
537
543
|
export type { ProbeSloProbeTemplate } from './schemas/ProbeSloProbeTemplate';
|
|
538
544
|
export type { ProbeSloSourceMetadata } from './schemas/ProbeSloSourceMetadata';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { ProbeAppDynamicsProbeInputs } from '../schemas/ProbeAppDynamicsProbeInputs';
|
|
2
|
+
import type { ProbeComparator } from '../schemas/ProbeComparator';
|
|
3
|
+
import type { ProbePrometheusProbeInputs } from '../schemas/ProbePrometheusProbeInputs';
|
|
4
|
+
export interface ProbeApmProbe {
|
|
5
|
+
appDynamicsProbeInputs?: ProbeAppDynamicsProbeInputs;
|
|
6
|
+
attempt?: {};
|
|
7
|
+
comparator?: ProbeComparator;
|
|
8
|
+
initialDelay?: string;
|
|
9
|
+
initialDelaySeconds?: {};
|
|
10
|
+
interval?: string;
|
|
11
|
+
pollingInterval?: string;
|
|
12
|
+
probeTimeout?: string;
|
|
13
|
+
prometheusProbeInputs?: ProbePrometheusProbeInputs;
|
|
14
|
+
retry?: {};
|
|
15
|
+
stopOnFailure?: boolean;
|
|
16
|
+
type?: string;
|
|
17
|
+
verbosity?: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ProbeApmProbe } from '../schemas/ProbeApmProbe';
|
|
1
2
|
import type { ProbeK8SProbe } from '../schemas/ProbeK8SProbe';
|
|
2
3
|
import type { ProbeKubernetesCmdProbe } from '../schemas/ProbeKubernetesCmdProbe';
|
|
3
4
|
import type { ProbeDatadogProbe } from '../schemas/ProbeDatadogProbe';
|
|
@@ -8,6 +9,7 @@ import type { ProbePromProbe } from '../schemas/ProbePromProbe';
|
|
|
8
9
|
import type { ProbeSloProbe } from '../schemas/ProbeSloProbe';
|
|
9
10
|
import type { TemplateVariable } from '../schemas/TemplateVariable';
|
|
10
11
|
export interface TypesCreateProbeResponse {
|
|
12
|
+
apmProperties?: ProbeApmProbe;
|
|
11
13
|
description?: string;
|
|
12
14
|
k8sProperties?: ProbeK8SProbe;
|
|
13
15
|
kubernetesCmdProperties?: ProbeKubernetesCmdProbe;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type TypesProbeType = 'cmdProbe' | 'datadogProbe' | 'dynatraceProbe' | 'httpProbe' | 'k8sProbe' | 'promProbe' | 'sloProbe';
|
|
1
|
+
export type TypesProbeType = 'apmProbe' | 'cmdProbe' | 'datadogProbe' | 'dynatraceProbe' | 'httpProbe' | 'k8sProbe' | 'promProbe' | 'sloProbe';
|
package/package.json
CHANGED