@harnessio/react-chaos-manager-client 1.24.0 → 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.
@@ -762,6 +762,7 @@ export type { ProbeDynatraceProbe } from './schemas/ProbeDynatraceProbe';
762
762
  export type { ProbeDynatraceProbeTemplate } from './schemas/ProbeDynatraceProbeTemplate';
763
763
  export type { ProbeEvaluationWindow } from './schemas/ProbeEvaluationWindow';
764
764
  export type { ProbeEvaluationWindowTemplate } from './schemas/ProbeEvaluationWindowTemplate';
765
+ export type { ProbeGcpCloudMonitoringProbeInputs } from './schemas/ProbeGcpCloudMonitoringProbeInputs';
765
766
  export type { ProbeHttpProbe } from './schemas/ProbeHttpProbe';
766
767
  export type { ProbeHttpProbeTemplate } from './schemas/ProbeHttpProbeTemplate';
767
768
  export type { ProbeInfrastructureType } from './schemas/ProbeInfrastructureType';
@@ -946,6 +947,7 @@ export type { V1FieldsV1 } from './schemas/V1FieldsV1';
946
947
  export type { V1FlexVolumeSource } from './schemas/V1FlexVolumeSource';
947
948
  export type { V1FlockerVolumeSource } from './schemas/V1FlockerVolumeSource';
948
949
  export type { V1GcePersistentDiskVolumeSource } from './schemas/V1GcePersistentDiskVolumeSource';
950
+ export type { V1GcpCloudMonitoringInputs } from './schemas/V1GcpCloudMonitoringInputs';
949
951
  export type { V1GetMethod } from './schemas/V1GetMethod';
950
952
  export type { V1GitRepoVolumeSource } from './schemas/V1GitRepoVolumeSource';
951
953
  export type { V1GlusterfsVolumeSource } from './schemas/V1GlusterfsVolumeSource';
@@ -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[];
@@ -1,5 +1,6 @@
1
1
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
2
2
  export interface ExperimenttemplateFault {
3
+ authEnabled?: boolean;
3
4
  identity?: string;
4
5
  infraId?: string;
5
6
  isEnterprise?: boolean;
@@ -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
+ }
@@ -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
  */
@@ -0,0 +1,11 @@
1
+ export interface V1GcpCloudMonitoringInputs {
2
+ /**
3
+ * ProjectID for the GCP
4
+ */
5
+ projectID?: string;
6
+ /**
7
+ * PromQL of the GCP Cloud Monitoring probe
8
+ */
9
+ query?: string;
10
+ serviceAccountKey?: string;
11
+ }
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.24.0",
3
+ "version": "1.25.0",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",