@harnessio/react-chaos-manager-client 1.64.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.
@@ -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,7 @@
1
+ import type { DatabaseEnvValueFrom } from '../schemas/DatabaseEnvValueFrom';
2
+ export interface DatabaseEnv {
3
+ key?: string;
4
+ name?: string;
5
+ value?: string;
6
+ valueFrom?: DatabaseEnvValueFrom;
7
+ }
@@ -0,0 +1 @@
1
+ export type DatabaseEnvValueFrom = 'configMapKeyRef' | 'secretKeyRef' | 'value' | 'valueFrom';
@@ -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 { 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.64.0",
3
+ "version": "1.64.1",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",