Get Storage Driver

Get storage driver configuration

Request
path Parameters
id
required
string

driver id

Responses
200

Ok

get/drivers/{id}
Request samples

project.drivers.get(driver_id='driver_id')

# 
# Get a Driver object to use in your code.
# 
# **Prerequisites**: You must be in the role of an *owner* or *developer*.
# 
# You must provide at least ONE of the following params: driver_name, driver_id.
# 
# :param str driver_name: optional - search by name
# :param str driver_id: optional - search by id
# :return: Driver object
# :rtype: dtlpy.entities.driver.Driver
# 
# 
Response samples
application/json
{
  • "id": "string",
  • "type": "mongo",
  • "creator": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "name": "string",
  • "projectId": "string"
}