Export backup server configuration file

get

/api/v2/export

Returns a backup file that contains all the required configuration information for a specific Oracle Container Cloud Service instance. This file can be used to restore the same configuration for a new Oracle Container Cloud Service instance.

Request

There are no request parameters for this operation.

Security
Back to Top

Response

Supported Media Types

200 Response

200 Response
Body ()
Root Schema : schema
Type: file

Default Response

Error Payload
Body ()
Root Schema : schema
Type: array
Show Source
Back to Top

Examples

The following example shows how to export configuration information for a specific Oracle Container Cloud Service instance to a backup file. You perform this task by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

Note: The command in this example uses the URL structure https://rest_server_url/resource-path, where rest_server_url is the manager node for the Oracle Cloud Container instance. See Send Requests for the appropriate URL structure to use for Oracle Public Cloud.

cURL Command

curl -k 
     -X "GET" 
     -H "Authorization: Bearer 6d0c6f1605e4c744" "https://rest_server_url/api/v2/export" 
     -o myservice_backup.bin
Back to Top