@harnessio/react-chaos-manager-client 0.10.0 → 0.11.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.
- package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.d.ts +23 -0
- package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.d.ts +23 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationStatusMutation.d.ts +20 -0
- package/dist/chaos-manager/src/services/hooks/useGetRecommendationStatusMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useInsertRecommendationsMutation.d.ts +19 -0
- package/dist/chaos-manager/src/services/hooks/useInsertRecommendationsMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.d.ts +25 -0
- package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.js +14 -0
- package/dist/chaos-manager/src/services/hooks/useStopChaosV2ExperimentMutation.d.ts +1 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.d.ts +24 -0
- package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.js +14 -0
- package/dist/chaos-manager/src/services/index.d.ts +52 -27
- package/dist/chaos-manager/src/services/index.js +8 -5
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesChaosStepStatus.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesFaultData.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/ChaosExecutionNodesFaultDetails.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseAgentConfiguration.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseDiscoveredServiceCollection.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseNetworkMapEntity.d.ts +3 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseNetworkMapEntityKubernetesInfo.d.ts +2 -0
- package/dist/chaos-manager/src/services/schemas/DatabaseServiceCollection.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.d.ts +26 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.d.ts +10 -0
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs.d.ts +5 -31
- package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesDefinition.d.ts +0 -6
- package/dist/chaos-manager/src/services/schemas/NetworkmapTargetServiceDetails.d.ts +9 -3
- package/dist/chaos-manager/src/services/schemas/NetworkmapTargetServiceDetails.js +0 -3
- package/dist/chaos-manager/src/services/schemas/RecommendationEc2Instance.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationFaultFilters.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationFixes.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationProbeFilters.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationCategory.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationSource.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationStatus.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationTargetType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationType.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationSuggestions.d.ts +13 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsCreateActionResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsEc2Instance.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsEc2Instance.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFault.d.ts +12 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFaultFilters.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFaultFilters.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusRequest.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusRequest.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusResponse.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsGetRecommendationsStatusResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsIdentifiers.d.ts +5 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsIdentifiers.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInActiveEvent.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInActiveEvent.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInsertRecommendationsRequest.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsInsertRecommendationsRequest.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsLlmResponse.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsLlmResponse.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsNode.d.ts +6 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsNode.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFilters.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFilters.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFix.d.ts +11 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsProbeFix.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.js +4 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsTarget.d.ts +10 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsTarget.js +1 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsWorkload.d.ts +7 -0
- package/dist/chaos-manager/src/services/schemas/RecommendationsWorkload.js +4 -0
- package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
- package/dist/chaos-manager/src/services/schemas/TypesApplication.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesApplication.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.js +4 -0
- package/dist/chaos-manager/src/services/schemas/TypesConfigMap.d.ts +0 -9
- package/dist/chaos-manager/src/services/schemas/TypesExperimentComponents.d.ts +0 -39
- package/dist/chaos-manager/src/services/schemas/TypesHostFile.d.ts +0 -12
- package/dist/chaos-manager/src/services/schemas/TypesProjectedVolumes.d.ts +0 -12
- package/dist/chaos-manager/src/services/schemas/TypesSecret.d.ts +0 -9
- package/dist/chaos-manager/src/services/schemas/TypesSecurityContext.d.ts +0 -6
- package/dist/chaos-manager/src/services/schemas/TypesSelector.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/TypesSidecar.d.ts +0 -15
- package/dist/chaos-manager/src/services/schemas/TypesStatusCheckTimeout.d.ts +0 -6
- package/dist/chaos-manager/src/services/schemas/TypesTargets.d.ts +2 -3
- package/dist/chaos-manager/src/services/schemas/TypesWorkload.d.ts +0 -12
- package/package.json +2 -2
- package/dist/chaos-manager/src/services/hooks/useCreateChaosExperimentExecutionNodeMutation.d.ts +0 -24
- package/dist/chaos-manager/src/services/hooks/useCreateChaosExperimentExecutionNodeMutation.js +0 -14
- package/dist/chaos-manager/src/services/hooks/useExperimentExecutionNodeDetailsQuery.d.ts +0 -28
- package/dist/chaos-manager/src/services/hooks/useExperimentExecutionNodeDetailsQuery.js +0 -20
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineExecutionQuery.d.ts +0 -27
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineExecutionQuery.js +0 -14
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineStepDetailsQuery.d.ts +0 -28
- package/dist/chaos-manager/src/services/hooks/useGetChaosPipelineStepDetailsQuery.js +0 -20
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosExperimentExecutionNodeMutation.d.ts +0 -29
- package/dist/chaos-manager/src/services/hooks/useUpdateChaosExperimentExecutionNodeMutation.js +0 -14
- package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData.d.ts +0 -8
- package/dist/chaos-manager/src/services/schemas/ModelActionData.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/ModelChaosExecutionNode.d.ts +0 -19
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepStatus.d.ts +0 -1
- package/dist/chaos-manager/src/services/schemas/ModelChaosStepType.d.ts +0 -1
- package/dist/chaos-manager/src/services/schemas/ModelCommandProbe.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/ModelErrorData.d.ts +0 -4
- package/dist/chaos-manager/src/services/schemas/ModelFaultData.d.ts +0 -10
- package/dist/chaos-manager/src/services/schemas/ModelHelperPodDetails.d.ts +0 -4
- package/dist/chaos-manager/src/services/schemas/ModelHttpProbe.d.ts +0 -5
- package/dist/chaos-manager/src/services/schemas/ModelProbeData.d.ts +0 -8
- package/dist/chaos-manager/src/services/schemas/ModelProbeIterations.d.ts +0 -11
- package/dist/chaos-manager/src/services/schemas/ModelPromProbe.d.ts +0 -3
- package/dist/chaos-manager/src/services/schemas/TypesFault.d.ts +0 -21
- package/dist/chaos-manager/src/services/schemas/TypesFaultRef.d.ts +0 -14
- package/dist/chaos-manager/src/services/schemas/V1alpha1TargetDetails.d.ts +0 -5
- package/dist/chaos-manager/src/services/schemas/V1alpha1Targets.d.ts +0 -8
- /package/dist/chaos-manager/src/services/schemas/{GithubComHarnessHceSaasHceSdkCommonKubernetesV2ModelChaosData.js → ChaosExecutionNodesFaultDetails.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelActionData.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelChaosExecutionNode.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelFaultData.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelChaosStepStatus.js → GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelChaosStepType.js → RecommendationEc2Instance.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelProbeData.js → RecommendationFaultFilters.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelCommandProbe.js → RecommendationFixes.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelErrorData.js → RecommendationProbeFilters.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelHelperPodDetails.js → RecommendationRecommendationCategory.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelHttpProbe.js → RecommendationRecommendationSource.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelPromProbe.js → RecommendationRecommendationStatus.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{TypesFaultRef.js → RecommendationRecommendationTargetType.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{V1alpha1TargetDetails.js → RecommendationRecommendationType.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{ModelProbeIterations.js → RecommendationSuggestions.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{V1alpha1Targets.js → RecommendationsCreateActionResponse.js} +0 -0
- /package/dist/chaos-manager/src/services/schemas/{TypesFault.js → RecommendationsFault.js} +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RecommendationsCreateActionResponse } from '../schemas/RecommendationsCreateActionResponse';
|
|
3
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
4
|
+
export interface CreateRecommendationMutationQueryParams {
|
|
5
|
+
accountIdentifier: string;
|
|
6
|
+
organizationIdentifier: string;
|
|
7
|
+
projectIdentifier: string;
|
|
8
|
+
recommendationID: string;
|
|
9
|
+
}
|
|
10
|
+
export type CreateRecommendationOkResponse = RecommendationsCreateActionResponse;
|
|
11
|
+
export type CreateRecommendationErrorResponse = unknown;
|
|
12
|
+
export interface CreateRecommendationProps extends Omit<FetcherOptions<CreateRecommendationMutationQueryParams, unknown>, 'url'> {
|
|
13
|
+
queryParams: CreateRecommendationMutationQueryParams;
|
|
14
|
+
}
|
|
15
|
+
export interface CreateRecommendationResponseContainer {
|
|
16
|
+
body: CreateRecommendationOkResponse;
|
|
17
|
+
headers: Headers;
|
|
18
|
+
}
|
|
19
|
+
export declare function createRecommendation(props: CreateRecommendationProps): Promise<CreateRecommendationResponseContainer>;
|
|
20
|
+
export type CreateRecommendationMutationProps<T extends keyof CreateRecommendationProps> = Omit<CreateRecommendationProps, T> & Partial<Pick<CreateRecommendationProps, T>>;
|
|
21
|
+
/**
|
|
22
|
+
* Create new experiment based on the recommendation
|
|
23
|
+
*/
|
|
24
|
+
export declare function useCreateRecommendationMutation<T extends keyof CreateRecommendationProps>(props: Pick<Partial<CreateRecommendationProps>, T>, options?: Omit<UseMutationOptions<CreateRecommendationResponseContainer, CreateRecommendationErrorResponse, CreateRecommendationMutationProps<T>>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CreateRecommendationResponseContainer, unknown, CreateRecommendationMutationProps<T>, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function createRecommendation(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/rest/recommendations/action/create`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Create new experiment based on the recommendation
|
|
11
|
+
*/
|
|
12
|
+
export function useCreateRecommendationMutation(props, options) {
|
|
13
|
+
return useMutation((mutateProps) => createRecommendation(Object.assign(Object.assign({}, props), mutateProps)), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
3
|
+
export interface DeleteRecommendationMutationQueryParams {
|
|
4
|
+
accountIdentifier: string;
|
|
5
|
+
organizationIdentifier: string;
|
|
6
|
+
projectIdentifier: string;
|
|
7
|
+
recommendationID: string;
|
|
8
|
+
}
|
|
9
|
+
export type DeleteRecommendationOkResponse = unknown;
|
|
10
|
+
export type DeleteRecommendationErrorResponse = unknown;
|
|
11
|
+
export interface DeleteRecommendationProps extends Omit<FetcherOptions<DeleteRecommendationMutationQueryParams, unknown>, 'url'> {
|
|
12
|
+
queryParams: DeleteRecommendationMutationQueryParams;
|
|
13
|
+
}
|
|
14
|
+
export interface DeleteRecommendationResponseContainer {
|
|
15
|
+
body: DeleteRecommendationOkResponse;
|
|
16
|
+
headers: Headers;
|
|
17
|
+
}
|
|
18
|
+
export declare function deleteRecommendation(props: DeleteRecommendationProps): Promise<DeleteRecommendationResponseContainer>;
|
|
19
|
+
export type DeleteRecommendationMutationProps<T extends keyof DeleteRecommendationProps> = Omit<DeleteRecommendationProps, T> & Partial<Pick<DeleteRecommendationProps, T>>;
|
|
20
|
+
/**
|
|
21
|
+
* Delete recommendation based on the recommendation id
|
|
22
|
+
*/
|
|
23
|
+
export declare function useDeleteRecommendationMutation<T extends keyof DeleteRecommendationProps>(props: Pick<Partial<DeleteRecommendationProps>, T>, options?: Omit<UseMutationOptions<DeleteRecommendationResponseContainer, DeleteRecommendationErrorResponse, DeleteRecommendationMutationProps<T>>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeleteRecommendationResponseContainer, unknown, DeleteRecommendationMutationProps<T>, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function deleteRecommendation(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/rest/recommendations`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Delete recommendation based on the recommendation id
|
|
11
|
+
*/
|
|
12
|
+
export function useDeleteRecommendationMutation(props, options) {
|
|
13
|
+
return useMutation((mutateProps) => deleteRecommendation(Object.assign(Object.assign({}, props), mutateProps)), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation } from '../schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation';
|
|
3
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
4
|
+
export interface GetRecommendationQueryQueryParams {
|
|
5
|
+
accountIdentifier: string;
|
|
6
|
+
organizationIdentifier: string;
|
|
7
|
+
projectIdentifier: string;
|
|
8
|
+
recommendationID: string;
|
|
9
|
+
}
|
|
10
|
+
export type GetRecommendationOkResponse = GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation;
|
|
11
|
+
export type GetRecommendationErrorResponse = unknown;
|
|
12
|
+
export interface GetRecommendationProps extends Omit<FetcherOptions<GetRecommendationQueryQueryParams, unknown>, 'url'> {
|
|
13
|
+
queryParams: GetRecommendationQueryQueryParams;
|
|
14
|
+
}
|
|
15
|
+
export interface GetRecommendationResponseContainer {
|
|
16
|
+
body: GetRecommendationOkResponse;
|
|
17
|
+
headers: Headers;
|
|
18
|
+
}
|
|
19
|
+
export declare function getRecommendation(props: GetRecommendationProps): Promise<GetRecommendationResponseContainer>;
|
|
20
|
+
/**
|
|
21
|
+
* Get recommendation details based on the recommendation id
|
|
22
|
+
*/
|
|
23
|
+
export declare function useGetRecommendationQuery(props: GetRecommendationProps, options?: Omit<UseQueryOptions<GetRecommendationResponseContainer, GetRecommendationErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetRecommendationResponseContainer, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function getRecommendation(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/rest/recommendations`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get recommendation details based on the recommendation id
|
|
11
|
+
*/
|
|
12
|
+
export function useGetRecommendationQuery(props, options) {
|
|
13
|
+
return useQuery(['getRecommendation', props.queryParams], ({ signal }) => getRecommendation(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RecommendationsGetRecommendationsStatusResponse } from '../schemas/RecommendationsGetRecommendationsStatusResponse';
|
|
3
|
+
import type { RecommendationsGetRecommendationsStatusRequest } from '../schemas/RecommendationsGetRecommendationsStatusRequest';
|
|
4
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
5
|
+
export type GetRecommendationStatusRequestBody = RecommendationsGetRecommendationsStatusRequest;
|
|
6
|
+
export type GetRecommendationStatusOkResponse = RecommendationsGetRecommendationsStatusResponse;
|
|
7
|
+
export type GetRecommendationStatusErrorResponse = unknown;
|
|
8
|
+
export interface GetRecommendationStatusProps extends Omit<FetcherOptions<unknown, GetRecommendationStatusRequestBody>, 'url'> {
|
|
9
|
+
body: GetRecommendationStatusRequestBody;
|
|
10
|
+
}
|
|
11
|
+
export interface GetRecommendationStatusResponseContainer {
|
|
12
|
+
body: GetRecommendationStatusOkResponse;
|
|
13
|
+
headers: Headers;
|
|
14
|
+
}
|
|
15
|
+
export declare function getRecommendationStatus(props: GetRecommendationStatusProps): Promise<GetRecommendationStatusResponseContainer>;
|
|
16
|
+
export type GetRecommendationStatusMutationProps<T extends keyof GetRecommendationStatusProps> = Omit<GetRecommendationStatusProps, T> & Partial<Pick<GetRecommendationStatusProps, T>>;
|
|
17
|
+
/**
|
|
18
|
+
* get the recommendation status
|
|
19
|
+
*/
|
|
20
|
+
export declare function useGetRecommendationStatusMutation<T extends keyof GetRecommendationStatusProps>(props: Pick<Partial<GetRecommendationStatusProps>, T>, options?: Omit<UseMutationOptions<GetRecommendationStatusResponseContainer, GetRecommendationStatusErrorResponse, GetRecommendationStatusMutationProps<T>>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<GetRecommendationStatusResponseContainer, unknown, GetRecommendationStatusMutationProps<T>, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function getRecommendationStatus(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/internal/recommendations/status`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* get the recommendation status
|
|
11
|
+
*/
|
|
12
|
+
export function useGetRecommendationStatusMutation(props, options) {
|
|
13
|
+
return useMutation((mutateProps) => getRecommendationStatus(Object.assign(Object.assign({}, props), mutateProps)), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RecommendationsInsertRecommendationsRequest } from '../schemas/RecommendationsInsertRecommendationsRequest';
|
|
3
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
4
|
+
export type InsertRecommendationsRequestBody = RecommendationsInsertRecommendationsRequest;
|
|
5
|
+
export type InsertRecommendationsOkResponse = unknown;
|
|
6
|
+
export type InsertRecommendationsErrorResponse = unknown;
|
|
7
|
+
export interface InsertRecommendationsProps extends Omit<FetcherOptions<unknown, InsertRecommendationsRequestBody>, 'url'> {
|
|
8
|
+
body: InsertRecommendationsRequestBody;
|
|
9
|
+
}
|
|
10
|
+
export interface InsertRecommendationsResponseContainer {
|
|
11
|
+
body: InsertRecommendationsOkResponse;
|
|
12
|
+
headers: Headers;
|
|
13
|
+
}
|
|
14
|
+
export declare function insertRecommendations(props: InsertRecommendationsProps): Promise<InsertRecommendationsResponseContainer>;
|
|
15
|
+
export type InsertRecommendationsMutationProps<T extends keyof InsertRecommendationsProps> = Omit<InsertRecommendationsProps, T> & Partial<Pick<InsertRecommendationsProps, T>>;
|
|
16
|
+
/**
|
|
17
|
+
* Insert the recommendation details
|
|
18
|
+
*/
|
|
19
|
+
export declare function useInsertRecommendationsMutation<T extends keyof InsertRecommendationsProps>(props: Pick<Partial<InsertRecommendationsProps>, T>, options?: Omit<UseMutationOptions<InsertRecommendationsResponseContainer, InsertRecommendationsErrorResponse, InsertRecommendationsMutationProps<T>>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<InsertRecommendationsResponseContainer, unknown, InsertRecommendationsMutationProps<T>, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function insertRecommendations(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/internal/recommendations/insert`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Insert the recommendation details
|
|
11
|
+
*/
|
|
12
|
+
export function useInsertRecommendationsMutation(props, options) {
|
|
13
|
+
return useMutation((mutateProps) => insertRecommendations(Object.assign(Object.assign({}, props), mutateProps)), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RecommendationsListRecommendationsResponse } from '../schemas/RecommendationsListRecommendationsResponse';
|
|
3
|
+
import type { RecommendationsListRecommendationsRequest } from '../schemas/RecommendationsListRecommendationsRequest';
|
|
4
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
5
|
+
export interface ListRecommendationsQueryQueryParams {
|
|
6
|
+
accountIdentifier: string;
|
|
7
|
+
organizationIdentifier: string;
|
|
8
|
+
projectIdentifier: string;
|
|
9
|
+
}
|
|
10
|
+
export type ListRecommendationsRequestBody = RecommendationsListRecommendationsRequest;
|
|
11
|
+
export type ListRecommendationsOkResponse = RecommendationsListRecommendationsResponse;
|
|
12
|
+
export type ListRecommendationsErrorResponse = unknown;
|
|
13
|
+
export interface ListRecommendationsProps extends Omit<FetcherOptions<ListRecommendationsQueryQueryParams, ListRecommendationsRequestBody>, 'url'> {
|
|
14
|
+
queryParams: ListRecommendationsQueryQueryParams;
|
|
15
|
+
body: ListRecommendationsRequestBody;
|
|
16
|
+
}
|
|
17
|
+
export interface ListRecommendationsResponseContainer {
|
|
18
|
+
body: ListRecommendationsOkResponse;
|
|
19
|
+
headers: Headers;
|
|
20
|
+
}
|
|
21
|
+
export declare function listRecommendations(props: ListRecommendationsProps): Promise<ListRecommendationsResponseContainer>;
|
|
22
|
+
/**
|
|
23
|
+
* List recommendations based on the filters
|
|
24
|
+
*/
|
|
25
|
+
export declare function useListRecommendationsQuery(props: ListRecommendationsProps, options?: Omit<UseQueryOptions<ListRecommendationsResponseContainer, ListRecommendationsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ListRecommendationsResponseContainer, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function listRecommendations(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/rest/recommendations`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* List recommendations based on the filters
|
|
11
|
+
*/
|
|
12
|
+
export function useListRecommendationsQuery(props, options) {
|
|
13
|
+
return useQuery(['listRecommendations', props.queryParams, props.body], ({ signal }) => listRecommendations(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RecommendationsRunActionResponse } from '../schemas/RecommendationsRunActionResponse';
|
|
3
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
4
|
+
export interface RunRecommendationMutationQueryParams {
|
|
5
|
+
accountIdentifier: string;
|
|
6
|
+
organizationIdentifier: string;
|
|
7
|
+
projectIdentifier: string;
|
|
8
|
+
recommendationID: string;
|
|
9
|
+
}
|
|
10
|
+
export type RunRecommendationOkResponse = RecommendationsRunActionResponse;
|
|
11
|
+
export type RunRecommendationErrorResponse = unknown;
|
|
12
|
+
export interface RunRecommendationProps extends Omit<FetcherOptions<RunRecommendationMutationQueryParams, unknown>, 'url'> {
|
|
13
|
+
queryParams: RunRecommendationMutationQueryParams;
|
|
14
|
+
}
|
|
15
|
+
export interface RunRecommendationResponseContainer {
|
|
16
|
+
body: RunRecommendationOkResponse;
|
|
17
|
+
headers: Headers;
|
|
18
|
+
}
|
|
19
|
+
export declare function runRecommendation(props: RunRecommendationProps): Promise<RunRecommendationResponseContainer>;
|
|
20
|
+
export type RunRecommendationMutationProps<T extends keyof RunRecommendationProps> = Omit<RunRecommendationProps, T> & Partial<Pick<RunRecommendationProps, T>>;
|
|
21
|
+
/**
|
|
22
|
+
* Run the recommended experiment
|
|
23
|
+
*/
|
|
24
|
+
export declare function useRunRecommendationMutation<T extends keyof RunRecommendationProps>(props: Pick<Partial<RunRecommendationProps>, T>, options?: Omit<UseMutationOptions<RunRecommendationResponseContainer, RunRecommendationErrorResponse, RunRecommendationMutationProps<T>>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<RunRecommendationResponseContainer, unknown, RunRecommendationMutationProps<T>, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function runRecommendation(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/rest/recommendations/action/run`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Run the recommended experiment
|
|
11
|
+
*/
|
|
12
|
+
export function useRunRecommendationMutation(props, options) {
|
|
13
|
+
return useMutation((mutateProps) => runRecommendation(Object.assign(Object.assign({}, props), mutateProps)), options);
|
|
14
|
+
}
|
|
@@ -11,6 +11,7 @@ export interface StopChaosV2ExperimentMutationQueryParams {
|
|
|
11
11
|
projectIdentifier: string;
|
|
12
12
|
experimentRunId: string;
|
|
13
13
|
notifyId: string;
|
|
14
|
+
force?: boolean;
|
|
14
15
|
}
|
|
15
16
|
export type StopChaosV2ExperimentOkResponse = TypesStopChaosV2ExperimentResponse;
|
|
16
17
|
export type StopChaosV2ExperimentErrorResponse = ApiRestError;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import { FetcherOptions } from '../../../../custom-fetcher/index.js';
|
|
3
|
+
export interface UpdateRecommendationStatusMutationQueryParams {
|
|
4
|
+
accountIdentifier: string;
|
|
5
|
+
organizationIdentifier: string;
|
|
6
|
+
projectIdentifier: string;
|
|
7
|
+
recommendationID: string;
|
|
8
|
+
status: string;
|
|
9
|
+
}
|
|
10
|
+
export type UpdateRecommendationStatusOkResponse = unknown;
|
|
11
|
+
export type UpdateRecommendationStatusErrorResponse = unknown;
|
|
12
|
+
export interface UpdateRecommendationStatusProps extends Omit<FetcherOptions<UpdateRecommendationStatusMutationQueryParams, unknown>, 'url'> {
|
|
13
|
+
queryParams: UpdateRecommendationStatusMutationQueryParams;
|
|
14
|
+
}
|
|
15
|
+
export interface UpdateRecommendationStatusResponseContainer {
|
|
16
|
+
body: UpdateRecommendationStatusOkResponse;
|
|
17
|
+
headers: Headers;
|
|
18
|
+
}
|
|
19
|
+
export declare function updateRecommendationStatus(props: UpdateRecommendationStatusProps): Promise<UpdateRecommendationStatusResponseContainer>;
|
|
20
|
+
export type UpdateRecommendationStatusMutationProps<T extends keyof UpdateRecommendationStatusProps> = Omit<UpdateRecommendationStatusProps, T> & Partial<Pick<UpdateRecommendationStatusProps, T>>;
|
|
21
|
+
/**
|
|
22
|
+
* Update the recommendation status
|
|
23
|
+
*/
|
|
24
|
+
export declare function useUpdateRecommendationStatusMutation<T extends keyof UpdateRecommendationStatusProps>(props: Pick<Partial<UpdateRecommendationStatusProps>, T>, options?: Omit<UseMutationOptions<UpdateRecommendationStatusResponseContainer, UpdateRecommendationStatusErrorResponse, UpdateRecommendationStatusMutationProps<T>>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<UpdateRecommendationStatusResponseContainer, unknown, UpdateRecommendationStatusMutationProps<T>, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../custom-fetcher/index.js';
|
|
6
|
+
export function updateRecommendationStatus(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/rest/recommendations/status`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Update the recommendation status
|
|
11
|
+
*/
|
|
12
|
+
export function useUpdateRecommendationStatusMutation(props, options) {
|
|
13
|
+
return useMutation((mutateProps) => updateRecommendationStatus(Object.assign(Object.assign({}, props), mutateProps)), options);
|
|
14
|
+
}
|
|
@@ -10,8 +10,6 @@ export type { CreateActionErrorResponse, CreateActionMutationProps, CreateAction
|
|
|
10
10
|
export { createAction, useCreateActionMutation } from './hooks/useCreateActionMutation';
|
|
11
11
|
export type { CreateActionTemplateErrorResponse, CreateActionTemplateMutationProps, CreateActionTemplateMutationQueryParams, CreateActionTemplateOkResponse, CreateActionTemplateProps, CreateActionTemplateRequestBody, } from './hooks/useCreateActionTemplateMutation';
|
|
12
12
|
export { createActionTemplate, useCreateActionTemplateMutation, } from './hooks/useCreateActionTemplateMutation';
|
|
13
|
-
export type { CreateChaosExperimentExecutionNodeErrorResponse, CreateChaosExperimentExecutionNodeMutationPathParams, CreateChaosExperimentExecutionNodeMutationProps, CreateChaosExperimentExecutionNodeOkResponse, CreateChaosExperimentExecutionNodeProps, CreateChaosExperimentExecutionNodeRequestBody, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
|
|
14
|
-
export { createChaosExperimentExecutionNode, useCreateChaosExperimentExecutionNodeMutation, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
|
|
15
13
|
export type { CreateChaosExperimentPipelineErrorResponse, CreateChaosExperimentPipelineMutationProps, CreateChaosExperimentPipelineMutationQueryParams, CreateChaosExperimentPipelineOkResponse, CreateChaosExperimentPipelineProps, CreateChaosExperimentPipelineRequestBody, } from './hooks/useCreateChaosExperimentPipelineMutation';
|
|
16
14
|
export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
|
|
17
15
|
export type { CreateChaosHubErrorResponse, CreateChaosHubMutationPathParams, CreateChaosHubMutationProps, CreateChaosHubMutationQueryParams, CreateChaosHubOkResponse, CreateChaosHubProps, CreateChaosHubRequestBody, } from './hooks/useCreateChaosHubMutation';
|
|
@@ -24,6 +22,8 @@ export type { CreateInputSetErrorResponse, CreateInputSetMutationPathParams, Cre
|
|
|
24
22
|
export { createInputSet, useCreateInputSetMutation } from './hooks/useCreateInputSetMutation';
|
|
25
23
|
export type { CreateProbeErrorResponse, CreateProbeMutationProps, CreateProbeMutationQueryParams, CreateProbeOkResponse, CreateProbeProps, CreateProbeRequestBody, } from './hooks/useCreateProbeMutation';
|
|
26
24
|
export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
|
|
25
|
+
export type { CreateRecommendationErrorResponse, CreateRecommendationMutationProps, CreateRecommendationMutationQueryParams, CreateRecommendationOkResponse, CreateRecommendationProps, } from './hooks/useCreateRecommendationMutation';
|
|
26
|
+
export { createRecommendation, useCreateRecommendationMutation, } from './hooks/useCreateRecommendationMutation';
|
|
27
27
|
export type { CreateV2OnboardingErrorResponse, CreateV2OnboardingMutationProps, CreateV2OnboardingMutationQueryParams, CreateV2OnboardingOkResponse, CreateV2OnboardingProps, CreateV2OnboardingRequestBody, } from './hooks/useCreateV2OnboardingMutation';
|
|
28
28
|
export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
|
|
29
29
|
export type { DeleteActionErrorResponse, DeleteActionMutationPathParams, DeleteActionMutationProps, DeleteActionMutationQueryParams, DeleteActionOkResponse, DeleteActionProps, } from './hooks/useDeleteActionMutation';
|
|
@@ -38,12 +38,12 @@ export type { DeleteInputSetErrorResponse, DeleteInputSetMutationPathParams, Del
|
|
|
38
38
|
export { deleteInputSet, useDeleteInputSetMutation } from './hooks/useDeleteInputSetMutation';
|
|
39
39
|
export type { DeleteProbeErrorResponse, DeleteProbeMutationPathParams, DeleteProbeMutationProps, DeleteProbeMutationQueryParams, DeleteProbeOkResponse, DeleteProbeProps, } from './hooks/useDeleteProbeMutation';
|
|
40
40
|
export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
|
|
41
|
+
export type { DeleteRecommendationErrorResponse, DeleteRecommendationMutationProps, DeleteRecommendationMutationQueryParams, DeleteRecommendationOkResponse, DeleteRecommendationProps, } from './hooks/useDeleteRecommendationMutation';
|
|
42
|
+
export { deleteRecommendation, useDeleteRecommendationMutation, } from './hooks/useDeleteRecommendationMutation';
|
|
41
43
|
export type { DeleteTargetNetworkMapErrorResponse, DeleteTargetNetworkMapMutationPathParams, DeleteTargetNetworkMapMutationProps, DeleteTargetNetworkMapMutationQueryParams, DeleteTargetNetworkMapOkResponse, DeleteTargetNetworkMapProps, } from './hooks/useDeleteTargetNetworkMapMutation';
|
|
42
44
|
export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
|
|
43
45
|
export type { EnableProbeErrorResponse, EnableProbeMutationPathParams, EnableProbeMutationProps, EnableProbeMutationQueryParams, EnableProbeOkResponse, EnableProbeProps, EnableProbeRequestBody, } from './hooks/useEnableProbeMutation';
|
|
44
46
|
export { enableProbe, useEnableProbeMutation } from './hooks/useEnableProbeMutation';
|
|
45
|
-
export type { ExperimentExecutionNodeDetailsErrorResponse, ExperimentExecutionNodeDetailsOkResponse, ExperimentExecutionNodeDetailsProps, ExperimentExecutionNodeDetailsQueryPathParams, ExperimentExecutionNodeDetailsQueryQueryParams, } from './hooks/useExperimentExecutionNodeDetailsQuery';
|
|
46
|
-
export { experimentExecutionNodeDetails, useExperimentExecutionNodeDetailsQuery, } from './hooks/useExperimentExecutionNodeDetailsQuery';
|
|
47
47
|
export type { GetAccountServiceDetailsErrorResponse, GetAccountServiceDetailsOkResponse, GetAccountServiceDetailsProps, GetAccountServiceDetailsQueryPathParams, GetAccountServiceDetailsQueryQueryParams, } from './hooks/useGetAccountServiceDetailsQuery';
|
|
48
48
|
export { getAccountServiceDetails, useGetAccountServiceDetailsQuery, } from './hooks/useGetAccountServiceDetailsQuery';
|
|
49
49
|
export type { GetAccountServiceUsageStatsErrorResponse, GetAccountServiceUsageStatsOkResponse, GetAccountServiceUsageStatsProps, GetAccountServiceUsageStatsQueryPathParams, GetAccountServiceUsageStatsQueryQueryParams, } from './hooks/useGetAccountServiceUsageStatsQuery';
|
|
@@ -62,10 +62,6 @@ export type { GetChaosExperimentRunReportErrorResponse, GetChaosExperimentRunRep
|
|
|
62
62
|
export { getChaosExperimentRunReport, useGetChaosExperimentRunReportQuery, } from './hooks/useGetChaosExperimentRunReportQuery';
|
|
63
63
|
export type { GetChaosHubErrorResponse, GetChaosHubOkResponse, GetChaosHubProps, GetChaosHubQueryPathParams, GetChaosHubQueryQueryParams, } from './hooks/useGetChaosHubQuery';
|
|
64
64
|
export { getChaosHub, useGetChaosHubQuery } from './hooks/useGetChaosHubQuery';
|
|
65
|
-
export type { GetChaosPipelineExecutionErrorResponse, GetChaosPipelineExecutionOkResponse, GetChaosPipelineExecutionProps, GetChaosPipelineExecutionQueryPathParams, GetChaosPipelineExecutionQueryQueryParams, } from './hooks/useGetChaosPipelineExecutionQuery';
|
|
66
|
-
export { getChaosPipelineExecution, useGetChaosPipelineExecutionQuery, } from './hooks/useGetChaosPipelineExecutionQuery';
|
|
67
|
-
export type { GetChaosPipelineStepDetailsErrorResponse, GetChaosPipelineStepDetailsOkResponse, GetChaosPipelineStepDetailsProps, GetChaosPipelineStepDetailsQueryPathParams, GetChaosPipelineStepDetailsQueryQueryParams, } from './hooks/useGetChaosPipelineStepDetailsQuery';
|
|
68
|
-
export { getChaosPipelineStepDetails, useGetChaosPipelineStepDetailsQuery, } from './hooks/useGetChaosPipelineStepDetailsQuery';
|
|
69
65
|
export type { GetChaosV2ExperimentErrorResponse, GetChaosV2ExperimentOkResponse, GetChaosV2ExperimentProps, GetChaosV2ExperimentQueryPathParams, GetChaosV2ExperimentQueryQueryParams, } from './hooks/useGetChaosV2ExperimentQuery';
|
|
70
66
|
export { getChaosV2Experiment, useGetChaosV2ExperimentQuery, } from './hooks/useGetChaosV2ExperimentQuery';
|
|
71
67
|
export type { GetChaosV2ExperimentRunInternalApiErrorResponse, GetChaosV2ExperimentRunInternalApiMutationPathParams, GetChaosV2ExperimentRunInternalApiMutationProps, GetChaosV2ExperimentRunInternalApiMutationQueryParams, GetChaosV2ExperimentRunInternalApiOkResponse, GetChaosV2ExperimentRunInternalApiProps, GetChaosV2ExperimentRunInternalApiRequestBody, } from './hooks/useGetChaosV2ExperimentRunInternalApiMutation';
|
|
@@ -108,6 +104,10 @@ export type { GetProbeManifestErrorResponse, GetProbeManifestOkResponse, GetProb
|
|
|
108
104
|
export { getProbeManifest, useGetProbeManifestQuery } from './hooks/useGetProbeManifestQuery';
|
|
109
105
|
export type { GetProbeErrorResponse, GetProbeOkResponse, GetProbeProps, GetProbeQueryPathParams, GetProbeQueryQueryParams, } from './hooks/useGetProbeQuery';
|
|
110
106
|
export { getProbe, useGetProbeQuery } from './hooks/useGetProbeQuery';
|
|
107
|
+
export type { GetRecommendationErrorResponse, GetRecommendationOkResponse, GetRecommendationProps, GetRecommendationQueryQueryParams, } from './hooks/useGetRecommendationQuery';
|
|
108
|
+
export { getRecommendation, useGetRecommendationQuery } from './hooks/useGetRecommendationQuery';
|
|
109
|
+
export type { GetRecommendationStatusErrorResponse, GetRecommendationStatusMutationProps, GetRecommendationStatusOkResponse, GetRecommendationStatusProps, GetRecommendationStatusRequestBody, } from './hooks/useGetRecommendationStatusMutation';
|
|
110
|
+
export { getRecommendationStatus, useGetRecommendationStatusMutation, } from './hooks/useGetRecommendationStatusMutation';
|
|
111
111
|
export type { GetResourceUsageErrorResponse, GetResourceUsageOkResponse, GetResourceUsageProps, } from './hooks/useGetResourceUsageQuery';
|
|
112
112
|
export { getResourceUsage, useGetResourceUsageQuery } from './hooks/useGetResourceUsageQuery';
|
|
113
113
|
export type { GetServiceResponseErrorResponse, GetServiceResponseOkResponse, GetServiceResponseProps, GetServiceResponseQueryPathParams, GetServiceResponseQueryQueryParams, } from './hooks/useGetServiceResponseQuery';
|
|
@@ -124,6 +124,8 @@ export type { GetV2OnboardingErrorResponse, GetV2OnboardingOkResponse, GetV2Onbo
|
|
|
124
124
|
export { getV2Onboarding, useGetV2OnboardingQuery } from './hooks/useGetV2OnboardingQuery';
|
|
125
125
|
export type { ImportActionErrorResponse, ImportActionMutationProps, ImportActionMutationQueryParams, ImportActionOkResponse, ImportActionProps, ImportActionRequestBody, } from './hooks/useImportActionMutation';
|
|
126
126
|
export { importAction, useImportActionMutation } from './hooks/useImportActionMutation';
|
|
127
|
+
export type { InsertRecommendationsErrorResponse, InsertRecommendationsMutationProps, InsertRecommendationsOkResponse, InsertRecommendationsProps, InsertRecommendationsRequestBody, } from './hooks/useInsertRecommendationsMutation';
|
|
128
|
+
export { insertRecommendations, useInsertRecommendationsMutation, } from './hooks/useInsertRecommendationsMutation';
|
|
127
129
|
export type { ListActionTemplateErrorResponse, ListActionTemplateOkResponse, ListActionTemplateProps, ListActionTemplateQueryQueryParams, } from './hooks/useListActionTemplateQuery';
|
|
128
130
|
export { listActionTemplate, useListActionTemplateQuery } from './hooks/useListActionTemplateQuery';
|
|
129
131
|
export type { ListActionTemplateRevisionsErrorResponse, ListActionTemplateRevisionsOkResponse, ListActionTemplateRevisionsProps, ListActionTemplateRevisionsQueryPathParams, ListActionTemplateRevisionsQueryQueryParams, } from './hooks/useListActionTemplateRevisionsQuery';
|
|
@@ -160,6 +162,8 @@ export type { ListK8sInfrasV2ErrorResponse, ListK8sInfrasV2MutationProps, ListK8
|
|
|
160
162
|
export { listK8sInfrasV2, useListK8sInfrasV2Mutation } from './hooks/useListK8sInfrasV2Mutation';
|
|
161
163
|
export type { ListProbesErrorResponse, ListProbesOkResponse, ListProbesProps, ListProbesQueryQueryParams, } from './hooks/useListProbesQuery';
|
|
162
164
|
export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
|
|
165
|
+
export type { ListRecommendationsErrorResponse, ListRecommendationsOkResponse, ListRecommendationsProps, ListRecommendationsQueryQueryParams, ListRecommendationsRequestBody, } from './hooks/useListRecommendationsQuery';
|
|
166
|
+
export { listRecommendations, useListRecommendationsQuery, } from './hooks/useListRecommendationsQuery';
|
|
163
167
|
export type { ListServiceErrorResponse, ListServiceOkResponse, ListServiceProps, ListServiceQueryPathParams, ListServiceQueryQueryParams, } from './hooks/useListServiceQuery';
|
|
164
168
|
export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
|
|
165
169
|
export type { ListTargetNetworkMapsErrorResponse, ListTargetNetworkMapsOkResponse, ListTargetNetworkMapsProps, ListTargetNetworkMapsQueryQueryParams, ListTargetNetworkMapsRequestBody, } from './hooks/useListTargetNetworkMapsQuery';
|
|
@@ -186,6 +190,8 @@ export type { RunChaosV2ExperimentErrorResponse, RunChaosV2ExperimentMutationPat
|
|
|
186
190
|
export { runChaosV2Experiment, useRunChaosV2ExperimentMutation, } from './hooks/useRunChaosV2ExperimentMutation';
|
|
187
191
|
export type { RunChaosV2InternalApiErrorResponse, RunChaosV2InternalApiMutationPathParams, RunChaosV2InternalApiMutationProps, RunChaosV2InternalApiMutationQueryParams, RunChaosV2InternalApiOkResponse, RunChaosV2InternalApiProps, RunChaosV2InternalApiRequestBody, } from './hooks/useRunChaosV2InternalApiMutation';
|
|
188
192
|
export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hooks/useRunChaosV2InternalApiMutation';
|
|
193
|
+
export type { RunRecommendationErrorResponse, RunRecommendationMutationProps, RunRecommendationMutationQueryParams, RunRecommendationOkResponse, RunRecommendationProps, } from './hooks/useRunRecommendationMutation';
|
|
194
|
+
export { runRecommendation, useRunRecommendationMutation, } from './hooks/useRunRecommendationMutation';
|
|
189
195
|
export type { SaveChaosV2ExperimentErrorResponse, SaveChaosV2ExperimentMutationProps, SaveChaosV2ExperimentMutationQueryParams, SaveChaosV2ExperimentOkResponse, SaveChaosV2ExperimentProps, SaveChaosV2ExperimentRequestBody, } from './hooks/useSaveChaosV2ExperimentMutation';
|
|
190
196
|
export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
|
|
191
197
|
export type { StopChaosV2ExperimentErrorResponse, StopChaosV2ExperimentMutationPathParams, StopChaosV2ExperimentMutationProps, StopChaosV2ExperimentMutationQueryParams, StopChaosV2ExperimentOkResponse, StopChaosV2ExperimentProps, } from './hooks/useStopChaosV2ExperimentMutation';
|
|
@@ -196,8 +202,6 @@ export type { UpdateActionErrorResponse, UpdateActionMutationPathParams, UpdateA
|
|
|
196
202
|
export { updateAction, useUpdateActionMutation } from './hooks/useUpdateActionMutation';
|
|
197
203
|
export type { UpdateActionTemplateErrorResponse, UpdateActionTemplateMutationPathParams, UpdateActionTemplateMutationProps, UpdateActionTemplateMutationQueryParams, UpdateActionTemplateOkResponse, UpdateActionTemplateProps, UpdateActionTemplateRequestBody, } from './hooks/useUpdateActionTemplateMutation';
|
|
198
204
|
export { updateActionTemplate, useUpdateActionTemplateMutation, } from './hooks/useUpdateActionTemplateMutation';
|
|
199
|
-
export type { UpdateChaosExperimentExecutionNodeErrorResponse, UpdateChaosExperimentExecutionNodeMutationPathParams, UpdateChaosExperimentExecutionNodeMutationProps, UpdateChaosExperimentExecutionNodeMutationQueryParams, UpdateChaosExperimentExecutionNodeOkResponse, UpdateChaosExperimentExecutionNodeProps, UpdateChaosExperimentExecutionNodeRequestBody, } from './hooks/useUpdateChaosExperimentExecutionNodeMutation';
|
|
200
|
-
export { updateChaosExperimentExecutionNode, useUpdateChaosExperimentExecutionNodeMutation, } from './hooks/useUpdateChaosExperimentExecutionNodeMutation';
|
|
201
205
|
export type { UpdateChaosHubErrorResponse, UpdateChaosHubMutationPathParams, UpdateChaosHubMutationProps, UpdateChaosHubMutationQueryParams, UpdateChaosHubOkResponse, UpdateChaosHubProps, UpdateChaosHubRequestBody, } from './hooks/useUpdateChaosHubMutation';
|
|
202
206
|
export { updateChaosHub, useUpdateChaosHubMutation } from './hooks/useUpdateChaosHubMutation';
|
|
203
207
|
export type { UpdateChaosV2CronExperimentErrorResponse, UpdateChaosV2CronExperimentMutationProps, UpdateChaosV2CronExperimentMutationQueryParams, UpdateChaosV2CronExperimentOkResponse, UpdateChaosV2CronExperimentProps, UpdateChaosV2CronExperimentRequestBody, } from './hooks/useUpdateChaosV2CronExperimentMutation';
|
|
@@ -220,6 +224,8 @@ export type { UpdateNoteErrorResponse, UpdateNoteMutationProps, UpdateNoteMutati
|
|
|
220
224
|
export { updateNote, useUpdateNoteMutation } from './hooks/useUpdateNoteMutation';
|
|
221
225
|
export type { UpdateProbeErrorResponse, UpdateProbeMutationPathParams, UpdateProbeMutationProps, UpdateProbeMutationQueryParams, UpdateProbeOkResponse, UpdateProbeProps, UpdateProbeRequestBody, } from './hooks/useUpdateProbeMutation';
|
|
222
226
|
export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
|
|
227
|
+
export type { UpdateRecommendationStatusErrorResponse, UpdateRecommendationStatusMutationProps, UpdateRecommendationStatusMutationQueryParams, UpdateRecommendationStatusOkResponse, UpdateRecommendationStatusProps, } from './hooks/useUpdateRecommendationStatusMutation';
|
|
228
|
+
export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
|
|
223
229
|
export type { ChaosfaulttemplateActionTemplateRequestBody } from './requestBodies/ChaosfaulttemplateActionTemplateRequestBody';
|
|
224
230
|
export type { InfraV2ListKubernetesInfraV2RequestRequestBody } from './requestBodies/InfraV2ListKubernetesInfraV2RequestRequestBody';
|
|
225
231
|
export type { TypesProbeRequestRequestBody } from './requestBodies/TypesProbeRequestRequestBody';
|
|
@@ -251,6 +257,7 @@ export type { ChaosExecutionNodesChaosStepType } from './schemas/ChaosExecutionN
|
|
|
251
257
|
export type { ChaosExecutionNodesCommandProbe } from './schemas/ChaosExecutionNodesCommandProbe';
|
|
252
258
|
export type { ChaosExecutionNodesErrorData } from './schemas/ChaosExecutionNodesErrorData';
|
|
253
259
|
export type { ChaosExecutionNodesFaultData } from './schemas/ChaosExecutionNodesFaultData';
|
|
260
|
+
export type { ChaosExecutionNodesFaultDetails } from './schemas/ChaosExecutionNodesFaultDetails';
|
|
254
261
|
export type { ChaosExecutionNodesHelperPodDetails } from './schemas/ChaosExecutionNodesHelperPodDetails';
|
|
255
262
|
export type { ChaosExecutionNodesHttpProbe } from './schemas/ChaosExecutionNodesHttpProbe';
|
|
256
263
|
export type { ChaosExecutionNodesProbeData } from './schemas/ChaosExecutionNodesProbeData';
|
|
@@ -343,7 +350,10 @@ export type { GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesProbeVerd
|
|
|
343
350
|
export type { GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesTlsConfig } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgChaosV2ProbesTypesTlsConfig';
|
|
344
351
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction';
|
|
345
352
|
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosfaulttemplateChaosFaultTemplate } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosfaulttemplateChaosFaultTemplate';
|
|
346
|
-
export type {
|
|
353
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode';
|
|
354
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation';
|
|
355
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget';
|
|
356
|
+
export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload';
|
|
347
357
|
export type { GithubComHarnessHceSaasHceSdkCommonProbeV1Probe } from './schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe';
|
|
348
358
|
export type { GithubComHarnessHceSaasHceSdkTypesApiK8sifsImageRegistryScopedIdentifiers } from './schemas/GithubComHarnessHceSaasHceSdkTypesApiK8sifsImageRegistryScopedIdentifiers';
|
|
349
359
|
export type { GithubComWingsSoftwareDdcrPkgTypesChaosInputs } from './schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs';
|
|
@@ -401,18 +411,9 @@ export type { K8sIoApimachineryPkgApisMetaV1ConditionStatus } from './schemas/K8
|
|
|
401
411
|
export type { K8sinfraGetInfraTokenResponse } from './schemas/K8sinfraGetInfraTokenResponse';
|
|
402
412
|
export type { K8sinfraUpdateEmissaryUrlRequest } from './schemas/K8sinfraUpdateEmissaryUrlRequest';
|
|
403
413
|
export type { K8sinfraUpdateEmissaryUrlResponse } from './schemas/K8sinfraUpdateEmissaryUrlResponse';
|
|
404
|
-
export type { ModelActionData } from './schemas/ModelActionData';
|
|
405
|
-
export type { ModelChaosExecutionNode } from './schemas/ModelChaosExecutionNode';
|
|
406
|
-
export type { ModelChaosStepStatus } from './schemas/ModelChaosStepStatus';
|
|
407
|
-
export type { ModelChaosStepType } from './schemas/ModelChaosStepType';
|
|
408
414
|
export type { ModelClusterType } from './schemas/ModelClusterType';
|
|
409
|
-
export type { ModelCommandProbe } from './schemas/ModelCommandProbe';
|
|
410
415
|
export type { ModelConditionDetails } from './schemas/ModelConditionDetails';
|
|
411
|
-
export type { ModelErrorData } from './schemas/ModelErrorData';
|
|
412
416
|
export type { ModelEventMetadata } from './schemas/ModelEventMetadata';
|
|
413
|
-
export type { ModelFaultData } from './schemas/ModelFaultData';
|
|
414
|
-
export type { ModelHelperPodDetails } from './schemas/ModelHelperPodDetails';
|
|
415
|
-
export type { ModelHttpProbe } from './schemas/ModelHttpProbe';
|
|
416
417
|
export type { ModelInfraScope } from './schemas/ModelInfraScope';
|
|
417
418
|
export type { ModelInfrastructure } from './schemas/ModelInfrastructure';
|
|
418
419
|
export type { ModelInfrastructureType } from './schemas/ModelInfrastructureType';
|
|
@@ -420,10 +421,7 @@ export type { ModelInstallationType } from './schemas/ModelInstallationType';
|
|
|
420
421
|
export type { ModelKubernetesInfra } from './schemas/ModelKubernetesInfra';
|
|
421
422
|
export type { ModelListInfraRequest } from './schemas/ModelListInfraRequest';
|
|
422
423
|
export type { ModelListInfraResponse } from './schemas/ModelListInfraResponse';
|
|
423
|
-
export type { ModelProbeData } from './schemas/ModelProbeData';
|
|
424
|
-
export type { ModelProbeIterations } from './schemas/ModelProbeIterations';
|
|
425
424
|
export type { ModelProbeMap } from './schemas/ModelProbeMap';
|
|
426
|
-
export type { ModelPromProbe } from './schemas/ModelPromProbe';
|
|
427
425
|
export type { ModelReRunChaosWorkflowResponse } from './schemas/ModelReRunChaosWorkflowResponse';
|
|
428
426
|
export type { ModelRecentWorkflowRun } from './schemas/ModelRecentWorkflowRun';
|
|
429
427
|
export type { ModelRecurrence } from './schemas/ModelRecurrence';
|
|
@@ -474,6 +472,35 @@ export type { ProbePromProbe } from './schemas/ProbePromProbe';
|
|
|
474
472
|
export type { ProbeSloProbe } from './schemas/ProbeSloProbe';
|
|
475
473
|
export type { ProbeSyntheticsTest } from './schemas/ProbeSyntheticsTest';
|
|
476
474
|
export type { ProbeTlsConfig } from './schemas/ProbeTlsConfig';
|
|
475
|
+
export type { RecommendationEc2Instance } from './schemas/RecommendationEc2Instance';
|
|
476
|
+
export type { RecommendationFaultFilters } from './schemas/RecommendationFaultFilters';
|
|
477
|
+
export type { RecommendationFixes } from './schemas/RecommendationFixes';
|
|
478
|
+
export type { RecommendationProbeFilters } from './schemas/RecommendationProbeFilters';
|
|
479
|
+
export type { RecommendationRecommendationCategory } from './schemas/RecommendationRecommendationCategory';
|
|
480
|
+
export type { RecommendationRecommendationSource } from './schemas/RecommendationRecommendationSource';
|
|
481
|
+
export type { RecommendationRecommendationStatus } from './schemas/RecommendationRecommendationStatus';
|
|
482
|
+
export type { RecommendationRecommendationTargetType } from './schemas/RecommendationRecommendationTargetType';
|
|
483
|
+
export type { RecommendationRecommendationType } from './schemas/RecommendationRecommendationType';
|
|
484
|
+
export type { RecommendationSuggestions } from './schemas/RecommendationSuggestions';
|
|
485
|
+
export type { RecommendationsCreateActionResponse } from './schemas/RecommendationsCreateActionResponse';
|
|
486
|
+
export type { RecommendationsEc2Instance } from './schemas/RecommendationsEc2Instance';
|
|
487
|
+
export type { RecommendationsFault } from './schemas/RecommendationsFault';
|
|
488
|
+
export type { RecommendationsFaultFilters } from './schemas/RecommendationsFaultFilters';
|
|
489
|
+
export type { RecommendationsFilters } from './schemas/RecommendationsFilters';
|
|
490
|
+
export type { RecommendationsGetRecommendationsStatusRequest } from './schemas/RecommendationsGetRecommendationsStatusRequest';
|
|
491
|
+
export type { RecommendationsGetRecommendationsStatusResponse } from './schemas/RecommendationsGetRecommendationsStatusResponse';
|
|
492
|
+
export type { RecommendationsIdentifiers } from './schemas/RecommendationsIdentifiers';
|
|
493
|
+
export type { RecommendationsInActiveEvent } from './schemas/RecommendationsInActiveEvent';
|
|
494
|
+
export type { RecommendationsInsertRecommendationsRequest } from './schemas/RecommendationsInsertRecommendationsRequest';
|
|
495
|
+
export type { RecommendationsListRecommendationsRequest } from './schemas/RecommendationsListRecommendationsRequest';
|
|
496
|
+
export type { RecommendationsListRecommendationsResponse } from './schemas/RecommendationsListRecommendationsResponse';
|
|
497
|
+
export type { RecommendationsLlmResponse } from './schemas/RecommendationsLlmResponse';
|
|
498
|
+
export type { RecommendationsNode } from './schemas/RecommendationsNode';
|
|
499
|
+
export type { RecommendationsProbeFilters } from './schemas/RecommendationsProbeFilters';
|
|
500
|
+
export type { RecommendationsProbeFix } from './schemas/RecommendationsProbeFix';
|
|
501
|
+
export type { RecommendationsRunActionResponse } from './schemas/RecommendationsRunActionResponse';
|
|
502
|
+
export type { RecommendationsTarget } from './schemas/RecommendationsTarget';
|
|
503
|
+
export type { RecommendationsWorkload } from './schemas/RecommendationsWorkload';
|
|
477
504
|
export type { ResourceQuantity } from './schemas/ResourceQuantity';
|
|
478
505
|
export type { SecurityGovernanceApplicationSpec } from './schemas/SecurityGovernanceApplicationSpec';
|
|
479
506
|
export type { SecurityGovernanceChaosServiceAccountSpec } from './schemas/SecurityGovernanceChaosServiceAccountSpec';
|
|
@@ -507,7 +534,9 @@ export type { TemplateVariableCategory } from './schemas/TemplateVariableCategor
|
|
|
507
534
|
export type { TemplateVariableMinimum } from './schemas/TemplateVariableMinimum';
|
|
508
535
|
export type { TemplateVariableType } from './schemas/TemplateVariableType';
|
|
509
536
|
export type { TypesActionItem } from './schemas/TypesActionItem';
|
|
537
|
+
export type { TypesApplication } from './schemas/TypesApplication';
|
|
510
538
|
export type { TypesAuthorization } from './schemas/TypesAuthorization';
|
|
539
|
+
export type { TypesCleanupPolicy } from './schemas/TypesCleanupPolicy';
|
|
511
540
|
export type { TypesCmdProbe } from './schemas/TypesCmdProbe';
|
|
512
541
|
export type { TypesConfigMap } from './schemas/TypesConfigMap';
|
|
513
542
|
export type { TypesCreateGamedayRequest } from './schemas/TypesCreateGamedayRequest';
|
|
@@ -528,8 +557,6 @@ export type { TypesExperimentRequest } from './schemas/TypesExperimentRequest';
|
|
|
528
557
|
export type { TypesExperimentRunRequest } from './schemas/TypesExperimentRunRequest';
|
|
529
558
|
export type { TypesExperimentRuns } from './schemas/TypesExperimentRuns';
|
|
530
559
|
export type { TypesExperimentV2 } from './schemas/TypesExperimentV2';
|
|
531
|
-
export type { TypesFault } from './schemas/TypesFault';
|
|
532
|
-
export type { TypesFaultRef } from './schemas/TypesFaultRef';
|
|
533
560
|
export type { TypesGamedayInfraDetails } from './schemas/TypesGamedayInfraDetails';
|
|
534
561
|
export type { TypesGamedayV2 } from './schemas/TypesGamedayV2';
|
|
535
562
|
export type { TypesGet } from './schemas/TypesGet';
|
|
@@ -723,8 +750,6 @@ export type { V1alpha1ObjectFieldSelector } from './schemas/V1alpha1ObjectFieldS
|
|
|
723
750
|
export type { V1alpha1SecretKeySelector } from './schemas/V1alpha1SecretKeySelector';
|
|
724
751
|
export type { V1alpha1SecretVolumeSource } from './schemas/V1alpha1SecretVolumeSource';
|
|
725
752
|
export type { V1alpha1SourceDetails } from './schemas/V1alpha1SourceDetails';
|
|
726
|
-
export type { V1alpha1TargetDetails } from './schemas/V1alpha1TargetDetails';
|
|
727
|
-
export type { V1alpha1Targets } from './schemas/V1alpha1Targets';
|
|
728
753
|
export type { V1alpha1Volume } from './schemas/V1alpha1Volume';
|
|
729
754
|
export type { V2OnboardingAgentData } from './schemas/V2OnboardingAgentData';
|
|
730
755
|
export type { V2OnboardingAgentDetails } from './schemas/V2OnboardingAgentDetails';
|