Oracle® Fusion Middleware Oracle WebLogic Server RESTfulサーバー・ランタイム・リファレンス 12c (12.2.1.1.0) E77668-01 |
|
前 |
次 |
ここでは、管理サーバーまたは管理対象サーバーのモニタリングに使用する、Oracle WebLogic Server RESTfulサーバーのランタイム・リソースについて説明します。
WLS RESTのリファレンス・ドキュメントのリスト全体およびその使用方法の説明については、『RESTful管理サービスによるOracle WebLogic Serverの管理』を参照してください。
このドメインにあるリソースの様々なバージョン(該当する場合)にアクセスするには、このリソースを使用します。
12.2.1.0 (非推奨)と最新バージョンの2つがあり、最新バージョンは12.2.1.1.0です。今後のリリースでは、latestは常に最新リリースを表します。
12.2.1.1.0と12.2.1.0のRESTリソースには、MBeanのすべての新機能が追加されています。12.2.1.1.0で非推奨になったMBean機能はいずれも、12.2.1.0のREST URLではまだ使用できますが、12.2.1.1.0のREST URLでは使用できません。
常に最新のリソースを使用するには、URL内で必ずlatest
を使用するようにします。この場合、WebLogic Serverの新規バージョンに移行するときにクライアントの更新も必要になる場合があることに注意してください。バージョンを固定して更新しないようにするには、URLで12.2.1.1.0
を使用します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.rest.bean.model.Versionインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.rest.bean.model.Versionエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic rel=canonical
このリソース。
uri=/management/weblogic/12.2.1.1.0 rel=current
このドメインのWLSリソースの最新バージョンにアクセスします。
uri=/management/weblogic rel=self
このリソース。
例
この例では、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" }] }
このリソースは、WebLogic Serverドメインとその管理対象サーバーの管理に使用するリソース・ツリーを示します。このリソース・ツリーはWLSTのBeanツリーに似ており、構成の表示と編集を行って実行時の動作をモニターできます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.rest.bean.model.Versionインスタンスを取得します。
レスポンス・ボディ
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
例
この例では、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" }
この例では、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" }
このリソースは、ドメイン内で認証されたユーザーを表します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.rest.bean.model.CurrentUserインスタンスを取得します。
レスポンス・ボディ
weblogic.management.rest.bean.model.CurrentUserエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/currentUser rel=canonical
このリソース。
uri=/management/weblogic/{version} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/currentUser rel=self
このリソース。
例
この例では、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" }
このリソースを使用して、管理サーバーと管理対象サーバーをモニターします。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ServerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ServerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime rel=JDBCServiceRuntime
このリソースのJDBCServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime rel=JMSRuntime
このリソースのJMSRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=JTARuntime
このリソースのJTARuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JVMRuntime rel=JVMRuntime
このリソースのJVMRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/MANAsyncReplicationRuntime rel=MANAsyncReplicationRuntime
このリソースのMANAsyncReplicationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/MANReplicationRuntime rel=MANReplicationRuntime
このリソースのMANReplicationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime rel=SAFRuntime
このリソースのSAFRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime rel=SNMPAgentRuntime
このリソースのSNMPAgentRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WANReplicationRuntime rel=WANReplicationRuntime
このリソースのWANReplicationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=WLDFRuntime
このリソースのWLDFRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime rel=WTCRuntime
このリソースのWTCRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/bootPartition rel=action title=bootPartition
このリソースのbootPartitionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/forceRestartPartition rel=action title=forceRestartPartition
このリソースのforceRestartPartitionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/forceShutdown rel=action title=forceShutdown
このリソースのforceShutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/forceShutdownResourceGroup rel=action title=forceShutdownResourceGroup
このリソースのforceShutdownResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/forceSuspend rel=action title=forceSuspend
このリソースのforceSuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/forceSuspendResourceGroup rel=action title=forceSuspendResourceGroup
このリソースのforceSuspendResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/getIPv4URL rel=action title=getIPv4URL
このリソースのgetIPv4URLアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/getIPv6URL rel=action title=getIPv6URL
このリソースのgetIPv6URLアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/getRgState rel=action title=getRgState
このリソースのgetRgStateアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/getURL rel=action title=getURL
このリソースのgetURLアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/restartSSLChannels rel=action title=restartSSLChannels
このリソースのrestartSSLChannelsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/resumeResourceGroup rel=action title=resumeResourceGroup
このリソースのresumeResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/shutdown rel=action title=shutdown
このリソースのshutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/shutdownResourceGroup rel=action title=shutdownResourceGroup
このリソースのshutdownResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/startPartition rel=action title=startPartition
このリソースのstartPartitionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/startPartitionInAdmin rel=action title=startPartitionInAdmin
このリソースのstartPartitionInAdminアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/startResourceGroup rel=action title=startResourceGroup
このリソースのstartResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/startResourceGroupInAdmin rel=action title=startResourceGroupInAdmin
このリソースのstartResourceGroupInAdminアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/suspendResourceGroup rel=action title=suspendResourceGroup
このリソースのsuspendResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes rel=applicationRuntimes
このリソースのapplicationRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/asyncReplicationRuntime rel=asyncReplicationRuntime
このリソースのasyncReplicationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/batchJobRepositoryRuntime rel=batchJobRepositoryRuntime
このリソースのbatchJobRepositoryRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/classLoaderRuntime rel=classLoaderRuntime
このリソースのclassLoaderRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime rel=clusterRuntime
このリソースのclusterRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime rel=concurrentManagedObjectsRuntime
このリソースのconcurrentManagedObjectsRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/defaultExecuteQueueRuntime rel=defaultExecuteQueueRuntime
このリソースのdefaultExecuteQueueRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/entityCacheCumulativeRuntime rel=entityCacheCumulativeRuntime
このリソースのentityCacheCumulativeRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/entityCacheCurrentStateRuntime rel=entityCacheCurrentStateRuntime
このリソースのentityCacheCurrentStateRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/entityCacheHistoricalRuntime rel=entityCacheHistoricalRuntime
このリソースのentityCacheHistoricalRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/executeQueueRuntimes rel=executeQueueRuntimes
このリソースのexecuteQueueRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime rel=joltRuntime
このリソースのjoltRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes rel=libraryRuntimes
このリソースのlibraryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/logBroadcasterRuntime rel=logBroadcasterRuntime
このリソースのlogBroadcasterRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/mailSessionRuntimes rel=mailSessionRuntimes
このリソースのmailSessionRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes rel=maxThreadsConstraintRuntimes
このリソースのmaxThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes rel=messagingBridgeRuntimes
このリソースのmessagingBridgeRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes rel=minThreadsConstraintRuntimes
このリソースのminThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes rel=partitionRuntimes
このリソースのpartitionRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes rel=pathServiceRuntimes
このリソースのpathServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes rel=persistentStoreRuntimes
このリソースのpersistentStoreRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/requestClassRuntimes rel=requestClassRuntimes
このリソースのrequestClassRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/search rel=search
このリソースのsearchリソース。
uri=/management/weblogic/{version}/serverRuntime rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverChannelRuntimes rel=serverChannelRuntimes
このリソースのserverChannelRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverLogRuntime rel=serverLogRuntime
このリソースのserverLogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime rel=serverSecurityRuntime
このリソースのserverSecurityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/singleSignOnServicesRuntime rel=singleSignOnServicesRuntime
このリソースのsingleSignOnServicesRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/threadPoolRuntime rel=threadPoolRuntime
このリソースのthreadPoolRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes rel=webServerRuntimes
このリソースのwebServerRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime rel=wseeClusterFrontEndRuntime
このリソースのwseeClusterFrontEndRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/wseeWsrmRuntime rel=wseeWsrmRuntime
このリソースのwseeWsrmRuntimeシングルトン・リソース。
例
この例では、GETメソッドを使用して、このweblogic.management.runtime.ServerRuntimeMBeanインスタンスを表示します。
リクエストの例
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/serverRuntime?fields=name,openSocketsCurrentCount,overallHealthState,administrationURL&links=self
レスポンスの例
HTTP/1.1 200 OK Response Body: { "links": [{ "rel": "self", "href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime" }], "openSocketsCurrentCount": 1, "administrationURL": "t3:\//localhost:7001", "overallHealthState": { "state": "ok", "subsystemName": null, "partitionName": null, "symptoms": [] }, "name": "AdminServer" }
このリソースでは、weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ApplicationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ApplicationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ApplicationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/getPersistenceUnitRuntime rel=action title=getPersistenceUnitRuntime
このリソースのgetPersistenceUnitRuntimeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/hasApplicationCache rel=action title=hasApplicationCache
このリソースのhasApplicationCacheアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/reInitializeApplicationCachesAndPools rel=action title=reInitializeApplicationCachesAndPools
このリソースのreInitializeApplicationCachesAndPoolsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classLoaderRuntime rel=classLoaderRuntime
このリソースのclassLoaderRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime rel=classRedefinitionRuntime
このリソースのclassRedefinitionRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/coherenceClusterRuntime rel=coherenceClusterRuntime
このリソースのcoherenceClusterRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes rel=componentRuntimes
このリソースのcomponentRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes rel=libraryRuntimes
このリソースのlibraryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=managedExecutorServiceRuntimes
このリソースのmanagedExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes rel=managedScheduledExecutorServiceRuntimes
このリソースのmanagedScheduledExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=managedThreadFactoryRuntimes
このリソースのmanagedThreadFactoryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=maxThreadsConstraintRuntimes
このリソースのmaxThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=minThreadsConstraintRuntimes
このリソースのminThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes rel=optionalPackageRuntimes
このリソースのoptionalPackageRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes rel=persistenceUnitRuntimes
このリソースのpersistenceUnitRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes rel=queryCacheRuntimes
このリソースのqueryCacheRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes rel=requestClassRuntimes
このリソースのrequestClassRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes rel=wseeV2Runtimes
このリソースのwseeV2Runtimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ClassLoaderRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classLoaderRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classLoaderRuntime rel=self
このリソース。
このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このcom.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/redefineClasses rel=action title=redefineClasses
このリソースのredefineClassesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks rel=classRedefinitionTasks
このリソースのclassRedefinitionTasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime rel=self
このリソース。
このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このcom.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name} rel=canonical
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
クラス再定義サイクルを開始します。この再定義サイクルでは、変更された可能性のあるクラスを特定して、そのクラスの再定義を試みます。クラス再定義は非同期で実行されます。クラス再定義プロセスの進行状況は、返されるタスクでモニターできます。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
クラス再定義サイクルを開始し、特定のモジュールから指定されたクラスのみを再定義します。クラス再定義は非同期で実行されます。クラス再定義プロセスの進行状況は、返されるタスクでモニターできます。指定されたモジュール名がnullである場合は、アプリケーション内のクラス(任意のモジュールにスコープされたクラス、およびグローバルにスコープされたクラス)でリストに含まれるものが再定義されます。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
このリソースでは、weblogic.management.runtime.CoherenceClusterRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CoherenceClusterRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CoherenceClusterRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/coherenceClusterRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/coherenceClusterRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=referencingRuntimes
このリソースのreferencingRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes rel=referencingRuntimes
このリソースのreferencingRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistenceUnitRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistenceUnitRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.QueryCacheRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.QueryCacheRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeV2RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeV2RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeV2RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime rel=policyRuntime
このリソースのpolicyRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=ports
このリソースのportsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseePolicyRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseePolicyRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePolicyRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseePortRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseePortRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePortRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseePortRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseePortRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePortRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations rel=aggregatedBaseOperations
このリソースのaggregatedBaseOperationsシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations rel=baseOperations
このリソースのbaseOperationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting rel=clusterRouting
このリソースのclusterRoutingシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers rel=handlers
このリソースのhandlersコレクション・リソース。
このリソースのmcシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations rel=operations
このリソースのoperationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy rel=portPolicy
このリソースのportPolicyシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm rel=wsrm
このリソースのwsrmシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeBaseOperationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeBaseOperationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeHandlerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeHandlerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeMcRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeMcRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeMcRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/mc rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/mc rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeOperationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeOperationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseePortPolicyRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseePortPolicyRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePortPolicyRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeWsrmRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm rel=self
このリソース。
このリソースでは、weblogic.management.runtime.AsyncReplicationRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.AsyncReplicationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.AsyncReplicationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/asyncReplicationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/asyncReplicationRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.BatchJobRepositoryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.BatchJobRepositoryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.BatchJobRepositoryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/batchJobRepositoryRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/batchJobRepositoryRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ClassLoaderRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/classLoaderRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/classLoaderRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ClusterRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ClusterRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ClusterRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/initiateResourceGroupMigration rel=action title=initiateResourceGroupMigration
このリソースのinitiateResourceGroupMigrationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime rel=jobSchedulerRuntime
このリソースのjobSchedulerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime rel=serverMigrationRuntime
このリソースのserverMigrationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/unicastMessaging rel=unicastMessaging
このリソースのunicastMessagingシングルトン・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JobSchedulerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JobSchedulerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JobSchedulerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/getJob rel=action title=getJob
このリソースのgetJobアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs rel=executedJobs
このリソースのexecutedJobsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JobRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JobRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JobRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JobRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JobRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JobRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ServerMigrationRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ServerMigrationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ServerMigrationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData rel=migrationData
このリソースのmigrationDataコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MigrationDataRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MigrationDataRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MigrationDataRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MigrationDataRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MigrationDataRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MigrationDataRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.UnicastMessagingRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.UnicastMessagingRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.UnicastMessagingRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/unicastMessaging rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/clusterRuntime/unicastMessaging rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=managedExecutorServiceRuntimes
このリソースのmanagedExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes rel=managedScheduledExecutorServiceRuntimes
このリソースのmanagedScheduledExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=managedThreadFactoryRuntimes
このリソースのmanagedThreadFactoryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs rel=RAs
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=resources
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=resources
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/RAs rel=RAs
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=resources
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ExecuteQueueRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ExecuteQueueRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ExecuteQueueRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/defaultExecuteQueueRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/defaultExecuteQueueRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.EntityCacheCumulativeRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EntityCacheCumulativeRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EntityCacheCumulativeRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/entityCacheCumulativeRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/entityCacheCumulativeRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.EntityCacheCurrentStateRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EntityCacheCurrentStateRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EntityCacheCurrentStateRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/entityCacheCurrentStateRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/entityCacheCurrentStateRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.EntityCacheCumulativeRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EntityCacheCumulativeRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EntityCacheCumulativeRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/entityCacheHistoricalRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/entityCacheHistoricalRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ExecuteQueueRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ExecuteQueueRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ExecuteQueueRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/executeQueueRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/executeQueueRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ExecuteQueueRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ExecuteQueueRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ExecuteQueueRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/executeQueueRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/executeQueueRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/executeQueueRuntimes/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
クライアントが指定されたプロトコルを使用して、このサーバーに接続するときに使用するURL。
注: 指定されたプロトコルのリスニング・アドレスおよびリスニング・ポートはドメインのconfig.xml
ファイル内に保持されますが、サーバー・インスタンスが起動するときに、コマンド行オプションでこれらの永続値がオーバーライドされる場合があります。このgetURL
メソッドは現在使用されているURL値を返します。この値は必ずしもconfig.xml
に指定されている値とはかぎりません
例
この例では、POSTメソッドを使用してgetIPv4URLアクションを呼び出します。
リクエストの例
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{ protocol: 'http' }" \ -X POST http://localhost:7001/management/weblogic/latest/serverRuntime/getIPv4URL
レスポンスの例
HTTP/1.1 200 OK Response Body: {"return": "http:\//localhost:7001"}
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JDBCServiceRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans rel=JDBCDataSourceRuntimeMBeans
このリソースのJDBCDataSourceRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans rel=JDBCDriverRuntimeMBeans
このリソースのJDBCDriverRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans rel=JDBCMultiDataSourceRuntimeMBeans
このリソースのJDBCMultiDataSourceRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime rel=JDBCDriverRuntime
このリソースのJDBCDriverRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean rel=JDBCReplayStatisticsRuntimeMBean
このリソースのJDBCReplayStatisticsRuntimeMBeanシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncShutdown rel=action title=asyncShutdown
このリソースのasyncShutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncSuspend rel=action title=asyncSuspend
このリソースのasyncSuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/clearStatementCache rel=action title=clearStatementCache
このリソースのclearStatementCacheアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPool rel=action title=dumpPool
このリソースのdumpPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPoolProfile rel=action title=dumpPoolProfile
このリソースのdumpPoolProfileアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceShutdown rel=action title=forceShutdown
このリソースのforceShutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceSuspend rel=action title=forceSuspend
このリソースのforceSuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/poolExists rel=action title=poolExists
このリソースのpoolExistsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/shrink rel=action title=shrink
このリソースのshrinkアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/shutdown rel=action title=shutdown
このリソースのshutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/start rel=action title=start
このリソースのstartアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=canonical
このリソース。
rel=lastTask
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanリソースへの、このリソースのlastTask参照。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks rel=tasks
このリソースのtasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
ヘルス状態がRunning
のデータ・ソースを正常に、非同期的にシャットダウンします。データソースの正常な(強制でない)シャットダウン操作では、まず、データソースを正常に中断してから、接続を含む関連リソースを解放します。データソースの正常な中断の詳細は、前述の説明を参照してください。データソースを正常に中断した後、残りの使用中のすべての接続をクローズして、データソースをシャットダウンとしてマークします。
IgnoreInUseConnectionsEnabledをfalseに設定すると、使用中の接続が存在する場合に操作が失敗します。
成功すると、ヘルス状態が「停止
」に設定されます。
これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
ヘルス状態がRunning
で、既存の接続を無効にするデータ・ソースを非同期で正常に中断します。この操作では、データ・ソースは中断として即座にマークされ、それ以上接続は作成されなくなります。アイドル(非予約)接続は、無効としてマークされます。中断操作のタイムアウト期間の経過後、プールに残っているすべての接続が中断としてマークされ、接続に対する任意の操作でデータ・ソースが中断していることを示す次の例外がスローされます。「java.sql.SQLRecoverableException: 接続が管理者により無効化されています。後で再度実行してください。プールが再開される可能性があるため、これらの接続はプールに残され、閉じられません。
IgnoreInUseConnectionsEnabledをfalseに設定すると、使用中の接続が存在する場合に操作が失敗します。
成功した場合は、ヘルス状態がSuspended
に設定されます。
これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDriverRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/clearStatistics rel=action title=clearStatistics
このリソースのclearStatisticsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/refreshStatistics rel=action title=refreshStatistics
このリソースのrefreshStatisticsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
ヘルス状態がRunning
で、既存の接続を無効にするデータ・ソースを同期して正常に中断します。この操作では、データ・ソースは中断として即座にマークされ、それ以上接続は作成されなくなります。アイドル(非予約)接続は、無効としてマークされます。中断操作のタイムアウト期間の経過後、プールに残っているすべての接続が中断としてマークされ、接続に対する任意の操作でデータ・ソースが中断していることを示す次の例外がスローされます。「java.sql.SQLRecoverableException: 接続が管理者により無効化されています。後で再度実行してください。正常な中断が正常なシャットダウン操作の一部として行われる場合、接続は未予約になったとき、またはタイムアウト期間の終了時に即座にクローズされます。停止操作の一部として行われない場合、プールが再開される可能性があるため、これらの接続はプールに残され、閉じられません。
デフォルトでは、タイムアウト期間は60秒です。このタイムアウト期間の値は、非アクティブ接続タイムアウト秒を0 (ゼロ)以外の値に構成(または動的に設定)することで変更できます。
IgnoreInUseConnectionsEnabledをfalseに設定すると、使用中の接続が存在する場合に操作が失敗します。
成功した場合は、ヘルス状態がSuspended
に設定されます。
これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。
このリソースでは、weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name} rel=canonical
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDriverRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDriverRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers rel=JMSServers
このリソースのJMSServersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/destroy rel=action title=destroy
このリソースのdestroyアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions rel=sessions
このリソースのsessionsコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=consumers
このリソースのconsumersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers rel=producers
このリソースのproducersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSProducerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSProducerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSServerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSServerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/forceCommit rel=action title=forceCommit
このリソースのforceCommitアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/forceRollback rel=action title=forceRollback
このリソースのforceRollbackアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getTransactionStatus rel=action title=getTransactionStatus
このリソースのgetTransactionStatusアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations rel=destinations
このリソースのdestinationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=sessionPoolRuntimes
このリソースのsessionPoolRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime rel=destinationRuntime
このリソースのdestinationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSトランザクション・ブランチに関連付けられた一連のメッセージを返します。結果セットはメッセージ・カーソルの形式で呼出し側に返されます。結果セットには、このJMSサーバー上の複数の宛先からのメッセージが含まれる可能性があります。
タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSServerによってホストされるすべての宛先での消費処理を休止します。
JMSServerでの消費が休止されると、宛先の状態がすべて「消費の休止」とマークされ、宛先での消費が再開されてメッセージが消費可能になるまで、すべての新しい同期受信処理がブロックされます。ブロッキング・タイムアウトを伴うすべての同期受信は、「消費の休止」状態の間、タイムアウトが発生するまでブロックされます。
この宛先にアタッチされているすべての非同期コンシューマは、宛先が「消費の休止」状態の間に配信されたメッセージを取得しません。
消費の「休止」処理が正常に行われた後、その宛先でさらに消費処理を行えるようにするには、ユーザーが宛先を明示的に「再開」する必要があります。
リソースでは、次のメソッドがサポートされます。
JMSServerのすべての宛先でメッセージの表示を休止します。これらのメッセージは、このJMSServerによってホストされるすべての宛先で処理中の作業完了の結果です。
処理中の作業とは
次の定義は、WebLogic JMSサブシステムの現在の実装に基づいています。
プロデューサに関連付けられる処理中のメッセージ
未生成メッセージ
「生成時刻」(TimeToDeliver)が未来に設定された、プロデューサによって将来生成されるメッセージは未生成メッセージと呼ばれ、宛先の統計で「保留中」メッセージとしてカウントされ、コンシューマにはまだ消費できません。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクションの一環としてプロデューサにより生成されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。未コミット・メッセージは、宛先の統計で「保留中」のメッセージとしてカウントされ、消費できません。
送信をブロックする割り当て
プロデューサによって生成されたが、宛先に対する(メッセージかバイトまたはその両方の)クォータ制限のために宛先に到着できないメッセージ。プロデューサは、クォータが利用可能になるまで一定期間送信をブロックします。これらのメッセージはシステムから認識できないため、宛先の統計では一切カウントされません。
コンシューマに関連付けられる処理中のメッセージ
未応答(CLIENT ACK PENDING)メッセージ
「クライアント応答」セッションを使用してクライアントによって正常に消費され、クライアントからの応答を待機しているメッセージ。この種のメッセージは「保留中のメッセージ」であり、確認応答の受信時に宛先またはシステムから削除されます。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクション内でクライアントにより消費(受信)されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。この種のメッセージは、クライアントがそのトランザクションを正常にコミットしたときに、システムから削除されます。
ロールバック・メッセージ
コンシューマによるトランザクションの受信が正常にロールバックされたため、宛先に戻されたメッセージ。この種のメッセージは、クライアントに対してただちに消費(再配信)可能になる場合とならない場合があります。これは、関連付けられているJMSConnectionFactoryおよびJMSDestinationにおいてそれぞれ構成されている再配信パラメータ(RedeliveryDelay、RedeliveryDelayOverride、RedeliveryLimitなど)に依存します。
再配信遅延が構成されている場合、メッセージはその「遅延」期間中は消費不可となり、宛先の統計で「保留中」としてカウントされます。「遅延」期間後、再配信制限を超えなければ、その宛先に配信(消費可能な状態に)され、宛先の統計で「現在の」メッセージとしてカウントされます。再配信制限を超えている場合、メッセージは(構成済であれば)ErrorDestinationに移されます。
ロールバック・メッセージの利用を制御する別のパラメータはRedeliveryLimitです。
回復されたメッセージ
クライアントによるセッション「回復」の呼出しが明示的に行われたためにキューに現れるメッセージ。この点以外はロールバック・メッセージと同じです。
再配信されたメッセージ
クライアントへの配信に失敗したため(コンシューマのクラッシュ、クローズなど)、宛先に再び現れるメッセージ。この点以外はロールバック・メッセージと同じです。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=JMSServer
このリソースのJMSServerシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers rel=connectionConsumers
このリソースのconnectionConsumersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSServerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceCommit rel=action title=forceCommit
このリソースのforceCommitアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceRollback rel=action title=forceRollback
このリソースのforceRollbackアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getTransactionStatus rel=action title=getTransactionStatus
このリソースのgetTransactionStatusアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations rel=destinations
このリソースのdestinationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sessionPoolRuntimes rel=sessionPoolRuntimes
このリソースのsessionPoolRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime rel=destinationRuntime
このリソースのdestinationRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort rel=action title=sort
このリソースのsortアクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSトランザクション・ブランチに関連付けられた一連のメッセージを返します。結果セットはメッセージ・カーソルの形式で呼出し側に返されます。結果セットには、このJMSサーバー上の複数の宛先からのメッセージが含まれる可能性があります。
タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSServerによってホストされるすべての宛先での消費処理を休止します。
JMSServerでの消費が休止されると、宛先の状態がすべて「消費の休止」とマークされ、宛先での消費が再開されてメッセージが消費可能になるまで、すべての新しい同期受信処理がブロックされます。ブロッキング・タイムアウトを伴うすべての同期受信は、「消費の休止」状態の間、タイムアウトが発生するまでブロックされます。
この宛先にアタッチされているすべての非同期コンシューマは、宛先が「消費の休止」状態の間に配信されたメッセージを取得しません。
消費の「休止」処理が正常に行われた後、その宛先でさらに消費処理を行えるようにするには、ユーザーが宛先を明示的に「再開」する必要があります。
リソースでは、次のメソッドがサポートされます。
JMSServerのすべての宛先でメッセージの表示を休止します。これらのメッセージは、このJMSServerによってホストされるすべての宛先で処理中の作業完了の結果です。
処理中の作業とは
次の定義は、WebLogic JMSサブシステムの現在の実装に基づいています。
プロデューサに関連付けられる処理中のメッセージ
未生成メッセージ
「生成時刻」(TimeToDeliver)が未来に設定された、プロデューサによって将来生成されるメッセージは未生成メッセージと呼ばれ、宛先の統計で「保留中」メッセージとしてカウントされ、コンシューマにはまだ消費できません。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクションの一環としてプロデューサにより生成されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。未コミット・メッセージは、宛先の統計で「保留中」のメッセージとしてカウントされ、消費できません。
送信をブロックする割り当て
プロデューサによって生成されたが、宛先に対する(メッセージかバイトまたはその両方の)クォータ制限のために宛先に到着できないメッセージ。プロデューサは、クォータが利用可能になるまで一定期間送信をブロックします。これらのメッセージはシステムから認識できないため、宛先の統計では一切カウントされません。
コンシューマに関連付けられる処理中のメッセージ
未応答(CLIENT ACK PENDING)メッセージ
「クライアント応答」セッションを使用してクライアントによって正常に消費され、クライアントからの応答を待機しているメッセージ。この種のメッセージは「保留中のメッセージ」であり、確認応答の受信時に宛先またはシステムから削除されます。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクション内でクライアントにより消費(受信)されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。この種のメッセージは、クライアントがそのトランザクションを正常にコミットしたときに、システムから削除されます。
ロールバック・メッセージ
コンシューマによるトランザクションの受信が正常にロールバックされたため、宛先に戻されたメッセージ。この種のメッセージは、クライアントに対してただちに消費(再配信)可能になる場合とならない場合があります。これは、関連付けられているJMSConnectionFactoryおよびJMSDestinationにおいてそれぞれ構成されている再配信パラメータ(RedeliveryDelay、RedeliveryDelayOverride、RedeliveryLimitなど)に依存します。
再配信遅延が構成されている場合、メッセージはその「遅延」期間中は消費不可となり、宛先の統計で「保留中」としてカウントされます。「遅延」期間後、再配信制限を超えなければ、その宛先に配信(消費可能な状態に)され、宛先の統計で「現在の」メッセージとしてカウントされます。再配信制限を超えている場合、メッセージは(構成済であれば)ErrorDestinationに移されます。
ロールバック・メッセージの利用を制御する別のパラメータはRedeliveryLimitです。
回復されたメッセージ
クライアントによるセッション「回復」の呼出しが明示的に行われたためにキューに現れるメッセージ。この点以外はロールバック・メッセージと同じです。
再配信されたメッセージ
クライアントへの配信に失敗したため(コンシューマのクラッシュ、クローズなど)、宛先に再び現れるメッセージ。この点以外はロールバック・メッセージと同じです。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
このリソースでは、weblogic.management.runtime.JoltConnectionServiceRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JoltConnectionServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JoltConnectionServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JoltConnectionPoolRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JoltConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JoltConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JoltConnectionPoolRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JoltConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JoltConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/resetConnectionPool rel=action title=resetConnectionPool
このリソースのresetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JoltConnectionRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JoltConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JoltConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JoltConnectionRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JoltConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JoltConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JTARuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JTARuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JTARuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/getRecoveryRuntimeMBean rel=action title=getRecoveryRuntimeMBean
このリソースのgetRecoveryRuntimeMBeanアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans rel=nonXAResourceRuntimeMBeans
このリソースのnonXAResourceRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans rel=recoveryRuntimeMBeans
このリソースのrecoveryRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean rel=transactionLogStoreRuntimeMBean
このリソースのtransactionLogStoreRuntimeMBeanシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans rel=transactionNameRuntimeMBeans
このリソースのtransactionNameRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans rel=transactionResourceRuntimeMBeans
このリソースのtransactionResourceRuntimeMBeansコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.NonXAResourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.NonXAResourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JTARecoveryRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JTARecoveryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JTARecoveryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JTARecoveryRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JTARecoveryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JTARecoveryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionNameRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionNameRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionResourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionResourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JVMRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JVMRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JVMRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/JVMRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/JVMRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes rel=referencingRuntimes
このリソースのreferencingRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LogBroadcasterRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogBroadcasterRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogBroadcasterRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/logBroadcasterRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/logBroadcasterRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MailSessionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/mailSessionRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/mailSessionRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MailSessionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MailSessionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/mailSessionRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/mailSessionRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/mailSessionRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MANAsyncReplicationRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MANAsyncReplicationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MANAsyncReplicationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/MANAsyncReplicationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/MANAsyncReplicationRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MANReplicationRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MANReplicationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MANReplicationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/MANReplicationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/MANReplicationRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessagingBridgeRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessagingBridgeRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PartitionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PartitionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PartitionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PartitionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PartitionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PartitionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime rel=JDBCPartitionRuntime
このリソースのJDBCPartitionRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime rel=JMSRuntime
このリソースのJMSRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime rel=JTAPartitionRuntime
このリソースのJTAPartitionRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime rel=SAFRuntime
このリソースのSAFRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=WLDFPartitionRuntime
このリソースのWLDFPartitionRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceShutdown rel=action title=forceShutdown
このリソースのforceShutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceShutdownResourceGroup rel=action title=forceShutdownResourceGroup
このリソースのforceShutdownResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceSuspend rel=action title=forceSuspend
このリソースのforceSuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceSuspendResourceGroup rel=action title=forceSuspendResourceGroup
このリソースのforceSuspendResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/getRgState rel=action title=getRgState
このリソースのgetRgStateアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/halt rel=action title=halt
このリソースのhaltアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resumeResourceGroup rel=action title=resumeResourceGroup
このリソースのresumeResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/shutdown rel=action title=shutdown
このリソースのshutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/shutdownResourceGroup rel=action title=shutdownResourceGroup
このリソースのshutdownResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/startResourceGroup rel=action title=startResourceGroup
このリソースのstartResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/startResourceGroupInAdmin rel=action title=startResourceGroupInAdmin
このリソースのstartResourceGroupInAdminアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/suspendResourceGroup rel=action title=suspendResourceGroup
このリソースのsuspendResourceGroupアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes rel=applicationRuntimes
このリソースのapplicationRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/batchJobRepositoryRuntime rel=batchJobRepositoryRuntime
このリソースのbatchJobRepositoryRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime rel=concurrentManagedObjectsRuntime
このリソースのconcurrentManagedObjectsRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes rel=libraryRuntimes
このリソースのlibraryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes rel=mailSessionRuntimes
このリソースのmailSessionRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes rel=maxThreadsConstraintRuntimes
このリソースのmaxThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes rel=messagingBridgeRuntimes
このリソースのmessagingBridgeRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes rel=minThreadsConstraintRuntimes
このリソースのminThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionResourceMetricsRuntime rel=partitionResourceMetricsRuntime
このリソースのpartitionResourceMetricsRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime rel=partitionWorkManagerRuntime
このリソースのpartitionWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes rel=pathServiceRuntimes
このリソースのpathServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes rel=persistentStoreRuntimes
このリソースのpersistentStoreRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes rel=requestClassRuntimes
このリソースのrequestClassRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime rel=resourceManagerRuntime
このリソースのresourceManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime rel=wseeClusterFrontEndRuntime
このリソースのwseeClusterFrontEndRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ApplicationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ApplicationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ApplicationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ApplicationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/getPersistenceUnitRuntime rel=action title=getPersistenceUnitRuntime
このリソースのgetPersistenceUnitRuntimeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/hasApplicationCache rel=action title=hasApplicationCache
このリソースのhasApplicationCacheアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/reInitializeApplicationCachesAndPools rel=action title=reInitializeApplicationCachesAndPools
このリソースのreInitializeApplicationCachesAndPoolsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classLoaderRuntime rel=classLoaderRuntime
このリソースのclassLoaderRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime rel=classRedefinitionRuntime
このリソースのclassRedefinitionRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/coherenceClusterRuntime rel=coherenceClusterRuntime
このリソースのcoherenceClusterRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes rel=componentRuntimes
このリソースのcomponentRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes rel=libraryRuntimes
このリソースのlibraryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=managedExecutorServiceRuntimes
このリソースのmanagedExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes rel=managedScheduledExecutorServiceRuntimes
このリソースのmanagedScheduledExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=managedThreadFactoryRuntimes
このリソースのmanagedThreadFactoryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=maxThreadsConstraintRuntimes
このリソースのmaxThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=minThreadsConstraintRuntimes
このリソースのminThreadsConstraintRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes rel=optionalPackageRuntimes
このリソースのoptionalPackageRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes rel=persistenceUnitRuntimes
このリソースのpersistenceUnitRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes rel=queryCacheRuntimes
このリソースのqueryCacheRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes rel=requestClassRuntimes
このリソースのrequestClassRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes rel=wseeV2Runtimes
このリソースのwseeV2Runtimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ClassLoaderRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ClassLoaderRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classLoaderRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classLoaderRuntime rel=self
このリソース。
このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このcom.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/redefineClasses rel=action title=redefineClasses
このリソースのredefineClassesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks rel=classRedefinitionTasks
このリソースのclassRedefinitionTasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このcom.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name} rel=canonical
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
クラス再定義サイクルを開始します。この再定義サイクルでは、変更された可能性のあるクラスを特定して、そのクラスの再定義を試みます。クラス再定義は非同期で実行されます。クラス再定義プロセスの進行状況は、返されるタスクでモニターできます。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
クラス再定義サイクルを開始し、特定のモジュールから指定されたクラスのみを再定義します。クラス再定義は非同期で実行されます。クラス再定義プロセスの進行状況は、返されるタスクでモニターできます。指定されたモジュール名がnullである場合は、アプリケーション内のクラス(任意のモジュールにスコープされたクラス、およびグローバルにスコープされたクラス)でリストに含まれるものが再定義されます。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
このリソースでは、weblogic.management.runtime.CoherenceClusterRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CoherenceClusterRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CoherenceClusterRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/coherenceClusterRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=referencingRuntimes
このリソースのreferencingRuntimesコレクション・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes rel=referencingRuntimes
このリソースのreferencingRuntimesコレクション・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistenceUnitRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistenceUnitRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistenceUnitRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.QueryCacheRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.QueryCacheRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.QueryCacheRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeV2RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeV2RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeV2RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeV2RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime rel=policyRuntime
このリソースのpolicyRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=ports
このリソースのportsコレクション・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseePolicyRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseePolicyRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePolicyRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseePortRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseePortRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePortRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseePortRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseePortRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePortRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations rel=aggregatedBaseOperations
このリソースのaggregatedBaseOperationsシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations rel=baseOperations
このリソースのbaseOperationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting rel=clusterRouting
このリソースのclusterRoutingシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers rel=handlers
このリソースのhandlersコレクション・リソース。
このリソースのmcシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations rel=operations
このリソースのoperationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy rel=portPolicy
このリソースのportPolicyシングルトン・リソース。
このリソース。
このリソースのwsrmシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeBaseOperationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeBaseOperationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeBaseOperationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeHandlerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeHandlerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeHandlerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeMcRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeMcRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeMcRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/mc rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeOperationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeOperationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeOperationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseePortPolicyRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseePortPolicyRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseePortPolicyRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeWsrmRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.BatchJobRepositoryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.BatchJobRepositoryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.BatchJobRepositoryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/batchJobRepositoryRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/batchJobRepositoryRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=managedExecutorServiceRuntimes
このリソースのmanagedExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes rel=managedScheduledExecutorServiceRuntimes
このリソースのmanagedScheduledExecutorServiceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=managedThreadFactoryRuntimes
このリソースのmanagedThreadFactoryRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=workManager
このリソースのworkManagerシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ManagedThreadFactoryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs rel=RAs
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
このリソース。
このリソースのconnectionsコレクション・リソース。
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのMDBRuntimesコレクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのMDBRuntimesコレクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
このリソース。
このリソースのconnectionsコレクション・リソース。
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのMDBRuntimesコレクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
このリソース。
このリソースのconnectionsコレクション・リソース。
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのMDBRuntimesコレクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/RAs rel=RAs
このリソースのRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getInboundConnections rel=action title=getInboundConnections
このリソースのgetInboundConnectionsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getRA rel=action title=getRA
このリソースのgetRAアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs rel=activeRAs
このリソースのactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs rel=inactiveRAs
このリソースのinactiveRAsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのMDBRuntimesコレクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorComponentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorComponentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration rel=action title=getConfiguration
このリソースのgetConfigurationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool rel=action title=getConnectionPool
このリソースのgetConnectionPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection rel=action title=getInboundConnection
このリソースのgetInboundConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema rel=action title=getSchema
このリソースのgetSchemaアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll rel=action title=resumeAll
このリソースのresumeAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll rel=action title=suspendAll
このリソースのsuspendAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools rel=connectionPools
このリソースのconnectionPoolsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime rel=connectorServiceRuntime
このリソースのconnectorServiceRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime rel=connectorWorkManagerRuntime
このリソースのconnectorWorkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections rel=inboundConnections
このリソースのinboundConnectionsコレクション・リソース。
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime rel=workManagerRuntime
このリソースのworkManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset rel=action title=forceReset
このリソースのforceResetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
このリソース。
このリソースのconnectionsコレクション・リソース。
このリソースのlogRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete rel=action title=delete
このリソースのdeleteアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError rel=action title=hasError
このリソースのhasErrorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection rel=action title=testConnection
このリソースのtestConnectionアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソースのMDBRuntimesコレクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
このリソース。
このリソースの親リソース。
このリソースのpoolRuntimeシングルトン・リソース。
このリソースのresourcesコレクション・リソース。
このリソース。
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ConnectorInboundRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ConnectorInboundRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=MDBRuntimes
このリソースのMDBRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessageDrivenEJBRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessageDrivenEJBRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=poolRuntime
このリソースのpoolRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=resources
このリソースのresourcesコレクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=timerRuntime
このリソースのtimerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime rel=transactionRuntime
このリソースのtransactionRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool rel=action title=initializePool
このリソースのinitializePoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers rel=action title=activateDisabledTimers
このリソースのactivateDisabledTimersアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.EJBTransactionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.EJBTransactionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JDBCPartitionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCPartitionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCPartitionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans rel=JDBCDataSourceRuntimeMBeans
このリソースのJDBCDataSourceRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans rel=JDBCMultiDataSourceRuntimeMBeans
このリソースのJDBCMultiDataSourceRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDataSourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime rel=JDBCDriverRuntime
このリソースのJDBCDriverRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean rel=JDBCReplayStatisticsRuntimeMBean
このリソースのJDBCReplayStatisticsRuntimeMBeanシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncShutdown rel=action title=asyncShutdown
このリソースのasyncShutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncSuspend rel=action title=asyncSuspend
このリソースのasyncSuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/clearStatementCache rel=action title=clearStatementCache
このリソースのclearStatementCacheアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPool rel=action title=dumpPool
このリソースのdumpPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPoolProfile rel=action title=dumpPoolProfile
このリソースのdumpPoolProfileアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceShutdown rel=action title=forceShutdown
このリソースのforceShutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceSuspend rel=action title=forceSuspend
このリソースのforceSuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/poolExists rel=action title=poolExists
このリソースのpoolExistsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/reset rel=action title=reset
このリソースのresetアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/resume rel=action title=resume
このリソースのresumeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/shrink rel=action title=shrink
このリソースのshrinkアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/shutdown rel=action title=shutdown
このリソースのshutdownアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/start rel=action title=start
このリソースのstartアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/suspend rel=action title=suspend
このリソースのsuspendアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/testPool rel=action title=testPool
このリソースのtestPoolアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=canonical
このリソース。
rel=lastTask
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanリソースへの、このリソースのlastTask参照。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans rel=parent
このリソースの親リソース。
このリソース。
このリソースのtasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
ヘルス状態がRunning
のデータ・ソースを正常に、非同期的にシャットダウンします。データソースの正常な(強制でない)シャットダウン操作では、まず、データソースを正常に中断してから、接続を含む関連リソースを解放します。データソースの正常な中断の詳細は、前述の説明を参照してください。データソースを正常に中断した後、残りの使用中のすべての接続をクローズして、データソースをシャットダウンとしてマークします。
IgnoreInUseConnectionsEnabledをfalseに設定すると、使用中の接続が存在する場合に操作が失敗します。
成功すると、ヘルス状態が「停止
」に設定されます。
これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
ヘルス状態がRunning
で、既存の接続を無効にするデータ・ソースを非同期で正常に中断します。この操作では、データ・ソースは中断として即座にマークされ、それ以上接続は作成されなくなります。アイドル(非予約)接続は、無効としてマークされます。中断操作のタイムアウト期間の経過後、プールに残っているすべての接続が中断としてマークされ、接続に対する任意の操作でデータ・ソースが中断していることを示す次の例外がスローされます。「java.sql.SQLRecoverableException: 接続が管理者により無効化されています。後で再度実行してください。プールが再開される可能性があるため、これらの接続はプールに残され、閉じられません。
IgnoreInUseConnectionsEnabledをfalseに設定すると、使用中の接続が存在する場合に操作が失敗します。
成功した場合は、ヘルス状態がSuspended
に設定されます。
これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDriverRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDriverRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/clearStatistics rel=action title=clearStatistics
このリソースのclearStatisticsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/refreshStatistics rel=action title=refreshStatistics
このリソースのrefreshStatisticsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
ヘルス状態がRunning
で、既存の接続を無効にするデータ・ソースを同期して正常に中断します。この操作では、データ・ソースは中断として即座にマークされ、それ以上接続は作成されなくなります。アイドル(非予約)接続は、無効としてマークされます。中断操作のタイムアウト期間の経過後、プールに残っているすべての接続が中断としてマークされ、接続に対する任意の操作でデータ・ソースが中断していることを示す次の例外がスローされます。「java.sql.SQLRecoverableException: 接続が管理者により無効化されています。後で再度実行してください。正常な中断が正常なシャットダウン操作の一部として行われる場合、接続は未予約になったとき、またはタイムアウト期間の終了時に即座にクローズされます。停止操作の一部として行われない場合、プールが再開される可能性があるため、これらの接続はプールに残され、閉じられません。
デフォルトでは、タイムアウト期間は60秒です。このタイムアウト期間の値は、非アクティブ接続タイムアウト秒を0 (ゼロ)以外の値に構成(または動的に設定)することで変更できます。
IgnoreInUseConnectionsEnabledをfalseに設定すると、使用中の接続が存在する場合に操作が失敗します。
成功した場合は、ヘルス状態がSuspended
に設定されます。
これは、権限のあるユーザーのみが起動できる、権限が必要な操作です。
このリソースでは、weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name} rel=canonical
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=workManagerRuntimes
このリソースのworkManagerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers rel=JMSServers
このリソースのJMSServersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/destroy rel=action title=destroy
このリソースのdestroyアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions rel=sessions
このリソースのsessionsコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSSessionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=consumers
このリソースのconsumersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers rel=producers
このリソースのproducersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSProducerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSProducerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSProducerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSServerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSServerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/forceCommit rel=action title=forceCommit
このリソースのforceCommitアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/forceRollback rel=action title=forceRollback
このリソースのforceRollbackアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getTransactionStatus rel=action title=getTransactionStatus
このリソースのgetTransactionStatusアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations rel=destinations
このリソースのdestinationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=sessionPoolRuntimes
このリソースのsessionPoolRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations rel=self
このリソース。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime rel=destinationRuntime
このリソースのdestinationRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort rel=action title=sort
このリソースのsortアクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSトランザクション・ブランチに関連付けられた一連のメッセージを返します。結果セットはメッセージ・カーソルの形式で呼出し側に返されます。結果セットには、このJMSサーバー上の複数の宛先からのメッセージが含まれる可能性があります。
タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSServerによってホストされるすべての宛先での消費処理を休止します。
JMSServerでの消費が休止されると、宛先の状態がすべて「消費の休止」とマークされ、宛先での消費が再開されてメッセージが消費可能になるまで、すべての新しい同期受信処理がブロックされます。ブロッキング・タイムアウトを伴うすべての同期受信は、「消費の休止」状態の間、タイムアウトが発生するまでブロックされます。
この宛先にアタッチされているすべての非同期コンシューマは、宛先が「消費の休止」状態の間に配信されたメッセージを取得しません。
消費の「休止」処理が正常に行われた後、その宛先でさらに消費処理を行えるようにするには、ユーザーが宛先を明示的に「再開」する必要があります。
リソースでは、次のメソッドがサポートされます。
JMSServerのすべての宛先でメッセージの表示を休止します。これらのメッセージは、このJMSServerによってホストされるすべての宛先で処理中の作業完了の結果です。
処理中の作業とは
次の定義は、WebLogic JMSサブシステムの現在の実装に基づいています。
プロデューサに関連付けられる処理中のメッセージ
未生成メッセージ
「生成時刻」(TimeToDeliver)が未来に設定された、プロデューサによって将来生成されるメッセージは未生成メッセージと呼ばれ、宛先の統計で「保留中」メッセージとしてカウントされ、コンシューマにはまだ消費できません。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクションの一環としてプロデューサにより生成されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。未コミット・メッセージは、宛先の統計で「保留中」のメッセージとしてカウントされ、消費できません。
送信をブロックする割り当て
プロデューサによって生成されたが、宛先に対する(メッセージかバイトまたはその両方の)クォータ制限のために宛先に到着できないメッセージ。プロデューサは、クォータが利用可能になるまで一定期間送信をブロックします。これらのメッセージはシステムから認識できないため、宛先の統計では一切カウントされません。
コンシューマに関連付けられる処理中のメッセージ
未応答(CLIENT ACK PENDING)メッセージ
「クライアント応答」セッションを使用してクライアントによって正常に消費され、クライアントからの応答を待機しているメッセージ。この種のメッセージは「保留中のメッセージ」であり、確認応答の受信時に宛先またはシステムから削除されます。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクション内でクライアントにより消費(受信)されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。この種のメッセージは、クライアントがそのトランザクションを正常にコミットしたときに、システムから削除されます。
ロールバック・メッセージ
コンシューマによるトランザクションの受信が正常にロールバックされたため、宛先に戻されたメッセージ。この種のメッセージは、クライアントに対してただちに消費(再配信)可能になる場合とならない場合があります。これは、関連付けられているJMSConnectionFactoryおよびJMSDestinationにおいてそれぞれ構成されている再配信パラメータ(RedeliveryDelay、RedeliveryDelayOverride、RedeliveryLimitなど)に依存します。
再配信遅延が構成されている場合、メッセージはその「遅延」期間中は消費不可となり、宛先の統計で「保留中」としてカウントされます。「遅延」期間後、再配信制限を超えなければ、その宛先に配信(消費可能な状態に)され、宛先の統計で「現在の」メッセージとしてカウントされます。再配信制限を超えている場合、メッセージは(構成済であれば)ErrorDestinationに移されます。
ロールバック・メッセージの利用を制御する別のパラメータはRedeliveryLimitです。
回復されたメッセージ
クライアントによるセッション「回復」の呼出しが明示的に行われたためにキューに現れるメッセージ。この点以外はロールバック・メッセージと同じです。
再配信されたメッセージ
クライアントへの配信に失敗したため(コンシューマのクラッシュ、クローズなど)、宛先に再び現れるメッセージ。この点以外はロールバック・メッセージと同じです。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionPoolRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSSessionPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSSessionPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=JMSServer
このリソースのJMSServerシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers rel=connectionConsumers
このリソースのconnectionConsumersコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSConsumerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSConsumerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSServerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSServerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceCommit rel=action title=forceCommit
このリソースのforceCommitアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceRollback rel=action title=forceRollback
このリソースのforceRollbackアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getTransactionStatus rel=action title=getTransactionStatus
このリソースのgetTransactionStatusアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations rel=destinations
このリソースのdestinationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sessionPoolRuntimes rel=sessionPoolRuntimes
このリソースのsessionPoolRuntimesコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDurableSubscriberRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime rel=destinationRuntime
このリソースのdestinationRuntimeシングルトン・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JMSDestinationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JMSDestinationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber rel=action title=createDurableSubscriber
このリソースのcreateDurableSubscriberアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages rel=action title=deleteMessages
このリソースのdeleteMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption rel=action title=pauseConsumption
このリソースのpauseConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion rel=action title=pauseInsertion
このリソースのpauseInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction rel=action title=pauseProduction
このリソースのpauseProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption rel=action title=resumeConsumption
このリソースのresumeConsumptionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion rel=action title=resumeInsertion
このリソースのresumeInsertionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction rel=action title=resumeProduction
このリソースのresumeProductionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort rel=action title=sort
このリソースのsortアクション・リソース。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/durableSubscribers rel=durableSubscribers
このリソースのdurableSubscribersコレクション・リソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたクライアントIDとサブスクリプション名を持つ宛先で恒久サブスクライバを作成します。メッセージ・セレクタと非ローカル・フラグを指定することもできます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたメッセージ・セレクタと状態ビットマスクに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
指定されたメッセージ・セレクタに従ってキュー上のメッセージを問い合せ、結果セットを表すメッセージ・カーソルを返します。タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSトランザクション・ブランチに関連付けられた一連のメッセージを返します。結果セットはメッセージ・カーソルの形式で呼出し側に返されます。結果セットには、このJMSサーバー上の複数の宛先からのメッセージが含まれる可能性があります。
タイムアウト・パラメータでは、カーソルが有効な時間(秒)を指定します。タイムアウトの期限が切れるとカーソルは無効になり、関連付けられているリソースは解放されます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
JMSServerによってホストされるすべての宛先での消費処理を休止します。
JMSServerでの消費が休止されると、宛先の状態がすべて「消費の休止」とマークされ、宛先での消費が再開されてメッセージが消費可能になるまで、すべての新しい同期受信処理がブロックされます。ブロッキング・タイムアウトを伴うすべての同期受信は、「消費の休止」状態の間、タイムアウトが発生するまでブロックされます。
この宛先にアタッチされているすべての非同期コンシューマは、宛先が「消費の休止」状態の間に配信されたメッセージを取得しません。
消費の「休止」処理が正常に行われた後、その宛先でさらに消費処理を行えるようにするには、ユーザーが宛先を明示的に「再開」する必要があります。
リソースでは、次のメソッドがサポートされます。
JMSServerのすべての宛先でメッセージの表示を休止します。これらのメッセージは、このJMSServerによってホストされるすべての宛先で処理中の作業完了の結果です。
処理中の作業とは
次の定義は、WebLogic JMSサブシステムの現在の実装に基づいています。
プロデューサに関連付けられる処理中のメッセージ
未生成メッセージ
「生成時刻」(TimeToDeliver)が未来に設定された、プロデューサによって将来生成されるメッセージは未生成メッセージと呼ばれ、宛先の統計で「保留中」メッセージとしてカウントされ、コンシューマにはまだ消費できません。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクションの一環としてプロデューサにより生成されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。未コミット・メッセージは、宛先の統計で「保留中」のメッセージとしてカウントされ、消費できません。
送信をブロックする割り当て
プロデューサによって生成されたが、宛先に対する(メッセージかバイトまたはその両方の)クォータ制限のために宛先に到着できないメッセージ。プロデューサは、クォータが利用可能になるまで一定期間送信をブロックします。これらのメッセージはシステムから認識できないため、宛先の統計では一切カウントされません。
コンシューマに関連付けられる処理中のメッセージ
未応答(CLIENT ACK PENDING)メッセージ
「クライアント応答」セッションを使用してクライアントによって正常に消費され、クライアントからの応答を待機しているメッセージ。この種のメッセージは「保留中のメッセージ」であり、確認応答の受信時に宛先またはシステムから削除されます。
未コミット・メッセージ
ユーザー・トランザクションまたはトランザクション・セッションを使用してトランザクション内でクライアントにより消費(受信)されたメッセージのうち、そのトランザクションがまだコミットまたはロールバックされていないメッセージ。この種のメッセージは、クライアントがそのトランザクションを正常にコミットしたときに、システムから削除されます。
ロールバック・メッセージ
コンシューマによるトランザクションの受信が正常にロールバックされたため、宛先に戻されたメッセージ。この種のメッセージは、クライアントに対してただちに消費(再配信)可能になる場合とならない場合があります。これは、関連付けられているJMSConnectionFactoryおよびJMSDestinationにおいてそれぞれ構成されている再配信パラメータ(RedeliveryDelay、RedeliveryDelayOverride、RedeliveryLimitなど)に依存します。
再配信遅延が構成されている場合、メッセージはその「遅延」期間中は消費不可となり、宛先の統計で「保留中」としてカウントされます。「遅延」期間後、再配信制限を超えなければ、その宛先に配信(消費可能な状態に)され、宛先の統計で「現在の」メッセージとしてカウントされます。再配信制限を超えている場合、メッセージは(構成済であれば)ErrorDestinationに移されます。
ロールバック・メッセージの利用を制御する別のパラメータはRedeliveryLimitです。
回復されたメッセージ
クライアントによるセッション「回復」の呼出しが明示的に行われたためにキューに現れるメッセージ。この点以外はロールバック・メッセージと同じです。
再配信されたメッセージ
クライアントへの配信に失敗したため(コンシューマのクラッシュ、クローズなど)、宛先に再び現れるメッセージ。この点以外はロールバック・メッセージと同じです。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
指定されたJMSヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
このリソースでは、weblogic.management.runtime.JTAPartitionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.JTAPartitionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.JTAPartitionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans rel=nonXAResourceRuntimeMBeans
このリソースのnonXAResourceRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans rel=transactionNameRuntimeMBeans
このリソースのtransactionNameRuntimeMBeansコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans rel=transactionResourceRuntimeMBeans
このリソースのtransactionResourceRuntimeMBeansコレクション・リソース。
このリソースでは、weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.NonXAResourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans rel=self
このリソース。
このリソースでは、weblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.NonXAResourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.NonXAResourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionNameRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TransactionNameRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionNameRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionResourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TransactionResourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TransactionResourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.LibraryRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LibraryRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LibraryRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LibraryRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=referencingRuntimes
このリソースのreferencingRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MailSessionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MailSessionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MailSessionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MailSessionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessagingBridgeRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MessagingBridgeRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MessagingBridgeRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PartitionResourceMetricsRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PartitionResourceMetricsRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PartitionResourceMetricsRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionResourceMetricsRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionResourceMetricsRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PartitionWorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PartitionWorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PartitionWorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/fairShareRuntime rel=fairShareRuntime
このリソースのfairShareRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/minThreadsConstraintCapRuntime rel=minThreadsConstraintCapRuntime
このリソースのminThreadsConstraintCapRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PartitionFairShareRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PartitionFairShareRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PartitionFairShareRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/fairShareRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/fairShareRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.PartitionMinThreadsConstraintCapRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PartitionMinThreadsConstraintCapRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PartitionMinThreadsConstraintCapRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/minThreadsConstraintCapRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PathServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PathServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PathServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies rel=assemblies
このリソースのassembliesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PSAssemblyRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PSAssemblyRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getMapEntries rel=action title=getMapEntries
このリソースのgetMapEntriesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/remove rel=action title=remove
このリソースのremoveアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ResourceManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ResourceManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ResourceManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes rel=resourceRuntimes
このリソースのresourceRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ResourceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ResourceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ResourceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ResourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ResourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ResourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/fairShareConstraintRuntime rel=fairShareConstraintRuntime
このリソースのfairShareConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes rel=triggerRuntimes
このリソースのtriggerRuntimesコレクション・リソース。
このリソースでは、weblogic.management.runtime.FairShareConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.FairShareConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.FairShareConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/fairShareConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TriggerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TriggerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TriggerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TriggerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TriggerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TriggerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.SAFRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents rel=agents
このリソースのagentsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFAgentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFAgentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseForwarding rel=action title=pauseForwarding
このリソースのpauseForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseIncoming rel=action title=pauseIncoming
このリソースのpauseIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseReceiving rel=action title=pauseReceiving
このリソースのpauseReceivingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeForwarding rel=action title=resumeForwarding
このリソースのresumeForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeIncoming rel=action title=resumeIncoming
このリソースのresumeIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeReceiving rel=action title=resumeReceiving
このリソースのresumeReceivingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations rel=conversations
このリソースのconversationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints rel=remoteEndpoints
このリソースのremoteEndpointsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFConversationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFConversationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name}/destroy rel=action title=destroy
このリソースのdestroyアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/expireAll rel=action title=expireAll
このリソースのexpireAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseForwarding rel=action title=pauseForwarding
このリソースのpauseForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseIncoming rel=action title=pauseIncoming
このリソースのpauseIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/purge rel=action title=purge
このリソースのpurgeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeForwarding rel=action title=resumeForwarding
このリソースのresumeForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeIncoming rel=action title=resumeIncoming
このリソースのresumeIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたSAFヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
実行中の作業を処理した後、パーティションを正常に停止します。オプションで実行中の作業を処理している間は、保留中のHTTPセッションを無視します。
次のように、実行中の作業はシャットダウン前の完了を許可されます:
保留中のトランザクションおよびTLOGチェックポイント
保留中のHTTPセッション
保留中のJMS作業
実行キューの保留中の作業
トランザクション・コンテキストのRMIリクエスト
その他の管理呼出しは、パーティションが処理中の作業を完了している間に受け付けられます。たとえば、正常なシャットダウンに時間がかかっている場合、forceShutdownコマンドを発行すると迅速にパーティションを停止できます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
実行中の作業を処理した後、パーティションを正常に停止します。必要に応じて、実行中の作業を処理している間、保留中のHTTPセッションを無視します。
次のように、実行中の作業はシャットダウン前の完了を許可されます:
保留中のトランザクションおよびTLOGチェックポイント
保留中のHTTPセッション
保留中のJMS作業
実行キューの保留中の作業
トランザクション・コンテキストのRMIリクエスト
さらに、管理コールは実行中の作業が完了しているサーバーに受け付けられます。たとえば、正常なシャットダウンに時間がかかっている場合、forceShutdownコマンドを発行すると迅速にパーティションを停止できます。
リクエスト・ボディ
次のフィールドを持つJSONオブジェクトを含める必要があります。
resourceGroupName
タイプ: 文字列
処理中の作業を中断し、パーティションをシャットダウンする前に待機する秒数。
タイプ: int
true
の場合、実行中の作業を処理している間、保留中のHTTPセッションを無視します。
タイプ: ブール
true
の場合、実行中の作業を処理している間、すべてのHTTPセッションを待機します。false
は非永続化HTTPセッションのみを待機します。
タイプ: ブール
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
パーティションを中断します。権限を付与されたユーザー以外の新規リクエストを拒否します。保留中のリクエストの完了を許可します。この操作により、パーティションはADMIN
状態に移行します。ADMIN
状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。
パーティションはRUNNING
からADMIN
状態に正常に移行します。
アプリケーションは管理モードです。処理中の作業が完了しました。ADMIN
状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソース・グループを中断します。権限を付与されたユーザー以外の新規リクエストを拒否します。保留中のリクエストの完了を許可します。この操作により、パーティションはADMIN
状態に移行します。ADMIN
状態では、管理者はアプリケーションおよびリソースを完全に使用できます。管理ユーザー以外の場合、アプリケーションとリソースへのアクセスを拒否されます。
このリソースでは、weblogic.management.runtime.WLDFPartitionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFPartitionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFPartitionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime rel=WLDFPartitionAccessRuntime
このリソースのWLDFPartitionAccessRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionHarvesterRuntime rel=WLDFPartitionHarvesterRuntime
このリソースのWLDFPartitionHarvesterRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime rel=WLDFPartitionImageRuntime
このリソースのWLDFPartitionImageRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime rel=WLDFWatchNotificationRuntime
このリソースのWLDFWatchNotificationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFPartitionAccessRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFPartitionAccessRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFPartitionAccessRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes rel=WLDFDataAccessRuntimes
このリソースのWLDFDataAccessRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/lookupWLDFDataAccessRuntime rel=action title=lookupWLDFDataAccessRuntime
このリソースのlookupWLDFDataAccessRuntimeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes rel=dataAccessRuntimes
このリソースのdataAccessRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime rel=self
このリソース。
このリソースでは、weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/deleteDataRecords rel=action title=deleteDataRecords
このリソースのdeleteDataRecordsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/getDataRecordCount rel=action title=getDataRecordCount
このリソースのgetDataRecordCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/hasMoreData rel=action title=hasMoreData
このリソースのhasMoreDataアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/openCursor rel=action title=openCursor
このリソースのopenCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定された問合せに一致する指定された時間範囲内のレコードを削除します。問合せがnullまたは空の場合、その時間範囲内のすべてのレコードが削除されます。
開始および終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
一部のアーカイブでは、削除機能をサポートしていません。サポートされていない場合、このメソッドはUnsupportedOperationException例外をスローします。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定された問合せと時間範囲に一致するレコード数。
開始および終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
指定された問合せとレコードID範囲に一致し、タイムスタンプ(利用可能な場合)が指定された終了時刻よりも前のレコード数。
終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたタイムアウト値(ミリ秒)を使用してカーソルをオープンします。
指定された時間範囲と問合せ条件に一致するレコードのカーソルをオープンします。カーソルのタイムアウト値も指定します。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
指定された問合せと時間範囲を使用してカーソルをオープンします。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
カーソルのデフォルトのタイムアウト間隔は5分です。
指定されたレコードID範囲、終了タイムスタンプ、問合せを使用してカーソルをオープンします。カーソルのタイムアウト値も指定します。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
指定された問合せとレコードID範囲を使用してカーソルをオープンします。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
カーソルのデフォルトのタイムアウト間隔は5分です。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDataAccessRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDataAccessRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes/{name}/closeArchive rel=action title=closeArchive
このリソースのcloseArchiveアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes/{name} rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionHarvesterRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WLDFPartitionImageRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFPartitionImageRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFPartitionImageRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/captureImage rel=action title=captureImage
このリソースのcaptureImageアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/clearCompletedImageCaptureTasks rel=action title=clearCompletedImageCaptureTasks
このリソースのclearCompletedImageCaptureTasksアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/purgeCapturedImages rel=action title=purgeCapturedImages
このリソースのpurgeCapturedImagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/resetImageLockout rel=action title=resetImageLockout
このリソースのresetImageLockoutアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks rel=imageCaptureTasks
このリソースのimageCaptureTasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
構成済の保存先ディレクトリに診断イメージを作成します。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks rel=canonical
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name} rel=canonical
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
このリソース。
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
このリソース。
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource rel=WLDFWatchJMXNotificationSource
このリソースのWLDFWatchJMXNotificationSourceシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/resetWatchAlarm rel=action title=resetWatchAlarm
このリソースのresetWatchAlarmアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime/clusterRouting rel=clusterRouting
このリソースのclusterRoutingシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime/clusterRouting rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime/clusterRouting rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PathServiceRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PathServiceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PathServiceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PathServiceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies rel=assemblies
このリソースのassembliesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PSAssemblyRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PSAssemblyRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PSAssemblyRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getMapEntries rel=action title=getMapEntries
このリソースのgetMapEntriesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/remove rel=action title=remove
このリソースのremoveアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistentStoreRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections rel=connections
このリソースのconnectionsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections rel=self
このリソース。
このリソースでは、weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.PersistentStoreConnectionRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/requestClassRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/requestClassRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/requestClassRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/requestClassRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/requestClassRuntimes/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
サーバーがリスニングするすべてのSSLチャネルを再起動します。これは、キーストアへのインスタンス更新などのサーバーの一部の変更には必要ありません。
例
この例では、POSTメソッドを使用してrestartSSLChannelsアクションを呼び出します。
リクエストの例
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -H Content-Type:application/json \ -d "{}" \ -X POST http://localhost:7001/management/weblogic/latest/serverRuntime/restartSSLChannels
レスポンスの例
HTTP/1.1 200 OK Response Body: {}
このリソースでは、weblogic.management.runtime.SAFRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents rel=agents
このリソースのagentsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFAgentRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFAgentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFAgentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/pauseForwarding rel=action title=pauseForwarding
このリソースのpauseForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/pauseIncoming rel=action title=pauseIncoming
このリソースのpauseIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/pauseReceiving rel=action title=pauseReceiving
このリソースのpauseReceivingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/resumeForwarding rel=action title=resumeForwarding
このリソースのresumeForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/resumeIncoming rel=action title=resumeIncoming
このリソースのresumeIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/resumeReceiving rel=action title=resumeReceiving
このリソースのresumeReceivingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations rel=conversations
このリソースのconversationsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints rel=remoteEndpoints
このリソースのremoteEndpointsコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFConversationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFConversationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFConversationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations/{name}/destroy rel=action title=destroy
このリソースのdestroyアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SAFRemoteEndpointRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/expireAll rel=action title=expireAll
このリソースのexpireAllアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorEndPosition rel=action title=getCursorEndPosition
このリソースのgetCursorEndPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorSize rel=action title=getCursorSize
このリソースのgetCursorSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorStartPosition rel=action title=getCursorStartPosition
このリソースのgetCursorStartPositionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getMessages rel=action title=getMessages
このリソースのgetMessagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseForwarding rel=action title=pauseForwarding
このリソースのpauseForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseIncoming rel=action title=pauseIncoming
このリソースのpauseIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/purge rel=action title=purge
このリソースのpurgeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeForwarding rel=action title=resumeForwarding
このリソースのresumeForwardingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeIncoming rel=action title=resumeIncoming
このリソースのresumeIncomingアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/sort rel=action title=sort
このリソースのsortアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたSAFヘッダー属性に従って、カーソルにより管理されるメッセージ結果セット全体をソートします。ソートが実行される前の「開始」位置に対応するメッセージの新しい位置にカーソル位置が設定されます。メソッドにより新しいカーソル位置が返されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ServerChannelRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.ServerChannelRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.ServerChannelRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverChannelRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverChannelRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ServerChannelRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ServerChannelRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ServerChannelRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverChannelRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverChannelRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverChannelRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.ServerLogRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ServerLogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ServerLogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverLogRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverLogRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverLogRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverLogRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverLogRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.ServerSecurityRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ServerSecurityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ServerSecurityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/checkRole rel=action title=checkRole
このリソースのcheckRoleアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime rel=defaultRealmRuntime
このリソースのdefaultRealmRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes rel=realmRuntimes
このリソースのrealmRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RealmRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RealmRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RealmRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes rel=authenticatorRuntimes
このリソースのauthenticatorRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime rel=userLockoutManagerRuntime
このリソースのuserLockoutManagerRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.AuthenticatorRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.AuthenticatorRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.UserLockoutManagerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.UserLockoutManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.UserLockoutManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/clearLockout rel=action title=clearLockout
このリソースのclearLockoutアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/getLastLoginFailure rel=action title=getLastLoginFailure
このリソースのgetLastLoginFailureアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/getLoginFailureCount rel=action title=getLoginFailureCount
このリソースのgetLoginFailureCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/isLockedOut rel=action title=isLockedOut
このリソースのisLockedOutアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.RealmRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.RealmRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.RealmRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RealmRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RealmRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RealmRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes rel=authenticatorRuntimes
このリソースのauthenticatorRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime rel=userLockoutManagerRuntime
このリソースのuserLockoutManagerRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.AuthenticatorRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.AuthenticatorRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.AuthenticatorRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.UserLockoutManagerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.UserLockoutManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.UserLockoutManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/clearLockout rel=action title=clearLockout
このリソースのclearLockoutアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/getLastLoginFailure rel=action title=getLastLoginFailure
このリソースのgetLastLoginFailureアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/getLoginFailureCount rel=action title=getLoginFailureCount
このリソースのgetLoginFailureCountアクション・リソース
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/isLockedOut rel=action title=isLockedOut
このリソースのisLockedOutアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
実行中の作業を処理した後、サーバーを正常に停止します。オプションで実行中の作業を処理している間は、保留中のHTTPセッションを無視します。
次のように、実行中の作業はシャットダウン前の完了を許可されます:
保留中のトランザクションおよびTLOGチェックポイント
保留中のHTTPセッション
保留中のJMS作業
実行キューの保留中の作業
トランザクション・コンテキストのRMIリクエスト
さらに、管理コールは実行中の作業が完了しているサーバーに受け付けられます。たとえば、正常にシャットダウンするのに時間がかかっている場合、forceShutdownコマンドを発行すると迅速にシャットダウンされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
実行中の作業を処理した後、リソース・グループを正常に停止します。オプションで実行中の作業を処理している間は、保留中のHTTPセッションを無視します。
次のように、実行中の作業はシャットダウン前の完了を許可されます:
保留中のトランザクションおよびTLOGチェックポイント
保留中のHTTPセッション
保留中のJMS作業
実行キューの保留中の作業
トランザクション・コンテキストのRMIリクエスト
さらに、管理コールは実行中の作業が完了しているサーバーに受け付けられます。たとえば、正常なシャットダウンに時間がかかっている場合、forceShutdownコマンドを発行すると迅速にパーティションを停止できます。
リクエスト・ボディ
次のフィールドを持つJSONオブジェクトを含める必要があります。
resourceGroupName
タイプ: 文字列
処理中の作業を中断し、パーティションをシャットダウンする前に待機する秒数。
タイプ: int
true
の場合、実行中の作業を処理している間、保留中のHTTPセッションを無視します。
タイプ: ブール
true
の場合、実行中の作業を処理している間、すべてのHTTPセッションを待機します。false
は非永続化HTTPセッションのみを待機します。
タイプ: ブール
このリソースでは、weblogic.management.runtime.SingleSignOnServicesRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SingleSignOnServicesRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SingleSignOnServicesRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/singleSignOnServicesRuntime/publish rel=action title=publish
このリソースのpublishアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/singleSignOnServicesRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/singleSignOnServicesRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.SNMPAgentRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.SNMPAgentRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.SNMPAgentRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime/invalidateLocalizedKeyCache rel=action title=invalidateLocalizedKeyCache
このリソースのinvalidateLocalizedKeyCacheアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime/outputCustomMBeansMIBModule rel=action title=outputCustomMBeansMIBModule
このリソースのoutputCustomMBeansMIBModuleアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
指定されたWebLogic Serverユーザーのキャッシュされたセキュリティ・キーをただちに無効化します。
SNMPセキュリティ・キーは、SNMPエージェントのエンジンIDと認証パスワードまたはプライバシ・パスワードを暗号化したものです。WebLogic Serverは、SNMP資格証明マップ内に作成された各エントリごとに1つのセキュリティ・キーを生成します。WebLogic Server SNMPエージェントはSNMPv3リクエストを受信すると、リクエストに含まれるキーとWebLogic Serverのキーを比較します。一致した場合はそのリクエストを処理します。また、SNMPエージェントはレスポンスや通知の中でこれらのキーをエンコードします。(トラップ通知を作成するときに、エンコードするキーを構成します。)
各SNMPv3ごとにキーを再生成するかわりに、WebLogic Serverはキーをキャッシュします。キャッシュに必ず最新のSNMP資格証明のセットが含まれるように、WebLogic Serverは定期的にキャッシュを無効にします。キャッシュが無効にされると、次にSNMPエージェントが資格をリクエストしたときに、WebLogic Serverはキャッシュを再生成します。
資格証明マップを変更した場合、キャッシュは自動的に更新されません。キャッシュが更新されるのは、無効化を経た場合のみです。
WebLogic Serverによってキーのキャッシュ・エントリが無効にされるまで待つかわりに、即時に無効にすることができます。
リソースでは、次のメソッドがサポートされます。
カスタムMBeanのWebLogic Server MIBモジュールをjava.lang.String
として戻します。String
をファイルに保存してから、ファイルをMIBブラウザにロードできます。
WebLogic Server実行時MBeanサーバーにカスタムMBeanを登録すると、WebLogic Serverは、自身がカスタムMBean用に管理している実行時MIBモジュールにそのエントリを追加します。各カスタムMBeanタイプについて、WebLogic ServerではMIBモジュールに表が追加されます。カスタムMBeanの各インスタンスごとに、表の行が追加されます。WebLogic Serverでは、MIBモジュールをファイルなどのデータ構造として永続化することはありませんが、モジュール内のOIDは複数のサーバー・セッションに渡って一定に保持されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
サーバーを中断します。新規リクエストを拒否します(権限を付与されているユーザーを想定)。保留中のリクエストの完了を許可します。この操作はサーバーをADMIN
状態に遷移させます。ADMIN
状態では、管理者はアプリケーションおよびリソースを完全に使用できます。しかし、管理ユーザー以外はアプリケーションおよびリソースへのアクセスを拒否されます
サーバーはRUNNING
からADMIN
状態に正常に遷移します。
アプリケーションは管理モードです。処理中の作業が完了しました。ADMIN
状態では、管理者はアプリケーションおよびリソースを完全に使用できます。しかし、管理ユーザー以外はアプリケーションおよびリソースへのアクセスを拒否されます
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソース・グループを中断します。新規リクエストを拒否します(権限を付与されているユーザーを想定)。保留中のリクエストの完了を許可します。この操作により、パーティションはADMIN
状態に移行します。ADMIN
状態では、管理者はアプリケーションおよびリソースを完全に使用できます。しかし、管理ユーザー以外はアプリケーションおよびリソースへのアクセスを拒否されます
このリソースでは、weblogic.management.runtime.ThreadPoolRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.ThreadPoolRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.ThreadPoolRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/threadPoolRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/threadPoolRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TimerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TimerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TimerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/timerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/timerRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WANReplicationRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WANReplicationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WANReplicationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WANReplicationRuntime/cleanupExpiredSessionsInTheDatabase rel=action title=cleanupExpiredSessionsInTheDatabase
このリソースのcleanupExpiredSessionsInTheDatabaseアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WANReplicationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WANReplicationRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WebServerRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WebServerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WebServerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WebServerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WebServerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WebServerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime rel=logRuntime
このリソースのlogRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.LogRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.LogRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.LogRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime/ensureLogOpened rel=action title=ensureLogOpened
このリソースのensureLogOpenedアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime/flushLog rel=action title=flushLog
このリソースのflushLogアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime/forceLogRotation rel=action title=forceLogRotation
このリソースのforceLogRotationアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime rel=WLDFAccessRuntime
このリソースのWLDFAccessRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes rel=WLDFArchiveRuntimes
このリソースのWLDFArchiveRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime rel=WLDFControlRuntime
このリソースのWLDFControlRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime rel=WLDFDebugPatchesRuntime
このリソースのWLDFDebugPatchesRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFHarvesterRuntime rel=WLDFHarvesterRuntime
このリソースのWLDFHarvesterRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime rel=WLDFImageRuntime
このリソースのWLDFImageRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes rel=WLDFInstrumentationRuntimes
このリソースのWLDFInstrumentationRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime rel=WLDFWatchNotificationRuntime
このリソースのWLDFWatchNotificationRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFAccessRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFAccessRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFAccessRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes rel=WLDFDataAccessRuntimes
このリソースのWLDFDataAccessRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/lookupWLDFDataAccessRuntime rel=action title=lookupWLDFDataAccessRuntime
このリソースのlookupWLDFDataAccessRuntimeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes rel=dataAccessRuntimes
このリソースのdataAccessRuntimesコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime rel=self
このリソース。
このリソースでは、weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes rel=self
このリソース。
このリソースでは、weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/closeCursor rel=action title=closeCursor
このリソースのcloseCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/deleteDataRecords rel=action title=deleteDataRecords
このリソースのdeleteDataRecordsアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/getDataRecordCount rel=action title=getDataRecordCount
このリソースのgetDataRecordCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/hasMoreData rel=action title=hasMoreData
このリソースのhasMoreDataアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/openCursor rel=action title=openCursor
このリソースのopenCursorアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定された問合せに一致する指定された時間範囲内のレコードを削除します。問合せがnullまたは空の場合、その時間範囲内のすべてのレコードが削除されます。
開始および終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
一部のアーカイブでは、削除機能をサポートしていません。サポートされていない場合、このメソッドはUnsupportedOperationException例外をスローします。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定された問合せと時間範囲に一致するレコード数。
開始および終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
指定された問合せとレコードID範囲に一致し、タイムスタンプ(利用可能な場合)が指定された終了時刻よりも前のレコード数。
終了時刻は、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたタイムアウト値(ミリ秒)を使用してカーソルをオープンします。
指定された時間範囲と問合せ条件に一致するレコードのカーソルをオープンします。カーソルのタイムアウト値も指定します。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
指定された問合せと時間範囲を使用してカーソルをオープンします。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
カーソルのデフォルトのタイムアウト間隔は5分です。
指定されたレコードID範囲、終了タイムスタンプ、問合せを使用してカーソルをオープンします。カーソルのタイムアウト値も指定します。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
指定された問合せとレコードID範囲を使用してカーソルをオープンします。
タイムスタンプは、エポック(Jan 1 1970 AD, 00:00:00 GMT)から経過したミリ秒数で指定します。
カーソルのデフォルトのタイムアウト間隔は5分です。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDataAccessRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFDataAccessRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDataAccessRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes/{name}/closeArchive rel=action title=closeArchive
このリソースのcloseArchiveアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFArchiveRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFArchiveRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFArchiveRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFArchiveRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFArchiveRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFArchiveRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFControlRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFControlRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFControlRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls rel=systemResourceControls
このリソースのsystemResourceControlsコレクション・リソース。
このリソースでは、weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFSystemResourceControlRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/harvesterManagerRuntime rel=harvesterManagerRuntime
このリソースのharvesterManagerRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/watchManagerRuntime rel=watchManagerRuntime
このリソースのwatchManagerRuntimeシングルトン・リソース。
このリソースでは、weblogic.management.runtime.WLDFHarvesterManagerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFHarvesterManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFHarvesterManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/harvesterManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.WLDFWatchManagerRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFWatchManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFWatchManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/watchManagerRuntime/resetWatchAlarm rel=action title=resetWatchAlarm
このリソースのresetWatchAlarmアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/watchManagerRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name} rel=parent
このリソースの親リソース。
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFDebugPatchesRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFDebugPatchesRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDebugPatchesRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/activateDebugPatch rel=action title=activateDebugPatch
このリソースのactivateDebugPatchアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/clearDebugPatchTasks rel=action title=clearDebugPatchTasks
このリソースのclearDebugPatchTasksアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/deactivateAllDebugPatches rel=action title=deactivateAllDebugPatches
このリソースのdeactivateAllDebugPatchesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/deactivateDebugPatches rel=action title=deactivateDebugPatches
このリソースのdeactivateDebugPatchesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/showDebugPatchInfo rel=action title=showDebugPatchInfo
このリソースのshowDebugPatchInfoアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks rel=debugPatchTasks
このリソースのdebugPatchTasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
指定されたアプリケーションとモジュールのスコープ内で、オプションでデバッグ・パッチをアクティブ化します。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたアプリケーションとモジュールのスコープ内で、指定されたパッチを非アクティブ化します。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
このリソースでは、weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFHarvesterRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFHarvesterRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFHarvesterRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFHarvesterRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFHarvesterRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFImageRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFImageRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFImageRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/captureImage rel=action title=captureImage
このリソースのcaptureImageアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/clearCompletedImageCaptureTasks rel=action title=clearCompletedImageCaptureTasks
このリソースのclearCompletedImageCaptureTasksアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/purgeCapturedImages rel=action title=purgeCapturedImages
このリソースのpurgeCapturedImagesアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/resetImageLockout rel=action title=resetImageLockout
このリソースのresetImageLockoutアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks rel=imageCaptureTasks
このリソースのimageCaptureTasksコレクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
相対または絶対パス名として指定可能な、指定済の保存先ディレクトリに診断イメージを作成します。相対の場合、パスはサーバーのlogs
ディレクトリに対して相対です。
ディレクトリが存在していない場合は、作成されます。ディレクトリが存在する場合、ディレクトリはイメージ作成が進行するよう書込み可能である必要がります。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
構成済の保存先ディレクトリに診断イメージを作成します。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
相対または絶対パス名として指定可能な、指定済の保存先ディレクトリに診断イメージを作成します。相対の場合、パスはサーバーのlogs
ディレクトリに対して相対です。
ディレクトリが存在していない場合は、作成されます。ディレクトリが存在する場合、ディレクトリはイメージ作成が進行するよう書込み可能である必要がります。
指定されたロックアウト期間が過ぎるまで、追加のイメージ・キャプチャ・リクエストは受け付けられません。
このメソッドでは、非同期呼出しおよびベスト・エフォートの同期呼出しの両方がサポートされます。この動作はPreferヘッダーによって制御されます。「同期および非同期操作について」を参照してください。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks rel=self
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name} rel=self
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.TaskRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name} rel=parent
このリソースの親リソース。
このリソース。
このリソースでは、weblogic.management.runtime.TaskRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.TaskRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.TaskRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
このリソースのcancelアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks rel=parent
このリソースの親リソース。
rel=parentTask
weblogic.management.runtime.TaskRuntimeMBeanリソースへの、このリソースのparentTask参照。
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
このリソースのsubTasksコレクション・リソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFInstrumentationRuntimeMBeanインスタンスのコレクションが管理されます。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WLDFInstrumentationRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFInstrumentationRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WLDFInstrumentationRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFInstrumentationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFInstrumentationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name}/resetMethodInvocationStatisticsData rel=action title=resetMethodInvocationStatisticsData
このリソースのresetMethodInvocationStatisticsDataアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name}/resetMethodMemoryAllocationStatisticsData rel=action title=resetMethodMemoryAllocationStatisticsData
このリソースのresetMethodMemoryAllocationStatisticsDataアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name} rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFWatchNotificationRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource rel=WLDFWatchJMXNotificationSource
このリソースのWLDFWatchJMXNotificationSourceシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime/resetWatchAlarm rel=action title=resetWatchAlarm
このリソースのresetWatchAlarmアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
このリソースでは、weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのコレクションを管理します。
リソースでは、次のメソッドがサポートされます。
weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスのこのコレクションを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティのリストが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WorkManagerRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WorkManagerRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name} rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/capacityRuntime rel=capacityRuntime
このリソースのcapacityRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=maxThreadsConstraintRuntime
このリソースのmaxThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=minThreadsConstraintRuntime
このリソースのminThreadsConstraintRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/requestClassRuntime rel=requestClassRuntime
このリソースのrequestClassRuntimeシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name} rel=self
このリソース。
このリソースでは、weblogic.management.runtime.CapacityRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.CapacityRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.CapacityRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/capacityRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/capacityRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MaxThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/maxThreadsConstraintRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.MinThreadsConstraintRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.MinThreadsConstraintRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/minThreadsConstraintRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.RequestClassRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.RequestClassRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/requestClassRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name} rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/requestClassRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeClusterFrontEndRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime/clusterRouting rel=clusterRouting
このリソースのclusterRoutingシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeClusterRoutingRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeClusterRoutingRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime/clusterRouting rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime/clusterRouting rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを管理します。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WseeWsrmRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WseeWsrmRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/wseeWsrmRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/wseeWsrmRuntime rel=self
このリソース。
このリソースでは、weblogic.management.runtime.WTCRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WTCRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WTCRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean rel=WTCStatisticsRuntimeMBean
このリソースのWTCStatisticsRuntimeMBeanシングルトン・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/getServiceStatus rel=action title=getServiceStatus
このリソースのgetServiceStatusアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/resumeService rel=action title=resumeService
このリソースのresumeServiceアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/startConnection rel=action title=startConnection
このリソースのstartConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/stopConnection rel=action title=stopConnection
このリソースのstopConnectionアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/suspendService rel=action title=suspendService
このリソースのsuspendServiceアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたローカル・アクセス・ポイントおよびリモート・アクセス・ポイント・リストで提供された、特定のインポート・サービスのステータスを戻します。サービス名は、WTCImportおよびWTCExportのリソース名です。リモート・アクセス・ポイント・リストは、たとえば"TDOM1,TDOM2"など、カンマ区切りのリストです。
指定されたサービス名の、ターゲットのWTCサーバーに構成されたインポートおよびエクスポート・サービス/リソースのステータスを戻します。このサービス名はWTCImportおよびWTCExportのリソース名です。どちらかが有効なかぎり、戻されたステータスは有効です。
指定されたサービス名および指定されたローカル・アクセス・ポイントで提供された、インポートまたはエクスポート済サービスのステータスを戻します。サービス名は、WTCImportおよびWTCExportのリソース名です。
指定されたサービス名の、ターゲットのWTCサーバーに構成されたインポートまたはエクスポート・サービス/リソースのステータスを戻します。このサービス名はWTCImportおよびWTCExportのリソース名です。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたローカル・アクセス・ポイント用に構成された、指定済のサービス名を持つすべてのインポートまたはエクスポート・サービスが再開されます。サービス名は、WTCImportおよびWTCExportのリソース名です。
指定されたローカル・アクセス・ポイントおよびリモート・アクセス・ポイント・リスト用に構成された、指定済のサービス名を持つ特定のインポート・サービスが再開されます。サービス名は、WTCImportおよびWTCExportのリソース名です。リモート・アクセス・ポイント・リストは、たとえば"TDOM1,TDOM2"など、カンマ区切りのリストです。
指定されたローカル・アクセス・ポイント用に構成された、指定済のサービス名を持つすべてのインポートおよびエクスポート・サービスが再開されます。サービス名は、WTCImportおよびWTCExportのリソース名です。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
指定されたローカル・アクセス・ポイントおよびリモート・アクセス・ポイント・リスト用に構成された、指定済のサービス名を持つ特定のインポート・サービスが中断されます。サービス名は、WTCImportおよびWTCExportのリソース名です。リモート・アクセス・ポイント・リストは、たとえば"TDOM1,TDOM2"など、カンマ区切りのリストです。
指定されたサービス名を持つすべてのインポートまたはエクスポート・サービスが中断されます。このサービス名はWTCImportおよびWTCExportのリソース名です。
指定されたローカル・アクセス・ポイント用に構成された、指定済のサービス名を持つすべてのインポートまたはエクスポート・サービスが中断されます。サービス名は、WTCImportおよびWTCExportのリソース名です。
このリソースでは、weblogic.management.runtime.WTCStatisticsRuntimeMBeanインスタンスが管理されます。
リソースでは、次のメソッドがサポートされます。
このweblogic.management.runtime.WTCStatisticsRuntimeMBeanインスタンスを取得します。
レスポンス・ボディ
weblogic.management.runtime.WTCStatisticsRuntimeMBeanエンティティが含まれます。
このメソッドは次のリンクを返すことができます。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInTransactionCommittedTotalCount rel=action title=getInTransactionCommittedTotalCount
このリソースのgetInTransactionCommittedTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInTransactionRolledBackTotalCount rel=action title=getInTransactionRolledBackTotalCount
このリソースのgetInTransactionRolledBackTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundFailReqTotalCount rel=action title=getInboundFailReqTotalCount
このリソースのgetInboundFailReqTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundMessageTotalCount rel=action title=getInboundMessageTotalCount
このリソースのgetInboundMessageTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundNWMessageTotalSize rel=action title=getInboundNWMessageTotalSize
このリソースのgetInboundNWMessageTotalSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundSuccessReqTotalCount rel=action title=getInboundSuccessReqTotalCount
このリソースのgetInboundSuccessReqTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutTransactionCommittedTotalCount rel=action title=getOutTransactionCommittedTotalCount
このリソースのgetOutTransactionCommittedTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutTransactionRolledBackTotalCount rel=action title=getOutTransactionRolledBackTotalCount
このリソースのgetOutTransactionRolledBackTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundFailReqTotalCount rel=action title=getOutboundFailReqTotalCount
このリソースのgetOutboundFailReqTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundMessageTotalCount rel=action title=getOutboundMessageTotalCount
このリソースのgetOutboundMessageTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundNWMessageTotalSize rel=action title=getOutboundNWMessageTotalSize
このリソースのgetOutboundNWMessageTotalSizeアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundSuccessReqTotalCount rel=action title=getOutboundSuccessReqTotalCount
このリソースのgetOutboundSuccessReqTotalCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutstandingNWReqCount rel=action title=getOutstandingNWReqCount
このリソースのgetOutstandingNWReqCountアクション・リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean rel=canonical
このリソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime rel=parent
このリソースの親リソース。
uri=/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean rel=self
このリソース。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このエクスポート・サービスにより受信された非会話型、非CORBAのインバウンド・リクエストの合計数を戻します。指定したサービスがインポートされると、戻り値は0になります。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このWTC接続で受信された非会話型、非CORBAのインバウンド・メッセージの合計メッセージ・サイズを戻します。WTC接続は、LDomAccessPointIdとRDomAccessPointIdのペアで定義されます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このインポート・サービスに送信された非会話型、非CORBAのアウトバウンド・メッセージの合計数を戻します。指定したサービスがエクスポートされると、戻り値は0になります。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このインポート・サービスに送信された非会話型、非CORBAのアウトバウンド・メッセージの合計サイズを戻します。指定したサービスがエクスポートされると、戻り値は0になります。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
リソースでは、次のメソッドがサポートされます。
このWTC接続で受信された非会話型、非CORBAの未処理のインバウンド・リクエストの現在の数を戻します。WTC接続は、LDomAccessPointIdとRDomAccessPointIdのペアで定義されます。
リソースでは、次のメソッドがサポートされます。