@harnessio/react-chaos-manager-client 1.63.0 → 1.64.1
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 +2 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseDiscoveredServiceCollection.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/DatabaseEnv.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseEnv.js +1 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseEnvValueFrom.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseEnvValueFrom.js +4 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseKubernetesAgentConfiguration.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/ExperimentActionRef.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExperimentFaultRef.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExperimentProbeRef.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExperimentsRecentRunDetails.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ExperimenttemplateAction.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExperimenttemplateFault.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbe.d.ts +1 -1
- package/package.json +1 -1
|
@@ -668,6 +668,8 @@ export type { DatabaseDiscoveredServiceOtherSpec } from './schemas/DatabaseDisco
|
|
|
668
668
|
export type { DatabaseDiscoveredServiceSpec } from './schemas/DatabaseDiscoveredServiceSpec';
|
|
669
669
|
export type { DatabaseDiscoveredServiceWindowsVmProcessSpec } from './schemas/DatabaseDiscoveredServiceWindowsVmProcessSpec';
|
|
670
670
|
export type { DatabaseDiscoveredServiceWindowsVmSpec } from './schemas/DatabaseDiscoveredServiceWindowsVmSpec';
|
|
671
|
+
export type { DatabaseEnv } from './schemas/DatabaseEnv';
|
|
672
|
+
export type { DatabaseEnvValueFrom } from './schemas/DatabaseEnvValueFrom';
|
|
671
673
|
export type { DatabaseEnvironmentIdentity } from './schemas/DatabaseEnvironmentIdentity';
|
|
672
674
|
export type { DatabaseKubernetesAgentConfiguration } from './schemas/DatabaseKubernetesAgentConfiguration';
|
|
673
675
|
export type { DatabaseMtlsConfiguration } from './schemas/DatabaseMtlsConfiguration';
|
|
@@ -17,7 +17,7 @@ export interface DatabaseDiscoveredServiceCollection {
|
|
|
17
17
|
removedAt?: string;
|
|
18
18
|
spec: DatabaseDiscoveredServiceSpec;
|
|
19
19
|
tags?: string[];
|
|
20
|
-
type: 'AmazonApplicationLoadBalancer' | 'AmazonClassicLoadBalancer' | 'AmazonEC2Instance' | 'AmazonLambda' | 'AmazonNetworkLoadBalancer' | 'AmazonRelationalDatabaseService' | 'LinuxVM' | 'LinuxVMProcess' | 'WindowsVM' | 'WindowsVMProcess';
|
|
20
|
+
type: 'AmazonApplicationLoadBalancer' | 'AmazonClassicLoadBalancer' | 'AmazonEC2Instance' | 'AmazonLambda' | 'AmazonNetworkLoadBalancer' | 'AmazonRelationalDatabaseService' | 'Kubernetes' | 'LinuxVM' | 'LinuxVMProcess' | 'WindowsVM' | 'WindowsVMProcess';
|
|
21
21
|
uniqueId?: string;
|
|
22
22
|
updatedAt?: string;
|
|
23
23
|
updatedBy?: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type DatabaseEnvValueFrom = 'configMapKeyRef' | 'secretKeyRef' | 'value' | 'valueFrom';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { DatabaseEnv } from '../schemas/DatabaseEnv';
|
|
1
2
|
import type { V1PullPolicy } from '../schemas/V1PullPolicy';
|
|
2
3
|
import type { DatabaseResourceRequirements } from '../schemas/DatabaseResourceRequirements';
|
|
3
4
|
import type { V1Toleration } from '../schemas/V1Toleration';
|
|
@@ -6,6 +7,7 @@ export interface DatabaseKubernetesAgentConfiguration {
|
|
|
6
7
|
[key: string]: string;
|
|
7
8
|
};
|
|
8
9
|
disableNamespaceCreation?: boolean;
|
|
10
|
+
envList?: DatabaseEnv[];
|
|
9
11
|
imagePullPolicy?: V1PullPolicy;
|
|
10
12
|
labels?: {
|
|
11
13
|
[key: string]: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExperimentConditions } from '../schemas/ExperimentConditions';
|
|
2
2
|
import type { TemplateInputMinimum } from '../schemas/TemplateInputMinimum';
|
|
3
3
|
export interface ExperimenttemplateAction {
|
|
4
|
-
|
|
4
|
+
conditionsV2?: ExperimentConditions;
|
|
5
5
|
continueOnCompletion?: boolean;
|
|
6
6
|
identity?: string;
|
|
7
7
|
infraId?: string;
|
|
@@ -2,7 +2,7 @@ import type { ExperimentConditions } from '../schemas/ExperimentConditions';
|
|
|
2
2
|
import type { TemplateInputMinimum } from '../schemas/TemplateInputMinimum';
|
|
3
3
|
export interface ExperimenttemplateFault {
|
|
4
4
|
authEnabled?: boolean;
|
|
5
|
-
|
|
5
|
+
conditionsV2?: ExperimentConditions;
|
|
6
6
|
identity?: string;
|
|
7
7
|
infraId?: string;
|
|
8
8
|
isEnterprise?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExperimentConditions } from '../schemas/ExperimentConditions';
|
|
2
2
|
import type { TemplateInputMinimum } from '../schemas/TemplateInputMinimum';
|
|
3
3
|
export interface ExperimenttemplateProbe {
|
|
4
|
-
|
|
4
|
+
conditionsV2?: ExperimentConditions;
|
|
5
5
|
duration?: string;
|
|
6
6
|
enableDataCollection?: boolean;
|
|
7
7
|
identity?: string;
|
package/package.json
CHANGED