UpdateDataSource | R Documentation |
Update a data store.
UpdateDataSource(
dataSourceId,
canonicalName = NULL,
dataStoreId = NULL,
query = NULL,
table = NULL,
schema = NULL,
partitionColumn = NULL,
fetchSize = NULL
)
dataSourceId |
character. The ID of the data store to update. |
canonicalName |
character. The user-friendly name of the data source. |
dataStoreId |
character. The ID of the data store to connect to. |
query |
character. A query to execute on the data store to get the data. Optional. |
table |
character. The specified database table. Optional. |
schema |
character. The specified database schema. Optional. |
partitionColumn |
character. The name of the partition column. Optional. |
fetchSize |
integer. a user specified fetch size in the range [1, 20000]. Optional. By default a fetchSize will be assigned to balance throughput and memory usage |
## Not run:
dataSourceId <- "5c1303269300d900016b41a7"
UpdateDataSource(dataSourceId, canonicalName = "Different Name")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.