-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprebuild.py
More file actions
29 lines (20 loc) · 848 Bytes
/
prebuild.py
File metadata and controls
29 lines (20 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from typing import Optional
from .._models import BaseModel
from .prebuild_spec import PrebuildSpec
from .prebuild_status import PrebuildStatus
from .prebuild_metadata import PrebuildMetadata
__all__ = ["Prebuild"]
class Prebuild(BaseModel):
"""
Prebuild represents a prebuild for a project that creates a snapshot
for faster environment startup times.
"""
metadata: PrebuildMetadata
"""metadata contains organizational and ownership information"""
spec: PrebuildSpec
"""spec contains the configuration used to create this prebuild"""
status: PrebuildStatus
"""status contains the current status and progress of the prebuild"""
id: Optional[str] = None
"""id is the unique identifier for the prebuild"""