File tree 1 file changed +3
-3
lines changed
python_modules/dagster/dagster/_core/definitions
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
from typing_extensions import Self
6
6
7
7
import dagster ._check as check
8
- from dagster ._annotations import deprecated , experimental , public
8
+ from dagster ._annotations import deprecated , preview , public
9
9
from dagster ._core .definitions .asset_checks import AssetChecksDefinition
10
10
from dagster ._core .definitions .asset_graph import AssetGraph
11
11
from dagster ._core .definitions .asset_spec import AssetSpec
@@ -685,13 +685,13 @@ def merge(*def_sets: "Definitions") -> "Definitions":
685
685
)
686
686
687
687
@public
688
- @experimental
688
+ @preview
689
689
def get_all_asset_specs (self ) -> Sequence [AssetSpec ]:
690
690
"""Returns an AssetSpec object for every asset contained inside the Definitions object."""
691
691
asset_graph = self .get_asset_graph ()
692
692
return [asset_node .to_asset_spec () for asset_node in asset_graph .asset_nodes ]
693
693
694
- @experimental
694
+ @preview
695
695
def with_reconstruction_metadata (self , reconstruction_metadata : Mapping [str , str ]) -> Self :
696
696
"""Add reconstruction metadata to the Definitions object. This is typically used to cache data
697
697
loaded from some external API that is computed during initialization of a code server.
You can’t perform that action at this time.
0 commit comments