@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.
@@ -18,6 +18,7 @@ export interface ListFaultTemplateQueryQueryParams {
18
18
  * @default 0
19
19
  */
20
20
  page?: number;
21
+ permissionsRequired?: string;
21
22
  projectIdentifier?: string;
22
23
  search?: string;
23
24
  sortAscending?: boolean;
@@ -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';
@@ -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
+ }
@@ -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,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,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 = 'advanced' | 'basic';
1
+ export type ChaoshubresourcesPermissionLevel = 'Advanced' | 'Basic';
@@ -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.23.3",
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",