Artifact
API Classes
Found a method here you want to use? The API Classes have method pass-through so just call the method on the any class that inherits from the Artifact Class and voilà it works the same.
The Workbench Artifact class is a base/abstract class that defines API implemented by all the child classes (DataSource, FeatureSet, Model, Endpoint).
Artifact is storage-agnostic: naming rules, the abstract method set, and every
helper expressible in terms of workbench_meta()/upsert_workbench_meta() —
tags, owner, input, status, health. Those two metadata primitives are abstract,
and two classes provide them:
AWSArtifactbacks metadata with AWS tags and carries the shared AWS session and bucket paths. Every AWS artifact class inherits from it.LocalArtifactbacks metadata with an on-diskmeta.jsonand carries no AWS session, bucket, or ARN.
arn(), aws_url(), and aws_meta() are declared on AWSArtifact rather than
on the base, since local artifacts have no such thing.
Artifact: Abstract Base Class for all Artifact classes in Workbench.
Artifact is the storage-agnostic contract: naming rules, the abstract
method set, and every helper that can be expressed in terms of
workbench_meta()/upsert_workbench_meta() (tags, owner, input, status,
health). AWSArtifact backs that metadata with AWS tags and provides the
shared AWS session/bucket resources; workbench.local.LocalArtifact backs it
with an on-disk meta.json.
Artifact
Bases: ABC
Artifact: Abstract Base Class for all Artifact classes in Workbench
Source code in src/workbench/core/artifact.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | |
__init__(name, **kwargs)
Initialize the Artifact Base Class
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The Name of this artifact |
required |
__post_init__()
Artifact Post Initialization
Source code in src/workbench/core/artifact.py
__repr__()
String representation of this artifact
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
String representation of this artifact |
Source code in src/workbench/core/artifact.py
add_tag(tag, tag_type='user')
Add a tag for this artifact, ensuring no duplicates and maintaining order. Args: tag (str): Tag to add for this artifact tag_type (str): Type of tag to add (user or health)
Source code in src/workbench/core/artifact.py
created()
abstractmethod
delete()
abstractmethod
details()
abstractmethod
exists()
abstractmethod
expected_meta()
Metadata we expect to see for this Artifact when it's ready Returns: list[str]: List of expected metadata keys
Source code in src/workbench/core/artifact.py
generate_valid_name(name, delimiter='_', lower_case=True)
staticmethod
Only allow letters and the specified delimiter, also lowercase the string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The name/id string to check. |
required |
delimiter
|
str
|
The delimiter to use in the name/id string (default: "_") |
'_'
|
lower_case
|
bool
|
Should the name be lowercased? (default: True) |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A generated valid name/id. |
Source code in src/workbench/core/artifact.py
get_input()
get_owner()
get_status()
get_tags(tag_type='user')
Get the tags for this artifact Args: tag_type (str): Type of tags to return (user or health) Returns: list[str]: List of tags for this artifact
Source code in src/workbench/core/artifact.py
hash()
abstractmethod
health_check(deep=False)
Perform a health check on this artifact
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
deep
|
bool
|
If True, perform more extensive (expensive) health checks (default: False) |
False
|
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: List of health issues |
Source code in src/workbench/core/artifact.py
is_name_valid(name, delimiter='_', lower_case=True)
classmethod
Check if the name adheres to the naming conventions for this Artifact.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The name/id to check. |
required |
delimiter
|
str
|
The delimiter to use in the name/id string (default: "_") |
'_'
|
lower_case
|
bool
|
Should the name be lowercased? (default: True) |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the name is valid, False otherwise. |
Source code in src/workbench/core/artifact.py
modified()
abstractmethod
onboard()
abstractmethod
Onboard this Artifact into Workbench Returns: bool: True if the Artifact was successfully onboarded, False otherwise
ready()
Is the Artifact ready? Is initial setup complete and expected metadata populated?
Source code in src/workbench/core/artifact.py
refresh_meta()
abstractmethod
remove_workbench_tag(tag, tag_type='user')
Remove a tag from this artifact if it exists. Args: tag (str): Tag to remove from this artifact tag_type (str): Type of tag to remove (user or health)
Source code in src/workbench/core/artifact.py
set_owner(owner)
Set the owner of this artifact
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
owner
|
str
|
Owner to set for this artifact |
required |
set_status(status)
Set the status for this artifact Args: status (str): Status to set for this artifact
size()
abstractmethod
summary()
This is generic summary information for all Artifacts. If you want to get more detailed information, call the details() method which is implemented by the specific Artifact class
Source code in src/workbench/core/artifact.py
upsert_workbench_meta(new_meta)
abstractmethod
Add Workbench specific metadata to this Artifact
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
new_meta
|
dict
|
Dictionary of NEW metadata to add |
required |
workbench_meta()
abstractmethod
Get the Workbench specific metadata for this Artifact
Returns:
| Type | Description |
|---|---|
Union[dict, None]
|
Union[dict, None]: Dictionary of Workbench metadata for this Artifact |
AWSArtifact: Base Class for all AWS-backed Artifact classes in Workbench.
Backs the Artifact metadata contract with AWS tags and provides the shared AWS session/bucket resources used by every AWS artifact class.
AWSArtifact
Bases: Artifact
AWSArtifact: Base Class for all AWS-backed Artifact classes in Workbench
Source code in src/workbench/core/artifacts/aws_artifact.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | |
__init__(name, **kwargs)
Initialize the AWSArtifact Base Class
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The Name of this artifact |
required |
arn()
abstractmethod
aws_meta()
abstractmethod
aws_url()
abstractmethod
delete_metadata(key_to_delete)
Delete specific metadata from this artifact Args: key_to_delete (str): Metadata key to delete
Source code in src/workbench/core/artifacts/aws_artifact.py
summary()
upsert_workbench_meta(new_meta)
Add Workbench specific metadata to this Artifact Args: new_meta (dict): Dictionary of NEW metadata to add Note: This functionality will work for FeatureSets, Models, and Endpoints but not for DataSources. The DataSource class overrides this method.
Source code in src/workbench/core/artifacts/aws_artifact.py
workbench_meta()
Get the Workbench specific metadata for this Artifact
Returns:
| Type | Description |
|---|---|
Union[dict, None]
|
Union[dict, None]: Dictionary of Workbench metadata for this Artifact |
This functionality will work for FeatureSets, Models, and Endpoints
but not for DataSources and Graphs, those classes need to override this method.