Skip to content

Update api-ref.md #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/api-ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Name | Description
`name` | The name of the data source. If not specified, the name of the published data source file is used.
`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`
`project_name` | The name of the project associated with the data source.
`tags` | The tags that have been added to the data source.
`tags` | The tags (list of strings) that have been added to the data source.
`updated_at` | The date and time when the data source was last updated.


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

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



Expand Down