diff --git a/public/app/api/clients/provisioning/endpoints.gen.ts b/public/app/api/clients/provisioning/endpoints.gen.ts index 4be69764d5b..5117928fdc5 100644 --- a/public/app/api/clients/provisioning/endpoints.gen.ts +++ b/public/app/api/clients/provisioning/endpoints.gen.ts @@ -34,15 +34,6 @@ const injectedRtkApi = api }), providesTags: ['HistoricJob'], }), - getHistoricJobStatus: build.query({ - query: (queryArg) => ({ - url: `/historicjobs/${queryArg.name}/status`, - params: { - pretty: queryArg.pretty, - }, - }), - providesTags: ['HistoricJob'], - }), listJob: build.query({ query: (queryArg) => ({ url: `/jobs`, @@ -71,15 +62,6 @@ const injectedRtkApi = api }), providesTags: ['Job'], }), - getJobStatus: build.query({ - query: (queryArg) => ({ - url: `/jobs/${queryArg.name}/status`, - params: { - pretty: queryArg.pretty, - }, - }), - providesTags: ['Job'], - }), listRepository: build.query({ query: (queryArg) => ({ url: `/repositories`, @@ -382,13 +364,6 @@ export type GetHistoricJobApiArg = { /** If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). */ pretty?: string; }; -export type GetHistoricJobStatusApiResponse = /** status 200 OK */ HistoricJob; -export type GetHistoricJobStatusApiArg = { - /** name of the HistoricJob */ - name: string; - /** If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). */ - pretty?: string; -}; export type ListJobApiResponse = /** status 200 OK */ JobList; export type ListJobApiArg = { /** allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. */ @@ -441,13 +416,6 @@ export type GetJobApiArg = { /** If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). */ pretty?: string; }; -export type GetJobStatusApiResponse = /** status 200 OK */ Job; -export type GetJobStatusApiArg = { - /** name of the Job */ - name: string; - /** If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). */ - pretty?: string; -}; export type ListRepositoryApiResponse = /** status 200 OK */ RepositoryList; export type ListRepositoryApiArg = { /** If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). */ @@ -1321,10 +1289,8 @@ export type ResourceStats = { export const { useListHistoricJobQuery, useGetHistoricJobQuery, - useGetHistoricJobStatusQuery, useListJobQuery, useGetJobQuery, - useGetJobStatusQuery, useListRepositoryQuery, useCreateRepositoryMutation, useDeletecollectionRepositoryMutation,