psm dhcs delete-access-rule

Delete an access rule from an 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 delete-access-rule -s|--service-name cluster-name
	-r|--rule-name rule-name
	[-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.

-r|--rule-name rule-name

Specifies the name of the access rule to delete.

-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 access rule demo-Rule from the cluster1 cluster.

$ psm dhcs delete-access-rule --service-name cluster1 --rule-name demo-Rule
{
    "rule":{
        "ruleName":"demo-Rule",
        "description":"This is a test rule.",
        "status":"disabled",
        "source":"192.0.2.1/32",
        "destination":"CASSANDRA_MAIN_SERVER",
        "ports":"8008",
        "protocol":"tcp",
        "ruleType":"USER"
    }
}
Job ID : 7126015

Note:

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