Skip to content

Commit

Permalink
regenerate swagger
Browse files Browse the repository at this point in the history
  • Loading branch information
wdbaruni committed Oct 13, 2024
1 parent 923149d commit 478c0a8
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 10 deletions.
22 changes: 19 additions & 3 deletions pkg/swagger/docs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 19 additions & 3 deletions pkg/swagger/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2293,14 +2293,14 @@
"types.BatchTaskDefaultConfig": {
"type": "object",
"properties": {
"Publisher": {
"$ref": "#/definitions/types.DefaultPublisherConfig"
},
"Resources": {
"$ref": "#/definitions/types.ResourcesConfig"
},
"Timeouts": {
"$ref": "#/definitions/types.TaskTimeoutConfig"
},
"publisher": {
"$ref": "#/definitions/models.SpecConfig"
}
}
},
Expand Down Expand Up @@ -2378,6 +2378,22 @@
}
}
},
"types.DefaultPublisherConfig": {
"type": "object",
"properties": {
"Params": {
"description": "Params specifies the publisher configuration data.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"Type": {
"description": "Type specifies the publisher type. e.g. \"s3\", \"local\", \"ipfs\", etc.",
"type": "string"
}
}
},
"types.Docker": {
"type": "object",
"properties": {
Expand Down
15 changes: 14 additions & 1 deletion webui/lib/api/generated/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -796,9 +796,9 @@ export type types_BatchJobDefaultsConfig = {
};

export type types_BatchTaskDefaultConfig = {
Publisher?: types_DefaultPublisherConfig;
Resources?: types_ResourcesConfig;
Timeouts?: types_TaskTimeoutConfig;
publisher?: models_SpecConfig;
};

export type types_Cluster = {
Expand Down Expand Up @@ -852,6 +852,19 @@ export type types_ComputeAuth = {
Token?: string;
};

export type types_DefaultPublisherConfig = {
/**
* Params specifies the publisher configuration data.
*/
Params?: {
[key: string]: (string);
};
/**
* Type specifies the publisher type. e.g. "s3", "local", "ipfs", etc.
*/
Type?: string;
};

export type types_Docker = {
/**
* ManifestCache specifies the settings for the Docker manifest cache.
Expand Down
22 changes: 19 additions & 3 deletions webui/lib/api/schema/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2293,14 +2293,14 @@
"types.BatchTaskDefaultConfig": {
"type": "object",
"properties": {
"Publisher": {
"$ref": "#/definitions/types.DefaultPublisherConfig"
},
"Resources": {
"$ref": "#/definitions/types.ResourcesConfig"
},
"Timeouts": {
"$ref": "#/definitions/types.TaskTimeoutConfig"
},
"publisher": {
"$ref": "#/definitions/models.SpecConfig"
}
}
},
Expand Down Expand Up @@ -2378,6 +2378,22 @@
}
}
},
"types.DefaultPublisherConfig": {
"type": "object",
"properties": {
"Params": {
"description": "Params specifies the publisher configuration data.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"Type": {
"description": "Type specifies the publisher type. e.g. \"s3\", \"local\", \"ipfs\", etc.",
"type": "string"
}
}
},
"types.Docker": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 478c0a8

Please sign in to comment.