Jump to: navigation, search

Difference between revisions of "Trove/update-instance-name"

(Justification/Benefits)
(Augment existing API call: Update Database Instance)
Line 20: Line 20:
 
'''Request'''
 
'''Request'''
  
PUT/instances/{instanceId}
+
PATCH /instances/{instanceId}
 
<pre>
 
<pre>
 
{
 
{
Line 32: Line 32:
  
 
This call will not return a response body.
 
This call will not return a response body.
 
  
 
== Comments/Questions From Community ==
 
== Comments/Questions From Community ==

Revision as of 21:35, 7 May 2014

Description

This blueprint will augment the existing API PUT/instances/{instanceId} call for renaming an instance name.

Blueprint: https://blueprints.launchpad.net/trove/+spec/update-instance-name

Justification/Benefits

Need to provide users ability to rename a database instance name post creation.

Impacts

Configuration

None

Database

No impact

ReST API

Augment existing API call: Update Database Instance

Request

PATCH /instances/{instanceId}

{
"instance": {
"configuration" : "StagingConfig",
"name" : "Test_Instance"
}
}

Response

This call will not return a response body.

Comments/Questions From Community