MachineDriver

Resource Fields

Writeable Fields

Field Type Create Update Default Notes
activateOnCreate boolean Optional - -  
builtin boolean Optional - -  
checksum string Optional Yes -  
description string Optional Yes -  
externalId string Optional - -  
uiUrl string Optional Yes -  
url string Yes Yes -  

Read Only Fields

Field Type Notes
defaultActive boolean  
id int The unique identifier for the machineDriver
name string  


Please read more about the common resource fields. These fields are read only and applicable to almost every resource. We have segregated them from the list above.

Actions

activate POST: /v1/projects/${PROJECT_ID}/machineDrivers/${ID}?action=activate

Input:This action has no inputs
curl -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" \
-X POST \
'http://${RANCHER_URL}:8080/v1/projects/${PROJECT_ID}/machineDrivers/${ID}?action=activate'

Output: An updated copy of the machineDriver resource
deactivate POST: /v1/projects/${PROJECT_ID}/machineDrivers/${ID}?action=deactivate

Input:This action has no inputs
curl -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" \
-X POST \
'http://${RANCHER_URL}:8080/v1/projects/${PROJECT_ID}/machineDrivers/${ID}?action=deactivate'

Output: An updated copy of the machineDriver resource
reactivate POST: /v1/projects/${PROJECT_ID}/machineDrivers/${ID}?action=reactivate

Input:This action has no inputs
curl -u "${RANCHER_ACCESS_KEY}:${RANCHER_SECRET_KEY}" \
-X POST \
'http://${RANCHER_URL}:8080/v1/projects/${PROJECT_ID}/machineDrivers/${ID}?action=reactivate'

Output: An updated copy of the machineDriver resource
Edit this page