FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/sdk/python/feast/feast_object.py at v0.62.0 · feast-dev/feast · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
215
Pull requests
190
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
sdk
/
python
/
feast
/
feast_object.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
61 lines (56 loc) · 1.88 KB
Breadcrumbs
feast
/
sdk
/
python
/
feast
/
feast_object.py
Copy path
File metadata and controls
61 lines (56 loc) · 1.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
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
from
typing
import
Union
,
get_args
from
feast
.
project
import
Project
from
feast
.
protos
.
feast
.
core
.
Project_pb2
import
ProjectSpec
from
.
batch_feature_view
import
BatchFeatureView
from
.
data_source
import
DataSource
from
.
entity
import
Entity
from
.
feature_service
import
FeatureService
from
.
feature_view
import
FeatureView
from
.
on_demand_feature_view
import
OnDemandFeatureView
from
.
permissions
.
permission
import
Permission
from
.
protos
.
feast
.
core
.
DataSource_pb2
import
DataSource
as
DataSourceProto
from
.
protos
.
feast
.
core
.
Entity_pb2
import
EntitySpecV2
from
.
protos
.
feast
.
core
.
FeatureService_pb2
import
FeatureServiceSpec
from
.
protos
.
feast
.
core
.
FeatureView_pb2
import
FeatureViewSpec
from
.
protos
.
feast
.
core
.
OnDemandFeatureView_pb2
import
OnDemandFeatureViewSpec
from
.
protos
.
feast
.
core
.
Permission_pb2
import
PermissionSpec
as
PermissionSpec
from
.
protos
.
feast
.
core
.
SavedDataset_pb2
import
SavedDatasetSpec
from
.
protos
.
feast
.
core
.
StreamFeatureView_pb2
import
StreamFeatureViewSpec
from
.
protos
.
feast
.
core
.
ValidationProfile_pb2
import
(
ValidationReference
as
ValidationReferenceProto
,
)
from
.
saved_dataset
import
SavedDataset
,
ValidationReference
from
.
stream_feature_view
import
StreamFeatureView
# Convenience type representing all Feast objects
FeastObject
=
Union
[
Project
,
FeatureView
,
OnDemandFeatureView
,
BatchFeatureView
,
StreamFeatureView
,
Entity
,
FeatureService
,
DataSource
,
ValidationReference
,
SavedDataset
,
Permission
,
]
FeastObjectSpecProto
=
Union
[
ProjectSpec
,
FeatureViewSpec
,
OnDemandFeatureViewSpec
,
StreamFeatureViewSpec
,
EntitySpecV2
,
FeatureServiceSpec
,
DataSourceProto
,
ValidationReferenceProto
,
SavedDatasetSpec
,
PermissionSpec
,
]
ALL_RESOURCE_TYPES
=
list
(
get_args
(
FeastObject
))
ALL_FEATURE_VIEW_TYPES
=
[
FeatureView
,
OnDemandFeatureView
,
BatchFeatureView
,
StreamFeatureView
,
]
Back
|
FazBrowse Home
|
New Git URL