このバージョンの表示

get

/management/weblogic/{version}

このバージョンを表示します。

ノート: このWebLogic Serverドメインとその管理対象サーバーの管理に使用されるリソース・ツリーへのリンクも返します。リソース・ツリーはWLSTのBeanツリーに似ており、構成の表示と編集および実行時の動作のモニターを行えます。

リクエスト

パス・パラメータ
問合せパラメータ
  • 'excludeFields'問合せパラメータは、レスポンスで返されるフィールドを制限するために使用します。フィールド名のカンマ区切りリストです。存在する場合は、リストにない名前のフィールドのみが返されます。存在しない場合は、すべてのフィールドが返されます('fields'問合せパラメータが指定されていない場合)。ノート: 'excludeFields'が指定されている場合、'fields'は指定できません。
  • 'fields'問合せパラメータは、レスポンスで返されるフィールドを制限するために使用します。フィールド名のカンマ区切りリストです。存在する場合は、名前が一致するフィールドのみが返されます。存在しない場合は、すべてのフィールドが返されます('excludeFields'問合せパラメータが指定されていない場合)。ノート: 'fields'が指定されている場合、'excludeFields'は指定できません。
セキュリティ
  • 型: basic
    説明: Adminセキュリティ・ロールのユーザー。
  • 型: basic
    説明: Deployerセキュリティ・ロールのユーザー。
  • 型: basic
    説明: Monitorセキュリティ・ロールのユーザー。
  • 型: basic
    説明: Operatorセキュリティ・ロールのユーザー。
先頭に戻る

レスポンス

サポートされているメディア・タイプ

200レスポンス

このバージョンを返します。

このメソッドは次のリンクを返すことができます。

  • 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
本文 ()
ルート・スキーマ: Version
型: object

WebLogic Serverリソースのバージョンが表されます。

ソースを表示
先頭に戻る

最新バージョンを表示します。

この例では、GETメソッドを使用して最新バージョンを表示します。

リクエストの例
curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest
レスポンスの例
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": "12.2.1.4.0",
    "isLatest": true,
    "lifecycle": "active"
}

特定のバージョンを表示します。

この例では、GETメソッドを使用して特定のバージョンを表示します。

リクエストの例
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
レスポンスの例
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"
}
先頭に戻る