Categories
- All Categories
- 75 Oracle Analytics News
- 7 Oracle Analytics Videos
- 14K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 40 Oracle Analytics Trainings
- 59 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 3 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
OAC Scheduled Instance Start/Stop
Description
Oracle Analytics Cloud could have an easy way to schedule a Stop and Start of an Instance.
It is possible to execute this via API? Probably yes, but would be nice to have the ability to schedule the start and stop of and instance direct from its OCI console details page.
Use Case and Business Need
Enables the scheduled start/stop of Development and/or Test instances reducing costs.
This is pure for costing purposes.
Please, ignore this idea if already in place or if doesn't make sense.
Original Idea Number: 401004e403
Comments
-
Hi Fernando,
This is possible via REST API - https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=341389228963943&parent=EXTERNAL_SEARCH&sourceId=HOWTO&id=2479500.1&_afrWindowMode=0&_adf.ctrl-state=vj0b7k6uz_4
But, I agree, it will be good to have a scheduling option within OCI itself.
Regards,
Neeti
0 -
Apparently, the above link is not working. Here's the Document Id : Doc ID 2479500.1
Script to start OAC Instance -
curl -v -i -X POST -u username:password -H "Content-Type:application/vnd.com.oracle.oracloud.provisioning.Service+json" -H "X-ID-TENANT-NAME:idcs-xxxx" "https://psm-<yourcloudaccountname>.console.oraclecloud.com/paas/api/v1.1/instancemgmt/idcs-xxx/services/AUTOANALYTICSINST/instances/TESTOAC/start"
Script to stop OAC Instance -
curl -v -i -X POST -u username:password -H "Content-Type:application/vnd.com.oracle.oracloud.provisioning.Service+json" -H "X-ID-TENANT-NAME:idcs-xxxx" "https://psm-<yourcloudaccountname>.console.oraclecloud.com/paas/api/v1.1/instancemgmt/idcs-xxx/services/AUTOANALYTICSINST/instances/TESTOAC/stop"
0