diff --git a/python_modules/dagster/dagster/_core/definitions/decorators/asset_decorator.py b/python_modules/dagster/dagster/_core/definitions/decorators/asset_decorator.py index 55fcf66458d19..9c2c0515a04f2 100644 --- a/python_modules/dagster/dagster/_core/definitions/decorators/asset_decorator.py +++ b/python_modules/dagster/dagster/_core/definitions/decorators/asset_decorator.py @@ -224,7 +224,7 @@ def asset( code_version (Optional[str]): (Experimental) Version of the code that generates this asset. In general, versions should be set only for code that deterministically produces the same output when given the same inputs. - check_specs (Optional[Sequence[AssetCheckSpec]]): (Experimental) Specs for asset checks that + check_specs (Optional[Sequence[AssetCheckSpec]]): Specs for asset checks that execute in the decorated function after materializing the asset. non_argument_deps (Optional[Union[Set[AssetKey], Set[str]]]): Deprecated, use deps instead. Set of asset keys that are upstream dependencies, but do not pass an input to the asset. @@ -576,9 +576,9 @@ def multi_asset( retry_policy (Optional[RetryPolicy]): The retry policy for the op that computes the asset. code_version (Optional[str]): (Experimental) Version of the code encapsulated by the multi-asset. If set, this is used as a default code version for all defined assets. - specs (Optional[Sequence[AssetSpec]]): (Experimental) The specifications for the assets materialized + specs (Optional[Sequence[AssetSpec]]): The specifications for the assets materialized by this function. - check_specs (Optional[Sequence[AssetCheckSpec]]): (Experimental) Specs for asset checks that + check_specs (Optional[Sequence[AssetCheckSpec]]): Specs for asset checks that execute in the decorated function after materializing the assets. non_argument_deps (Optional[Union[Set[AssetKey], Set[str]]]): Deprecated, use deps instead. Set of asset keys that are upstream dependencies, but do not pass an input to the @@ -756,9 +756,9 @@ def graph_asset( compose the asset. metadata (Optional[RawMetadataMapping]): Dictionary of metadata to be associated with the asset. - tags (Optional[Mapping[str, str]]): Tags for filtering and organizing. These tags are not + tags (Optional[Mapping[str, str]]): (Experimental) Tags for filtering and organizing. These tags are not attached to runs of the asset. - owners (Optional[Sequence[str]]): A list of strings representing owners of the asset. Each + owners (Optional[Sequence[str]]): (Experimental) A list of strings representing owners of the asset. Each string can be a user's email address, or a team name prefixed with `team:`, e.g. `team:finops`. freshness_policy (Optional[FreshnessPolicy]): A constraint telling Dagster how often this asset is