View This Version Collection

get

/management/weblogic

Views the different versions of the resources in this domain.

The latest version is 12.2.1.4.0. The other versions, which are deprecated, are 12.2.1.0.0, 12.2.1.1.0, 12.2.1.2.0, 12.2.1.3.0.

For future releases, latest always refers to the most recent release.

All new and non-deprecated MBean features are available in all versions. Any MBean features that were deprecated in a version will not be available in that version or later versions, but will still be available using earlier versions.

To always use the latest resources, use latest in the URLs. Note that this might require updating a client when moving to a newer version of WebLogic Server. To fix the version so that an update is not required, use a specific version, e.g. 12.2.1.4.0, in the URLs.

Request

Query Parameters
  • 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.
  • 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.
Security
Back to Top

Response

Supported Media Types

200 Response

Returns a list of version entities.

This method can return the following links:

  • rel=current uri=/management/weblogic/12.2.1.4.0

    Access the latest version of the WLS resources in the this domain.

Body ()
Root Schema : Items
Type: array
Title: Items
Show Source
Nested Schema : Version
Type: object

Describes a version of the WebLogic Server resources.

Show Source
Back to Top

Examples

View the versions collection.

This example uses the GET method to display the version instances in this collection.

Example Request
curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic
Example Response
HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "current",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.4.0"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.0.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.0.0"
                }
            ],
            "version": "12.2.1.0.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.1.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.1.0"
                }
            ],
            "version": "12.2.1.1.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.2.0"
                }
            ],
            "version": "12.2.1.2.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "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"
                }
            ],
            "version": "12.2.1.3.0",
            "isLatest": false,
            "lifecycle": "deprecated"
        },
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.4.0"
                },
                {
                    "rel": "canonical",
                    "href": "http:\//localhost:7001/management/weblogic/12.2.1.4.0"
                }
            ],
            "version": "12.2.1.4.0",
            "isLatest": true,
            "lifecycle": "active"
        }
    ]
}
Back to Top