Guest User

Untitled

a guest
Jul 18th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. {
  2. "name": "OracleCluster",
  3. "description": "The representation of an oracle cluster environment object.",
  4. "extends":
  5. {
  6. "$ref": "/delphix-user-object.json"
  7. },
  8. "properties": {
  9. "clusterName": {
  10. "type": "string",
  11. "description": "The name of the cluster.",
  12. "required": true
  13. },
  14. "clusterHome": {
  15. "type": "string",
  16. "description": "The location of the cluster installation.",
  17. "required": true
  18. },
  19. "clusterUser": {
  20. "type": "string",
  21. "format": "objectReference",
  22. "description": "The reference to the cluster user."
  23. },
  24. "version": {
  25. "type": "string",
  26. "description": "The version of the cluster.",
  27. "required": false
  28. },
  29. "scan": {
  30. "type": "string",
  31. "description": "The Single Client Access Name of the cluster (11.2 and greater clusters only).",
  32. "required": false
  33. }
  34. }
  35. }
  36.  
  37.  
  38.  
  39. {
  40. "name": "OracleClusterParameters",
  41. "description": "The parameters used for oracle cluster related operations.",
  42. "extends":
  43. {
  44. "$ref": "/delphix-oracle-cluster.json"
  45. },
  46. "properties": {
  47. "username": {
  48. "type": "string",
  49. "description": "The username of the cluster user.",
  50. "required": true
  51. },
  52. "password": {
  53. "type": "string",
  54. "description": "The password of the cluster user.",
  55. "required": true
  56. },
  57. "credentialType": {
  58. "type": "string",
  59. "enum": ["PASSWORD", "KEY_PAIR"],
  60. "description": "The credential type. This can either be PASSWORD or KEY_PAIR.",
  61. "required": true
  62. },
  63. "nodes": {
  64. "type": "array",
  65. "items": { "$ref": "/delphix-oracle-cluster-node-parameters.json" },
  66. "description": "The list of nodes in the cluster.",
  67. "required": true
  68. }
  69. }
  70. }
Add Comment
Please, Sign In to add comment