psm bdcsce delete-service

Delete an Oracle Big Data Cloud cluster.

Syntax

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

psm bdcsce delete-service -s|--service-name cluster-name
	[-f|--force true-or-false]
	[-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 Big Data Cloud cluster.

-f|--force true-or-false

(Optional) Set to True to force the operation, even if blocking errors are generated.

-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 deletes the bdcsce-cluster Oracle Big Data Cloud cluster.

$ psm bdcsce delete-service --service-name bdcsce-cluster
{
    "details":{
        "message":"Submitted job to delete service [bdcsce-cluster] in domain [beta].",
        "jobId":"5772"
    }
}
Job ID : 5772

Note:

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

Here is the information about job 5772 during the deletion of the service:

$ psm bdcsce operation-status --job-id 5772
{
    "activityLogId":6060,
    "serviceName":"bdcsce-cluster",
    "serviceType":"bdcsce",
    "identityDomain":"beta",
    "serviceId":118,
    "jobId":5772,
    "startDate":"2017-01-05T14:04:12.132+0000",
    "status":"RUNNING",
    "operationId":118,
    "operationType":"DELETE_SERVICE",
    "summaryMessage":"DELETE_SERVICE",
    "authDomain":"beta",
    "authUser":"weblogic",
    "initiatedBy":"USER",
    "messages":[
        {
            "activityDate":"2017-01-05T14:04:12.132+0000",
            "message":"Activity Submitted"
        },
        {
            "activityDate":"2017-01-05T14:04:12.149+0000",
            "message":"Activity Started"
        },
        {
            "activityDate":"2017-01-05T14:04:12.164+0000",
            "message":"Started operation to delete service [bdcsce-cluster] in domain [beta]."
        },
        {
            "activityDate":"2017-01-05T14:04:12.419+0000",
            "message":"Successfully remove the service provisioned."
        }
    ]
}