Skip to content

Commit a8671a1

Browse files
authored
Merge pull request #947 from atlanhq/part-1069
feat(pyatlan_v9): sync models from atlanhq/models BLDX-1206 [ PART-1069 ]
2 parents 77b86e7 + e4bb2c2 commit a8671a1

484 files changed

Lines changed: 32131 additions & 1253 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pyatlan_v9/model/assets/__init__.py

Lines changed: 52 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"RelatedADLSContainer",
4646
"RelatedADLSObject",
4747
],
48+
"_init_agent": ["Agent", "RelatedAgent"],
4849
"_init_agentic": ["Agentic", "RelatedAgentic"],
4950
"_init_ai": [
5051
"AI",
@@ -858,24 +859,62 @@
858859
],
859860
"_init_sap": [
860861
"RelatedSAP",
862+
"RelatedSAPColumnProcess",
863+
"RelatedSAPProcess",
861864
"RelatedSapErpAbapProgram",
862865
"RelatedSapErpCdsView",
863866
"RelatedSapErpColumn",
864867
"RelatedSapErpComponent",
868+
"RelatedSapErpFioriApp",
865869
"RelatedSapErpFunctionModule",
866870
"RelatedSapErpTable",
867871
"RelatedSapErpTransactionCode",
868872
"RelatedSapErpView",
869873
"SAP",
874+
"SAPColumnProcess",
875+
"SAPProcess",
870876
"SapErpAbapProgram",
871877
"SapErpCdsView",
872878
"SapErpColumn",
873879
"SapErpComponent",
880+
"SapErpFioriApp",
874881
"SapErpFunctionModule",
875882
"SapErpTable",
876883
"SapErpTransactionCode",
877884
"SapErpView",
878885
],
886+
"_init_sapbw": [
887+
"RelatedSAPBW",
888+
"RelatedSAPBWADSO",
889+
"RelatedSAPBWADSOField",
890+
"RelatedSAPBWCompositeProvider",
891+
"RelatedSAPBWCompositeProviderField",
892+
"RelatedSAPBWDTP",
893+
"RelatedSAPBWDataSource",
894+
"RelatedSAPBWDataSourceField",
895+
"RelatedSAPBWInfoArea",
896+
"RelatedSAPBWInfoObject",
897+
"RelatedSAPBWInfoSource",
898+
"RelatedSAPBWInfoSourceField",
899+
"RelatedSAPBWQuery",
900+
"RelatedSAPBWQueryElement",
901+
"RelatedSAPBWTransformation",
902+
"SAPBW",
903+
"SAPBWADSO",
904+
"SAPBWADSOField",
905+
"SAPBWCompositeProvider",
906+
"SAPBWCompositeProviderField",
907+
"SAPBWDTP",
908+
"SAPBWDataSource",
909+
"SAPBWDataSourceField",
910+
"SAPBWInfoArea",
911+
"SAPBWInfoObject",
912+
"SAPBWInfoSource",
913+
"SAPBWInfoSourceField",
914+
"SAPBWQuery",
915+
"SAPBWQueryElement",
916+
"SAPBWTransformation",
917+
],
879918
"_init_schema_registry": [
880919
"RelatedSchemaRegistry",
881920
"RelatedSchemaRegistrySubject",
@@ -935,23 +974,27 @@
935974
"RelatedSnowflakeAIModelContext",
936975
"RelatedSnowflakeAIModelVersion",
937976
"RelatedSnowflakeDynamicTable",
977+
"RelatedSnowflakeListing",
938978
"RelatedSnowflakePipe",
939979
"RelatedSnowflakeSemanticDimension",
940980
"RelatedSnowflakeSemanticFact",
941981
"RelatedSnowflakeSemanticLogicalTable",
942982
"RelatedSnowflakeSemanticMetric",
943983
"RelatedSnowflakeSemanticView",
984+
"RelatedSnowflakeShare",
944985
"RelatedSnowflakeStage",
945986
"RelatedSnowflakeStream",
946987
"RelatedSnowflakeTag",
947988
"Snowflake",
948989
"SnowflakeAIModelContext",
949990
"SnowflakeAIModelVersion",
991+
"SnowflakeListing",
950992
"SnowflakeSemanticDimension",
951993
"SnowflakeSemanticFact",
952994
"SnowflakeSemanticLogicalTable",
953995
"SnowflakeSemanticMetric",
954996
"SnowflakeSemanticView",
997+
"SnowflakeShare",
955998
],
956999
"_init_soda": [
9571000
"RelatedSoda",
@@ -1073,15 +1116,15 @@
10731116
"ThoughtspotView",
10741117
"ThoughtspotWorksheet",
10751118
],
1076-
"_init_unstructured_v2": [
1077-
"RelatedUnstructuredV2",
1078-
"RelatedUnstructuredV2Container",
1079-
"RelatedUnstructuredV2Folder",
1080-
"RelatedUnstructuredV2Object",
1081-
"UnstructuredV2",
1082-
"UnstructuredV2Container",
1083-
"UnstructuredV2Folder",
1084-
"UnstructuredV2Object",
1119+
"_init_unstructured": [
1120+
"RelatedUnstructured",
1121+
"RelatedUnstructuredContainer",
1122+
"RelatedUnstructuredFolder",
1123+
"RelatedUnstructuredObject",
1124+
"Unstructured",
1125+
"UnstructuredContainer",
1126+
"UnstructuredFolder",
1127+
"UnstructuredObject",
10851128
],
10861129
"_init_workflow": ["RelatedWorkflow", "RelatedWorkflowRun", "Workflow"],
10871130
}

pyatlan_v9/model/assets/__init__.pyi

Lines changed: 108 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ __all__ = [
3838
"RelatedADLSAccount",
3939
"RelatedADLSContainer",
4040
"RelatedADLSObject",
41+
"Agent",
42+
"RelatedAgent",
4143
"Agentic",
4244
"RelatedAgentic",
4345
"AI",
@@ -735,23 +737,59 @@ __all__ = [
735737
"SalesforceOrganization",
736738
"SalesforceReport",
737739
"RelatedSAP",
740+
"RelatedSAPColumnProcess",
741+
"RelatedSAPProcess",
738742
"RelatedSapErpAbapProgram",
739743
"RelatedSapErpCdsView",
740744
"RelatedSapErpColumn",
741745
"RelatedSapErpComponent",
746+
"RelatedSapErpFioriApp",
742747
"RelatedSapErpFunctionModule",
743748
"RelatedSapErpTable",
744749
"RelatedSapErpTransactionCode",
745750
"RelatedSapErpView",
746751
"SAP",
752+
"SAPColumnProcess",
753+
"SAPProcess",
747754
"SapErpAbapProgram",
748755
"SapErpCdsView",
749756
"SapErpColumn",
750757
"SapErpComponent",
758+
"SapErpFioriApp",
751759
"SapErpFunctionModule",
752760
"SapErpTable",
753761
"SapErpTransactionCode",
754762
"SapErpView",
763+
"RelatedSAPBW",
764+
"RelatedSAPBWADSO",
765+
"RelatedSAPBWADSOField",
766+
"RelatedSAPBWCompositeProvider",
767+
"RelatedSAPBWCompositeProviderField",
768+
"RelatedSAPBWDTP",
769+
"RelatedSAPBWDataSource",
770+
"RelatedSAPBWDataSourceField",
771+
"RelatedSAPBWInfoArea",
772+
"RelatedSAPBWInfoObject",
773+
"RelatedSAPBWInfoSource",
774+
"RelatedSAPBWInfoSourceField",
775+
"RelatedSAPBWQuery",
776+
"RelatedSAPBWQueryElement",
777+
"RelatedSAPBWTransformation",
778+
"SAPBW",
779+
"SAPBWADSO",
780+
"SAPBWADSOField",
781+
"SAPBWCompositeProvider",
782+
"SAPBWCompositeProviderField",
783+
"SAPBWDTP",
784+
"SAPBWDataSource",
785+
"SAPBWDataSourceField",
786+
"SAPBWInfoArea",
787+
"SAPBWInfoObject",
788+
"SAPBWInfoSource",
789+
"SAPBWInfoSourceField",
790+
"SAPBWQuery",
791+
"SAPBWQueryElement",
792+
"SAPBWTransformation",
755793
"RelatedSchemaRegistry",
756794
"RelatedSchemaRegistrySubject",
757795
"RelatedSchemaRegistryVersion",
@@ -804,23 +842,27 @@ __all__ = [
804842
"RelatedSnowflakeAIModelContext",
805843
"RelatedSnowflakeAIModelVersion",
806844
"RelatedSnowflakeDynamicTable",
845+
"RelatedSnowflakeListing",
807846
"RelatedSnowflakePipe",
808847
"RelatedSnowflakeSemanticDimension",
809848
"RelatedSnowflakeSemanticFact",
810849
"RelatedSnowflakeSemanticLogicalTable",
811850
"RelatedSnowflakeSemanticMetric",
812851
"RelatedSnowflakeSemanticView",
852+
"RelatedSnowflakeShare",
813853
"RelatedSnowflakeStage",
814854
"RelatedSnowflakeStream",
815855
"RelatedSnowflakeTag",
816856
"Snowflake",
817857
"SnowflakeAIModelContext",
818858
"SnowflakeAIModelVersion",
859+
"SnowflakeListing",
819860
"SnowflakeSemanticDimension",
820861
"SnowflakeSemanticFact",
821862
"SnowflakeSemanticLogicalTable",
822863
"SnowflakeSemanticMetric",
823864
"SnowflakeSemanticView",
865+
"SnowflakeShare",
824866
"RelatedSoda",
825867
"RelatedSodaCheck",
826868
"Soda",
@@ -924,14 +966,14 @@ __all__ = [
924966
"ThoughtspotTable",
925967
"ThoughtspotView",
926968
"ThoughtspotWorksheet",
927-
"RelatedUnstructuredV2",
928-
"RelatedUnstructuredV2Container",
929-
"RelatedUnstructuredV2Folder",
930-
"RelatedUnstructuredV2Object",
931-
"UnstructuredV2",
932-
"UnstructuredV2Container",
933-
"UnstructuredV2Folder",
934-
"UnstructuredV2Object",
969+
"RelatedUnstructured",
970+
"RelatedUnstructuredContainer",
971+
"RelatedUnstructuredFolder",
972+
"RelatedUnstructuredObject",
973+
"Unstructured",
974+
"UnstructuredContainer",
975+
"UnstructuredFolder",
976+
"UnstructuredObject",
935977
"RelatedWorkflow",
936978
"RelatedWorkflowRun",
937979
"Workflow",
@@ -963,6 +1005,8 @@ from .adls_related import RelatedADLS as RelatedADLS
9631005
from .adls_related import RelatedADLSAccount as RelatedADLSAccount
9641006
from .adls_related import RelatedADLSContainer as RelatedADLSContainer
9651007
from .adls_related import RelatedADLSObject as RelatedADLSObject
1008+
from .agent import Agent as Agent
1009+
from .agent_related import RelatedAgent as RelatedAgent
9661010
from .agentic import Agentic as Agentic
9671011
from .agentic_related import RelatedAgentic as RelatedAgentic
9681012
from .ai import AI as AI
@@ -1819,23 +1863,65 @@ from .salesforce_related import (
18191863
from .salesforce_related import RelatedSalesforceReport as RelatedSalesforceReport
18201864
from .salesforce_report import SalesforceReport as SalesforceReport
18211865
from .sap import SAP as SAP
1866+
from .sap_column_process import SAPColumnProcess as SAPColumnProcess
18221867
from .sap_erp_abap_program import SapErpAbapProgram as SapErpAbapProgram
18231868
from .sap_erp_cds_view import SapErpCdsView as SapErpCdsView
18241869
from .sap_erp_column import SapErpColumn as SapErpColumn
18251870
from .sap_erp_component import SapErpComponent as SapErpComponent
1871+
from .sap_erp_fiori_app import SapErpFioriApp as SapErpFioriApp
18261872
from .sap_erp_function_module import SapErpFunctionModule as SapErpFunctionModule
18271873
from .sap_erp_table import SapErpTable as SapErpTable
18281874
from .sap_erp_transaction_code import SapErpTransactionCode as SapErpTransactionCode
18291875
from .sap_erp_view import SapErpView as SapErpView
1876+
from .sap_process import SAPProcess as SAPProcess
18301877
from .sap_related import RelatedSAP as RelatedSAP
1878+
from .sap_related import RelatedSAPColumnProcess as RelatedSAPColumnProcess
18311879
from .sap_related import RelatedSapErpAbapProgram as RelatedSapErpAbapProgram
18321880
from .sap_related import RelatedSapErpCdsView as RelatedSapErpCdsView
18331881
from .sap_related import RelatedSapErpColumn as RelatedSapErpColumn
18341882
from .sap_related import RelatedSapErpComponent as RelatedSapErpComponent
1883+
from .sap_related import RelatedSapErpFioriApp as RelatedSapErpFioriApp
18351884
from .sap_related import RelatedSapErpFunctionModule as RelatedSapErpFunctionModule
18361885
from .sap_related import RelatedSapErpTable as RelatedSapErpTable
18371886
from .sap_related import RelatedSapErpTransactionCode as RelatedSapErpTransactionCode
18381887
from .sap_related import RelatedSapErpView as RelatedSapErpView
1888+
from .sap_related import RelatedSAPProcess as RelatedSAPProcess
1889+
from .sapbw import SAPBW as SAPBW
1890+
from .sapbw_composite_provider import SAPBWCompositeProvider as SAPBWCompositeProvider
1891+
from .sapbw_composite_provider_field import (
1892+
SAPBWCompositeProviderField as SAPBWCompositeProviderField,
1893+
)
1894+
from .sapbw_data_source import SAPBWDataSource as SAPBWDataSource
1895+
from .sapbw_data_source_field import SAPBWDataSourceField as SAPBWDataSourceField
1896+
from .sapbw_info_area import SAPBWInfoArea as SAPBWInfoArea
1897+
from .sapbw_info_object import SAPBWInfoObject as SAPBWInfoObject
1898+
from .sapbw_info_source import SAPBWInfoSource as SAPBWInfoSource
1899+
from .sapbw_info_source_field import SAPBWInfoSourceField as SAPBWInfoSourceField
1900+
from .sapbw_query import SAPBWQuery as SAPBWQuery
1901+
from .sapbw_query_element import SAPBWQueryElement as SAPBWQueryElement
1902+
from .sapbw_related import RelatedSAPBW as RelatedSAPBW
1903+
from .sapbw_related import RelatedSAPBWADSO as RelatedSAPBWADSO
1904+
from .sapbw_related import RelatedSAPBWADSOField as RelatedSAPBWADSOField
1905+
from .sapbw_related import (
1906+
RelatedSAPBWCompositeProvider as RelatedSAPBWCompositeProvider,
1907+
)
1908+
from .sapbw_related import (
1909+
RelatedSAPBWCompositeProviderField as RelatedSAPBWCompositeProviderField,
1910+
)
1911+
from .sapbw_related import RelatedSAPBWDataSource as RelatedSAPBWDataSource
1912+
from .sapbw_related import RelatedSAPBWDataSourceField as RelatedSAPBWDataSourceField
1913+
from .sapbw_related import RelatedSAPBWDTP as RelatedSAPBWDTP
1914+
from .sapbw_related import RelatedSAPBWInfoArea as RelatedSAPBWInfoArea
1915+
from .sapbw_related import RelatedSAPBWInfoObject as RelatedSAPBWInfoObject
1916+
from .sapbw_related import RelatedSAPBWInfoSource as RelatedSAPBWInfoSource
1917+
from .sapbw_related import RelatedSAPBWInfoSourceField as RelatedSAPBWInfoSourceField
1918+
from .sapbw_related import RelatedSAPBWQuery as RelatedSAPBWQuery
1919+
from .sapbw_related import RelatedSAPBWQueryElement as RelatedSAPBWQueryElement
1920+
from .sapbw_related import RelatedSAPBWTransformation as RelatedSAPBWTransformation
1921+
from .sapbw_transformation import SAPBWTransformation as SAPBWTransformation
1922+
from .sapbwadso import SAPBWADSO as SAPBWADSO
1923+
from .sapbwadso_field import SAPBWADSOField as SAPBWADSOField
1924+
from .sapbwdtp import SAPBWDTP as SAPBWDTP
18391925
from .schema import Schema as Schema
18401926
from .schema_registry import SchemaRegistry as SchemaRegistry
18411927
from .schema_registry_related import RelatedSchemaRegistry as RelatedSchemaRegistry
@@ -1899,6 +1985,7 @@ from .snowflake_ai_model_version import (
18991985
SnowflakeAIModelVersion as SnowflakeAIModelVersion,
19001986
)
19011987
from .snowflake_dynamic_table import SnowflakeDynamicTable as SnowflakeDynamicTable
1988+
from .snowflake_listing import SnowflakeListing as SnowflakeListing
19021989
from .snowflake_related import RelatedSnowflake as RelatedSnowflake
19031990
from .snowflake_related import (
19041991
RelatedSnowflakeAIModelContext as RelatedSnowflakeAIModelContext,
@@ -1909,6 +1996,7 @@ from .snowflake_related import (
19091996
from .snowflake_related import (
19101997
RelatedSnowflakeDynamicTable as RelatedSnowflakeDynamicTable,
19111998
)
1999+
from .snowflake_related import RelatedSnowflakeListing as RelatedSnowflakeListing
19122000
from .snowflake_related import RelatedSnowflakePipe as RelatedSnowflakePipe
19132001
from .snowflake_related import (
19142002
RelatedSnowflakeSemanticDimension as RelatedSnowflakeSemanticDimension,
@@ -1925,6 +2013,7 @@ from .snowflake_related import (
19252013
from .snowflake_related import (
19262014
RelatedSnowflakeSemanticView as RelatedSnowflakeSemanticView,
19272015
)
2016+
from .snowflake_related import RelatedSnowflakeShare as RelatedSnowflakeShare
19282017
from .snowflake_related import RelatedSnowflakeStage as RelatedSnowflakeStage
19292018
from .snowflake_related import RelatedSnowflakeStream as RelatedSnowflakeStream
19302019
from .snowflake_related import RelatedSnowflakeTag as RelatedSnowflakeTag
@@ -1939,6 +2028,7 @@ from .snowflake_semantic_metric import (
19392028
SnowflakeSemanticMetric as SnowflakeSemanticMetric,
19402029
)
19412030
from .snowflake_semantic_view import SnowflakeSemanticView as SnowflakeSemanticView
2031+
from .snowflake_share import SnowflakeShare as SnowflakeShare
19422032
from .soda import Soda as Soda
19432033
from .soda_check import SodaCheck as SodaCheck
19442034
from .soda_related import RelatedSoda as RelatedSoda
@@ -2051,22 +2141,16 @@ from .thoughtspot_related import (
20512141
from .thoughtspot_table import ThoughtspotTable as ThoughtspotTable
20522142
from .thoughtspot_view import ThoughtspotView as ThoughtspotView
20532143
from .thoughtspot_worksheet import ThoughtspotWorksheet as ThoughtspotWorksheet
2054-
from .unstructured_v2 import UnstructuredV2 as UnstructuredV2
2055-
from .unstructured_v2_container import (
2056-
UnstructuredV2Container as UnstructuredV2Container,
2057-
)
2058-
from .unstructured_v2_folder import UnstructuredV2Folder as UnstructuredV2Folder
2059-
from .unstructured_v2_object import UnstructuredV2Object as UnstructuredV2Object
2060-
from .unstructured_v2_related import RelatedUnstructuredV2 as RelatedUnstructuredV2
2061-
from .unstructured_v2_related import (
2062-
RelatedUnstructuredV2Container as RelatedUnstructuredV2Container,
2063-
)
2064-
from .unstructured_v2_related import (
2065-
RelatedUnstructuredV2Folder as RelatedUnstructuredV2Folder,
2066-
)
2067-
from .unstructured_v2_related import (
2068-
RelatedUnstructuredV2Object as RelatedUnstructuredV2Object,
2069-
)
2144+
from .unstructured import Unstructured as Unstructured
2145+
from .unstructured_container import UnstructuredContainer as UnstructuredContainer
2146+
from .unstructured_folder import UnstructuredFolder as UnstructuredFolder
2147+
from .unstructured_object import UnstructuredObject as UnstructuredObject
2148+
from .unstructured_related import RelatedUnstructured as RelatedUnstructured
2149+
from .unstructured_related import (
2150+
RelatedUnstructuredContainer as RelatedUnstructuredContainer,
2151+
)
2152+
from .unstructured_related import RelatedUnstructuredFolder as RelatedUnstructuredFolder
2153+
from .unstructured_related import RelatedUnstructuredObject as RelatedUnstructuredObject
20702154
from .view import View as View
20712155
from .workflow import Workflow as Workflow
20722156
from .workflow_related import RelatedWorkflow as RelatedWorkflow

0 commit comments

Comments
 (0)