psm dhcs start

Start a stopped Oracle Data Hub Cloud Service cluster.

Syntax

In the following syntax, line breaks have been added for clarity. Do not include them when entering the command.

psm dhcs start -s|--service-name cluster-name
	-c|--config-payload path-to-json-payload
	[-of|--output-format short|json|html]
	[-wc|--wait-until-complete true|false]

Parameters

Parameter Description

-s|--service-name cluster-name

Specifies the name of the Oracle Data Hub Cloud Service cluster.

-c|—config-payload

Specifies the path to a JSON file containing the information necessary to start a cluster. The format of this file is the same as the request body you provide when starting a service instance by using the REST API. For information about this format, see the “Body Parameter” section of Start a Service Instance in REST API for Oracle Data Hub Cloud Service.

-of|--output-format short|json|html

(Optional) Specifies the output format of the command’s response:

  • short— output is formatted as a brief summary.

  • json— output is formatted as a JSON array.

  • html— output is formatted as HTML

The default output format is the one you specified when using the psm setup command to configure the psm CLI.

–wc|--wait-until-complete true|false

(Optional) If set to true, the command behaves synchronously. That is, it does not return until the submitted job is complete. The following message is displayed until the job is complete:

Waiting for the job to complete... (it cannot be cancelled)

The default value is false.

Examples

The following example starts the cluster1 cluster.

$ psm dhcs start -s cluster1 -c start-service-payload.json
{
    "details":{
        "message":"Submitted job to [start] VMs in service [cluster1] in domain [beta].",
        "jobId":"7126089"
    }
}
Job ID : 7126089

Note:

You can track the progress of this command by using the psm dhcs operation-status command.

The payload for this command can be one of the following:

{
    "components":{
        "CASSANDRA":{
            "hosts":"[cluster1-cass-1]"
        }
    }
}

or

{
    "allServiceHosts":true
}