|
66 | 66 | from launch.api_client.paths.v1_sync_tasks.post import (
|
67 | 67 | CreateSyncInferenceTaskV1SyncTasksPost,
|
68 | 68 | )
|
| 69 | +from launch.api_client.paths.v2_model_bundles.get import ( |
| 70 | + ListModelBundlesV2ModelBundlesGet, |
| 71 | +) |
| 72 | +from launch.api_client.paths.v2_model_bundles.post import ( |
| 73 | + CreateModelBundleV2ModelBundlesPost, |
| 74 | +) |
| 75 | +from launch.api_client.paths.v2_model_bundles_clone_with_changes.post import ( |
| 76 | + CloneModelBundleWithChangesV2ModelBundlesCloneWithChangesPost, |
| 77 | +) |
| 78 | +from launch.api_client.paths.v2_model_bundles_latest.get import ( |
| 79 | + GetLatestModelBundleV2ModelBundlesLatestGet, |
| 80 | +) |
| 81 | +from launch.api_client.paths.v2_model_bundles_model_bundle_id.get import ( |
| 82 | + GetModelBundleV2ModelBundlesModelBundleIdGet, |
| 83 | +) |
69 | 84 |
|
70 | 85 |
|
71 | 86 | class DefaultApi(
|
72 | 87 | CloneModelBundleWithChangesV1ModelBundlesCloneWithChangesPost,
|
| 88 | + CloneModelBundleWithChangesV2ModelBundlesCloneWithChangesPost, |
73 | 89 | CreateAsyncInferenceTaskV1AsyncTasksPost,
|
74 | 90 | CreateBatchJobV1BatchJobsPost,
|
75 | 91 | CreateModelBundleV1ModelBundlesPost,
|
| 92 | + CreateModelBundleV2ModelBundlesPost, |
76 | 93 | CreateModelEndpointV1ModelEndpointsPost,
|
77 | 94 | CreateSyncInferenceTaskV1SyncTasksPost,
|
78 | 95 | DeleteModelEndpointV1ModelEndpointsModelEndpointIdDelete,
|
79 | 96 | GetAsyncInferenceTaskV1AsyncTasksTaskIdGet,
|
80 | 97 | GetBatchJobV1BatchJobsBatchJobIdGet,
|
81 | 98 | GetLatestModelBundleV1ModelBundlesLatestGet,
|
| 99 | + GetLatestModelBundleV2ModelBundlesLatestGet, |
82 | 100 | GetModelBundleV1ModelBundlesModelBundleIdGet,
|
| 101 | + GetModelBundleV2ModelBundlesModelBundleIdGet, |
83 | 102 | GetModelEndpointV1ModelEndpointsModelEndpointIdGet,
|
84 | 103 | GetModelEndpointsApiV1ModelEndpointsApiGet,
|
85 | 104 | GetModelEndpointsSchemaV1ModelEndpointsSchemaJsonGet,
|
86 | 105 | HealthcheckHealthcheckGet,
|
87 | 106 | HealthcheckHealthzGet,
|
88 | 107 | HealthcheckReadyzGet,
|
89 | 108 | ListModelBundlesV1ModelBundlesGet,
|
| 109 | + ListModelBundlesV2ModelBundlesGet, |
90 | 110 | ListModelEndpointsV1ModelEndpointsGet,
|
91 | 111 | UpdateBatchJobV1BatchJobsBatchJobIdPut,
|
92 | 112 | UpdateModelEndpointV1ModelEndpointsModelEndpointIdPut,
|
|
0 commit comments