View a Service Instance
get
/api/v1.1/instances/{identityId}/{serviceId}
Returns information about a service instance.
Request
Path Parameters
- identityId
-
Type:
stringRequired:trueName of the identity domain for the Oracle Cloud Service account.- serviceId
Type:stringRequired:trueID of the service instance.
Response
Supported Media Types
- application/json
200 Response
success
Body
Root Schema : GetInstanceInfoResponse
Type:
object- created_by
-
Type:
stringName of the user account used to create the Oracle SOA Cloud Service instance. - creation_job_id
-
Type:
booleanDefault Value:falseJob ID for the create job. - creation_time
-
Type:
stringDate and time the Oracle SOA Service instance was created. - description
-
Type:
stringFree-form text that provides additional information about the service instance. - identity_domain
-
Type:
stringIdentity domain name. - last_modified_time
-
Type:
stringDate and time the Oracle SOA Service instance was last modified. - resource_count
-
Type:
stringNumber of resources in the Stack Service Instance. - resources
-
Type:
stringThe details of the individual resources in the SOA Service Instance. - service_id
-
Type:
stringGlobally unique identifier for an Oracle SOA Service Instance. - service_type
-
Type:
stringThe type of the service. Valid values include:osb- Oracle Service Bus Topology.soa- Service Oriented Architecture.soaosb- Both OSB and SOA Topology.b2b- Both B2B (Business to Business) and SOA Topology.mft- MFT (Managed File Transfer) Topology.insight- Oracle Business Insight (Business Activity Monitoring) Topology.
- service_uri
-
Type:
stringResource URL for the Oracle SOA Service instance. - serviceName
-
Type:
stringName of the Oracle SOA Service Instance. - status
-
Type:
stringFlag that specifies the status of the Oracle SOA Service instance. Valid values include: Provisioning Not Started, Running, In Progress, Terminating, and Failed.
Examples
The following example shows how to view detailed information about an Oracle SOA Cloud Service instance by submitting a GET request on the REST resource using cURL. For more information, see Use cURL.
See also Exploring the Oracle SOA Cloud Service Instance Overview Page.
cURL Command
curl -i -X GET -u joe@example.com:Welcome1! -H "X-ID-TENANT-NAME:ExampleIdentityDomain" https://api-host/paas/service/soa/api/v1.1/instances/ExampleIdentityDomain/ExampleInstance
Note:: This example uses the URL prefix for the United States (
soacs). For information about the URL prefixes for other regions of the world, see
Send Requests.
Example of Response Header
The following shows an example of the response header.
HTTP/1.1 200 OK Date: Fri, 22 Aug 2014 20:37:06 GMT Transfer-Encoding: chunked Content-Type: application/json
Example of Response Body
The following shows an example of the response body in JSON format.
{
"service_name" : "ExampleInstance",
"version" : "12cR3",
"wlsVersion" : "12.1.3.0.4",
"status" : "Running",
"error_status_desc": "",
"compliance_status": "",
"compliance_status_desc": "",
"auto_update": "true",
"description" : "Example, Inc product distribution",
"identity_domain" : "ExampleIdentityDomain",
"creation_time": "Fri Jan 23 22:18:26 UTC 2015",
"last_modified_time": "Fri Jan 23 22:18:26 UTC 2015",
"created_by":"joe@example.com",
"service_uri" : "https:\/\/api-host\/paas\/service\/soa\/api\/v1.1\/instances\/ExampleIdentityDomain\/ExampleInstance",
"domain_name" : "ExampleDomain",
"domain_mode" : "PRODUCTION",
"cluster_name" : "ExampleCluster",
"num_nodes" : 3,
"level" : "PAAS",
"subscription_type" : "HOURLY",
"edition" : "EE",
"shape" : "oc3m",
"otd_provisioned" : "yes",
"otd_shape" : "oc3",
"otd_storage_size": 43008,
"service_components": [
{
"type": "WLS",
"version": "12.1.3.0.4"
},
{
"type": "OTD_JDK",
"version": "1.7.0_80"
},
{
"type": "OTD",
"version": "11.1.1.9.0"
},
{
"type": "JDK",
"version": "1.7.0_80"
}
],
"creation_job_id" : "1",
"deletion_job_id" : 0,
"lifecycle_control_job_id" : 273,
"db_info" : "myDBService:111\/PDB1.exampleidentitydomain",
"db_service_name" : "myDBService",
"num_ip_reservations" : 3,
"wls_admin_url" : "https:\/\/192.0.2.0:7002\/console",
"fmw_control_url" : "https:\/\/192.0.2.16:7002\/em",
"otd_admin_url" : "https:\/\/192.0.2.23:8989",
"sample_app_url": "https:\/\/192.1.2.3\/sample-app\/",
"secure_content_url" : "https:\/\/192.0.2.3:8081",
"wls_deployment_channel_port": 9001,
"psm_plugin_version": "15.3.3-0-1507110315"
}