@@ -42,6 +42,9 @@ class DatasourceItem:
4242 specified, it will default to SiteDefault. See REST API Publish
4343 Datasource for more information about ask_data_enablement.
4444
45+ connected_workbooks_count : Optional[int]
46+ The number of workbooks connected to the datasource.
47+
4548 connections : list[ConnectionItem]
4649 The list of data connections (ConnectionItem) for the specified data
4750 source. You must first call the populate_connections method to access
@@ -69,6 +72,12 @@ class DatasourceItem:
6972 A Boolean value to determine if a datasource should be encrypted or not.
7073 See Extract and Encryption Methods for more information.
7174
75+ favorites_total : Optional[int]
76+ The number of users who have marked the data source as a favorite.
77+
78+ has_alert : Optional[bool]
79+ A Boolean value that indicates whether the data source has an alert.
80+
7281 has_extracts : Optional[bool]
7382 A Boolean value that indicates whether the datasource has extracts.
7483
@@ -77,20 +86,32 @@ class DatasourceItem:
7786 specific data source or to delete a data source with the get_by_id and
7887 delete methods.
7988
89+ is_published : Optional[bool]
90+ A Boolean value that indicates whether the data source is published.
91+
8092 name : Optional[str]
8193 The name of the data source. If not specified, the name of the published
8294 data source file is used.
8395
96+ owner: Optional[UserItem]
97+ The owner of the data source.
98+
8499 owner_id : Optional[str]
85100 The identifier of the owner of the data source.
86101
102+ project : Optional[ProjectItem]
103+ The project that the data source belongs to.
104+
87105 project_id : Optional[str]
88106 The identifier of the project associated with the data source. You must
89107 provide this identifier when you create an instance of a DatasourceItem.
90108
91109 project_name : Optional[str]
92110 The name of the project associated with the data source.
93111
112+ server_name : Optional[str]
113+ The name of the server where the data source is published.
114+
94115 tags : Optional[set[str]]
95116 The tags (list of strings) that have been added to the data source.
96117
0 commit comments