このドメイン・ランタイムの表示

get

/management/weblogic/{version}/domainRuntime

このドメイン・ランタイムを表示します。

ノート: このリソースのツリーは、WebLogic Serverドメイン全体のモニターに使用されます。

リクエスト

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

レスポンス

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

200レスポンス

このドメイン・ランタイムを返します。

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

  • rel=currentDomainPartitionRuntime

    ドメイン・パーティション・ランタイム・リソースへのこのリソースのcurrentDomainPartitionRuntime参照。

  • rel=domainPartitionRuntimes uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes

    このリソースのdomainPartitionRuntimesコレクション・リソース。

  • rel=rolloutService uri=/management/weblogic/{version}/domainRuntime/rolloutService

    このリソースのrolloutServiceシングルトン・リソース。

  • rel=search uri=/management/weblogic/{version}/domainRuntime/search

    このリソースのsearchリソース。

  • rel=serverRuntimes uri=/management/weblogic/{version}/domainRuntime/serverRuntimes

    このリソースのserverRuntimesリソース。

本文 ()
ルート・スキーマ: Domain Runtime
型: object
ソースの表示
ネストされたスキーマ: Domain Partition Runtime Reference
型: array
タイトル: Domain Partition Runtime Reference
読取り専用: true
ドメイン・パーティション・ランタイム・リファレンスを含みます。

現在のパーティションのドメイン・パーティション・ランタイムMBeanを返します

ソースの表示
先頭に戻る

このドメイン・ランタイムを表示します。

この例では、GETメソッドを使用してこのドメイン・ランタイムを表示します。

リクエストの例
curl -v \
--user BUCAdmin:BUCAdmin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/BUC/management/weblogic/latest/domainRuntime
レスポンスの例
HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest"
        },
        {
            "rel": "currentDomainPartitionRuntime",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/domainPartitionRuntimes/BUCPartition"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "domainPartitionRuntimes",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/domainPartitionRuntimes"
        },
        {
            "rel": "serverRuntimes",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/serverRuntimes"
        },
        {
            "rel": "search",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/search"
        }
    ],
    "identity": [],
    "name": "bean",
    "type": "DomainRuntime",
    "currentDomainPartitionRuntime": [
        "domainPartitionRuntimes",
        "BUCPartition"
    ]
}
先頭に戻る