@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.
@@ -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,7 @@
1
+ import type { ProbeSecretManager } from '../schemas/ProbeSecretManager';
2
+ export interface ProbeApmtlsConfig {
3
+ caCrt?: ProbeSecretManager;
4
+ clientCrt?: ProbeSecretManager;
5
+ insecureSkipVerify?: boolean;
6
+ key?: ProbeSecretManager;
7
+ }
@@ -0,0 +1,5 @@
1
+ import type { ProbeAppdMetrics } from '../schemas/ProbeAppdMetrics';
2
+ export interface ProbeAppDynamicsProbeInputs {
3
+ appdMetrics?: ProbeAppdMetrics;
4
+ connectorID?: string;
5
+ }
@@ -0,0 +1,4 @@
1
+ export interface ProbeAppdMetrics {
2
+ durationInMin?: number;
3
+ metricsFullPath?: 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,6 @@
1
+ import type { ProbeApmtlsConfig } from '../schemas/ProbeApmtlsConfig';
2
+ export interface ProbePrometheusProbeInputs {
3
+ connectorID?: string;
4
+ query?: string;
5
+ tlsConfig?: ProbeApmtlsConfig;
6
+ }
@@ -0,0 +1,3 @@
1
+ export interface ProbeSecretManager {
2
+ identifier?: 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 {};
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",