Does the reference attribute will vary for each cluster.
(GET /resources/json/delphix/repository)
{
"type": "OracleInstall",
"reference": "ORACLE_INSTALL-2",
"namespace": null,
"name": "/opt/oracle/product/11.2.0.4/db_1",
"version": "11.2.0.4.0",
"linkingEnabled": true,
"provisioningEnabled": true,
"environment": "ORACLE_CLUSTER-3",
"installationHome": "/opt/oracle/product/11.2.0.4/db_1",
"groupName": "dba",
"groupId": 13,
"userName": "oracle",
"userId": 9,
"bits": 64,
"rac": true,
"discovered": true
}
If I have more than one cluster, in that case whether the attribute "reference": "ORACLE_INSTALL-2" will have different reference or same reference. This reference value is important when I create a VDB using REST API where I will using against repository: POST /resources/json/delphix/database/provision
sourceConfig": {
"type":"OracleRACConfig",
"databaseName": "vbd20api",
"uniqueName": "vdb20api",
"repository": "ORACLE_INSTALL-2",
"instances": [{
"type": "OracleRACInstance",
"node": "ORACLE_CLUSTER_NODE-5",
"instanceName": "vdb20api1",
"instanceNumber": 1
},
{
"type": "OracleRACInstance",
"node": "ORACLE_CLUSTER_NODE-3",
"instanceName": "vdb20api2",
"instanceNumber": 2
}]
},
If I have more than one cluster in that how to construct the above source config schema. Please provide a skeleton structure for more than one cluster.
Thanks in Advance. I am really happy to see that excellent support from Delphix to solve all the queries. Thank you once again.
#Tip