@@ -262,8 +262,16 @@ type Query {
262
262
Fetch all Business Attributes
263
263
"""
264
264
listBusinessAttributes (input : ListBusinessAttributesInput ! ): ListBusinessAttributesResult
265
+
266
+ """
267
+ Fetch a Data Process Instance by primary key (urn)
268
+ """
269
+ dataProcessInstance (urn : String ! ): DataProcessInstance
270
+
271
+
265
272
}
266
273
274
+
267
275
"""
268
276
An ERModelRelationship is a high-level abstraction that dictates what datasets fields are erModelRelationshiped.
269
277
"""
@@ -9832,15 +9840,45 @@ type MLModelGroup implements EntityWithRelationships & Entity & BrowsableEntity
9832
9840
privileges : EntityPrivileges
9833
9841
}
9834
9842
9843
+ """
9844
+ Properties describing a group of related ML models
9845
+ """
9835
9846
type MLModelGroupProperties {
9847
+ """
9848
+ Display name of the model group
9849
+ """
9850
+ name : String
9836
9851
9852
+ """
9853
+ Detailed description of the model group's purpose and contents
9854
+ """
9837
9855
description : String
9838
9856
9839
- createdAt : Long
9857
+ """
9858
+ When this model group was created
9859
+ """
9860
+ created : AuditStamp
9840
9861
9862
+ """
9863
+ When this model group was last modified
9864
+ """
9865
+ lastModified : AuditStamp
9866
+
9867
+ """
9868
+ Version identifier for this model group
9869
+ """
9841
9870
version : VersionTag
9842
9871
9872
+ """
9873
+ Custom key-value properties for the model group
9874
+ """
9843
9875
customProperties : [CustomPropertiesEntry ! ]
9876
+
9877
+ """
9878
+ Deprecated creation timestamp
9879
+ @deprecated Use the 'created' field instead
9880
+ """
9881
+ createdAt : Long @deprecated (reason : " Use `created` instead" )
9844
9882
}
9845
9883
9846
9884
"""
@@ -9990,40 +10028,103 @@ description: String
9990
10028
}
9991
10029
9992
10030
type MLMetric {
10031
+ """
10032
+ Name of the metric (e.g. accuracy, precision, recall)
10033
+ """
9993
10034
name : String
9994
10035
10036
+ """
10037
+ Description of what this metric measures
10038
+ """
9995
10039
description : String
9996
10040
10041
+ """
10042
+ The computed value of the metric
10043
+ """
9997
10044
value : String
9998
10045
10046
+ """
10047
+ Timestamp when this metric was recorded
10048
+ """
9999
10049
createdAt : Long
10000
10050
}
10001
10051
10002
10052
type MLModelProperties {
10053
+ """
10054
+ The display name of the model used in the UI
10055
+ """
10056
+ name : String !
10003
10057
10058
+ """
10059
+ Detailed description of the model's purpose and characteristics
10060
+ """
10004
10061
description : String
10005
10062
10006
- date : Long
10063
+ """
10064
+ When the model was last modified
10065
+ """
10066
+ lastModified : AuditStamp
10007
10067
10068
+ """
10069
+ Version identifier for this model
10070
+ """
10008
10071
version : String
10009
10072
10073
+ """
10074
+ The type/category of ML model (e.g. classification, regression)
10075
+ """
10010
10076
type : String
10011
10077
10078
+ """
10079
+ Mapping of hyperparameter configurations
10080
+ """
10012
10081
hyperParameters : HyperParameterMap
10013
10082
10014
- hyperParams : [MLHyperParam ]
10083
+ """
10084
+ List of hyperparameter settings used to train this model
10085
+ """
10086
+ hyperParams : [MLHyperParam ]
10015
10087
10088
+ """
10089
+ Performance metrics from model training
10090
+ """
10016
10091
trainingMetrics : [MLMetric ]
10017
10092
10093
+ """
10094
+ Names of ML features used by this model
10095
+ """
10018
10096
mlFeatures : [String ! ]
10019
10097
10098
+ """
10099
+ Tags for categorizing and searching models
10100
+ """
10020
10101
tags : [String ! ]
10021
10102
10103
+ """
10104
+ Model groups this model belongs to
10105
+ """
10022
10106
groups : [MLModelGroup ]
10023
10107
10108
+ """
10109
+ Additional custom properties specific to this model
10110
+ """
10024
10111
customProperties : [CustomPropertiesEntry ! ]
10025
10112
10113
+ """
10114
+ URL to view this model in external system
10115
+ """
10026
10116
externalUrl : String
10117
+
10118
+ """
10119
+ When this model was created
10120
+ """
10121
+ created : AuditStamp
10122
+
10123
+ """
10124
+ Deprecated timestamp for model creation
10125
+ @deprecated Use 'created' field instead
10126
+ """
10127
+ date : Long @deprecated (reason : " Use `created` instead" )
10027
10128
}
10028
10129
10029
10130
type MLFeatureProperties {
@@ -12804,3 +12905,92 @@ type CronSchedule {
12804
12905
"""
12805
12906
timezone : String !
12806
12907
}
12908
+
12909
+
12910
+ """
12911
+ Properties describing a data process instance's execution metadata
12912
+ """
12913
+ type DataProcessInstanceProperties {
12914
+ """
12915
+ The display name of this process instance
12916
+ """
12917
+ name : String !
12918
+
12919
+ """
12920
+ URL to view this process instance in the external system
12921
+ """
12922
+ externalUrl : String
12923
+
12924
+ """
12925
+ When this process instance was created
12926
+ """
12927
+ created : AuditStamp
12928
+
12929
+ """
12930
+ Additional custom properties specific to this process instance
12931
+ """
12932
+ customProperties : [CustomPropertiesEntry ! ]
12933
+ }
12934
+
12935
+ """
12936
+ Properties specific to an ML model training run instance
12937
+ """
12938
+ type MLTrainingRunProperties {
12939
+ """
12940
+ Unique identifier for this training run
12941
+ """
12942
+ id : String
12943
+
12944
+ """
12945
+ List of URLs to access training run outputs (e.g. model artifacts, logs)
12946
+ """
12947
+ outputUrls : [String ]
12948
+
12949
+ """
12950
+ Hyperparameters used in this training run
12951
+ """
12952
+ hyperParams : [MLHyperParam ]
12953
+
12954
+ """
12955
+ Performance metrics recorded during this training run
12956
+ """
12957
+ trainingMetrics : [MLMetric ]
12958
+ }
12959
+
12960
+ extend type DataProcessInstance {
12961
+
12962
+ """
12963
+ Additional read only properties associated with the Data Job
12964
+ """
12965
+ properties : DataProcessInstanceProperties
12966
+
12967
+ """
12968
+ The specific instance of the data platform that this entity belongs to
12969
+ """
12970
+ dataPlatformInstance : DataPlatformInstance
12971
+
12972
+ """
12973
+ Sub Types that this entity implements
12974
+ """
12975
+ subTypes : SubTypes
12976
+
12977
+ """
12978
+ The parent container in which the entity resides
12979
+ """
12980
+ container : Container
12981
+
12982
+ """
12983
+ Standardized platform urn where the data process instance is defined
12984
+ """
12985
+ platform : DataPlatform !
12986
+
12987
+ """
12988
+ Recursively get the lineage of containers for this entity
12989
+ """
12990
+ parentContainers : ParentContainersResult
12991
+
12992
+ """
12993
+ Additional properties when subtype is Training Run
12994
+ """
12995
+ mlTrainingRunProperties : MLTrainingRunProperties
12996
+ }
0 commit comments