View This Version
get
/management/weblogic/{version}
View this version.
Note: It also returns links to the resource trees that are used to manage this WebLogic Server domain and its managed servers. The resource trees mimic the bean trees in WLST and allow you to view and edit the configuration and monitor the runtime behavior.
Request
Path Parameters
-
version(required): string
The version of the WebLogic REST interface.
Query Parameters
-
excludeFields: string
The 'excludeFields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields whose name is not on the list will be returned. If not present, all fields are returned (unless the 'fields' query parameter is specified). Note: 'fields' must not be specified if 'excludeFields' is specified.
-
excludeLinks: string
The 'excludeLinks' query parameter is used to restrict which links are returned in the response. It is a comma separated list of link relationship names. If present, only links whose relationship name is not on the list will be returned. If not present, all links are returned (unless the 'links' query parameter is specified). Note: 'links' must not be specified if 'excludeLinks' is specified.
-
fields: string
The 'fields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields with matching names are returned. If not present, all fields are returned (unless the 'excludeFields' query parameter is specified). Note: 'excludeFields' must not be specified if 'fields' is specified.
-
links: string
The 'links' query parameter is used to restrict which links are returned in the response. It is a comma separated list of link relationship names. If present, only links with matching relationship names are returned. If not present, all links are returned (unless the 'excludeLinks' query parameter is specified). Note: 'excludeLinks' must not be specified if 'links' is specified.
Security
-
Admin: basic
Type:
basic
Description:A user in the Admin security role.
-
Deployer: basic
Type:
basic
Description:A user in the Deployer security role.
-
Monitor: basic
Type:
basic
Description:A user in the Monitor security role.
-
Operator: basic
Type:
basic
Description:A user in the Operator security role.
Response
Supported Media Types
- application/json
200 Response
Returns this version.
This method can return the following links:
- rel=currentUser uri=/management/weblogic/{version}/currentUser
- rel=domainConfig uri=/management/weblogic/{version}/domainConfig
- rel=domainRuntime uri=/management/weblogic/{version}/domainRuntime
- rel=edit uri=/management/weblogic/{version}/edit
- rel=serverConfig uri=/management/weblogic/{version}/serverConfig
- rel=serverRuntime uri=/management/weblogic/{version}/serverRuntime
Root Schema : Version
Type:
object
Describes a version of the WebLogic Server resources.
-
isLatest:
boolean
True
if this is the default version. -
lifecycle:
string
Allowed Values:
[ "active", "deprecated" ]
The lifecycle of this version:
active
ordeprecated
-
version:
string
The name of this version.
Examples
View the latest version.
This example uses the GET method to display the latest version.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/latest" }, { "rel": "edit", "href": "http:\//localhost:7001/management/weblogic/latest/edit" }, { "rel": "domainConfig", "href": "http:\//localhost:7001/management/weblogic/latest/domainConfig" }, { "rel": "domainRuntime", "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime" }, { "rel": "serverRuntime", "href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime" }, { "rel": "serverConfig", "href": "http:\//localhost:7001/management/weblogic/latest/serverConfig" }, { "rel": "currentUser", "href": "http:\//localhost:7001/management/weblogic/latest/currentUser" } ], "version": "14.1.2.0.0", "isLatest": true, "lifecycle": "active" }
View a specific version.
This example uses the GET method to display a specific version.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/12.2.1.3.0
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "self", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0" }, { "rel": "edit", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/edit" }, { "rel": "domainConfig", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainConfig" }, { "rel": "domainRuntime", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainRuntime" }, { "rel": "serverRuntime", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverRuntime" }, { "rel": "serverConfig", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverConfig" }, { "rel": "currentUser", "href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/currentUser" } ], "version": "12.2.1.3.0", "isLatest": false, "lifecycle": "deprecated" }Back to Top