@harnessio/react-chaos-manager-client 1.40.2-beta.0 → 1.42.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.
@@ -673,6 +673,7 @@ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsActio
673
673
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosprobetemplateChaosProbeTemplate } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosprobetemplateChaosProbeTemplate';
674
674
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs';
675
675
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppdMetrics } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppdMetrics';
676
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogApmProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogApmProbeInputs';
676
677
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogSyntheticsTestType } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogSyntheticsTestType';
677
678
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDynatraceApmProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDynatraceApmProbeInputs';
678
679
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeEnv } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeEnv';
@@ -710,6 +711,7 @@ export type { GithubComHarnessHceSaasHceSdkCommonProbeV1SyntheticsTest } from '.
710
711
  export type { GithubComHarnessHceSaasHceSdkCommonProbeV1TlsConfig } from './schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1TlsConfig';
711
712
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs';
712
713
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppdMetrics } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppdMetrics';
714
+ export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogApmProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogApmProbeInputs';
713
715
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogSyntheticsTestType } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogSyntheticsTestType';
714
716
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs';
715
717
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeEnv } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeEnv';
@@ -1067,6 +1069,7 @@ export type { V1ConfigMapProjection } from './schemas/V1ConfigMapProjection';
1067
1069
  export type { V1ConfigMapVolumeSource } from './schemas/V1ConfigMapVolumeSource';
1068
1070
  export type { V1ContainerProbeInputs } from './schemas/V1ContainerProbeInputs';
1069
1071
  export type { V1CsiVolumeSource } from './schemas/V1CsiVolumeSource';
1072
+ export type { V1DatadogApmProbeInputs } from './schemas/V1DatadogApmProbeInputs';
1070
1073
  export type { V1DatadogMetrics } from './schemas/V1DatadogMetrics';
1071
1074
  export type { V1DownwardApiProjection } from './schemas/V1DownwardApiProjection';
1072
1075
  export type { V1DownwardApiVolumeFile } from './schemas/V1DownwardApiVolumeFile';
@@ -0,0 +1,7 @@
1
+ import type { ProbeSyntheticsTest } from '../schemas/ProbeSyntheticsTest';
2
+ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogApmProbeInputs {
3
+ connectorID?: string;
4
+ durationInMin?: {};
5
+ query?: string;
6
+ syntheticsTest?: ProbeSyntheticsTest;
7
+ }
@@ -14,7 +14,7 @@ export interface GithubComHarnessHceSaasHceSdkCommonProbeV1DynatraceProbeInputs
14
14
  */
15
15
  endpoint?: string;
16
16
  /**
17
- * Raw metrcis details of the Dynatrace probe
17
+ * Raw metrics details of the Dynatrace probe
18
18
  */
19
19
  metrics?: GithubComHarnessHceSaasHceSdkCommonProbeV1Metrics;
20
20
  /**
@@ -0,0 +1,7 @@
1
+ import type { ProbeSyntheticsTestTemplate } from '../schemas/ProbeSyntheticsTestTemplate';
2
+ export interface GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogApmProbeInputs {
3
+ connectorID?: string;
4
+ durationInMin?: {};
5
+ query?: string;
6
+ syntheticsTest?: ProbeSyntheticsTestTemplate;
7
+ }
@@ -1,5 +1,6 @@
1
1
  import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs';
2
2
  import type { ProbeComparator } from '../schemas/ProbeComparator';
3
+ import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogApmProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogApmProbeInputs';
3
4
  import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDynatraceApmProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDynatraceApmProbeInputs';
4
5
  import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGcpCloudMonitoringProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGcpCloudMonitoringProbeInputs';
5
6
  import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewRelicProbeInputs } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewRelicProbeInputs';
@@ -9,6 +10,7 @@ export interface ProbeApmProbe {
9
10
  appDynamicsProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeAppDynamicsProbeInputs;
10
11
  attempt?: {};
11
12
  comparator?: ProbeComparator;
13
+ datadogApmProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDatadogApmProbeInputs;
12
14
  dynatraceApmProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeDynatraceApmProbeInputs;
13
15
  gcpCloudMonitoringProbeInputs?: GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGcpCloudMonitoringProbeInputs;
14
16
  initialDelay?: string;
@@ -1,5 +1,6 @@
1
1
  import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs';
2
2
  import type { ProbeComparatorTemplate } from '../schemas/ProbeComparatorTemplate';
3
+ import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogApmProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogApmProbeInputs';
3
4
  import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs';
4
5
  import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGcpCloudMonitoringProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGcpCloudMonitoringProbeInputs';
5
6
  import type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewRelicProbeInputs } from '../schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewRelicProbeInputs';
@@ -9,6 +10,7 @@ import type { ProbeApmProbeType } from '../schemas/ProbeApmProbeType';
9
10
  export interface ProbeApmProbeTemplate {
10
11
  appDynamicsProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeAppDynamicsProbeInputs;
11
12
  comparator?: ProbeComparatorTemplate;
13
+ datadogApmProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogApmProbeInputs;
12
14
  dynatraceApmProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDynatraceApmProbeInputs;
13
15
  gcpCloudMonitoringProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGcpCloudMonitoringProbeInputs;
14
16
  newRelicProbeInputs?: GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewRelicProbeInputs;
@@ -1 +1 @@
1
- export type ProbeApmProbeType = 'AppDynamics' | 'Dynatrace' | 'Prometheus' | 'SplunkObservability';
1
+ export type ProbeApmProbeType = 'AppDynamics' | 'Datadog' | 'Dynatrace' | 'GcpCloudMonitoring' | 'NewRelic' | 'Prometheus' | 'SplunkObservability';
@@ -1,5 +1,6 @@
1
1
  import type { V1AppDynamicsInputs } from '../schemas/V1AppDynamicsInputs';
2
2
  import type { GithubComHarnessHceSaasHceSdkCommonProbeV1ComparatorInfo } from '../schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1ComparatorInfo';
3
+ import type { V1DatadogApmProbeInputs } from '../schemas/V1DatadogApmProbeInputs';
3
4
  import type { V1DynatraceApmProbeInputs } from '../schemas/V1DynatraceApmProbeInputs';
4
5
  import type { V1GcpCloudMonitoringInputs } from '../schemas/V1GcpCloudMonitoringInputs';
5
6
  import type { V1NewRelicInputs } from '../schemas/V1NewRelicInputs';
@@ -14,6 +15,10 @@ export interface V1ApmProbeInputs {
14
15
  * Comparator check for the correctness of the probe output
15
16
  */
16
17
  comparator?: GithubComHarnessHceSaasHceSdkCommonProbeV1ComparatorInfo;
18
+ /**
19
+ * DatadogApmInputs contains the inputs required for Datadog probe
20
+ */
21
+ datadogApmProbeInputs?: V1DatadogApmProbeInputs;
17
22
  /**
18
23
  * DynatraceApmProbeInputs contains the inputs required for Dynatrace probe
19
24
  */
@@ -0,0 +1,19 @@
1
+ import type { GithubComHarnessHceSaasHceSdkCommonProbeV1SyntheticsTest } from '../schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1SyntheticsTest';
2
+ export interface V1DatadogApmProbeInputs {
3
+ /**
4
+ * DurationInMin contains the duration in minutes
5
+ */
6
+ durationInMin?: number;
7
+ /**
8
+ * Endpoint for the Datadog probe
9
+ */
10
+ endpoint?: string;
11
+ /**
12
+ * Raw metrics details of the Datadog probe
13
+ */
14
+ query?: string;
15
+ /**
16
+ * synthetics test parameters
17
+ */
18
+ syntheticsTest?: GithubComHarnessHceSaasHceSdkCommonProbeV1SyntheticsTest;
19
+ }
@@ -9,7 +9,7 @@ export interface V1DynatraceApmProbeInputs {
9
9
  */
10
10
  endpoint?: string;
11
11
  /**
12
- * Raw metrcis details of the Dynatrace probe
12
+ * Raw metrics details of the Dynatrace probe
13
13
  */
14
14
  metrics?: GithubComHarnessHceSaasHceSdkCommonProbeV1Metrics;
15
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.40.2-beta.0",
3
+ "version": "1.42.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",