ebiose-cloud-sdk 0.1.419.dev0__tar.gz → 0.1.629.dev0__tar.gz
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.
- {ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/PKG-INFO +1 -1
- {ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/ebiose_cloud_sdk/models.py +34 -1
- {ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/pyproject.toml +1 -1
- {ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/.gitignore +0 -0
- {ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/README.md +0 -0
- {ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/ebiose_cloud_sdk/__init__.py +0 -0
|
@@ -271,6 +271,17 @@ class ListForgesResponse(BaseModel):
|
|
|
271
271
|
next_cursor: str | None = None
|
|
272
272
|
|
|
273
273
|
|
|
274
|
+
class LogRecordDto(BaseModel):
|
|
275
|
+
model_config = ConfigDict(
|
|
276
|
+
extra="forbid",
|
|
277
|
+
)
|
|
278
|
+
cycle_id: str | None = None
|
|
279
|
+
fields: Any | None = None
|
|
280
|
+
level: str | None = None
|
|
281
|
+
message: str | None = None
|
|
282
|
+
timestamp: AwareDatetime | None = None
|
|
283
|
+
|
|
284
|
+
|
|
274
285
|
class LoginInputModel(BaseModel):
|
|
275
286
|
model_config = ConfigDict(
|
|
276
287
|
extra="forbid",
|
|
@@ -378,13 +389,28 @@ class StartCycleResponse(BaseModel):
|
|
|
378
389
|
extra="forbid",
|
|
379
390
|
)
|
|
380
391
|
allocated_rpm: float
|
|
381
|
-
|
|
392
|
+
compute_url: str | None = None
|
|
382
393
|
created_at: AwareDatetime
|
|
383
394
|
ecosystem_id: str = Field(..., min_length=1)
|
|
384
395
|
evolution_cycle_id: str = Field(..., min_length=1)
|
|
385
396
|
expires_at: AwareDatetime
|
|
386
397
|
|
|
387
398
|
|
|
399
|
+
class SubmitBatchRequest(BaseModel):
|
|
400
|
+
model_config = ConfigDict(
|
|
401
|
+
extra="forbid",
|
|
402
|
+
)
|
|
403
|
+
jobs: list[Any]
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
class SubmitBatchResponse(BaseModel):
|
|
407
|
+
model_config = ConfigDict(
|
|
408
|
+
extra="forbid",
|
|
409
|
+
)
|
|
410
|
+
batch_id: str = Field(..., min_length=1)
|
|
411
|
+
initial_cursor: str = Field(..., min_length=1)
|
|
412
|
+
|
|
413
|
+
|
|
388
414
|
class SubmitEntriesRequest(BaseModel):
|
|
389
415
|
model_config = ConfigDict(
|
|
390
416
|
extra="forbid",
|
|
@@ -460,6 +486,13 @@ class JsonNode(BaseModel):
|
|
|
460
486
|
root: JsonNode | None = None
|
|
461
487
|
|
|
462
488
|
|
|
489
|
+
class LogBatchRequest(BaseModel):
|
|
490
|
+
model_config = ConfigDict(
|
|
491
|
+
extra="forbid",
|
|
492
|
+
)
|
|
493
|
+
logs: list[LogRecordDto] | None = None
|
|
494
|
+
|
|
495
|
+
|
|
463
496
|
class AgentDetailsDto(BaseModel):
|
|
464
497
|
model_config = ConfigDict(
|
|
465
498
|
extra="forbid",
|
|
File without changes
|
|
File without changes
|
{ebiose_cloud_sdk-0.1.419.dev0 → ebiose_cloud_sdk-0.1.629.dev0}/ebiose_cloud_sdk/__init__.py
RENAMED
|
File without changes
|