This documentation describes the Oracle WebLogic Server Multitenant RESTful domain runtime resources that are used to monitor the specified WLS domain partition.
For a complete listing of the WLS REST reference documents and descriptions of their use, see Administering Oracle WebLogic Server with RESTful Management Services.
This resource is used to access different versions (if applicable) of the resources that are in this domain.
For the 12.2.1 release, there are just two versions: 12.2.1 and latest, where latest is another name for 12.2.1. For future releases, latest always refers to the most recent release.
To always use the latest resources, make sure to use latest
in the URLs. Note that this might require updating a client when moving to a newer version of WebLogic Server. To fix the version so that an update is not required, use 12.2.1
in the URLs.
The resource supports the following methods:
Get this collection of weblogic.management.rest.bean.model.Version instances.
Contains a list of weblogic.management.rest.bean.model.Version entities.
This method can return the following links:
uri=/management/weblogic rel=canonical
This resource.
uri=/management/weblogic/12.2.1.0 rel=current
Access the latest version of the WLS resources in the this domain.
uri=/management/weblogic rel=self
This resource.
This example uses the GET method to display the version instances in this collection.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "self", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "canonical", "href": "http:\//localhost:7001/management/weblogic" }, { "rel": "current", "href": "http:\//localhost:7001/management/weblogic/12.2.1.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" }] }
This resource describes the resource trees that are used to manage a WebLogic Server domain and its managed servers. The resource trees mimic the bean trees in WLST and allow you to view and edit configuration and monitor runtime behavior.
The resource supports the following methods:
Get this weblogic.management.rest.bean.model.Version instance.
Contains a weblogic.management.rest.bean.model.Version entity.
This method can return the following links:
uri=/management/weblogic/{version} rel=canonical
This resource.
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
The parent resource of this resource.
uri=/management/weblogic/{version} rel=self
This resource.
uri=/management/weblogic/{version}/serverConfig rel=serverConfig
uri=/management/weblogic/{version}/serverRuntime rel=serverRuntime
This example uses the GET method to display the latest version.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest
Example Response
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" }
This example uses the GET method to display a specific version.
Example Request
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
Example Response
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" }
This resource represents an authenticated user in the domain.
The resource supports the following methods:
Get this weblogic.management.rest.bean.model.CurrentUser instance.
Contains a weblogic.management.rest.bean.model.CurrentUser entity.
This method can return the following links:
uri=/management/weblogic/{version}/currentUser rel=canonical
This resource.
uri=/management/weblogic/{version} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/currentUser rel=self
This resource.
This example uses the GET method to view this weblogic.management.rest.bean.model.CurrentUser instance.
Example Request
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest/currentUser
Example Response
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" }
This resource is used to monitor the entire WebLogic Server domain.
The resource supports the following methods:
Get this weblogic.management.runtime.DomainRuntimeMBean instance.
Contains a weblogic.management.runtime.DomainRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime rel=canonical
This resource.
rel=currentDomainPartitionRuntime
This resource's currentDomainPartitionRuntime reference to a weblogic.management.runtime.DomainPartitionRuntimeMBean resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes rel=domainPartitionRuntimes
This resource's domainPartitionRuntimes collection resource.
uri=/management/weblogic/{version} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/search rel=search
This resource's search resource.
uri=/management/weblogic/{version}/domainRuntime rel=self
This resource.
uri=/management/weblogic/{version}/domainRuntime/serverRuntimes rel=serverRuntimes
This resource's serverRuntimes resource.
This example uses the GET method to view this weblogic.management.runtime.DomainRuntimeMBean instance.
Example Request
curl -v \ --user BUCAdmin:BUCAdmin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/BUC/management/weblogic/latest/domainRuntime
Example Response
HTTP/1.1 200 OK Response Body: { "links": [ { "rel": "parent", "href": "http:\//localhost:7001/BUC/management/weblogic/latest" }, { "rel": "currentDomainPartitionRuntime", "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/domainPartitionRuntimes/BUCPartition" }, { "rel": "self", "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime" }, { "rel": "canonical", "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime" }, { "rel": "domainPartitionRuntimes", "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/domainPartitionRuntimes" }, { "rel": "serverRuntimes", "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/serverRuntimes" }, { "rel": "search", "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/search" } ], "identity": [], "name": "bean", "type": "DomainRuntime", "currentDomainPartitionRuntime": [ "domainPartitionRuntimes", "BUCPartition" ] }
This resource manages a collection of weblogic.management.runtime.DomainPartitionRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.DomainPartitionRuntimeMBean instances.
Contains a list of weblogic.management.runtime.DomainPartitionRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes rel=self
This resource.
This resource manages a weblogic.management.runtime.DomainPartitionRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.DomainPartitionRuntimeMBean instance.
Contains a weblogic.management.runtime.DomainPartitionRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime rel=appRuntimeStateRuntime
This resource's appRuntimeStateRuntime singleton resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager rel=deploymentManager
This resource's deploymentManager singleton resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager rel=editSessionConfigurationManager
This resource's editSessionConfigurationManager singleton resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime rel=partitionLifeCycleRuntime
This resource's partitionLifeCycleRuntime singleton resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name} rel=self
This resource.
This resource manages a weblogic.management.runtime.AppRuntimeStateRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.AppRuntimeStateRuntimeMBean instance.
Contains a weblogic.management.runtime.AppRuntimeStateRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getCurrentState rel=action title=getCurrentState
This resource's getCurrentState action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getIntendedState rel=action title=getIntendedState
This resource's getIntendedState action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getModuleIds rel=action title=getModuleIds
This resource's getModuleIds action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getModuleTargets rel=action title=getModuleTargets
This resource's getModuleTargets action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getModuleType rel=action title=getModuleType
This resource's getModuleType action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getRetireTimeMillis rel=action title=getRetireTimeMillis
This resource's getRetireTimeMillis action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getRetireTimeoutSeconds rel=action title=getRetireTimeoutSeconds
This resource's getRetireTimeoutSeconds action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/getSubmoduleIds rel=action title=getSubmoduleIds
This resource's getSubmoduleIds action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/isActiveVersion rel=action title=isActiveVersion
This resource's isActiveVersion action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime/isAdminMode rel=action title=isAdminMode
This resource's isAdminMode action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/appRuntimeStateRuntime rel=self
This resource.
The resource supports the following methods:
The resource supports the following methods:
Aggregate state for the application. This is defined as the most advanced state of the application's modules on the named target.
Must contain a JSON object with the following fields:
appid
Type: string
logical target where the app is deployed
Type: string
Aggregate state for the module. This is defined as the most advanced state of the module on all servers associated with the named target.
Must contain a JSON object with the following fields:
appid
Type: string
moduleid
Type: string
logical target where module is deployed
Type: string
Aggregate state for a submodule. This is defined as the most advanced state of the submodule on all servers associated with the named target.
Must contain a JSON object with the following fields:
appid
Type: string
moduleid
Type: string
subModuleId
Type: string
logical target where module is deployed
Type: string
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
This resource manages a weblogic.management.runtime.DeploymentManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.DeploymentManagerMBean instance.
Contains a weblogic.management.runtime.DeploymentManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/confirmApplicationName rel=action title=confirmApplicationName
This resource's confirmApplicationName action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploy rel=action title=deploy
This resource's deploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/distribute rel=action title=distribute
This resource's distribute action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/purgeCompletedDeploymentProgressObjects rel=action title=purgeCompletedDeploymentProgressObjects
This resource's purgeCompletedDeploymentProgressObjects action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/redeploy rel=action title=redeploy
This resource's redeploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/undeploy rel=action title=undeploy
This resource's undeploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/update rel=action title=update
This resource's update action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes rel=appDeploymentRuntimes
This resource's appDeploymentRuntimes collection resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploymentProgressObjects rel=deploymentProgressObjects
This resource's deploymentProgressObjects collection resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes rel=libDeploymentRuntimes
This resource's libDeploymentRuntimes collection resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager rel=self
This resource.
This resource manages a collection of weblogic.management.runtime.AppDeploymentRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.AppDeploymentRuntimeMBean instances.
Contains a list of weblogic.management.runtime.AppDeploymentRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes rel=self
This resource.
This resource manages a weblogic.management.runtime.AppDeploymentRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.AppDeploymentRuntimeMBean instance.
Contains a weblogic.management.runtime.AppDeploymentRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name}/getState rel=action title=getState
This resource's getState action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name}/redeploy rel=action title=redeploy
This resource's redeploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name}/start rel=action title=start
This resource's start action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name}/stop rel=action title=stop
This resource's stop action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name}/undeploy rel=action title=undeploy
This resource's undeploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name}/update rel=action title=update
This resource's update action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/appDeploymentRuntimes rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
The state of the application for a target. Notifications will be generated for this attribute on state changes. Valid states are those supported by the weblogic.management.runtime.AppRuntimeStateRuntimeMBean The notification types are appdeployment.created, appdeployment.deleted, appdeployment.state.new, appdeployment.state.prepared, appdeployment.state.admin, appdeployment.state.active, appdeployment.state.retired, appdeployment.state.failed, appdeployment.state.update.pending, and appdeployment.state.unknown. The userdata is a Map where the keys are target names and the values are the application state for that target.
Must contain a JSON object with the following fields:
the target for the application state
Type: string
The resource supports the following methods:
The resource supports the following methods:
Redeploy the application in the background for the targets specified with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The targets on which to redeploy the application. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the application will be redeployed on all configured targets.
Type: array of string
The deployment plan for this application. May be null.
Type: string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys,units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
Redeploy the application using the default options and configured targets. This is a synchronous operation that returns when the redeploy operation has completed. The default options are clusterDeploymentTimeout: 3600000 milliseconds, gracefulIgnoreSessions: false, gracefulProductionToAdmin: false, retireGracefully: true, retireTimeout: no timeout, adminMode: false, timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Start the application in the background for the targets specified with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The targets on which to start the application. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the application will be started on all configured targets.
Type: array of string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys,units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
Start the application using the default options and configured targets. This is a synchronous operation that returns when the start operation has completed. The default options are clusterDeploymentTimeout: 3600000 milliseconds, gracefulIgnoreSessions: false, gracefulProductionToAdmin: false, retireGracefully: true, retireTimeout: no timeout, adminMode: false, timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Stop the application in the background for the targets specified with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The targets on which to stop the application. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the application will be stoped on all configured targets.
Type: array of string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys,units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
Stop the application using the default options and configured targets. This is a synchronous operation that returns when the stop operation has completed. The default options are clusterDeploymentTimeout: 3600000 milliseconds, gracefulIgnoreSessions: false, gracefulProductionToAdmin: false, retireGracefully: true, retireTimeout: no timeout, adminMode: false, timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Undeploy the application using the default options and configured targets. This is a synchronous operation that returns when the undeploy operation has completed. The default options are clusterDeploymentTimeout: 3600000 milliseconds, gracefulIgnoreSessions: false, gracefulProductionToAdmin: false, retireGracefully: true, retireTimeout: no timeout, adminMode: false, timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Undeploy the application in the background for the targets specified with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The targets on which to undeploy the application. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the application will be undeployed on all configured targets.
Type: array of string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys,units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
The resource supports the following methods:
Allows for updating an application configuration using an changed deployment plan.
A configuration update is equivalent to replacing the application's deployment plan. The deployment plan is redeployed in-place. A new version of the application is not started, even if the new deployment plan has a different version.
The update succeeds only if changes to the deployment plan do not require the application to be restarted. Configuration changes in the new deployment plan must be limited to tuning the application. Changes to resource bindings causes the update to fail. Use redeploy() to apply resource binding changes to a production application.
This method targets only root modules. Module level targeting is not supported.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
represent the targets on which to update the application.
Type: array of string
The deployment plan containing the new deployment configuration information.
Type: string
Allows for overriding the deployment options. May be null.
Type: java.util.Properties
The resource supports the following methods:
The resource supports the following methods:
Used by the deployment subsystem to confirm an application name.
Must contain a JSON object with the following fields:
should be true in the case where this function is called for a redeployment.
Type: boolean
is a the path to the application.
Type: string
alternate app descriptor.
Type: string
The name proposed for the application (provided by the user, or through the manifest). Null if no name was specified by the user or through the manifest.
Type: string
The tentative application ID. May only be null if the application is not versioned. If tentativeName is null and the application is versioned, this should be just the version string (which includes both the implementation and specification versions).
Type: string
deployment options
Type: java.util.Properties
Used by the deployment subsystem to confirm an application name.
Must contain a JSON object with the following fields:
should be true in the case where this function is called for a redeployment.
Type: boolean
is a the path to the application.
Type: string
alternate application descriptor path
Type: string
The name proposed for the application (provided by the user, or through the manifest). Null if no name was specified by the user or through the manifest.
Type: string
The tentative application ID. May only be null if the application is not versioned. If tentativeName is null and the application is versioned, this should be just the version string (which includes both the implementation and specification versions).
Type: string
The resource supports the following methods:
The resource supports the following methods:
A convenience method for distributing and starting an application.
The application source files and deployment plan are distributed to the deployment targets using the default options. This is a synchronous operation that returns when the deploy operation has completed. If distribution is successful, the application is then started on each of the targets. Successful deployment requires that all targets receive both the archive and deployment plan.
The default options are
clusterDeploymentTimeout: 3600000 milliseconds
gracefulIgnoreSessions: false
gracefulProductionToAdmin: false
retireGracefully: true
retireTimeout: no timeout
adminMode: false
timeout: no timeout
If any modules are currently running, this method immediately restarts those modules using the newer files. Restarting modules in this manner is not the same as redeployment, because session state is not preserved for the active modules.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The name of the application
Type: string
A supported Java EE application or module archive, or a root directory for the application or module.
Type: string
The deployment plan for this application. May be null.
Type: string
A convenience method for distributing and starting an application. The application source files and deployment plan are distributed to the deployment targets using the options specified. This is an asynchronous operation that returns immediately. If distribution is successful, the application is then started on each of the targets. Successful deployment requires that all targets receive both the archive and deployment plan.
If any modules are currently running, this method immediately restarts those modules using the newer files. Restarting modules in this manner is not the same as redeployment, because session state is not preserved for the active modules.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The name of the application
Type: string
A supported Java EE application or module archive, or a root directory for the application or module.
Type: string
The targets on which to deploy the application. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the application will be redeployed on all configured targets.
Type: array of string
The deployment plan for this application. May be null.
Type: string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys, units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
This resource manages a collection of weblogic.management.runtime.DeploymentProgressObjectMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.DeploymentProgressObjectMBean instances.
Contains a list of weblogic.management.runtime.DeploymentProgressObjectMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploymentProgressObjects rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.DeploymentProgressObjectMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.DeploymentProgressObjectMBean instance.
Contains a weblogic.management.runtime.DeploymentProgressObjectMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploymentProgressObjects/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploymentProgressObjects/{name}/getExceptions rel=action title=getExceptions
This resource's getExceptions action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploymentProgressObjects/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/deploymentProgressObjects rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
If the current deployment operation has failed, this method may return zero or more exception(s) which represent the errors for this target. The array will not contain WLS exception classes; instead they will be new RuntimeExceptions containing the stack traces and messages from the original WLS Exceptions.
Must contain a JSON object with the following fields:
the target where exceptions might have occurred.
Type: string
The resource supports the following methods:
The resource supports the following methods:
Distribute an application.
The application source files and deployment plan are distributed to the deployment targets using the default options. This is a synchronous operation that returns when the distribute operation has completed.
The default options are:
clusterDeploymentTimeout: 3600000 milliseconds
gracefulIgnoreSessions: false
gracefulProductionToAdmin: false
retireGracefully: true
retireTimeout: no timeout
adminMode: false,
timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The name of the application
Type: string
A supported Java EE application or module archive, or a root directory for the application or module.
Type: string
The deployment plan for this application. May be null.
Type: string
Distribute an application. The application source files and deployment plan are distributed to the deployment targets using the options specified. This is an asynchronous operation that returns immediately.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The name of the application
Type: string
A supported Java EE application or module archive, or a root directory for the application or module.
Type: string
The targets on which to deploy the application. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the application will be distributed on all configured targets.
Type: array of string
The deployment plan for this application. May be null.
Type: string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys, units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
This resource manages a collection of weblogic.management.runtime.LibDeploymentRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.LibDeploymentRuntimeMBean instances.
Contains a list of weblogic.management.runtime.LibDeploymentRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes rel=self
This resource.
This resource manages a weblogic.management.runtime.LibDeploymentRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.LibDeploymentRuntimeMBean instance.
Contains a weblogic.management.runtime.LibDeploymentRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes/{name}/redeploy rel=action title=redeploy
This resource's redeploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes/{name}/undeploy rel=action title=undeploy
This resource's undeploy action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/deploymentManager/libDeploymentRuntimes rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
Redeploy the library in the background for the targets specified with the options specified. This is an synchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The targets on which to redeploy the library. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the library will be redeployed on all configured targets.
Type: array of string
Allows for overriding the deployment options. If null, default options will be used. The keys,units and default values for options are adminMode boolean false, timeout milliseconds 0 (no timeout)
Type: java.util.Properties
Redeploy the library using the default options and configured targets. This is a synchronous operation that returns when the redeploy operation has completed. The default options are adminMode: false, timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Undeploy the library using the default options and configured targets. This is a synchronous operation that returns when the redeploy operation has completed. The default options are adminMode boolean false timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Undeploy the library in the background for the targets specified with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The targets on which to undeploy the library. This would be server names, cluster names, or module names in a similar format to weblogic.Deployer (i.e. module1@server1). If null, the library will be undeployed on all configured targets.
Type: array of string
Allows for overriding the deployment options. If null, default options will be used. The values should all be of type The keys,units and default values for options are adminMode boolean false timeout milliseconds 0 (no timeout)
Type: java.util.Properties
The resource supports the following methods:
The resource supports the following methods:
Redeploy the application that is deployed to a resource group template in the background for the targets specified with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
Note that this API is only for redeploying applications or libraries that are deployed to a resource group template, and a resourceGroupTemplate property value must be provided in deploymentOptions. AppDeploymentRuntimeMBean should be used for redeploying applications that are not deployed to a resource group template, and LibDeploymentRuntimeMBean should be used for redeploying libraries that are not deployed to a resource group template.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The application name
Type: string
The deployment plan for this application. May be null.
Type: string
Allows for overriding the deployment options. The keys, units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout) resourceGroupTemplate this value is required
Type: java.util.Properties
The resource supports the following methods:
The resource supports the following methods:
Undeploy the application that is deployed to a resource group template using the default options. This is a synchronous operation that returns when the undeploy operation has completed. The default options are clusterDeploymentTimeout: 3600000 milliseconds, gracefulIgnoreSessions: false, gracefulProductionToAdmin: false, retireGracefully: true, retireTimeout: no timeout, adminMode: false, timeout: no timeout
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The application name
Type: string
The resource group template
Type: string
Undeploy the application that is deployed to a resource group template in the background with the options specified. This is an asynchronous operation that returns immediately. The returned DeploymentProgressObjectMBean can be used to determine when the operation is completed.
Note that this API is only for undeploying applications that are deployed to a resource group template, and a resourceGroupTemplate property value must be provided in deploymentOptions. AppDeploymentRuntimeMBean should be used for undeploying applications that are not deployed to a resource group template.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The application name
Type: string
Allows for overriding the deployment options. The keys, units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout) resourceGroupTemplate this value is required
Type: java.util.Properties
The resource supports the following methods:
Allows for updating an application configuration using an changed deployment plan for applications deployed to a resource group template.
A configuration update is equivalent to replacing the application's deployment plan. The deployment plan is redeployed in-place. A new version of the application is not started, even if the new deployment plan has a different version.
The update succeeds only if changes to the deployment plan do not require the application to be restarted. Configuration changes in the new deployment plan must be limited to tuning the application. Changes to resource bindings causes the update to fail. Use redeploy(String, String, Properties) to apply resource binding changes to a production application.
This method targets only root modules. Module level targeting is not supported.
Note that this API is only for updating applications that are deployed to a resource group template, and a resourceGroupTemplate property value must be provided in deploymentOptions. AppDeploymentRuntimeMBean should be used for updating applications that are not deployed to a resource group template.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
The application name
Type: string
The deployment plan for this application. May be null.
Type: string
Allows for overriding the deployment options. The keys, units and default values for options are clusterDeploymentTimeout milliseconds 3600000, gracefulIgnoreSessions boolean false, gracefulProductionToAdmin boolean false, retireGracefully boolean true, retireTimeout seconds -1 (no timeout), adminMode boolean false, timeout milliseconds 0 (no timeout) resourceGroupTemplate this value is required
Type: java.util.Properties
This resource manages a weblogic.management.runtime.EditSessionConfigurationManagerMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.EditSessionConfigurationManagerMBean instance.
Contains a weblogic.management.runtime.EditSessionConfigurationManagerMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager/forceDestroyEditSessionConfiguration rel=action title=forceDestroyEditSessionConfiguration
This resource's forceDestroyEditSessionConfiguration action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager/editSessionConfigurations rel=editSessionConfigurations
This resource's editSessionConfigurations collection resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager rel=self
This resource.
This resource manages a collection of weblogic.management.runtime.EditSessionConfigurationRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.EditSessionConfigurationRuntimeMBean instances.
Contains a list of weblogic.management.runtime.EditSessionConfigurationRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager/editSessionConfigurations rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager rel=parent
The parent resource of this resource.
This resource.
Add a new weblogic.management.runtime.EditSessionConfigurationRuntimeMBean instance to this collection.
Must contain a weblogic.management.runtime.EditSessionConfigurationRuntimeMBean entity.
This resource manages a weblogic.management.runtime.EditSessionConfigurationRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.EditSessionConfigurationRuntimeMBean instance.
Contains a weblogic.management.runtime.EditSessionConfigurationRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager/editSessionConfigurations/{name}/containsUnactivatedChanges rel=action title=containsUnactivatedChanges
This resource's containsUnactivatedChanges action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager/editSessionConfigurations/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/editSessionConfigurationManager/editSessionConfigurations rel=parent
The parent resource of this resource.
This resource.
The resource supports the following methods:
The resource supports the following methods:
Destroys an existing named edit session configuration. This will destroy the associated edit session specific MBeanServer and remove the <domain>/edit/<name> or <domain>/partitions/<name>/edit/<name> directory and subdirectories.
Unlike destroyEditSessionConfiguration(EditSessionConfigurationRuntimeMBean), this operation does not end with error in case that session contains unactivated changes, and allows to destroy even edit sessions not owned by the caller (requires admin privileges).
Must contain a JSON object with the following fields:
Edit session to destroy.
Type: weblogic.management.runtime.EditSessionConfigurationRuntimeMBean reference
This resource manages a weblogic.management.runtime.PartitionLifeCycleRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.PartitionLifeCycleRuntimeMBean instance.
Contains a weblogic.management.runtime.PartitionLifeCycleRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/forceShutdown rel=action title=forceShutdown
This resource's forceShutdown action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/forceSuspend rel=action title=forceSuspend
This resource's forceSuspend action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/getState rel=action title=getState
This resource's getState action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/purgeTasks rel=action title=purgeTasks
This resource's purgeTasks action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resume rel=action title=resume
This resource's resume action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/shutdown rel=action title=shutdown
This resource's shutdown action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/start rel=action title=start
This resource's start action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/startInAdmin rel=action title=startInAdmin
This resource's startInAdmin action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/suspend rel=action title=suspend
This resource's suspend action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name} rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes rel=resourceGroupLifeCycleRuntimes
This resource's resourceGroupLifeCycleRuntimes collection resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime rel=self
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks rel=tasks
This resource's tasks collection resource.
The resource supports the following methods:
The resource supports the following methods:
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Forces the shutdown of the partition.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Forces the shutdown of the partition on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
Forcefully suspends the partition.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Forcefully suspends the partition on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
This resource manages a collection of weblogic.management.runtime.ResourceGroupLifeCycleRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.ResourceGroupLifeCycleRuntimeMBean instances.
Contains a list of weblogic.management.runtime.ResourceGroupLifeCycleRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.ResourceGroupLifeCycleRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.ResourceGroupLifeCycleRuntimeMBean instance.
Contains a weblogic.management.runtime.ResourceGroupLifeCycleRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/forceShutdown rel=action title=forceShutdown
This resource's forceShutdown action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/forceSuspend rel=action title=forceSuspend
This resource's forceSuspend action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/getState rel=action title=getState
This resource's getState action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/purgeTasks rel=action title=purgeTasks
This resource's purgeTasks action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/resume rel=action title=resume
This resource's resume action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/shutdown rel=action title=shutdown
This resource's shutdown action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/start rel=action title=start
This resource's start action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/startInAdmin rel=action title=startInAdmin
This resource's startInAdmin action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/suspend rel=action title=suspend
This resource's suspend action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes rel=parent
The parent resource of this resource.
This resource.
This resource's tasks collection resource.
The resource supports the following methods:
The resource supports the following methods:
Forces the shutdown of the resource group on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Forces the shutdown of the resource group.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Forcefully suspends the resource group on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Forcefully suspends the resource group.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
Transitions the resource group from ADMIN
to RUNNING
state on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Transitions the resource group from ADMIN
to RUNNING
state.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Shuts down the resource group gracefully. (equivalent to shutdown(targets, 0, false)).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Shuts down the resource group gracefully on all targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Gracefully shuts down a resource group.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and force shutting down the server.
Type: int
Set to true
to ignore pending HTTP sessions during inflight work handling.
Type: boolean
Set to true
to wait for all HTTP sessions duirng inflight work handling; false
to wait for non-persisted HTTP sessions only.
Type: boolean
the specific targets on which to shut down this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Gracefully shuts down a resource group.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and force shutting down the server.
Type: int
Set to true
to ignore pending HTTP sessions during inflight work handling.
Type: boolean
Set to true
to wait for all HTTP sessions duirng inflight work handling; false
to wait for non-persisted HTTP sessions only.
Type: boolean
Shuts down a resource group gracefully. (equivalent to shutdown(timeout, ignoreSessions, false, targets)).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and shutting down the server.
Type: int
true
indicates ignore pending HTTP sessions during inflight work handling.
Type: boolean
Shuts down a resource group gracefully. (equivalent to shutdown(timeout, ignoreSessions, false, targets)).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and shutting down the server.
Type: int
true
indicates ignore pending HTTP sessions during inflight work handling.
Type: boolean
the specific targets on which to shut down this resource group
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
Starts resource group.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Starts the resource group on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
Starts the resource group in the admin state in specified targets
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group in "admin" state
Type: array of weblogic.management.configuration.TargetMBean references
Starts the resource group in the admin state in all the targets
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
The resource supports the following methods:
The resource supports the following methods:
Transitions the resource group from RUNNING
to ADMIN
state gracefully on specified targets.
Applications are in admin mode. Inflight work is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Seconds to wait for the resource group to transition gracefully. The resource group automatically calls forceSuspend() after timeout.
Type: int
drop inflight HTTP sessions during graceful suspend
Type: boolean
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Gracefully suspends the resource group to ADMIN
state. (equivalent to suspend(0, false)) New requests are rejected and inflight work is allowed to complete.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Gracefully suspends the resource group to ADMIN
state. (equivalent to suspend(0, false)) New requests are rejected and inflight work is allowed to complete.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this resource group
Type: array of weblogic.management.configuration.TargetMBean references
Transitions the resource group from RUNNING
to ADMIN
state gracefully.
Applications are in admin mode. Inflight work is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Seconds to wait for the resource group to transition gracefully. The resource group automatically calls forceSuspend() after timeout.
Type: int
drop inflight HTTP sessions during graceful suspend
Type: boolean
This resource manages a collection of weblogic.management.runtime.ResourceGroupLifeCycleTaskRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.ResourceGroupLifeCycleTaskRuntimeMBean instances.
Contains a list of weblogic.management.runtime.ResourceGroupLifeCycleTaskRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.ResourceGroupLifeCycleTaskRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.ResourceGroupLifeCycleTaskRuntimeMBean instance.
Contains a weblogic.management.runtime.ResourceGroupLifeCycleTaskRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks/{name} rel=canonical
This resource.
The parent resource of this resource.
rel=parentTask
This resource's parentTask reference to a weblogic.management.runtime.TaskRuntimeMBean resource.
This resource.
This resource's subTasks collection resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.TaskRuntimeMBean instances.
Contains a list of weblogic.management.runtime.TaskRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks/{name}/subTasks rel=canonical
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.TaskRuntimeMBean instance.
Contains a weblogic.management.runtime.TaskRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks/{name}/subTasks/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
This resource.
The parent resource of this resource.
rel=parentTask
This resource's parentTask reference to a weblogic.management.runtime.TaskRuntimeMBean resource.
This resource.
This resource's subTasks collection resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.TaskRuntimeMBean instances.
Contains a list of weblogic.management.runtime.TaskRuntimeMBean entities.
This method can return the following links:
This resource.
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.TaskRuntimeMBean instance.
Contains a weblogic.management.runtime.TaskRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
This resource.
The parent resource of this resource.
rel=parentTask
This resource's parentTask reference to a weblogic.management.runtime.TaskRuntimeMBean resource.
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/resourceGroupLifeCycleRuntimes/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
This resource's subTasks collection resource.
The resource supports the following methods:
The resource supports the following methods:
The resource supports the following methods:
Transitions the partition from ADMIN
to RUNNING
state.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Transitions the partition from ADMIN
to RUNNING
state on specified targets..
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
Shuts down the partition gracefully. (equivalent to shutdown(targets, 0, false)).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
Gracefully shuts down a partition.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and force shutting down the server.
Type: int
Set to true
to ignore pending HTTP sessions during inflight work handling.
Type: boolean
Set to true
to wait for all HTTP sessions duirng inflight work handling; false
to wait for non-persisted HTTP sessions only.
Type: boolean
the specific targets on which to shut down this partition
Type: array of weblogic.management.configuration.TargetMBean references
Gracefully shuts down a partition.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and force shutting down the server.
Type: int
Set to true
to ignore pending HTTP sessions during inflight work handling.
Type: boolean
Set to true
to wait for all HTTP sessions duirng inflight work handling; false
to wait for non-persisted HTTP sessions only.
Type: boolean
Shuts down a partition gracefully. (equivalent to shutdown(timeout, ignoreSessions, false, targets)).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and shutting down the server.
Type: int
true
indicates ignore pending HTTP sessions during inflight work handling.
Type: boolean
the specific targets on which to shut down this partition
Type: array of weblogic.management.configuration.TargetMBean references
Shuts down the partition gracefully on all targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Shuts down a partition gracefully. (equivalent to shutdown(timeout, ignoreSessions, false, targets)).
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Number of seconds to wait before aborting inflight work and shutting down the server.
Type: int
true
indicates ignore pending HTTP sessions during inflight work handling.
Type: boolean
The resource supports the following methods:
The resource supports the following methods:
Starts partition.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Starts the partition in initalState within the specified timeOut
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
can be can be ADMIN or RUNNING, Default is RUNNING
Type: string
Specifies the number of milliseconds to start a Partition. Throws InterruptedException if Partition is unable to start during that duration and leaves the Partition in UNKNOWN state. Default is 60000ms
Type: int
Starts the partition on specified targets.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
Starts the partition in the admin state.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Starts the partition in the admin state.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition in "admin" state
Type: array of weblogic.management.configuration.TargetMBean references
The resource supports the following methods:
The resource supports the following methods:
Transitions the partition from RUNNING
to ADMIN
state gracefully on specified targets.
Applications are in admin mode. Inflight work is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Seconds to wait for the partition to transition gracefully. The partition automatically calls forceSuspend() after timeout.
Type: int
drop inflight HTTP sessions during graceful suspend
Type: boolean
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
Gracefully suspends the partition to ADMIN
state. (equivalent to suspend(0, false)) New requests are rejected and inflight work is allowed to complete.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Transitions the partition from RUNNING
to ADMIN
state gracefully.
Applications are in admin mode. Inflight work is completed.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
Seconds to wait for the partition to transition gracefully. The partition automatically calls forceSuspend() after timeout.
Type: int
drop inflight HTTP sessions during graceful suspend
Type: boolean
Gracefully suspends the partition to ADMIN
state. (equivalent to suspend(0, false)) New requests are rejected and inflight work is allowed to complete.
This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.
Must contain a JSON object with the following fields:
the specific targets on which to start this partition
Type: array of weblogic.management.configuration.TargetMBean references
This resource manages a collection of weblogic.management.runtime.PartitionLifeCycleTaskRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.PartitionLifeCycleTaskRuntimeMBean instances.
Contains a list of weblogic.management.runtime.PartitionLifeCycleTaskRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks rel=self
This resource.
This resource manages a weblogic.management.runtime.PartitionLifeCycleTaskRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.PartitionLifeCycleTaskRuntimeMBean instance.
Contains a weblogic.management.runtime.PartitionLifeCycleTaskRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks rel=parent
The parent resource of this resource.
rel=parentTask
This resource's parentTask reference to a weblogic.management.runtime.TaskRuntimeMBean resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name} rel=self
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks rel=subTasks
This resource's subTasks collection resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.TaskRuntimeMBean instances.
Contains a list of weblogic.management.runtime.TaskRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.TaskRuntimeMBean instance.
Contains a weblogic.management.runtime.TaskRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name} rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks rel=parent
The parent resource of this resource.
rel=parentTask
This resource's parentTask reference to a weblogic.management.runtime.TaskRuntimeMBean resource.
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name}/subTasks rel=subTasks
This resource's subTasks collection resource.
The resource supports the following methods:
This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.
The resource supports the following methods:
Get this collection of weblogic.management.runtime.TaskRuntimeMBean instances.
Contains a list of weblogic.management.runtime.TaskRuntimeMBean entities.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name}/subTasks rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name} rel=parent
The parent resource of this resource.
This resource.
This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.
The resource supports the following methods:
Get this weblogic.management.runtime.TaskRuntimeMBean instance.
Contains a weblogic.management.runtime.TaskRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name}/subTasks/{name}/cancel rel=action title=cancel
This resource's cancel action resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name}/subTasks/{name} rel=canonical
This resource.
The parent resource of this resource.
rel=parentTask
This resource's parentTask reference to a weblogic.management.runtime.TaskRuntimeMBean resource.
This resource.
uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes/{name}/partitionLifeCycleRuntime/tasks/{name}/subTasks/{name}/subTasks/{name}/subTasks rel=subTasks
This resource's subTasks collection resource.
The resource supports the following methods:
Monitors all the running servers in the WebLogic Server domain from the administration server. From this resource, you can monitor each managed server.
The resource supports the following methods:
Get this weblogic.management.runtime.ServerRuntimeMBean instance.
Contains a weblogic.management.runtime.ServerRuntimeMBean entity.
This method can return the following links:
uri=/management/weblogic/{version}/domainRuntime/serverRuntimes rel=canonical
This resource.
uri=/management/weblogic/{version}/domainRuntime rel=parent
The parent resource of this resource.
uri=/management/weblogic/{version}/domainRuntime/serverRuntimes rel=self
This resource.