プライマリ・コンテンツに移動
Oracle® Fusion Middleware Oracle WebLogic Server Multitenant RESTfulサーバー・ランタイム・リファレンス
12c (12.2.1)
E73399-01
  目次へ移動
目次

前
 
次
 

1 リソース

ここでは、指定したドメイン・パーティションの管理サーバーのモニターに使用する、Oracle WebLogic Server Multitenant RESTfulサーバーのランタイム・リソースについて説明します。

WLS RESTのリファレンス・ドキュメントのリスト全体およびその使用方法の説明については、『RESTful管理サービスによるOracle WebLogic Serverの管理』を参照してください。

/management/weblogic

このドメインにあるリソースの様々なバージョン(該当する場合)にアクセスするには、このリソースを使用します。

12.2.1リリースでは、バージョンは12.2.1とlatestの2つのみであり、latestは12.2.1の別名です。今後のリリースでは、latestは常に最新リリースを表します。

常に最新のリソースを使用するには、URLでlatestを使用します。WebLogic Serverの新しいバージョンに移行する場合、クライアントの更新が必要になる場合があります。バージョンを固定して更新しないようにするには、URLで12.2.1を使用します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.rest.bean.model.Versionインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.rest.bean.model.Versionエンティティのリストが含まれます。

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

  • uri=/management/weblogic rel=canonical

    このリソース。

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

    このドメインのWLSリソースの最新バージョンにアクセスします。

  • uri=/management/weblogic rel=self

    このリソース。

例1   バージョン・コレクションの表示。

この例では、GETメソッドを使用して、このコレクションのバージョン・インスタンスを表示します。

リクエストの例

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic

レスポンスの例

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.0"
        }
    ],
    "items": [{
        "links": [
            {
                "rel": "self",
                "href": "http:\//localhost:7001/management/12.2.1.0"
            },
            {
                "rel": "canonical",
                "href": "http:\//localhost:7001/management/12.2.1.0"
            }
        ],
        "version": "12.2.1.0",
        "isLatest": true,
        "lifecycle": "active"
    }]
}

/management/weblogic/{version}

このリソースは、WebLogic Serverドメインとその管理対象サーバーの管理に使用するリソース・ツリーを示します。このリソース・ツリーはWLSTのBeanツリーに似ており、構成の表示と編集を行って実行時の動作をモニターできます。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.rest.bean.model.Versionインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.rest.bean.model.Versionエンティティが含まれます。

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

  • uri=/management/weblogic/{version} rel=canonical

    このリソース。

  • uri=/management/weblogic/{version}/currentUser rel=currentUser

  • uri=/management/weblogic/{version}/domainConfig rel=domainConfig

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

  • uri=/management/weblogic/{version}/edit rel=edit

  • uri=/management/weblogic rel=parent

    このリソースの親リソース。

  • uri=/management/weblogic/{version} rel=self

    このリソース。

  • uri=/management/weblogic/{version}/serverConfig rel=serverConfig

  • uri=/management/weblogic/{version}/serverRuntime rel=serverRuntime

例1   最新バージョンの表示。

この例では、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.0",
    "isLatest": true,
    "lifecycle": "active"
}
例2   特定のバージョンの表示。

この例では、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.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.0"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/currentUser"
        }
    ],
    "version": "12.2.1.0",
    "isLatest": true,
    "lifecycle": "active"
}

/management/weblogic/{version}/currentUser

このリソースは、ドメイン内で認証されたユーザーを表します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.rest.bean.model.CurrentUserインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.rest.bean.model.CurrentUserエンティティが含まれます。

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

例1   weblogic.management.rest.bean.model.CurrentUserインスタンスの表示

この例では、GETメソッドを使用して、このweblogic.management.rest.bean.model.CurrentUserインスタンスを表示します。

リクエストの例

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/currentUser

レスポンスの例

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        }
    ],
    "partitionId": "0",
    "partitionName": "DOMAIN",
    "user": "admin"
}

/management/weblogic/{version}/serverRuntime

このリソースを使用して、管理サーバーと管理対象サーバーをモニターします。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ServerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ServerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/getRgState

リソースでは、次のメソッドがサポートされます。

POST

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes

このリソースでは、weblogic.management.runtime.PartitionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.PartitionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PartitionRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}

このリソースでは、weblogic.management.runtime.PartitionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PartitionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PartitionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes

このリソースでは、weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ApplicationRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}

このリソースでは、weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ApplicationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ApplicationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classLoaderRuntime

このリソースでは、weblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ClassLoaderRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime

このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このcom.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks

このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}

このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このcom.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/cancel

リソースでは、次のメソッドがサポートされます。

POST

このタスクの取消しを試みます。

例外がスローされて、タスクの取消しの失敗を示します。すべてのタスクを取り消すことができるわけではありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/cancel

リソースでは、次のメソッドがサポートされます。

POST

このタスクの取消しを試みます。

例外がスローされて、タスクの取消しの失敗を示します。すべてのタスクを取り消すことができるわけではありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

リソースでは、次のメソッドがサポートされます。

POST

このタスクの取消しを試みます。

例外がスローされて、タスクの取消しの失敗を示します。すべてのタスクを取り消すことができるわけではありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/redefineClasses

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

クラス再定義サイクルを開始します。この再定義サイクルでは、変更された可能性のあるクラスを特定して、そのクラスの再定義を試みます。クラス再定義は非同期で実行されます。クラス再定義プロセスの進行状況は、返されるタスクでモニターできます。

このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。

ロール

Admin

レスポンス・ボディ

com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

POST

クラス再定義サイクルを開始し、特定のモジュールから指定されたクラスのみを再定義します。クラス再定義は非同期で実行されます。クラス再定義プロセスの進行状況は、返されるタスクでモニターできます。指定されたモジュール名がnullである場合は、アプリケーション内のクラス(任意のモジュールにスコープされたクラス、およびグローバルにスコープされたクラス)でリストに含まれるものが再定義されます。

このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

moduleName

クラスを再定義する元のモジュール。

: string

classNames

再定義するクラス。

: string型配列

レスポンス・ボディ

com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/coherenceClusterRuntime

このリソースでは、weblogic.management.runtime.CoherenceClusterRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CoherenceClusterRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.CoherenceClusterRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes

このリソースでは、weblogic.management.runtime.ComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ComponentRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}

このリソースでは、weblogic.management.runtime.ComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/getPersistenceUnitRuntime

リソースでは、次のメソッドがサポートされます。

POST

指定された名前のアプリケーションにPersistenceUnitRuntimeMBeanを提供します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

unitName

unitName

: string

レスポンス・ボディ

weblogic.management.runtime.PersistenceUnitRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/hasApplicationCache

リソースでは、次のメソッドがサポートされます。

POST

アプリケーションに(EJB)アプリケーション・レベル・キャッシュがある場合、trueを返します。

ロール

Admin、Operator

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes

このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}

このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes

このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}

このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes

このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}

このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes

このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes/{name}

このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes/{name}

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes/{name}

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes

このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}

このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes

このリソースでは、weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PersistenceUnitRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes/{name}

このリソースでは、weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes

このリソースでは、weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.QueryCacheRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes/{name}

このリソースでは、weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/reInitializeApplicationCachesAndPools

リソースでは、次のメソッドがサポートされます。

POST

アプリケーションに(EJB)アプリケーション・レベル・キャッシュがある場合、このメソッドは、キャッシュおよびキャッシュに関連付けられている任意のプールを、可能であれば起動時の状態に初期化しなおします。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.RequestClassRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes/{name}

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes

このリソースでは、weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WseeV2RuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}

このリソースでは、weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeV2RuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WseeV2RuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime

このリソースでは、weblogic.management.runtime.WseePolicyRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseePolicyRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports

このリソースでは、weblogic.management.runtime.WseePortRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WseePortRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WseePortRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}

このリソースでは、weblogic.management.runtime.WseePortRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseePortRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WseePortRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations

このリソースでは、weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations

このリソースでは、weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations/{name}

このリソースでは、weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting

このリソースでは、weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers

このリソースでは、weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers/{name}

このリソースでは、weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/mc

このリソースでは、weblogic.management.runtime.WseeMcRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeMcRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations

このリソースでは、weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations/{name}

このリソースでは、weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy

このリソースでは、weblogic.management.runtime.WseePortPolicyRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseePortPolicyRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm

このリソースでは、weblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/batchJobRepositoryRuntime

このリソースでは、weblogic.management.runtime.BatchJobRepositoryRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.BatchJobRepositoryRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.BatchJobRepositoryRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime

このリソースでは、weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes

このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}

このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes

このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}

このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes

このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes/{name}

このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime

このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime

このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getInboundConnections

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報を返します。インバウンド接続が見つからない場合は、nullを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドの配列を持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getRA

リソースでは、次のメソッドがサポートされます。

POST

特定のJNDI名によって指定されるリソース・アダプタのランタイム情報を返します。リソース・アダプタが見つからない場合は、nullを返します。この関数は、リソース・アダプタの複数のバージョンがデプロイされている場合、アクティブなRAを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

リソース・アダプタのJNDI名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/getInboundConnections

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報を返します。インバウンド接続が見つからない場合は、nullを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドの配列を持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/getRA

リソースでは、次のメソッドがサポートされます。

POST

特定のJNDI名によって指定されるリソース・アダプタのランタイム情報を返します。リソース・アダプタが見つからない場合は、nullを返します。この関数は、リソース・アダプタの複数のバージョンがデプロイされている場合、アクティブなRAを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

リソース・アダプタのJNDI名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime

このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getInboundConnections

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報を返します。インバウンド接続が見つからない場合は、nullを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドの配列を持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getRA

リソースでは、次のメソッドがサポートされます。

POST

特定のJNDI名によって指定されるリソース・アダプタのランタイム情報を返します。リソース・アダプタが見つからない場合は、nullを返します。この関数は、リソース・アダプタの複数のバージョンがデプロイされている場合、アクティブなRAを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

リソース・アダプタのJNDI名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime

このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getInboundConnections

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報を返します。インバウンド接続が見つからない場合は、nullを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドの配列を持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getRA

リソースでは、次のメソッドがサポートされます。

POST

特定のJNDI名によって指定されるリソース・アダプタのランタイム情報を返します。リソース・アダプタが見つからない場合は、nullを返します。この関数は、リソース・アダプタの複数のバージョンがデプロイされている場合、アクティブなRAを返します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

リソース・アダプタのJNDI名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}

このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

リソースでは、次のメソッドがサポートされます。

POST

接続をコンソールから手動で閉じる手段を提供します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

リソースでは、次のメソッドがサポートされます。

POST

接続にエラーがあるかどうかを示すフラグを返します。エラーがある場合は、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

リソースでは、次のメソッドがサポートされます。

POST

接続をテストします。テストが正常に終了した場合、trueを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

リソースでは、次のメソッドがサポートされます。

POST

すべての使用中/未使用の接続を即座に強制破棄し、ユーザーによってプールの構成が更新された場合は、新しい構成を使用して接続プールを再作成します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

接続プールをリセットします。クライアント・アプリケーションによってプールの接続が予約されていない場合は、すべての未使用の接続を破棄し、プールの構成を更新した場合は新しい構成を使用して接続プールを再作成します。接続プールの接続が現在使用されている場合は、操作が失敗してfalseが戻されます。使用されていない場合は、すべての接続がリセットされtrueが戻されます。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

プールで使用可能なすべての接続をテストします。すべての接続がテストに合格した場合はtrueを返し、少なくとも1つがテストに不合格の場合はfalseを返します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

リソースでは、次のメソッドがサポートされます。

POST

RA構成を表すxml文字列を返します。指定されたバージョンに対応するXMLを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールの統計を表すConnectorConnectionPoolRuntimeMBeanを返します。この呼出しでアクセスされるプールは、アクセスするリソース・アダプタの一部である必要があります。JNDI名またはリソースリンク名が見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

key

接続プールのJNDI名またはリソースリンク名。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

リソースでは、次のメソッドがサポートされます。

POST

指定されたインバウンド接続のランタイム情報。インバウンド接続がリソース・アダプタに見つからない場合、nullが返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

messageListenerType

メッセージ・リスナーのタイプ。

: string

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getSchema

リソースでは、次のメソッドがサポートされます。

POST

指定されたバージョンに基づくRA構成のスキーマを取得します。バージョンが見つからない場合はnullを返します。現在サポートされているバージョンは「1.0」です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

version

String

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

リソースでは、次のメソッドがサポートされます。

POST

構成された起動時サイズに初期化するよう、プールに指示します。

これは同期的に動作し、プールが初期化されるまで待機してから制御を戻します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstartをコールし、特定のタイプのMDBを再開します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

JMS接続でstopをコールし、特定のタイプのMDBを中断します。

ロール

Admin

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

リソースでは、次のメソッドがサポートされます。

POST

一時的に無効になっているタイマーをアクティブ化します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを再開します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタの指定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

このリソース・アダプタの特定のアクティビティ・タイプを中断します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

このリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/resume

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/resumeAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを再開します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

props

RAに渡すプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのRAの指定のアクティビティ・タイプを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

type

intアクティビティ・タイプ、weblogic.connector.extensions.Suspendableを参照

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/suspendAll

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

props

リソース・アダプタに渡されるプロパティまたはnull

: java.util.Properties

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

すべてのリソース・アダプタのすべてのアクティビティを中断します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceShutdown

リソースでは、次のメソッドがサポートされます。

POST

パーティションを強制停止します。パーティションが新規リクエストを拒否し、保留中のリクエストに失敗する原因となります。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceShutdownResourceGroup

リソースでは、次のメソッドがサポートされます。

POST

リソース・グループを強制停止します。リソース・グループが新規リクエストを拒否し、保留中のリクエストに失敗する原因となります。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceSuspend

リソースでは、次のメソッドがサポートされます。

POST

パーティションはRUNNINGからADMIN状態に遷移し、処理中の作業は強制的に取り消されます。

取り消しできない作業はドロップされます。アプリケーションは管理モードに移行します。これにより、パーティションが強制的に中断され、ADMIN状態に遷移されます。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceSuspendResourceGroup

リソースでは、次のメソッドがサポートされます。

POST

リソース・グループはRUNNINGからADMIN状態に遷移し、処理中の作業は強制的に取り消されます。

取り消しできない作業はドロップされます。アプリケーションは管理モードに移行します。これにより、リソース・グループが強制的に中断され、ADMIN状態に遷移されます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/getRgState

リソースでは、次のメソッドがサポートされます。

POST

MBeanという名前のリソース・グループの現在の状態

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

リソース・グループ名

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime

このリソースでは、weblogic.management.runtime.JDBCPartitionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JDBCPartitionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JDBCPartitionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans

このリソースでは、weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JDBCDataSourceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}

このリソースでは、weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JDBCDataSourceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/clearStatementCache

リソースでは、次のメソッドがサポートされます。

POST

接続プール内の各接続について、準備済みの文と呼出し可能文の文キャッシュをクリアします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPool

リソースでは、次のメソッドがサポートされます。

POST

データ・ソースの接続プール内のすべての接続に関する情報を出力します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPoolProfile

リソースでは、次のメソッドがサポートされます。

POST

データ・ソースに関するプロファイル情報を出力します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceShutdown

リソースでは、次のメソッドがサポートされます。

POST

現在のすべての接続ユーザーの強制的な切断を含め、ヘルス状態が「実行中」のデータ・ソースを停止します。

成功すると、ヘルス状態が「停止」に設定されます。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceSuspend

リソースでは、次のメソッドがサポートされます。

POST

現在のすべての接続ユーザーの切断を含め、ヘルス状態が「実行中」のデータ・ソースを中断します。現在のすべての接続がクローズされ、再作成されます。

成功した場合は、ヘルス状態がSuspendedに設定されます。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime

このリソースでは、weblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean

このリソースでは、weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/clearStatistics

リソースでは、次のメソッドがサポートされます。

POST

すべての接続に関する統計をクリアします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/refreshStatistics

リソースでは、次のメソッドがサポートされます。

POST

スナップショットを更新します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/poolExists

リソースでは、次のメソッドがサポートされます。

POST

指定された名前のデータ・ソースが存在するかどうかを指定します。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

poolName

検索するプール名

: string

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/reset

リソースでは、次のメソッドがサポートされます。

POST

プール内の使用可能なすべてのデータベース接続を停止し、再作成することで、データ・ソース内の接続プールをリセットします。

データ・ソースのヘルス状態がUnhealthyで、初期化しなおす必要がある場合に使用します。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

ヘルス状態が「中断」のデータ・ソースに対するアクセスおよび操作をすべて復元します。

成功すると、ヘルス状態が「実行中」に設定されます。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/shrink

リソースでは、次のメソッドがサポートされます。

POST

データ・ソースのデータベース接続プールを、現在予約されている接続の数、または接続プールの初期サイズのいずれか大きい方に縮小します。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/shutdown

リソースでは、次のメソッドがサポートされます。

POST

ヘルス状態が「実行中」のデータ・ソースを停止します。データ・ソースからの接続が現在使用中の場合は、操作が失敗し、ヘルス状態が「実行中」のままになります。

成功すると、ヘルス状態が「停止」に設定されます。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/start

リソースでは、次のメソッドがサポートされます。

POST

ヘルス状態が「停止」のデータ・ソースを起動します。

成功すると、ヘルス状態が「実行中」に設定されます。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

ヘルス状態が「実行中」のデータ・ソースを中断し、既存の接続を無効にします。データ・ソースからの接続が現在使用中の場合は、操作が失敗し、ヘルス状態が「実行中」のままになります。

成功した場合は、ヘルス状態がSuspendedに設定されます。

これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/testPool

リソースでは、次のメソッドがサポートされます。

POST

接続プールで接続の予約と解放を実行して、データ・ソースの接続プールをテストします。

プール構成属性TestConnectionsOnReserveが有効の場合、取得された接続も予約操作の一環としてテストされます。

ロール

Admin

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans

このリソースでは、weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}

このリソースでは、weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime

このリソースでは、weblogic.management.runtime.JMSRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections

このリソースでは、weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSConnectionRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}

このリソースでは、weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSConnectionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/destroy

リソースでは、次のメソッドがサポートされます。

POST

接続のサーバー側のコンテキストを破棄します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions

このリソースでは、weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSSessionRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}

このリソースでは、weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSSessionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers

このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers/{name}

このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers

このリソースでは、weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSProducerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers/{name}

このリソースでは、weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers

このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSServerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}

このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSServerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations

このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}

このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/createDurableSubscriber

リソースでは、次のメソッドがサポートされます。

POST

指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

ClientID

クライアント接続を一意に識別する識別子。

: string

subscriptionName

このサブスクリプションの識別に使用される名前。

: string

selector

メッセージ・セレクタ式と一致したプロパティを持つメッセージのみが配信されます。NULL値または空の文字列は、メッセージ・コンシューマに対するメッセージ・セレクタがないことを表します。

: string

noLocal

設定すると、独自の接続によってパブリッシュされたメッセージの配信が抑制されます。

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/deleteMessages

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSメッセージ・セレクタにより修飾された宛先から一連のメッセージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

削除するメッセージを識別するためのJMSメッセージ・セレクタ。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers

このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}

このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/deleteMessages

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSメッセージ・セレクタにより修飾された宛先から一連のメッセージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

削除するメッセージを識別するためのJMSメッセージ・セレクタ。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime

このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber

リソースでは、次のメソッドがサポートされます。

POST

指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

ClientID

クライアント接続を一意に識別する識別子。

: string

subscriptionName

このサブスクリプションの識別に使用される名前。

: string

selector

メッセージ・セレクタ式と一致したプロパティを持つメッセージのみが配信されます。NULL値または空の文字列は、メッセージ・コンシューマに対するメッセージ・セレクタがないことを表します。

: string

noLocal

設定すると、独自の接続によってパブリッシュされたメッセージの配信が抑制されます。

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSメッセージ・セレクタにより修飾された宛先から一連のメッセージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

削除するメッセージを識別するためのJMSメッセージ・セレクタ。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

state

メッセージング・カーネル状態ビットマスク。様々なメッセージ状態の説明については、メッセージング・カーネルのMessageElementインタフェースを参照してください。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getMessages

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

state

メッセージング・カーネル状態ビットマスク。様々なメッセージ状態の説明については、メッセージング・カーネルのMessageElementインタフェースを参照してください。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getMessages

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

state

メッセージング・カーネル状態ビットマスク。様々なメッセージ状態の説明については、メッセージング・カーネルのMessageElementインタフェースを参照してください。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/forceCommit

リソースでは、次のメソッドがサポートされます。

POST

指定されたトランザクション・ブランチに関連付けられた作業がコミットされるようにします。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のxid。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/forceRollback

リソースでは、次のメソッドがサポートされます。

POST

指定されたトランザクション・ブランチに関連付けられた作業がロールバックされるようにします。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のxid。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getMessages

リソースでは、次のメソッドがサポートされます。

POST

JMSトランザクション・ブランチに関連付けられた一連のメッセージを返します。結果セットはメッセージ・カーソルの形式で呼出し側に返されます。結果セットには、このJMSサーバー上の複数の宛先からのメッセージが含まれる可能性があります。

タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のXid。

: string

timeoutSeconds

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getTransactionStatus

リソースでは、次のメソッドがサポートされます。

POST

Xidを指定すると、このメソッドは、関連するJMSトランザクション・ブランチのJTAステータスを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のXid。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseConsumption

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での消費処理を休止します。

JMSServerでの消費が休止されると、宛先の状態がすべて「消費の休止」とマークされ、宛先での消費が再開されてメッセージが消費可能になるまで、すべての新しい同期受信処理がブロックされます。ブロッキング・タイムアウトを伴うすべての同期受信は、「消費の休止」状態の間、タイムアウトが発生するまでブロックされます。

この宛先にアタッチされているすべての非同期コンシューマは、宛先が「消費の休止」状態の間に配信されたメッセージを取得しません。

消費の「休止」処理が正常に行われた後、その宛先でさらに消費処理を行えるようにするには、ユーザーが宛先を明示的に「再開」する必要があります。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseInsertion

リソースでは、次のメソッドがサポートされます。

POST

JMSServerのすべての宛先でメッセージの表示を休止します。これらのメッセージは、このJMSServerによってホストされるすべての宛先で処理中の作業完了の結果です。

処理中の作業とは

次の定義は、WebLogic JMSサブシステムの現在の実装に基づいています。

  • プロデューサに関連付けられる処理中のメッセージ

    • 未生成メッセージ

      「生成時刻」(TimeToDeliver)が未来に設定された、プロデューサによって将来生成されるメッセージは未生成メッセージと呼ばれ、宛先の統計で「保留中」メッセージとしてカウントされ、コンシューマにはまだ消費できません。

    • 未コミット・メッセージ

      ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクションの一環としてプロデューサにより生成されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。未コミット・メッセージは、宛先の統計で「保留中」のメッセージとしてカウントされ、消費できません。

    • 送信をブロックする割り当て

      プロデューサによって生成されたが、宛先に対する(メッセージかバイトまたはその両方の)クォータ制限のために宛先に到着できないメッセージ。プロデューサは、クォータが利用可能になるまで一定期間送信をブロックします。これらのメッセージはシステムから認識できないため、宛先の統計では一切カウントされません。

  • コンシューマに関連付けられる処理中のメッセージ

    • 未応答(CLIENT ACK PENDING)メッセージ

      「クライアント応答」セッションを使用してクライアントによって正常に消費され、クライアントからの応答を待機しているメッセージ。この種のメッセージは「保留中のメッセージ」であり、確認応答の受信時に宛先またはシステムから削除されます。

    • 未コミット・メッセージ

      ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクション内でクライアントにより消費(受信)されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。この種のメッセージは、クライアントがそのトランザクションを正常にコミットしたときに、システムから削除されます。

    • ロールバック・メッセージ

      コンシューマによるトランザクションの受信が正常にロールバックされたため、宛先に戻されたメッセージ。この種のメッセージは、クライアントに対してただちに消費(再配信)可能になる場合とならない場合があります。これは、関連付けられているJMSConnectionFactoryおよびJMSDestinationにおいてそれぞれ構成されている再配信パラメータ(RedeliveryDelay、RedeliveryDelayOverride、RedeliveryLimitなど)に依存します。

      再配信遅延が構成されている場合、メッセージはその「遅延」期間中は消費不可となり、宛先の統計で「保留中」としてカウントされます。「遅延」期間後、再配信制限を超えなければ、その宛先に配信(消費可能な状態に)され、宛先の統計で「現在の」メッセージとしてカウントされます。再配信制限を超えている場合、メッセージは(構成済であれば)ErrorDestinationに移されます。

      ロールバック・メッセージの利用を制御する別のパラメータはRedeliveryLimitです。

    • 回復されたメッセージ

      クライアントによるセッション「回復」の呼出しが明示的に行われたためにキューに現れるメッセージ。この点以外はロールバック・メッセージと同じです。

    • 再配信されたメッセージ

      クライアントへの配信に失敗したため(コンシューマのクラッシュ、クローズなど)、宛先に再び現れるメッセージ。この点以外はロールバック・メッセージと同じです。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseProduction

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での新しいメッセージの生成を休止します。

生成が休止されると、宛先にアタッチされた新規、既存両方のプロデューサで、新しい生成処理ができなくなることがあります。宛先が「生成休止から再開」すると、その宛先にアタッチされた新規、既存両方のプロデューサでの新しいメッセージ生成がすべて許可されます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeConsumption

リソースでは、次のメソッドがサポートされます。

POST

JMSSeverによってホストされるすべての宛先での消費処理を再開します。

宛先の状態は「消費が有効」にマークされ、すべての「消費中」アクティビティは正常に続行されます。

現在「消費の休止」状態にはないJMSServer上でこのAPIを呼び出しても影響はありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeInsertion

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での処理中のメッセージの生成処理を再開します。JMSServerの状態は「挿入が有効」にマークされ、処理中の作業完了からのメッセージがすべて宛先に表示されます。

現在「挿入の休止」状態にはないJMSServer上でこのAPIを呼び出しても影響はありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeProduction

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での新しいメッセージの生成処理を再開します。JMSServerの状態は「生成が有効」にマークされ、すべての新しい「生成中」アクティビティは正常に続行されます。現在「生成の休止」状態にはないJMSServer上でこのAPIを呼び出しても影響はありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes

このリソースでは、weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSSessionPoolRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}

このリソースでは、weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers

このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers/{name}

このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer

このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSServerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations

このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}

このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/createDurableSubscriber

リソースでは、次のメソッドがサポートされます。

POST

指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

ClientID

クライアント接続を一意に識別する識別子。

: string

subscriptionName

このサブスクリプションの識別に使用される名前。

: string

selector

メッセージ・セレクタ式と一致したプロパティを持つメッセージのみが配信されます。NULL値または空の文字列は、メッセージ・コンシューマに対するメッセージ・セレクタがないことを表します。

: string

noLocal

設定すると、独自の接続によってパブリッシュされたメッセージの配信が抑制されます。

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/deleteMessages

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSメッセージ・セレクタにより修飾された宛先から一連のメッセージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

削除するメッセージを識別するためのJMSメッセージ・セレクタ。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers

このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}

このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/deleteMessages

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSメッセージ・セレクタにより修飾された宛先から一連のメッセージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

削除するメッセージを識別するためのJMSメッセージ・セレクタ。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime

このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber

リソースでは、次のメソッドがサポートされます。

POST

指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

ClientID

クライアント接続を一意に識別する識別子。

: string

subscriptionName

このサブスクリプションの識別に使用される名前。

: string

selector

メッセージ・セレクタ式と一致したプロパティを持つメッセージのみが配信されます。NULL値または空の文字列は、メッセージ・コンシューマに対するメッセージ・セレクタがないことを表します。

: string

noLocal

設定すると、独自の接続によってパブリッシュされたメッセージの配信が抑制されます。

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSメッセージ・セレクタにより修飾された宛先から一連のメッセージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

削除するメッセージを識別するためのJMSメッセージ・セレクタ。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

state

メッセージング・カーネル状態ビットマスク。様々なメッセージ状態の説明については、メッセージング・カーネルのMessageElementインタフェースを参照してください。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getMessages

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

state

メッセージング・カーネル状態ビットマスク。様々なメッセージ状態の説明については、メッセージング・カーネルのMessageElementインタフェースを参照してください。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getMessages

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

state

メッセージング・カーネル状態ビットマスク。様々なメッセージ状態の説明については、メッセージング・カーネルのMessageElementインタフェースを参照してください。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタ。

: string

タイムアウト

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成を休止します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeConsumption

リソースでは、次のメソッドがサポートされます。

POST

宛先での消費処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeInsertion

リソースでは、次のメソッドがサポートされます。

POST

宛先での挿入処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeProduction

リソースでは、次のメソッドがサポートされます。

POST

宛先での生成処理を再開します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceCommit

リソースでは、次のメソッドがサポートされます。

POST

指定されたトランザクション・ブランチに関連付けられた作業がコミットされるようにします。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のxid。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceRollback

リソースでは、次のメソッドがサポートされます。

POST

指定されたトランザクション・ブランチに関連付けられた作業がロールバックされるようにします。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のxid。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getMessages

リソースでは、次のメソッドがサポートされます。

POST

JMSトランザクション・ブランチに関連付けられた一連のメッセージを返します。結果セットはメッセージ・カーソルの形式で呼出し側に返されます。結果セットには、このJMSサーバー上の複数の宛先からのメッセージが含まれる可能性があります。

タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のXid。

: string

timeoutSeconds

カーソルの最終アクセス・タイムアウト。指定された時間間隔内にアクセスされなかった場合、カーソル・リソースは回収されます。値が0の場合、タイムアウトはありません。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getTransactionStatus

リソースでは、次のメソッドがサポートされます。

POST

Xidを指定すると、このメソッドは、関連するJMSトランザクション・ブランチのJTAステータスを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

xid

JMSトランザクション・ブランチのstring表現内のXid。

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseConsumption

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での消費処理を休止します。

JMSServerでの消費が休止されると、宛先の状態がすべて「消費の休止」とマークされ、宛先での消費が再開されてメッセージが消費可能になるまで、すべての新しい同期受信処理がブロックされます。ブロッキング・タイムアウトを伴うすべての同期受信は、「消費の休止」状態の間、タイムアウトが発生するまでブロックされます。

この宛先にアタッチされているすべての非同期コンシューマは、宛先が「消費の休止」状態の間に配信されたメッセージを取得しません。

消費の「休止」処理が正常に行われた後、その宛先でさらに消費処理を行えるようにするには、ユーザーが宛先を明示的に「再開」する必要があります。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseInsertion

リソースでは、次のメソッドがサポートされます。

POST

JMSServerのすべての宛先でメッセージの表示を休止します。これらのメッセージは、このJMSServerによってホストされるすべての宛先で処理中の作業完了の結果です。

処理中の作業とは

次の定義は、WebLogic JMSサブシステムの現在の実装に基づいています。

  • プロデューサに関連付けられる処理中のメッセージ

    • 未生成メッセージ

      「生成時刻」(TimeToDeliver)が未来に設定された、プロデューサによって将来生成されるメッセージは未生成メッセージと呼ばれ、宛先の統計で「保留中」メッセージとしてカウントされ、コンシューマにはまだ消費できません。

    • 未コミット・メッセージ

      ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクションの一環としてプロデューサにより生成されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。未コミット・メッセージは、宛先の統計で「保留中」のメッセージとしてカウントされ、消費できません。

    • 送信をブロックする割り当て

      プロデューサによって生成されたが、宛先に対する(メッセージかバイトまたはその両方の)クォータ制限のために宛先に到着できないメッセージ。プロデューサは、クォータが利用可能になるまで一定期間送信をブロックします。これらのメッセージはシステムから認識できないため、宛先の統計では一切カウントされません。

  • コンシューマに関連付けられる処理中のメッセージ

    • 未応答(CLIENT ACK PENDING)メッセージ

      「クライアント応答」セッションを使用してクライアントによって正常に消費され、クライアントからの応答を待機しているメッセージ。この種のメッセージは「保留中のメッセージ」であり、確認応答の受信時に宛先またはシステムから削除されます。

    • 未コミット・メッセージ

      ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクション内でクライアントにより消費(受信)されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。この種のメッセージは、クライアントがそのトランザクションを正常にコミットしたときに、システムから削除されます。

    • ロールバック・メッセージ

      コンシューマによるトランザクションの受信が正常にロールバックされたため、宛先に戻されたメッセージ。この種のメッセージは、クライアントに対してただちに消費(再配信)可能になる場合とならない場合があります。これは、関連付けられているJMSConnectionFactoryおよびJMSDestinationにおいてそれぞれ構成されている再配信パラメータ(RedeliveryDelay、RedeliveryDelayOverride、RedeliveryLimitなど)に依存します。

      再配信遅延が構成されている場合、メッセージはその「遅延」期間中は消費不可となり、宛先の統計で「保留中」としてカウントされます。「遅延」期間後、再配信制限を超えなければ、その宛先に配信(消費可能な状態に)され、宛先の統計で「現在の」メッセージとしてカウントされます。再配信制限を超えている場合、メッセージは(構成済であれば)ErrorDestinationに移されます。

      ロールバック・メッセージの利用を制御する別のパラメータはRedeliveryLimitです。

    • 回復されたメッセージ

      クライアントによるセッション「回復」の呼出しが明示的に行われたためにキューに現れるメッセージ。この点以外はロールバック・メッセージと同じです。

    • 再配信されたメッセージ

      クライアントへの配信に失敗したため(コンシューマのクラッシュ、クローズなど)、宛先に再び現れるメッセージ。この点以外はロールバック・メッセージと同じです。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseProduction

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での新しいメッセージの生成を休止します。

生成が休止されると、宛先にアタッチされた新規、既存両方のプロデューサで、新しい生成処理ができなくなることがあります。宛先が「生成休止から再開」すると、その宛先にアタッチされた新規、既存両方のプロデューサでの新しいメッセージ生成がすべて許可されます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeConsumption

リソースでは、次のメソッドがサポートされます。

POST

JMSSeverによってホストされるすべての宛先での消費処理を再開します。

宛先の状態は「消費が有効」にマークされ、すべての「消費中」アクティビティは正常に続行されます。

現在「消費の休止」状態にはないJMSServer上でこのAPIを呼び出しても影響はありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeInsertion

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での処理中のメッセージの生成処理を再開します。JMSServerの状態は「挿入が有効」にマークされ、処理中の作業完了からのメッセージがすべて宛先に表示されます。

現在「挿入の休止」状態にはないJMSServer上でこのAPIを呼び出しても影響はありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeProduction

リソースでは、次のメソッドがサポートされます。

POST

JMSServerによってホストされるすべての宛先での新しいメッセージの生成処理を再開します。JMSServerの状態は「生成が有効」にマークされ、すべての新しい「生成中」アクティビティは正常に続行されます。現在「生成の休止」状態にはないJMSServer上でこのAPIを呼び出しても影響はありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルのハンドル。

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のJMSヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime

このリソースでは、weblogic.management.runtime.JTAPartitionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.JTAPartitionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.JTAPartitionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans

このリソースでは、weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.NonXAResourceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans/{name}

このリソースでは、weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans

このリソースでは、weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.TransactionNameRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans/{name}

このリソースでは、weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans

このリソースでは、weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.TransactionResourceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans/{name}

このリソースでは、weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes

このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}

このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name}

このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes

このリソースでは、weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MailSessionRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes/{name}

このリソースでは、weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MailSessionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MailSessionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes/{name}

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes

このリソースでは、weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessagingBridgeRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes/{name}

このリソースでは、weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MessagingBridgeRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes/{name}

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionResourceMetricsRuntime

このリソースでは、weblogic.management.runtime.PartitionResourceMetricsRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PartitionResourceMetricsRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PartitionResourceMetricsRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime

このリソースでは、weblogic.management.runtime.PartitionWorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PartitionWorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PartitionWorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/fairShareRuntime

このリソースでは、weblogic.management.runtime.PartitionFairShareRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PartitionFairShareRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PartitionFairShareRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/minThreadsConstraintCapRuntime

このリソースでは、weblogic.management.runtime.PartitionMinThreadsConstraintCapRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PartitionMinThreadsConstraintCapRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes

このリソースでは、weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PathServiceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}

このリソースでは、weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PathServiceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PathServiceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies

このリソースでは、weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PSAssemblyRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}

このリソースでは、weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PSAssemblyRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getMapEntries

リソースでは、次のメソッドがサポートされます。

POST

永続マップのアセンブリにあるすべてのエントリを返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

タイムアウト

操作がタイムアウトするまでの秒数。ゼロは無限のタイムアウトです。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/remove

リソースでは、次のメソッドがサポートされます。

POST

このオブジェクトによって参照されるパス・サービス・エントリを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソルへのハンドル

: string

itemHandle

カーソル内の特定の項目へのハンドル

タイプ: int

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes

このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}

このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections

このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections/{name}

このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.RequestClassRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes/{name}

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime

このリソースでは、weblogic.management.runtime.ResourceManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ResourceManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ResourceManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes

このリソースでは、weblogic.management.runtime.ResourceRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.ResourceRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ResourceRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}

このリソースでは、weblogic.management.runtime.ResourceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ResourceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ResourceRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/fairShareConstraintRuntime

このリソースでは、weblogic.management.runtime.FairShareConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.FairShareConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes

このリソースでは、weblogic.management.runtime.TriggerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.TriggerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes/{name}

このリソースでは、weblogic.management.runtime.TriggerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TriggerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resume

リソースでは、次のメソッドがサポートされます。

POST

中断されているパーティションを再開します。新規のリクエストを許可します。この操作により、パーティションはRUNNING状態に移行します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resumeResourceGroup

リソースでは、次のメソッドがサポートされます。

POST

中断されているリソース・グループを再開します。新規のリクエストを許可します。この操作により、リソース・グループはRUNNING状態に移行します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime

このリソースでは、weblogic.management.runtime.SAFRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.SAFRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents

このリソースでは、weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFAgentRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}

このリソースでは、weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFAgentRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations

このリソースでは、weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFConversationRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name}

このリソースでは、weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFConversationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name}/destroy

リソースでは、次のメソッドがサポートされます。

POST

会話を破棄してすべてのメッセージをパージします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime

このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/ensureLogOpened

リソースでは、次のメソッドがサポートされます。

POST

基になるログへの出力ストリームが以前のエラーが原因で閉じている場合、それを開きます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/flushLog

リソースでは、次のメソッドがサポートされます。

POST

ディスクのログ・ファイルにバッファをフラッシュします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/forceLogRotation

リソースでは、次のメソッドがサポートされます。

POST

基になるログを、ただちに強制的にローテーションします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseForwarding

リソースでは、次のメソッドがサポートされます。

POST

メッセージの転送時に送信エージェントを休止し、エージェントがメッセージの転送は行わないが、新しいメッセージを受け付けるようにします。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseIncoming

リソースでは、次のメソッドがサポートされます。

POST

新しいメッセージの受付け時に送信エージェントを休止します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseReceiving

リソースでは、次のメソッドがサポートされます。

POST

メッセージの受信時に受信エージェントを休止します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints

このリソースでは、weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}

このリソースでは、weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

カーソルに関連付けられたサーバー側リソースを解放し、ランタイムMBeanインスタンスを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/expireAll

リソースでは、次のメソッドがサポートされます。

POST

リモート宛先に対するすべての保留中メッセージは、関連するエラー処理構成で指定されたポリシーに従って処理されてから、削除されます。

  • 選択した場合、expireAllはサーバーによって非同期的に実行されます。

  • メッセージを期限切れにする前に、リモート・エンドポイントでメッセージの受信を休止することをお薦めします。すべての保留中メッセージを処理および削除した後、リモート・エンドポイントを再開して新しいメッセージを受け付けるように設定できます。

  • expireAll操作の状態はgetOperationStateメソッドによって判別できます。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorEndPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル終了位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorSize

リソースでは、次のメソッドがサポートされます。

POST

結果セット内の項目の数を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorStartPosition

リソースでは、次のメソッドがサポートされます。

POST

結果セット内のカーソル開始位置を返します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

カーソル・ハンドル。

: string

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getMessages

リソースでは、次のメソッドがサポートされます。

POST

メッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。カーソルが期限切れになった場合、関連付けられているリソースは解放されます。

ロール

Admin、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

selector

有効なJMSメッセージ・セレクタまたはSAFメッセージ・セレクタ。

: string

タイムアウト

メッセージ・カーソルが有効な時間を指定します。値が0の場合はカーソルに期限がないことを示します。

タイプ: int

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseForwarding

リソースでは、次のメソッドがサポートされます。

POST

リモート・エンドポイントに対するメッセージの転送を休止します。エージェントは新しいメッセージを受け付けますが、転送はしません。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseIncoming

リソースでは、次のメソッドがサポートされます。

POST

新しいメッセージを受け付けないようにするため、リモート・エンドポイントを休止します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/purge

リソースでは、次のメソッドがサポートされます。

POST

すべての会話を破棄し、リモート宛先に対する保留中メッセージをすべてパージします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeForwarding

リソースでは、次のメソッドがサポートされます。

POST

リモート・エンドポイントに対するメッセージの転送を再開します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeIncoming

リソースでは、次のメソッドがサポートされます。

POST

新しいメッセージを受け付けるためにリモート・エンドポイントを再開します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/sort

リソースでは、次のメソッドがサポートされます。

POST

指定されたSAFヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。

ロール

Admin、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorHandle

ソート処理を実行するカーソルのハンドル

: string

start

ソート後に最初に返されるメッセージのソート前の位置。値が-1の場合、新しいソート順序の先頭にカーソル開始位置を置きます。

タイプ: ロング

fields

ソート対象のSAFヘッダー属性。

: string型配列

ascending

対応するフィールド要素のソートが昇順か降順かを指定します。

: boolean型配列

レスポンス・ボディ

long型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeForwarding

リソースでは、次のメソッドがサポートされます。

POST

送信エージェントを再開してメッセージを転送します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeIncoming

リソースでは、次のメソッドがサポートされます。

POST

送信エージェントを再開して新しいメッセージを受け付けます。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeReceiving

リソースでは、次のメソッドがサポートされます。

POST

受信エージェントを再開してメッセージを受信します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/shutdown

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

Gracefully shuts down the partition after handling inflight work; optionally ignores pending HTTP sessions while handling inflight work.

次のように、実行中の作業はシャットダウン前の完了を許可されます:

  • 保留中のトランザクションおよびTLOGチェックポイント

  • 保留中のHTTPセッション

  • 保留中のJMS作業

  • 実行キューの保留中の作業

  • トランザクション・コンテキストのRMIリクエスト

その他の管理呼出しは、パーティションが処理中の作業を完了している間に受け付けられます。たとえば、正常なシャットダウンに時間がかかっている場合、forceShutdownコマンドを発行すると迅速にパーティションを停止できます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

タイムアウト

処理中の作業を中断し、パーティションをシャットダウンする前に待機する秒数。

タイプ: int

ignoreSessions

trueの場合、実行中の作業を処理している間、保留中のHTTPセッションを無視します。

タイプ: ブール

waitForAllSessions

true indicates waiting for all HTTP sessions during inflight work handling; false indicates waiting for non-persisted HTTP sessions only.

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

実行中の作業を処理した後、パーティションを正常に停止します。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

実行中の作業を処理した後、パーティションを正常に停止します。

このメソッドは、shutdown(timeout, ignoreSessions, false);の呼出しと同じです。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

タイムアウト

タイムアウト

タイプ: int

ignoreSessions

ignoreSessions

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/shutdownResourceGroup

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

実行中の作業を処理した後、リソース・グループを正常に停止します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

実行中の作業を処理した後、パーティションを正常に停止します。必要に応じて、実行中の作業を処理している間、保留中のHTTPセッションを無視します。

次のように、実行中の作業はシャットダウン前の完了を許可されます:

  • 保留中のトランザクションおよびTLOGチェックポイント

  • 保留中のHTTPセッション

  • 保留中のJMS作業

  • 実行キューの保留中の作業

  • トランザクション・コンテキストのRMIリクエスト

さらに、管理コールは実行中の作業が完了しているサーバーに受け付けられます。たとえば、正常なシャットダウンに時間がかかっている場合、forceShutdownコマンドを発行すると迅速にパーティションを停止できます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

タイムアウト

処理中の作業を中断し、パーティションをシャットダウンする前に待機する秒数。

タイプ: int

ignoreSessions

trueの場合、実行中の作業を処理している間、保留中のHTTPセッションを無視します。

タイプ: ブール

waitForAllSessions

true indicates waiting for all HTTP sessions during inflight work handling; false indicates waiting for non-persisted HTTP sessions only.

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

実行中の作業を処理した後、パーティションを正常に停止します。

このメソッドは、shutdown(timeout, ignoreSessions, false);の呼出しと同じです。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

タイムアウト

タイムアウト

タイプ: int

ignoreSessions

ignoreSessions

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/startResourceGroup

リソースでは、次のメソッドがサポートされます。

POST

リソース・グループを開始します。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

リソース・グループ名

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/startResourceGroupInAdmin

リソースでは、次のメソッドがサポートされます。

POST

ADMIN状態でリソース・グループを開始します。ADMIN状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/suspend

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

パーティションを中断します。権限を付与されたユーザー以外の新規リクエストを拒否します。保留中のリクエストの完了を許可します。この操作により、パーティションはADMIN状態に移行します。ADMIN状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。

ロール

Admin、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

パーティションはRUNNINGからADMIN状態に正常に移行します。

アプリケーションは管理モードです。処理中の作業が完了しました。ADMIN状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

タイムアウト

パーティションが正常に移行するのを待機する秒数。forceSuspend()はタイムアウト後に呼び出されます。

タイプ: int

ignoreSessions

正常に中断している間に処理中のHTTPセッションをドロップ

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/suspendResourceGroup

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

リソース・グループを中断します。権限を付与されたユーザー以外の新規リクエストを拒否します。保留中のリクエストの完了を許可します。この操作により、パーティションはADMIN状態に移行します。ADMIN状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

タイムアウト

タイムアウト

タイプ: int

ignoreSessions

ignoreSessions

タイプ: ブール

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

POST

リソース・グループを中断します。権限を付与されたユーザー以外の新規リクエストを拒否します。保留中のリクエストの完了を許可します。この操作により、パーティションはADMIN状態に移行します。ADMIN状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。

ロール

Admin、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

resourceGroupName

resourceGroupName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime

このリソースでは、weblogic.management.runtime.WLDFPartitionRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFPartitionRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WLDFPartitionRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime

このリソースでは、weblogic.management.runtime.WLDFPartitionAccessRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFPartitionAccessRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WLDFPartitionAccessRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes

このリソースでは、weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}

このリソースでは、weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/closeCursor

リソースでは、次のメソッドがサポートされます。

POST

クライアントによってすべてのレコードがフェッチされたら、カーソルを破棄します。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorName

cursorName

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/deleteDataRecords

リソースでは、次のメソッドがサポートされます。

POST

指定された問合せに一致する指定された時間範囲内のレコードを削除します。問合せがnullまたは空の場合、その時間範囲内のすべてのレコードが削除されます。

開始および終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

一部のアーカイブでは、削除機能をサポートしていません。サポートされていない場合、このメソッドはUnsupportedOperationException例外をスローします。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

startTime

時間間隔の開始時刻(指定時刻も含む)

タイプ: ロング

endTime

時間間隔の終了時刻(指定時刻は含まない)

タイプ: ロング

queryString

問合せ条件

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/getDataRecordCount

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定された問合せと時間範囲に一致するレコード数。

開始および終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

startTime

時間間隔の開始時刻(指定時刻も含む)

タイプ: ロング

endTime

時間間隔の終了時刻(指定時刻は含まない)

タイプ: ロング

問合せ

問合せ条件

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定された問合せに一致するレコード数。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

問合せ

問合せ式

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定された問合せとレコードID範囲に一致し、タイムスタンプ(利用可能な場合)が指定された終了時刻よりも前のレコード数。

終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

startRecordId

最初のレコードのレコードID

タイプ: ロング

endRecordId

レコードIDが指定されたendrecordIdよりも小さいレコードを検索します。

タイプ: ロング

endTime

endTimeより前に入力されたレコードを検索します。

タイプ: ロング

問合せ

問合せ条件

: string

レスポンス・ボディ

int型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/hasMoreData

リソースでは、次のメソッドがサポートされます。

POST

指定されたカーソルにまだフェッチするデータがあるかどうかを判別します。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

cursorName

cursorName

: string

レスポンス・ボディ

ブール型の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/openCursor

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

指定されたタイムアウト値(ミリ秒)を使用してカーソルをオープンします。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

問合せ

ベースとなる診断ログから結果セットをフィルタリングするための問合せ式。

: string

cursorTimeout

カーソルが呼び出されない場合にタイムアウトして無効になるまでのタイムアウト間隔。

タイプ: ロング

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定された時間範囲と問合せ条件に一致するレコードのカーソルをオープンします。カーソルのタイムアウト値も指定します。

タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

beginTimestamp

beginTimestamp

タイプ: ロング

endTimestamp

endTimestamp

タイプ: ロング

問合せ

問合せ

: string

cusorTimeout

cusorTimeout

タイプ: ロング

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

問合せのサーバー側のカーソルをオープンします。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

問合せ

ベースとなる診断ログから結果セットをフィルタリングするための問合せ式。

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定された問合せと時間範囲を使用してカーソルをオープンします。

タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

カーソルのデフォルトのタイムアウト間隔は5分です。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

beginTimestamp

beginTimestamp

タイプ: ロング

endTimestamp

endTimestamp

タイプ: ロング

問合せ

問合せ

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定されたレコードID範囲、終了タイムスタンプ、問合せを使用してカーソルをオープンします。カーソルのタイムアウト値も指定します。

タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

beginRecordId

結果セット内の最初のレコード(このレコードを含む)のレコードID

タイプ: ロング

endRecordId

結果セット内の最後のレコード(このレコードを含まない)のレコードID

タイプ: ロング

endTimestamp

タイムスタンプがこの値よりも前のレコードのみ含まれます

タイプ: ロング

問合せ

問合せ条件

: string

cusorTimeout

cusorTimeout

タイプ: ロング

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

POST

指定された問合せとレコードID範囲を使用してカーソルをオープンします。

タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。

カーソルのデフォルトのタイムアウト間隔は5分です。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

beginRecordId

結果セット内の最初のレコード(このレコードを含む)のレコードID

タイプ: ロング

endRecordId

結果セット内の最後のレコード(このレコードを含まない)のレコードID

タイプ: ロング

endTimestamp

タイムスタンプがこの値よりも前のレコードのみ含まれます

タイプ: ロング

問合せ

問合せ条件

: string

レスポンス・ボディ

文字列の戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/lookupWLDFDataAccessRuntime

リソースでは、次のメソッドがサポートされます。

POST

論理名で定義されたWLDFDataAccessMBeanのインスタンス。リクエストされた特定のタイプのログ・データから名前が作成されます。

ロール

Admin、Deployer、Monitor、Operator

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

logicalName

logicalName

: string

レスポンス・ボディ

weblogic.management.runtime.WLDFDataAccessRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes

このリソースでは、weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes/{name}

このリソースでは、weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes/{name}/closeArchive

リソースでは、次のメソッドがサポートされます。

POST

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionHarvesterRuntime

このリソースでは、weblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime

このリソースでは、weblogic.management.runtime.WLDFPartitionImageRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFPartitionImageRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WLDFPartitionImageRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/captureImage

リソースでは、次のメソッドがサポートされます。

POST

リソースでは、次のメソッドがサポートされます。

POST

構成済の保存先ディレクトリに診断イメージを作成します。

このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。

ロール

Admin

レスポンス・ボディ

weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

POST

構成済の保存先ディレクトリに診断イメージを作成します。

指定されたロックアウト期間が過ぎるまで、追加のイメージ・キャプチャ・リクエストは受け付けられません。

このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

lockoutMinutes

次のイメージ・キャプチャ・リクエストが受け付けられるまでの分数。

タイプ: int

レスポンス・ボディ

weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean参照戻りフィールドを持つJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/clearCompletedImageCaptureTasks

リソースでは、次のメソッドがサポートされます。

POST

完了したイメージ・キャプチャ・タスクをすべて削除します。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks

このリソースでは、weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}

このリソースでは、weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/cancel

リソースでは、次のメソッドがサポートされます。

POST

このタスクの取消しを試みます。

例外がスローされて、タスクの取消しの失敗を示します。すべてのタスクを取り消すことができるわけではありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/cancel

リソースでは、次のメソッドがサポートされます。

POST

このタスクの取消しを試みます。

例外がスローされて、タスクの取消しの失敗を示します。すべてのタスクを取り消すことができるわけではありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}

このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

リソースでは、次のメソッドがサポートされます。

POST

このタスクの取消しを試みます。

例外がスローされて、タスクの取消しの失敗を示します。すべてのタスクを取り消すことができるわけではありません。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/purgeCapturedImages

リソースでは、次のメソッドがサポートされます。

POST

経過時間基準で指定されたキャプチャ済イメージを削除します。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

age

日:時間:分の形式で指定された経過時間よりも古い診断イメージをパージします。空またはnullの場合、ディスク上の既存のイメージ・ファイルがすべてパージされます。時間と分のコンポーネントは省略可能です。

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/resetImageLockout

リソースでは、次のメソッドがサポートされます。

POST

ロックアウト期間をリセットし、イメージ・キャプチャ・リクエストを受付け可能にします。

ロール

Admin

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime

このリソースでは、weblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/resetWatchAlarm

リソースでは、次のメソッドがサポートされます。

POST

ポリシー・アラームをリセットします。

ロール

Admin

リクエスト・ボディ

次のフィールドを持つJSONオブジェクトを含める必要があります。

watchName

リセットするポリシーの名前

: string

レスポンス・ボディ

空のJSONオブジェクトが含まれます。

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource

このリソースでは、weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。

リソースでは、次のメソッドがサポートされます。

GET

weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}

このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime

このリソースでは、weblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime/clusterRouting

このリソースでは、weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanエンティティが含まれます。

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

/management/weblogic/{version}/serverRuntime/search

リソースでは、次のメソッドがサポートされます。

POST

serverRuntimeツリーを検索します。

リクエスト・ボディ

検索リクエスト本文には検索条件が含まれます。

レスポンス・ボディ

検索レスポンスには検索結果が含まれます。

/management/weblogic/{version}/serverRuntime/threadPoolRuntime

このリソースでは、weblogic.management.runtime.ThreadPoolRuntimeMBeanインスタンスを管理します。

リソースでは、次のメソッドがサポートされます。

GET

このweblogic.management.runtime.ThreadPoolRuntimeMBeanインスタンスを取得します。

ロール

Admin、Deployer、Monitor、Operator

レスポンス・ボディ

weblogic.management.runtime.ThreadPoolRuntimeMBeanエンティティが含まれます。

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