psm bdcsce create-access-rule
Create an access rule for 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 create-access-rule -s|--service-name cluster-name
-c|--config-payload json-file
[-of|--output-format short|json|html]
[-wc|--wait-until-complete true|false]
Parameters
Parameter | Description |
---|---|
|
Specifies the name of the Oracle Big Data Cloud cluster. |
|
Specifies the path to a JSON file containing the information necessary to create an access rule. The format of this file is the same as the request body you provide when adding an access rule by using the REST API. For information about this format, see the “Body Parameter” section of Add an Access Rule in REST API to Manage Oracle Big Data Cloud. |
|
(Optional) Specifies the output format of the command’s response:
The default output format is the one you specified when using the |
|
(Optional) If set to
The default value is |
Examples
The following example creates the access rule specified by information provided in the createaccessrule.json
file for the bdcsce-cluster
Oracle Big Data
Cloud cluster.
$ psm bdcsce create-access-rule --service-name bdcsce-cluster --config-payload createaccessrule.json
"Accepted"
Job ID : 5875
Note:
You can track the progress of this command using the operation-status command.Listing of createaccessrule.json
{
"ruleName": "bdcsce_ambari",
"description": "Ambari REST from specific IP range",
"ports": "8080",
"status": "enabled",
"source": "10.0.0.1/32",
"destination": "bdcsce_MASTER"
}