@harnessio/react-chaos-manager-client 1.30.0 → 1.30.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/hooks/useListConditionQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/hooks/useListRuleQuery.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/InfraInfraFilterInput.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/InfraRegisterInfraUserInputs.d.ts +16 -0
- package/dist/chaos-manager/src/services/schemas/InfraV2KubernetesInfraV2FilterInput.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingStatusResponse.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineChaosOnboardingTaskRequest.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/PipelineonboardingPipelineOnboarding.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
|
5
5
|
export interface ListConditionQueryQueryParams {
|
|
6
6
|
accountIdentifier: string;
|
|
7
7
|
correlationID?: string;
|
|
8
|
+
infrastructureType?: 'Kubernetes' | 'KubernetesV2' | 'Linux' | 'Windows';
|
|
8
9
|
/**
|
|
9
10
|
* @default 15
|
|
10
11
|
*/
|
|
@@ -5,6 +5,7 @@ import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
|
5
5
|
export interface ListRuleQueryQueryParams {
|
|
6
6
|
accountIdentifier: string;
|
|
7
7
|
correlationID?: string;
|
|
8
|
+
infrastructureType?: 'Kubernetes' | 'KubernetesV2' | 'Linux' | 'Windows';
|
|
8
9
|
/**
|
|
9
10
|
* @default 15
|
|
10
11
|
*/
|
|
@@ -4,10 +4,26 @@ export interface InfraRegisterInfraUserInputs {
|
|
|
4
4
|
* The interval at which abort is polled for a running task
|
|
5
5
|
*/
|
|
6
6
|
abortPollInterval?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Name of the log file directory
|
|
9
|
+
*/
|
|
10
|
+
chaosInfrastructureLogFileDirectory?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Maximum number of log file backups
|
|
13
|
+
*/
|
|
14
|
+
chaosInfrastructureLogFileMaxBackups?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Maximum size of log file in MB
|
|
17
|
+
*/
|
|
18
|
+
chaosInfrastructureLogFileMaxSize?: number;
|
|
7
19
|
/**
|
|
8
20
|
* TLS certificate to be used with the infrastructure
|
|
9
21
|
*/
|
|
10
22
|
customTlsCertificate?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Maximum age of log file in days
|
|
25
|
+
*/
|
|
26
|
+
experimentLogFileMaxAgeDays?: number;
|
|
11
27
|
/**
|
|
12
28
|
* The timeout duration for the infrastructure http client
|
|
13
29
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { InfraV2InfraScope } from '../schemas/InfraV2InfraScope';
|
|
2
2
|
import type { InfraV2InfraTypeFilter } from '../schemas/InfraV2InfraTypeFilter';
|
|
3
3
|
export interface InfraV2KubernetesInfraV2FilterInput {
|
|
4
|
+
environmentIDs?: string[];
|
|
4
5
|
infraScope?: InfraV2InfraScope;
|
|
5
6
|
infraTypeFilter?: InfraV2InfraTypeFilter;
|
|
6
7
|
status?: string;
|
|
@@ -8,7 +8,7 @@ export interface PipelineonboardingPipelineChaosOnboardingStatusResponse {
|
|
|
8
8
|
/**
|
|
9
9
|
* Advance Configurations
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
chaosAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
|
|
12
12
|
createdAt?: number;
|
|
13
13
|
createdBy?: string;
|
|
14
14
|
discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { V2OnboardingChaosInfraAdvanceConfiguration } from '../schemas/V2OnboardingChaosInfraAdvanceConfiguration';
|
|
2
2
|
import type { DatabaseAgentConfiguration } from '../schemas/DatabaseAgentConfiguration';
|
|
3
3
|
export interface PipelineonboardingPipelineChaosOnboardingTaskRequest {
|
|
4
|
-
|
|
4
|
+
chaosAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
|
|
5
5
|
discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
|
|
6
6
|
isAIEnabled?: boolean;
|
|
7
7
|
pipelineIdentity?: string;
|
|
@@ -7,7 +7,7 @@ export interface PipelineonboardingPipelineOnboarding {
|
|
|
7
7
|
/**
|
|
8
8
|
* Advance Configurations
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
chaosAdvanceConfiguration?: V2OnboardingChaosInfraAdvanceConfiguration;
|
|
11
11
|
createdAt?: number;
|
|
12
12
|
createdBy?: string;
|
|
13
13
|
discoveryAdvanceConfiguration?: DatabaseAgentConfiguration;
|
package/package.json
CHANGED