8000 Update api-ref.md · SnarkyPapi/server-client-python@bce6e5f · GitHub
[go: up one dir, main page]

Skip to content

Commit bce6e5f

Browse files
authored
Update api-ref.md
1 parent 5e1a2a5 commit bce6e5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/api-ref.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ Name | Description
249249
`name` | The name of the data source. If not specified, the name of the published data source file is used.
250250
`project_id` | The identifier of the project associated with the data source. When you must provide this identifier when create an instance of a `DatasourceItem`
251251
`project_name` | The name of the project associated with the data source.
252-
`tags` | The tags that have been added to the data source.
252+
`tags` | The tags (list of strings) that have been added to the data source.
253253
`updated_at` | The date and time when the data source was last updated.
254254

255255

@@ -3449,9 +3449,9 @@ tableau_auth = TSC.TableauAuth('username', 'password', site_id='site')
34493449
server = TSC.Server('https://servername')
34503450

34513451
with server.auth.sign_in(tableau_auth):
3452-
all_workbooks, pagination_item = server.workbooks.get()
3452+
all_workbooks_items, pagination_item = server.workbooks.get()
34533453
# print names of first 100 workbooks
3454-
print([workbook.name for workbook in all_workbooks])
3454+
print([workbook.name for workbook in all_workbooks_items])
34553455

34563456

34573457

0 commit comments

Comments
 (0)
0