Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5415,9 +5415,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Delete Task Instance
schema: {}
'401':
content:
application/json:
Expand Down Expand Up @@ -7767,9 +7765,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Reparse Dag File
schema: {}
'401':
content:
application/json:
Expand Down
4 changes: 2 additions & 2 deletions airflow-core/src/airflow/ui/openapi-gen/queries/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,7 @@ export const useBackfillServiceCancelBackfill = <TData = Common.BackfillServiceC
* Request re-parsing a DAG file.
* @param data The data for the request.
* @param data.fileToken
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
export const useDagParsingServiceReparseDagFile = <TData = Common.DagParsingServiceReparseDagFileMutationResult, TError = unknown, TContext = unknown>(options?: Omit<UseMutationOptions<TData, TError, {
Expand Down Expand Up @@ -2380,7 +2380,7 @@ export const useDagServiceDeleteDag = <TData = Common.DagServiceDeleteDagMutatio
* @param data.dagRunId
* @param data.taskId
* @param data.mapIndex
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
export const useTaskInstanceServiceDeleteTaskInstance = <TData = Common.TaskInstanceServiceDeleteTaskInstanceMutationResult, TError = unknown, TContext = unknown>(options?: Omit<UseMutationOptions<TData, TError, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1995,7 +1995,7 @@ export class TaskInstanceService {
* @param data.dagRunId
* @param data.taskId
* @param data.mapIndex
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static deleteTaskInstance(data: DeleteTaskInstanceData): CancelablePromise<DeleteTaskInstanceResponse> {
Expand Down Expand Up @@ -3587,7 +3587,7 @@ export class DagParsingService {
* Request re-parsing a DAG file.
* @param data The data for the request.
* @param data.fileToken
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static reparseDagFile(data: ReparseDagFileData): CancelablePromise<ReparseDagFileResponse> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2613,7 +2613,7 @@ export type DeleteTaskInstanceData = {
taskId: string;
};

export type DeleteTaskInstanceResponse = null;
export type DeleteTaskInstanceResponse = unknown;

export type GetMappedTaskInstancesData = {
dagId: string;
Expand Down Expand Up @@ -3137,7 +3137,7 @@ export type ReparseDagFileData = {
fileToken: string;
};

export type ReparseDagFileResponse = null;
export type ReparseDagFileResponse = unknown;

export type GetDagVersionData = {
dagId: string;
Expand Down Expand Up @@ -4938,7 +4938,7 @@ export type $OpenApiTs = {
/**
* Successful Response
*/
200: null;
200: unknown;
/**
* Unauthorized
*/
Expand Down Expand Up @@ -6146,7 +6146,7 @@ export type $OpenApiTs = {
/**
* Successful Response
*/
201: null;
201: unknown;
/**
* Unauthorized
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response State
schema: {}
'400':
content:
application/json:
Expand Down Expand Up @@ -319,9 +317,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Push Logs
schema: {}
'400':
content:
application/json:
Expand Down Expand Up @@ -514,9 +510,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Update Queues
schema: {}
'400':
content:
application/json:
Expand Down Expand Up @@ -614,9 +608,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Request Worker Maintenance
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -650,9 +642,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Update Worker Maintenance
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -680,9 +670,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Exit Worker Maintenance
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -711,9 +699,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Request Worker Shutdown
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -742,9 +728,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Delete Worker
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -779,9 +763,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Add Worker Queue
schema: {}
'422':
description: Validation Error
content:
Expand Down Expand Up @@ -815,9 +797,7 @@ paths:
description: Successful Response
content:
application/json:
schema:
type: 'null'
title: Response Remove Worker Queue
schema: {}
'422':
description: Validation Error
content:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class JobsService {
* @param data.mapIndex For dynamically mapped tasks the mapping number, -1 if the task is not mapped.
* @param data.state State of the assigned task under execution.
* @param data.authorization JWT Authorization Token
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static state(data: StateData): CancelablePromise<StateResponse> {
Expand Down Expand Up @@ -122,7 +122,7 @@ export class LogsService {
* @param data.mapIndex For dynamically mapped tasks the mapping number, -1 if the task is not mapped.
* @param data.authorization JWT Authorization Token
* @param data.requestBody
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static pushLogs(data: PushLogsData): CancelablePromise<PushLogsResponse> {
Expand Down Expand Up @@ -218,7 +218,7 @@ export class WorkerService {
* @param data.workerName Hostname or instance name of the worker
* @param data.authorization JWT Authorization Token
* @param data.requestBody
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static updateQueues(data: UpdateQueuesData): CancelablePromise<UpdateQueuesResponse> {
Expand Down Expand Up @@ -292,7 +292,7 @@ export class UiService {
* @param data The data for the request.
* @param data.workerName
* @param data.requestBody
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static requestWorkerMaintenance(data: RequestWorkerMaintenanceData): CancelablePromise<RequestWorkerMaintenanceResponse> {
Expand All @@ -316,7 +316,7 @@ export class UiService {
* @param data The data for the request.
* @param data.workerName
* @param data.requestBody
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static updateWorkerMaintenance(data: UpdateWorkerMaintenanceData): CancelablePromise<UpdateWorkerMaintenanceResponse> {
Expand All @@ -339,7 +339,7 @@ export class UiService {
* Exit a worker from maintenance mode.
* @param data The data for the request.
* @param data.workerName
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static exitWorkerMaintenance(data: ExitWorkerMaintenanceData): CancelablePromise<ExitWorkerMaintenanceResponse> {
Expand All @@ -360,7 +360,7 @@ export class UiService {
* Request shutdown of a worker.
* @param data The data for the request.
* @param data.workerName
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static requestWorkerShutdown(data: RequestWorkerShutdownData): CancelablePromise<RequestWorkerShutdownResponse> {
Expand All @@ -381,7 +381,7 @@ export class UiService {
* Delete a worker record from the system.
* @param data The data for the request.
* @param data.workerName
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static deleteWorker(data: DeleteWorkerData): CancelablePromise<DeleteWorkerResponse> {
Expand All @@ -403,7 +403,7 @@ export class UiService {
* @param data The data for the request.
* @param data.workerName
* @param data.queueName
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static addWorkerQueue(data: AddWorkerQueueData): CancelablePromise<AddWorkerQueueResponse> {
Expand All @@ -426,7 +426,7 @@ export class UiService {
* @param data The data for the request.
* @param data.workerName
* @param data.queueName
* @returns null Successful Response
* @returns unknown Successful Response
* @throws ApiError
*/
public static removeWorkerQueue(data: RemoveWorkerQueueData): CancelablePromise<RemoveWorkerQueueResponse> {
Expand Down
Loading
Loading