UpdateDataSource: Update a data store.

View source: R/DataSources.R

UpdateDataSourceR Documentation

Update a data store.

Description

Update a data store.

Usage

UpdateDataSource(
  dataSourceId,
  canonicalName = NULL,
  dataStoreId = NULL,
  query = NULL,
  table = NULL,
  schema = NULL,
  partitionColumn = NULL,
  fetchSize = NULL
)

Arguments

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

Examples

## Not run: 
 dataSourceId <- "5c1303269300d900016b41a7"
 UpdateDataSource(dataSourceId, canonicalName = "Different Name")

## End(Not run)

datarobot documentation built on Nov. 3, 2023, 1:07 a.m.